finish off-axis analysis
2
.envrc
|
@ -1,2 +0,0 @@
|
|||
use_flake
|
||||
eval "$shellHook"
|
1
.gitattributes
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
*.svg binary
|
42
flake.lock
generated
|
@ -1,42 +0,0 @@
|
|||
{
|
||||
"nodes": {
|
||||
"flake-utils": {
|
||||
"locked": {
|
||||
"lastModified": 1667395993,
|
||||
"narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=",
|
||||
"owner": "numtide",
|
||||
"repo": "flake-utils",
|
||||
"rev": "5aed5285a952e0b949eb3ba02c12fa4fcfef535f",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "numtide",
|
||||
"repo": "flake-utils",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1668994630,
|
||||
"narHash": "sha256-1lqx6HLyw6fMNX/hXrrETG1vMvZRGm2XVC9O/Jt0T6c=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "af50806f7c6ab40df3e6b239099e8f8385f6c78b",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"id": "nixpkgs",
|
||||
"ref": "nixos-unstable",
|
||||
"type": "indirect"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"flake-utils": "flake-utils",
|
||||
"nixpkgs": "nixpkgs"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
"version": 7
|
||||
}
|
51
flake.nix
|
@ -1,51 +0,0 @@
|
|||
{
|
||||
description = "Typesetting for the Energy Flow Paper";
|
||||
inputs = {
|
||||
nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
flake-utils.inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils }:
|
||||
with flake-utils.lib; eachSystem allSystems (system:
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
tex = pkgs.texlive.combine {
|
||||
inherit (pkgs.texlive) scheme-medium latexmk koma-script babel-english
|
||||
physics mathtools amsmath fontspec booktabs siunitx caption biblatex float
|
||||
pgfplots microtype fancyvrb csquotes setspace newunicodechar hyperref
|
||||
cleveref multirow bbold unicode-math biblatex-phys xpatch beamerposter
|
||||
type1cm changepage lualatex-math footmisc wrapfig2 curve2e pict2e wrapfig blindtext
|
||||
appendixnumberbeamer sidecap appendix orcidlink ncctools bigfoot crop xcolor revtex;
|
||||
};
|
||||
in
|
||||
rec {
|
||||
packages = {
|
||||
document = pkgs.stdenvNoCC.mkDerivation rec {
|
||||
name = "eflow_paper";
|
||||
src = self;
|
||||
buildInputs = [ pkgs.coreutils tex pkgs.biber ];
|
||||
phases = [ "unpackPhase" "buildPhase" "installPhase" ];
|
||||
buildPhase = ''
|
||||
export PATH="${pkgs.lib.makeBinPath buildInputs}";
|
||||
mkdir -p .cache/texmf-var
|
||||
mkdir -p output/src
|
||||
env TEXMFHOME=.cache TEXMFVAR=.cache/texmf-var \
|
||||
OSFONTDIR=${pkgs.gyre-fonts}/share/fonts:${pkgs.liberation_ttf}/share/fonts:${pkgs.lato}/share/fonts/lato:${pkgs.raleway}/share/fonts:${pkgs.lmodern}/share/fonts \
|
||||
latexmk ./index.tex
|
||||
'';
|
||||
installPhase = ''
|
||||
mkdir -p $out
|
||||
cp output/index.pdf $out/
|
||||
'';
|
||||
};
|
||||
};
|
||||
defaultPackage = packages.document;
|
||||
devShell = pkgs.mkShellNoCC {
|
||||
buildInputs = [ pkgs.openjdk ] ++ packages.document.buildInputs;
|
||||
shellHook = ''
|
||||
export OSFONTDIR=${pkgs.gyre-fonts}/share/fonts:${pkgs.liberation_ttf}/share/fonts:${pkgs.lato}/share/fonts/lato:${pkgs.raleway}/share/fonts:${pkgs.lmodern}/share/fonts
|
||||
'';
|
||||
};
|
||||
});
|
||||
}
|
|
@ -549,18 +549,29 @@ def plot_steady_work_baths(models, steady_idx=2, label_fn=model_description):
|
|||
|
||||
|
||||
@pu.wrap_plot
|
||||
def plot_bloch_components(model, ax=None):
|
||||
def plot_bloch_components(model, ax=None, **kwargs):
|
||||
with aux.get_data(model) as data:
|
||||
ρ = data.rho_t_accum.mean[:]
|
||||
σ_ρ = data.rho_t_accum.ensemble_std[:]
|
||||
|
||||
xs = np.einsum("tij,ji->t", σ_ρ, qt.sigmax().full()).real
|
||||
ys = np.einsum("tij,ji->t", ρ, qt.sigmax().full()).real
|
||||
xs = np.einsum("tij,ji->t", ρ, qt.sigmax().full()).real
|
||||
ys = np.einsum("tij,ji->t", ρ, qt.sigmay().full()).real
|
||||
zs = np.einsum("tij,ji->t", ρ, qt.sigmaz().full()).real
|
||||
|
||||
ax.plot(model.t, zs, label=r"$\langle \sigma_z\rangle$")
|
||||
|
||||
ax.plot(model.t, xs, label=r"$\langle \sigma_x\rangle$")
|
||||
ax.plot(model.t, ys, label=r"$\langle \sigma_y\rangle$")
|
||||
ax.plot(
|
||||
model.t,
|
||||
zs,
|
||||
**(dict(label=r"$\langle \sigma_z\rangle$", color="C1") | kwargs),
|
||||
)
|
||||
ax.plot(
|
||||
model.t,
|
||||
xs,
|
||||
**(dict(label=r"$\langle \sigma_x\rangle$", color="C2") | kwargs),
|
||||
)
|
||||
ax.plot(
|
||||
model.t,
|
||||
ys,
|
||||
**(dict(label=r"$\langle \sigma_y\rangle$", color="C3") | kwargs),
|
||||
)
|
||||
ax.legend()
|
||||
ax.set_xlabel(r"$\tau$")
|
||||
|
|
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
"cells": [
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "9455ed50",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": []
|
||||
}
|
||||
],
|
||||
"metadata": {
|
||||
"kernelspec": {
|
||||
"display_name": "Python 3 (ipykernel)",
|
||||
"language": "python",
|
||||
"name": "python3"
|
||||
},
|
||||
"language_info": {
|
||||
"codemirror_mode": {
|
||||
"name": "ipython",
|
||||
"version": 3
|
||||
},
|
||||
"file_extension": ".py",
|
||||
"mimetype": "text/x-python",
|
||||
"name": "python",
|
||||
"nbconvert_exporter": "python",
|
||||
"pygments_lexer": "ipython3",
|
||||
"version": "3.9.15"
|
||||
}
|
||||
},
|
||||
"nbformat": 4,
|
||||
"nbformat_minor": 5
|
||||
}
|
|
@ -41,12 +41,12 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m3ebac57afe" d="M 0 0
|
||||
<path id="m76b00c756e" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m3ebac57afe" x="39.976366" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m76b00c756e" x="39.976366" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -82,7 +82,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m3ebac57afe" x="73.607861" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m76b00c756e" x="73.607861" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -116,7 +116,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m3ebac57afe" x="107.239357" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m76b00c756e" x="107.239357" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -154,7 +154,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m3ebac57afe" x="140.870852" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m76b00c756e" x="140.870852" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -198,7 +198,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m3ebac57afe" x="174.502347" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m76b00c756e" x="174.502347" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -240,7 +240,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m3ebac57afe" x="208.133842" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m76b00c756e" x="208.133842" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -284,7 +284,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m3ebac57afe" x="241.765337" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m76b00c756e" x="241.765337" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -351,12 +351,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_8">
|
||||
<defs>
|
||||
<path id="m9cca309880" d="M 0 0
|
||||
<path id="mb8052f868d" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m9cca309880" x="39.976366" y="137.322964" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb8052f868d" x="39.976366" y="137.322964" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -380,7 +380,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m9cca309880" x="39.976366" y="106.341306" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb8052f868d" x="39.976366" y="106.341306" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -395,7 +395,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m9cca309880" x="39.976366" y="75.359648" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb8052f868d" x="39.976366" y="75.359648" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -410,7 +410,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m9cca309880" x="39.976366" y="44.37799" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb8052f868d" x="39.976366" y="44.37799" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -425,7 +425,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m9cca309880" x="39.976366" y="13.396332" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb8052f868d" x="39.976366" y="13.396332" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -713,7 +713,7 @@ L 241.15997 137.251203
|
|||
L 241.765337 137.322964
|
||||
L 241.967126 137.322964
|
||||
L 241.967126 137.322964
|
||||
" clip-path="url(#p71a5c4cba8)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1c89e5903f)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_14">
|
||||
<path d="M 39.976366 137.322964
|
||||
|
@ -749,7 +749,7 @@ L 140.265485 137.251203
|
|||
L 140.870852 137.322964
|
||||
L 241.967126 137.322964
|
||||
L 241.967126 137.322964
|
||||
" clip-path="url(#p71a5c4cba8)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1c89e5903f)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 39.976366 75.359648
|
||||
|
@ -785,7 +785,7 @@ L 152.372823 75.287887
|
|||
L 152.97819 75.359648
|
||||
L 241.967126 75.35685
|
||||
L 241.967126 75.35685
|
||||
" clip-path="url(#p71a5c4cba8)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1c89e5903f)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 39.976366 143.519296
|
||||
|
@ -1061,7 +1061,7 @@ z
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p71a5c4cba8">
|
||||
<clipPath id="p1c89e5903f">
|
||||
<rect x="39.976366" y="7.2" width="201.788971" height="136.319296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
|
@ -41,12 +41,12 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="mdf90b2aea8" d="M 0 0
|
||||
<path id="m7747c0059a" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mdf90b2aea8" x="57.463727" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7747c0059a" x="57.463727" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -115,7 +115,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#mdf90b2aea8" x="106.113496" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7747c0059a" x="106.113496" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -128,7 +128,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#mdf90b2aea8" x="154.763266" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7747c0059a" x="154.763266" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -142,7 +142,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#mdf90b2aea8" x="203.413035" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7747c0059a" x="203.413035" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -425,12 +425,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_5">
|
||||
<defs>
|
||||
<path id="m9e695240e3" d="M 0 0
|
||||
<path id="m77938a8bc4" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m9e695240e3" x="55.031239" y="125.201815" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m77938a8bc4" x="55.031239" y="125.201815" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -475,7 +475,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m9e695240e3" x="55.031239" y="98.227132" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m77938a8bc4" x="55.031239" y="98.227132" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -523,7 +523,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m9e695240e3" x="55.031239" y="71.252449" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m77938a8bc4" x="55.031239" y="71.252449" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
|
@ -540,7 +540,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m9e695240e3" x="55.031239" y="44.277766" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m77938a8bc4" x="55.031239" y="44.277766" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -606,112 +606,112 @@ z
|
|||
<g id="line2d_9">
|
||||
<path d="M 55.031239 71.252449
|
||||
L 215.575478 71.252449
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #d3d3d3; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #d3d3d3; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_1">
|
||||
<path d="M 62.328704 107.971886
|
||||
L 62.328704 107.925229
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 76.923635 98.217926
|
||||
L 76.923635 98.170332
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 91.518566 63.705469
|
||||
L 91.518566 63.658575
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 106.113496 58.030174
|
||||
L 106.113496 57.983601
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 120.708427 55.841353
|
||||
L 120.708427 55.794938
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 135.303358 49.745204
|
||||
L 135.303358 49.699927
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 149.898289 49.018561
|
||||
L 149.898289 48.97384
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 164.49322 50.004243
|
||||
L 164.49322 49.95978
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 179.088151 52.555906
|
||||
L 179.088151 52.511404
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 193.683081 61.562373
|
||||
L 193.683081 61.517666
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 208.278012 87.831696
|
||||
L 208.278012 87.787141
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="LineCollection_2">
|
||||
<path d="M 62.328704 122.045583
|
||||
L 62.328704 122.004081
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 76.923635 102.434985
|
||||
L 76.923635 102.389139
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 91.518566 39.019221
|
||||
L 91.518566 38.978253
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 106.113496 30.252051
|
||||
L 106.113496 30.212901
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 120.708427 28.617566
|
||||
L 120.708427 28.576793
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 135.303358 26.253932
|
||||
L 135.303358 26.212928
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 149.898289 26.941211
|
||||
L 149.898289 26.900218
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 164.49322 28.758651
|
||||
L 164.49322 28.717669
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 179.088151 34.335581
|
||||
L 179.088151 34.294665
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 193.683081 52.094535
|
||||
L 193.683081 52.053904
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 208.278012 104.209953
|
||||
L 208.278012 104.174691
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="LineCollection_3">
|
||||
<path d="M 62.328704 93.950333
|
||||
L 62.328704 93.867556
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 76.923635 94.051438
|
||||
L 76.923635 93.96862
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 91.518566 88.397433
|
||||
L 91.518566 88.318019
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 106.113496 85.807872
|
||||
L 106.113496 85.728023
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 120.708427 83.064817
|
||||
L 120.708427 82.982477
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 135.303358 73.230292
|
||||
L 135.303358 73.150026
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 149.898289 71.08894
|
||||
L 149.898289 71.009895
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 164.49322 71.243851
|
||||
L 164.49322 71.165305
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 179.088151 70.77264
|
||||
L 179.088151 70.694265
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 193.683081 71.03507
|
||||
L 193.683081 70.957094
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 208.278012 71.509284
|
||||
L 208.278012 71.432506
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_10">
|
||||
<path d="M 62.328704 107.948557
|
||||
|
@ -725,9 +725,9 @@ L 164.49322 49.982011
|
|||
L 179.088151 52.533655
|
||||
L 193.683081 61.540019
|
||||
L 208.278012 87.809418
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
<defs>
|
||||
<path id="md1dabf8cae" d="M 0 1.4
|
||||
<path id="m662d0fd78c" d="M 0 1.4
|
||||
C 0.371284 1.4 0.727412 1.252487 0.989949 0.989949
|
||||
C 1.252487 0.727412 1.4 0.371284 1.4 0
|
||||
C 1.4 -0.371284 1.252487 -0.727412 0.989949 -0.989949
|
||||
|
@ -739,18 +739,18 @@ C -0.727412 1.252487 -0.371284 1.4 0 1.4
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p545810b6c2)">
|
||||
<use xlink:href="#md1dabf8cae" x="62.328704" y="107.948557" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="76.923635" y="98.194129" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="91.518566" y="63.682022" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="106.113496" y="58.006887" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="120.708427" y="55.818145" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="135.303358" y="49.722566" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="149.898289" y="48.996201" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="164.49322" y="49.982011" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="179.088151" y="52.533655" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="193.683081" y="61.540019" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="208.278012" y="87.809418" style="fill: #1f77b4"/>
|
||||
<g clip-path="url(#p54baedbb7f)">
|
||||
<use xlink:href="#m662d0fd78c" x="62.328704" y="107.948557" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="76.923635" y="98.194129" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="91.518566" y="63.682022" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="106.113496" y="58.006887" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="120.708427" y="55.818145" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="135.303358" y="49.722566" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="149.898289" y="48.996201" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="164.49322" y="49.982011" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="179.088151" y="52.533655" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="193.683081" y="61.540019" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="208.278012" y="87.809418" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_11">
|
||||
|
@ -765,9 +765,9 @@ L 164.49322 28.73816
|
|||
L 179.088151 34.315123
|
||||
L 193.683081 52.07422
|
||||
L 208.278012 104.192322
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
<defs>
|
||||
<path id="m07bd2318aa" d="M 0 1.4
|
||||
<path id="m7bd24f37f3" d="M 0 1.4
|
||||
C 0.371284 1.4 0.727412 1.252487 0.989949 0.989949
|
||||
C 1.252487 0.727412 1.4 0.371284 1.4 0
|
||||
C 1.4 -0.371284 1.252487 -0.727412 0.989949 -0.989949
|
||||
|
@ -779,18 +779,18 @@ C -0.727412 1.252487 -0.371284 1.4 0 1.4
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p545810b6c2)">
|
||||
<use xlink:href="#m07bd2318aa" x="62.328704" y="122.024832" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="76.923635" y="102.412062" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="91.518566" y="38.998737" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="106.113496" y="30.232476" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="120.708427" y="28.59718" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="135.303358" y="26.23343" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="149.898289" y="26.920714" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="164.49322" y="28.73816" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="179.088151" y="34.315123" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="193.683081" y="52.07422" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="208.278012" y="104.192322" style="fill: #ff7f0e"/>
|
||||
<g clip-path="url(#p54baedbb7f)">
|
||||
<use xlink:href="#m7bd24f37f3" x="62.328704" y="122.024832" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="76.923635" y="102.412062" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="91.518566" y="38.998737" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="106.113496" y="30.232476" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="120.708427" y="28.59718" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="135.303358" y="26.23343" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="149.898289" y="26.920714" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="164.49322" y="28.73816" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="179.088151" y="34.315123" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="193.683081" y="52.07422" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="208.278012" y="104.192322" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_12">
|
||||
|
@ -805,9 +805,9 @@ L 164.49322 71.204578
|
|||
L 179.088151 70.733452
|
||||
L 193.683081 70.996082
|
||||
L 208.278012 71.470895
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
<defs>
|
||||
<path id="md069140b38" d="M 0 1.4
|
||||
<path id="m41e274d233" d="M 0 1.4
|
||||
C 0.371284 1.4 0.727412 1.252487 0.989949 0.989949
|
||||
C 1.252487 0.727412 1.4 0.371284 1.4 0
|
||||
C 1.4 -0.371284 1.252487 -0.727412 0.989949 -0.989949
|
||||
|
@ -819,18 +819,18 @@ C -0.727412 1.252487 -0.371284 1.4 0 1.4
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p545810b6c2)">
|
||||
<use xlink:href="#md069140b38" x="62.328704" y="93.908944" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="76.923635" y="94.010029" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="91.518566" y="88.357726" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="106.113496" y="85.767948" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="120.708427" y="83.023647" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="135.303358" y="73.190159" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="149.898289" y="71.049417" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="164.49322" y="71.204578" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="179.088151" y="70.733452" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="193.683081" y="70.996082" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="208.278012" y="71.470895" style="fill: #2ca02c"/>
|
||||
<g clip-path="url(#p54baedbb7f)">
|
||||
<use xlink:href="#m41e274d233" x="62.328704" y="93.908944" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="76.923635" y="94.010029" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="91.518566" y="88.357726" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="106.113496" y="85.767948" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="120.708427" y="83.023647" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="135.303358" y="73.190159" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="149.898289" y="71.049417" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="164.49322" y="71.204578" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="179.088151" y="70.733452" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="193.683081" y="70.996082" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="208.278012" y="71.470895" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
|
@ -1121,7 +1121,7 @@ L 132.921338 103.604255
|
|||
</g>
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#md1dabf8cae" x="123.921338" y="103.604255" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="123.921338" y="103.604255" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -1143,7 +1143,7 @@ L 132.921338 117.231101
|
|||
</g>
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#m07bd2318aa" x="123.921338" y="117.231101" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="123.921338" y="117.231101" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -1168,7 +1168,7 @@ L 132.921338 130.525834
|
|||
</g>
|
||||
<g id="line2d_18">
|
||||
<g>
|
||||
<use xlink:href="#md069140b38" x="123.921338" y="130.525834" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="123.921338" y="130.525834" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
|
@ -1196,7 +1196,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_19">
|
||||
<g>
|
||||
<use xlink:href="#mdf90b2aea8" x="302.263727" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7747c0059a" x="302.263727" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
|
@ -1211,7 +1211,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_20">
|
||||
<g>
|
||||
<use xlink:href="#mdf90b2aea8" x="350.913496" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7747c0059a" x="350.913496" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
|
@ -1224,7 +1224,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_21">
|
||||
<g>
|
||||
<use xlink:href="#mdf90b2aea8" x="399.563266" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7747c0059a" x="399.563266" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
|
@ -1238,7 +1238,7 @@ z
|
|||
<g id="xtick_8">
|
||||
<g id="line2d_22">
|
||||
<g>
|
||||
<use xlink:href="#mdf90b2aea8" x="448.213035" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7747c0059a" x="448.213035" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
|
@ -1269,7 +1269,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_23">
|
||||
<g>
|
||||
<use xlink:href="#m9e695240e3" x="299.831239" y="125.201815" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m77938a8bc4" x="299.831239" y="125.201815" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_20">
|
||||
|
@ -1287,7 +1287,7 @@ z
|
|||
<g id="ytick_6">
|
||||
<g id="line2d_24">
|
||||
<g>
|
||||
<use xlink:href="#m9e695240e3" x="299.831239" y="98.227132" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m77938a8bc4" x="299.831239" y="98.227132" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_21">
|
||||
|
@ -1305,7 +1305,7 @@ z
|
|||
<g id="ytick_7">
|
||||
<g id="line2d_25">
|
||||
<g>
|
||||
<use xlink:href="#m9e695240e3" x="299.831239" y="71.252449" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m77938a8bc4" x="299.831239" y="71.252449" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_22">
|
||||
|
@ -1322,7 +1322,7 @@ z
|
|||
<g id="ytick_8">
|
||||
<g id="line2d_26">
|
||||
<g>
|
||||
<use xlink:href="#m9e695240e3" x="299.831239" y="44.277766" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m77938a8bc4" x="299.831239" y="44.277766" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_23">
|
||||
|
@ -1347,112 +1347,112 @@ z
|
|||
<g id="line2d_27">
|
||||
<path d="M 299.831239 71.252449
|
||||
L 460.375478 71.252449
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #d3d3d3; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #d3d3d3; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_7">
|
||||
<path d="M 307.128704 87.216528
|
||||
L 307.128704 87.182194
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 321.723635 59.41944
|
||||
L 321.723635 59.385863
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 336.318566 50.127081
|
||||
L 336.318566 50.094053
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 350.913496 50.050762
|
||||
L 350.913496 50.017767
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 365.508427 50.222804
|
||||
L 365.508427 50.189839
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 380.103358 47.355004
|
||||
L 380.103358 47.322183
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 394.698289 43.81622
|
||||
L 394.698289 43.783694
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 409.29322 45.770546
|
||||
L 409.29322 45.73815
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 423.888151 55.676144
|
||||
L 423.888151 55.643586
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 438.483081 81.092792
|
||||
L 438.483081 81.060107
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 453.078012 102.687312
|
||||
L 453.078012 102.654939
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="LineCollection_8">
|
||||
<path d="M 307.128704 95.748054
|
||||
L 307.128704 95.715288
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 321.723635 44.372288
|
||||
L 321.723635 44.343324
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 336.318566 28.676209
|
||||
L 336.318566 28.648794
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 350.913496 28.64819
|
||||
L 350.913496 28.620853
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 365.508427 28.78288
|
||||
L 365.508427 28.755491
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 380.103358 26.306403
|
||||
L 380.103358 26.277747
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 394.698289 25.756384
|
||||
L 394.698289 25.727626
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 409.29322 32.168625
|
||||
L 409.29322 32.13984
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 423.888151 52.52814
|
||||
L 423.888151 52.499683
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 438.483081 101.327561
|
||||
L 438.483081 101.303108
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 453.078012 137.910169
|
||||
L 453.078012 137.890121
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="LineCollection_9">
|
||||
<path d="M 307.128704 79.170091
|
||||
L 307.128704 79.112536
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 321.723635 74.464804
|
||||
L 321.723635 74.406489
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 336.318566 71.566358
|
||||
L 336.318566 71.508621
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 350.913496 71.441657
|
||||
L 350.913496 71.383973
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 365.508427 71.256411
|
||||
L 365.508427 71.198703
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 380.103358 68.390553
|
||||
L 380.103358 68.331835
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 394.698289 61.859452
|
||||
L 394.698289 61.801458
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 409.29322 59.357679
|
||||
L 409.29322 59.300246
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 423.888151 59.021928
|
||||
L 423.888151 58.964912
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 438.483081 60.876891
|
||||
L 438.483081 60.820173
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 453.078012 67.502038
|
||||
L 453.078012 67.445004
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_28">
|
||||
<path d="M 307.128704 87.199361
|
||||
|
@ -1466,19 +1466,19 @@ L 409.29322 45.754348
|
|||
L 423.888151 55.659865
|
||||
L 438.483081 81.076449
|
||||
L 453.078012 102.671126
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
<g clip-path="url(#p95a0b8d10c)">
|
||||
<use xlink:href="#md1dabf8cae" x="307.128704" y="87.199361" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="321.723635" y="59.402651" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="336.318566" y="50.110567" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="350.913496" y="50.034264" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="365.508427" y="50.206321" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="380.103358" y="47.338593" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="394.698289" y="43.799957" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="409.29322" y="45.754348" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="423.888151" y="55.659865" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="438.483081" y="81.076449" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#md1dabf8cae" x="453.078012" y="102.671126" style="fill: #1f77b4"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
<g clip-path="url(#p49fb717feb)">
|
||||
<use xlink:href="#m662d0fd78c" x="307.128704" y="87.199361" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="321.723635" y="59.402651" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="336.318566" y="50.110567" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="350.913496" y="50.034264" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="365.508427" y="50.206321" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="380.103358" y="47.338593" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="394.698289" y="43.799957" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="409.29322" y="45.754348" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="423.888151" y="55.659865" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="438.483081" y="81.076449" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="453.078012" y="102.671126" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_29">
|
||||
|
@ -1493,19 +1493,19 @@ L 409.29322 32.154233
|
|||
L 423.888151 52.513912
|
||||
L 438.483081 101.315334
|
||||
L 453.078012 137.900145
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
<g clip-path="url(#p95a0b8d10c)">
|
||||
<use xlink:href="#m07bd2318aa" x="307.128704" y="95.731671" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="321.723635" y="44.357806" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="336.318566" y="28.662501" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="350.913496" y="28.634521" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="365.508427" y="28.769186" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="380.103358" y="26.292075" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="394.698289" y="25.742005" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="409.29322" y="32.154233" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="423.888151" y="52.513912" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="438.483081" y="101.315334" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m07bd2318aa" x="453.078012" y="137.900145" style="fill: #ff7f0e"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
<g clip-path="url(#p49fb717feb)">
|
||||
<use xlink:href="#m7bd24f37f3" x="307.128704" y="95.731671" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="321.723635" y="44.357806" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="336.318566" y="28.662501" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="350.913496" y="28.634521" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="365.508427" y="28.769186" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="380.103358" y="26.292075" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="394.698289" y="25.742005" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="409.29322" y="32.154233" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="423.888151" y="52.513912" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="438.483081" y="101.315334" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="453.078012" y="137.900145" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_30">
|
||||
|
@ -1520,19 +1520,19 @@ L 409.29322 59.328963
|
|||
L 423.888151 58.99342
|
||||
L 438.483081 60.848532
|
||||
L 453.078012 67.473521
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
<g clip-path="url(#p95a0b8d10c)">
|
||||
<use xlink:href="#md069140b38" x="307.128704" y="79.141313" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="321.723635" y="74.435646" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="336.318566" y="71.53749" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="350.913496" y="71.412815" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="365.508427" y="71.227557" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="380.103358" y="68.361194" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="394.698289" y="61.830455" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="409.29322" y="59.328963" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="423.888151" y="58.99342" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="438.483081" y="60.848532" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md069140b38" x="453.078012" y="67.473521" style="fill: #2ca02c"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
<g clip-path="url(#p49fb717feb)">
|
||||
<use xlink:href="#m41e274d233" x="307.128704" y="79.141313" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="321.723635" y="74.435646" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="336.318566" y="71.53749" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="350.913496" y="71.412815" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="365.508427" y="71.227557" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="380.103358" y="68.361194" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="394.698289" y="61.830455" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="409.29322" y="59.328963" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="423.888151" y="58.99342" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="438.483081" y="60.848532" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="453.078012" y="67.473521" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_9">
|
||||
|
@ -1636,7 +1636,7 @@ L 325.931239 103.604255
|
|||
</g>
|
||||
<g id="line2d_32">
|
||||
<g>
|
||||
<use xlink:href="#md1dabf8cae" x="316.931239" y="103.604255" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m662d0fd78c" x="316.931239" y="103.604255" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_26">
|
||||
|
@ -1658,7 +1658,7 @@ L 325.931239 117.231101
|
|||
</g>
|
||||
<g id="line2d_34">
|
||||
<g>
|
||||
<use xlink:href="#m07bd2318aa" x="316.931239" y="117.231101" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m7bd24f37f3" x="316.931239" y="117.231101" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_27">
|
||||
|
@ -1683,7 +1683,7 @@ L 325.931239 130.525834
|
|||
</g>
|
||||
<g id="line2d_36">
|
||||
<g>
|
||||
<use xlink:href="#md069140b38" x="316.931239" y="130.525834" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m41e274d233" x="316.931239" y="130.525834" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_28">
|
||||
|
@ -1703,12 +1703,12 @@ L 325.931239 130.525834
|
|||
<g id="ytick_9">
|
||||
<g id="line2d_37">
|
||||
<defs>
|
||||
<path id="m57bc568af5" d="M 0 0
|
||||
<path id="m5219aad0b3" d="M 0 0
|
||||
L 3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m57bc568af5" x="215.575478" y="135.18871" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5219aad0b3" x="215.575478" y="135.18871" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_29">
|
||||
|
@ -1722,7 +1722,7 @@ L 3.5 0
|
|||
<g id="ytick_10">
|
||||
<g id="line2d_38">
|
||||
<g>
|
||||
<use xlink:href="#m57bc568af5" x="215.575478" y="116.281423" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5219aad0b3" x="215.575478" y="116.281423" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_30">
|
||||
|
@ -1736,7 +1736,7 @@ L 3.5 0
|
|||
<g id="ytick_11">
|
||||
<g id="line2d_39">
|
||||
<g>
|
||||
<use xlink:href="#m57bc568af5" x="215.575478" y="97.374137" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5219aad0b3" x="215.575478" y="97.374137" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_31">
|
||||
|
@ -1750,7 +1750,7 @@ L 3.5 0
|
|||
<g id="ytick_12">
|
||||
<g id="line2d_40">
|
||||
<g>
|
||||
<use xlink:href="#m57bc568af5" x="215.575478" y="78.46685" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5219aad0b3" x="215.575478" y="78.46685" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_32">
|
||||
|
@ -1794,7 +1794,7 @@ z
|
|||
<g id="ytick_13">
|
||||
<g id="line2d_41">
|
||||
<g>
|
||||
<use xlink:href="#m57bc568af5" x="215.575478" y="59.559563" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5219aad0b3" x="215.575478" y="59.559563" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_33">
|
||||
|
@ -1808,7 +1808,7 @@ z
|
|||
<g id="ytick_14">
|
||||
<g id="line2d_42">
|
||||
<g>
|
||||
<use xlink:href="#m57bc568af5" x="215.575478" y="40.652277" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5219aad0b3" x="215.575478" y="40.652277" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_34">
|
||||
|
@ -1822,7 +1822,7 @@ z
|
|||
<g id="ytick_15">
|
||||
<g id="line2d_43">
|
||||
<g>
|
||||
<use xlink:href="#m57bc568af5" x="215.575478" y="21.74499" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5219aad0b3" x="215.575478" y="21.74499" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_35">
|
||||
|
@ -1876,28 +1876,28 @@ z
|
|||
<g id="LineCollection_13">
|
||||
<path d="M 91.518566 118.0991
|
||||
L 91.518566 117.110687
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 106.113496 78.260457
|
||||
L 106.113496 77.08853
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 120.708427 69.990517
|
||||
L 120.708427 68.841423
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 135.303358 67.184333
|
||||
L 135.303358 66.328938
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 149.898289 71.633011
|
||||
L 149.898289 70.8562
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 164.49322 79.598703
|
||||
L 164.49322 78.876591
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 179.088151 92.762321
|
||||
L 179.088151 92.100423
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 193.683081 137.910169
|
||||
L 193.683081 137.430623
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_44">
|
||||
<path d="M 91.518566 117.604893
|
||||
|
@ -1908,9 +1908,9 @@ L 149.898289 71.244606
|
|||
L 164.49322 79.237647
|
||||
L 179.088151 92.431372
|
||||
L 193.683081 137.670396
|
||||
" clip-path="url(#p545810b6c2)" style="fill: none; stroke: #9467bd; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p54baedbb7f)" style="fill: none; stroke: #9467bd; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
<defs>
|
||||
<path id="m5be67f29cf" d="M 0 -2.8
|
||||
<path id="m5af9b69688" d="M 0 -2.8
|
||||
L -0.628639 -0.865248
|
||||
L -2.662958 -0.865248
|
||||
L -1.01716 0.330495
|
||||
|
@ -1923,15 +1923,15 @@ L 0.628639 -0.865248
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p545810b6c2)">
|
||||
<use xlink:href="#m5be67f29cf" x="91.518566" y="117.604893" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5be67f29cf" x="106.113496" y="77.674494" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5be67f29cf" x="120.708427" y="69.41597" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5be67f29cf" x="135.303358" y="66.756636" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5be67f29cf" x="149.898289" y="71.244606" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5be67f29cf" x="164.49322" y="79.237647" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5be67f29cf" x="179.088151" y="92.431372" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5be67f29cf" x="193.683081" y="137.670396" style="fill: #9467bd"/>
|
||||
<g clip-path="url(#p54baedbb7f)">
|
||||
<use xlink:href="#m5af9b69688" x="91.518566" y="117.604893" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5af9b69688" x="106.113496" y="77.674494" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5af9b69688" x="120.708427" y="69.41597" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5af9b69688" x="135.303358" y="66.756636" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5af9b69688" x="149.898289" y="71.244606" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5af9b69688" x="164.49322" y="79.237647" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5af9b69688" x="179.088151" y="92.431372" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5af9b69688" x="193.683081" y="137.670396" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_14">
|
||||
|
@ -1980,7 +1980,7 @@ L 81.131239 31.368498
|
|||
</g>
|
||||
<g id="line2d_46">
|
||||
<g>
|
||||
<use xlink:href="#m5be67f29cf" x="72.131239" y="31.368498" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5af9b69688" x="72.131239" y="31.368498" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_37">
|
||||
|
@ -1996,7 +1996,7 @@ L 81.131239 31.368498
|
|||
<g id="ytick_16">
|
||||
<g id="line2d_47">
|
||||
<g>
|
||||
<use xlink:href="#m57bc568af5" x="460.375478" y="135.18871" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5219aad0b3" x="460.375478" y="135.18871" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_38">
|
||||
|
@ -2010,7 +2010,7 @@ L 81.131239 31.368498
|
|||
<g id="ytick_17">
|
||||
<g id="line2d_48">
|
||||
<g>
|
||||
<use xlink:href="#m57bc568af5" x="460.375478" y="116.281423" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5219aad0b3" x="460.375478" y="116.281423" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_39">
|
||||
|
@ -2024,7 +2024,7 @@ L 81.131239 31.368498
|
|||
<g id="ytick_18">
|
||||
<g id="line2d_49">
|
||||
<g>
|
||||
<use xlink:href="#m57bc568af5" x="460.375478" y="97.374137" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5219aad0b3" x="460.375478" y="97.374137" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_40">
|
||||
|
@ -2038,7 +2038,7 @@ L 81.131239 31.368498
|
|||
<g id="ytick_19">
|
||||
<g id="line2d_50">
|
||||
<g>
|
||||
<use xlink:href="#m57bc568af5" x="460.375478" y="78.46685" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5219aad0b3" x="460.375478" y="78.46685" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_41">
|
||||
|
@ -2052,7 +2052,7 @@ L 81.131239 31.368498
|
|||
<g id="ytick_20">
|
||||
<g id="line2d_51">
|
||||
<g>
|
||||
<use xlink:href="#m57bc568af5" x="460.375478" y="59.559563" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5219aad0b3" x="460.375478" y="59.559563" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_42">
|
||||
|
@ -2066,7 +2066,7 @@ L 81.131239 31.368498
|
|||
<g id="ytick_21">
|
||||
<g id="line2d_52">
|
||||
<g>
|
||||
<use xlink:href="#m57bc568af5" x="460.375478" y="40.652277" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5219aad0b3" x="460.375478" y="40.652277" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_43">
|
||||
|
@ -2080,7 +2080,7 @@ L 81.131239 31.368498
|
|||
<g id="ytick_22">
|
||||
<g id="line2d_53">
|
||||
<g>
|
||||
<use xlink:href="#m57bc568af5" x="460.375478" y="21.74499" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5219aad0b3" x="460.375478" y="21.74499" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_44">
|
||||
|
@ -2101,28 +2101,28 @@ L 81.131239 31.368498
|
|||
<g id="LineCollection_15">
|
||||
<path d="M 321.723635 85.152483
|
||||
L 321.723635 84.239202
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 336.318566 27.629968
|
||||
L 336.318566 26.502042
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 350.913496 26.861546
|
||||
L 350.913496 25.727626
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 365.508427 27.061891
|
||||
L 365.508427 25.92593
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 380.103358 27.039115
|
||||
L 380.103358 26.030956
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 394.698289 39.24819
|
||||
L 394.698289 38.488636
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 409.29322 57.091197
|
||||
L 409.29322 56.437528
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 423.888151 106.848122
|
||||
L 423.888151 106.375407
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_54">
|
||||
<path d="M 321.723635 84.695842
|
||||
|
@ -2133,16 +2133,16 @@ L 380.103358 26.535035
|
|||
L 394.698289 38.868413
|
||||
L 409.29322 56.764363
|
||||
L 423.888151 106.611765
|
||||
" clip-path="url(#p95a0b8d10c)" style="fill: none; stroke: #9467bd; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
<g clip-path="url(#p95a0b8d10c)">
|
||||
<use xlink:href="#m5be67f29cf" x="321.723635" y="84.695842" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5be67f29cf" x="336.318566" y="27.066005" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5be67f29cf" x="350.913496" y="26.294586" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5be67f29cf" x="365.508427" y="26.493911" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5be67f29cf" x="380.103358" y="26.535035" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5be67f29cf" x="394.698289" y="38.868413" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5be67f29cf" x="409.29322" y="56.764363" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5be67f29cf" x="423.888151" y="106.611765" style="fill: #9467bd"/>
|
||||
" clip-path="url(#p49fb717feb)" style="fill: none; stroke: #9467bd; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
<g clip-path="url(#p49fb717feb)">
|
||||
<use xlink:href="#m5af9b69688" x="321.723635" y="84.695842" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5af9b69688" x="336.318566" y="27.066005" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5af9b69688" x="350.913496" y="26.294586" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5af9b69688" x="365.508427" y="26.493911" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5af9b69688" x="380.103358" y="26.535035" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5af9b69688" x="394.698289" y="38.868413" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5af9b69688" x="409.29322" y="56.764363" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5af9b69688" x="423.888151" y="106.611765" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_19">
|
||||
|
@ -2191,7 +2191,7 @@ L 325.931239 31.368498
|
|||
</g>
|
||||
<g id="line2d_56">
|
||||
<g>
|
||||
<use xlink:href="#m5be67f29cf" x="316.931239" y="31.368498" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m5af9b69688" x="316.931239" y="31.368498" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_46">
|
||||
|
@ -2204,10 +2204,10 @@ L 325.931239 31.368498
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p545810b6c2">
|
||||
<clipPath id="p54baedbb7f">
|
||||
<rect x="55.031239" y="20.118498" width="160.544239" height="123.400797"/>
|
||||
</clipPath>
|
||||
<clipPath id="p95a0b8d10c">
|
||||
<clipPath id="p49fb717feb">
|
||||
<rect x="299.831239" y="20.118498" width="160.544239" height="123.400797"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 79 KiB After Width: | Height: | Size: 79 KiB |
Before Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 976 KiB |
After Width: | Height: | Size: 38 KiB |
|
@ -41,12 +41,12 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m3195f48b73" d="M 0 0
|
||||
<path id="mbf49c81761" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m3195f48b73" x="39.976366" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbf49c81761" x="39.976366" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -82,7 +82,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m3195f48b73" x="114.407861" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbf49c81761" x="114.407861" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -116,7 +116,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m3195f48b73" x="188.839357" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbf49c81761" x="188.839357" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -154,7 +154,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m3195f48b73" x="263.270852" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbf49c81761" x="263.270852" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -198,7 +198,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m3195f48b73" x="337.702347" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbf49c81761" x="337.702347" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -240,7 +240,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m3195f48b73" x="412.133842" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbf49c81761" x="412.133842" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -284,7 +284,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m3195f48b73" x="486.565337" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbf49c81761" x="486.565337" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -351,12 +351,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_8">
|
||||
<defs>
|
||||
<path id="m9ccaa45386" d="M 0 0
|
||||
<path id="medf5ce8bfe" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m9ccaa45386" x="39.976366" y="90.588419" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#medf5ce8bfe" x="39.976366" y="90.588419" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -380,7 +380,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m9ccaa45386" x="39.976366" y="58.821402" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#medf5ce8bfe" x="39.976366" y="58.821402" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -395,7 +395,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m9ccaa45386" x="39.976366" y="27.054385" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#medf5ce8bfe" x="39.976366" y="27.054385" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -696,7 +696,7 @@ L 289.422458 90.5778
|
|||
L 294.339854 90.588419
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#pa7a5514160)" style="fill: none; stroke: #d3d3d3; stroke-width: 3; stroke-linecap: square"/>
|
||||
" clip-path="url(#p66b230ef14)" style="fill: none; stroke: #d3d3d3; stroke-width: 3; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_12">
|
||||
<path d="M 39.976366 11.170877
|
||||
|
@ -745,7 +745,7 @@ L 458.402069 11.268616
|
|||
L 459.743177 11.170878
|
||||
L 486.565337 11.170877
|
||||
L 486.565337 11.170877
|
||||
" clip-path="url(#pa7a5514160)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p66b230ef14)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_13">
|
||||
<path d="M 39.976366 11.170877
|
||||
|
@ -793,7 +793,7 @@ L 484.330157 11.576096
|
|||
L 485.224229 11.263122
|
||||
L 486.565337 11.170877
|
||||
L 486.565337 11.170877
|
||||
" clip-path="url(#pa7a5514160)" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p66b230ef14)" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_14">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -842,7 +842,7 @@ L 235.778137 90.574959
|
|||
L 239.801461 90.588419
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#pa7a5514160)" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p66b230ef14)" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -891,7 +891,7 @@ L 262.600298 90.576435
|
|||
L 267.070658 90.588419
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#pa7a5514160)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p66b230ef14)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -939,7 +939,7 @@ L 289.422458 90.5778
|
|||
L 294.339854 90.588419
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#pa7a5514160)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p66b230ef14)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -987,7 +987,7 @@ L 316.244619 90.579059
|
|||
L 322.056087 90.588419
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#pa7a5514160)" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p66b230ef14)" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -1037,7 +1037,7 @@ L 343.066779 90.580215
|
|||
L 349.325283 90.588419
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#pa7a5514160)" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #e377c2; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p66b230ef14)" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #e377c2; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -1087,7 +1087,7 @@ L 369.888939 90.581272
|
|||
L 377.041515 90.588419
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#pa7a5514160)" style="fill: none; stroke: #7f7f7f; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p66b230ef14)" style="fill: none; stroke: #7f7f7f; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -1136,7 +1136,7 @@ L 395.817028 90.477048
|
|||
L 397.158136 90.588389
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#pa7a5514160)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #bcbd22; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p66b230ef14)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #bcbd22; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_21">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -1185,7 +1185,7 @@ L 422.639188 90.483031
|
|||
L 423.980296 90.588409
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#pa7a5514160)" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #17becf; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p66b230ef14)" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #17becf; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_22">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -1234,7 +1234,7 @@ L 449.461349 90.488803
|
|||
L 450.802457 90.588417
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#pa7a5514160)" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p66b230ef14)" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 39.976366 94.559296
|
||||
|
@ -1923,7 +1923,7 @@ L 462.119155 68.878959
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pa7a5514160">
|
||||
<clipPath id="p66b230ef14">
|
||||
<rect x="39.976366" y="7.2" width="446.588971" height="87.359296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 55 KiB |
Before Width: | Height: | Size: 975 KiB |
After Width: | Height: | Size: 48 KiB |
|
@ -41,12 +41,12 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m7b899ee9f6" d="M 0 0
|
||||
<path id="mdfb7cbea2d" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m7b899ee9f6" x="51.401529" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdfb7cbea2d" x="51.401529" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -82,7 +82,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m7b899ee9f6" x="82.290099" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdfb7cbea2d" x="82.290099" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -116,7 +116,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m7b899ee9f6" x="113.178669" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdfb7cbea2d" x="113.178669" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -154,7 +154,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m7b899ee9f6" x="144.067239" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdfb7cbea2d" x="144.067239" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -198,7 +198,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m7b899ee9f6" x="174.955809" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdfb7cbea2d" x="174.955809" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -240,7 +240,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m7b899ee9f6" x="205.844379" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdfb7cbea2d" x="205.844379" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -284,7 +284,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m7b899ee9f6" x="236.732949" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdfb7cbea2d" x="236.732949" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -351,12 +351,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_8">
|
||||
<defs>
|
||||
<path id="m5b249f94e2" d="M 0 0
|
||||
<path id="mbebba08a89" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m5b249f94e2" x="42.134959" y="113.955691" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbebba08a89" x="42.134959" y="113.955691" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -380,7 +380,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m5b249f94e2" x="42.134959" y="93.621274" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbebba08a89" x="42.134959" y="93.621274" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -395,7 +395,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m5b249f94e2" x="42.134959" y="73.286857" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbebba08a89" x="42.134959" y="73.286857" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -410,7 +410,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m5b249f94e2" x="42.134959" y="52.952439" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbebba08a89" x="42.134959" y="52.952439" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -425,7 +425,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m5b249f94e2" x="42.134959" y="32.618022" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbebba08a89" x="42.134959" y="32.618022" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -440,7 +440,7 @@ z
|
|||
<g id="ytick_6">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m5b249f94e2" x="42.134959" y="12.283604" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbebba08a89" x="42.134959" y="12.283604" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
|
@ -618,7 +618,7 @@ L 233.393644 59.973309
|
|||
L 235.805364 40.271516
|
||||
L 236.732949 33.622191
|
||||
L 236.732949 33.622191
|
||||
" clip-path="url(#p13baa55fb2)" style="fill: none; stroke: #ff7f0e; stroke-linecap: square"/>
|
||||
" clip-path="url(#p6ae796518c)" style="fill: none; stroke: #ff7f0e; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 51.401529 113.955691
|
||||
|
@ -668,57 +668,58 @@ L 198.701977 113.878017
|
|||
L 199.629562 113.955687
|
||||
L 236.732949 113.955691
|
||||
L 236.732949 113.955691
|
||||
" clip-path="url(#p13baa55fb2)" style="fill: none; stroke-dasharray: 3.7,1.6; stroke-dashoffset: 0; stroke: #ff7f0e"/>
|
||||
" clip-path="url(#p6ae796518c)" style="fill: none; stroke-dasharray: 3.7,1.6; stroke-dashoffset: 0; stroke: #ff7f0e"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 51.401529 12.283604
|
||||
L 63.46013 12.355302
|
||||
L 64.016681 12.562285
|
||||
L 64.573232 12.975603
|
||||
L 65.129783 13.648853
|
||||
L 65.686334 14.623926
|
||||
L 66.428401 16.445447
|
||||
L 67.170469 18.902484
|
||||
L 68.098054 22.88892
|
||||
L 69.025638 27.86463
|
||||
L 70.13874 35.023062
|
||||
L 71.622876 46.194366
|
||||
L 74.034596 66.488097
|
||||
L 76.446316 86.163224
|
||||
L 77.930451 96.401561
|
||||
L 79.043553 102.656391
|
||||
L 79.971138 106.79637
|
||||
L 80.898722 109.920759
|
||||
L 81.64079 111.705278
|
||||
L 82.382858 112.903178
|
||||
L 82.939409 113.463258
|
||||
L 83.495959 113.784099
|
||||
L 84.238027 113.94292
|
||||
L 86.649747 113.955691
|
||||
L 200.742663 113.848741
|
||||
L 201.299214 113.596504
|
||||
L 201.855765 113.123585
|
||||
L 202.412316 112.379341
|
||||
L 203.154384 110.898921
|
||||
L 203.896451 108.804704
|
||||
L 204.638519 106.064679
|
||||
L 205.566104 101.727971
|
||||
L 206.679205 95.255797
|
||||
L 207.977824 86.191105
|
||||
L 209.647476 72.81549
|
||||
L 213.914366 37.689208
|
||||
L 215.212984 28.994687
|
||||
L 216.326086 22.906889
|
||||
L 217.253671 18.916404
|
||||
L 218.181255 15.941613
|
||||
L 218.923323 14.270097
|
||||
L 219.665391 13.173007
|
||||
L 220.221942 12.676725
|
||||
L 220.964009 12.356136
|
||||
L 221.891594 12.283605
|
||||
L 236.732949 12.283604
|
||||
L 236.732949 12.283604
|
||||
" clip-path="url(#p13baa55fb2)" style="fill: none; stroke-dasharray: 1,1.65; stroke-dashoffset: 0; stroke: #2ca02c"/>
|
||||
<path d="M 51.401529 33.622191
|
||||
L 52.700148 25.658425
|
||||
L 53.81325 20.297795
|
||||
L 54.740834 16.941867
|
||||
L 55.482902 14.980199
|
||||
L 56.22497 13.62175
|
||||
L 56.967038 12.796447
|
||||
L 57.523588 12.46565
|
||||
L 58.265656 12.298348
|
||||
L 60.491859 12.283604
|
||||
L 85.722163 12.360406
|
||||
L 86.278714 12.57446
|
||||
L 86.835264 12.997226
|
||||
L 87.391815 13.68182
|
||||
L 87.948366 14.66968
|
||||
L 88.690434 16.509764
|
||||
L 89.432501 18.986248
|
||||
L 90.360086 22.996975
|
||||
L 91.287671 27.995627
|
||||
L 92.400772 35.178118
|
||||
L 93.884908 46.372958
|
||||
L 96.296628 66.678418
|
||||
L 98.708348 86.330357
|
||||
L 100.192484 96.539578
|
||||
L 101.305585 102.767485
|
||||
L 102.23317 106.883271
|
||||
L 103.160755 109.983356
|
||||
L 103.902823 111.749435
|
||||
L 104.64489 112.930798
|
||||
L 105.201441 113.480335
|
||||
L 105.757992 113.792744
|
||||
L 106.50006 113.944464
|
||||
L 109.097297 113.955691
|
||||
L 222.819179 113.889663
|
||||
L 223.37573 113.690796
|
||||
L 223.93228 113.288393
|
||||
L 224.488831 112.628293
|
||||
L 225.045382 111.668075
|
||||
L 225.78745 109.868159
|
||||
L 226.529518 107.433794
|
||||
L 227.457102 103.475717
|
||||
L 228.384687 98.526832
|
||||
L 229.497789 91.396584
|
||||
L 230.981924 80.252949
|
||||
L 233.393644 59.973309
|
||||
L 235.805364 40.271516
|
||||
L 236.732949 33.622191
|
||||
L 236.732949 33.622191
|
||||
" clip-path="url(#p6ae796518c)" style="fill: none; stroke-dasharray: 1,1.65; stroke-dashoffset: 0; stroke: #2ca02c"/>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 51.401529 113.955691
|
||||
|
@ -770,7 +771,7 @@ L 143.603447 113.946756
|
|||
L 146.757235 113.955691
|
||||
L 236.732949 113.955691
|
||||
L 236.732949 113.955691
|
||||
" clip-path="url(#p13baa55fb2)" style="fill: none; stroke-dasharray: 3.7,1.6; stroke-dashoffset: 0; stroke: #2ca02c"/>
|
||||
" clip-path="url(#p6ae796518c)" style="fill: none; stroke-dasharray: 3.7,1.6; stroke-dashoffset: 0; stroke: #2ca02c"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 51.401529 113.955691
|
||||
|
@ -822,7 +823,7 @@ L 165.679962 113.933856
|
|||
L 167.349615 113.955691
|
||||
L 236.732949 113.955691
|
||||
L 236.732949 113.955691
|
||||
" clip-path="url(#p13baa55fb2)" style="fill: none; stroke-dasharray: 3.7,1.6; stroke-dashoffset: 0; stroke: #d3d3d3"/>
|
||||
" clip-path="url(#p6ae796518c)" style="fill: none; stroke-dasharray: 3.7,1.6; stroke-dashoffset: 0; stroke: #d3d3d3"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 42.134959 119.039296
|
||||
|
@ -1207,7 +1208,7 @@ z
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p13baa55fb2">
|
||||
<clipPath id="p6ae796518c">
|
||||
<rect x="42.134959" y="7.2" width="203.864561" height="111.839296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 55 KiB |
|
@ -41,12 +41,12 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="mca15b3dfaf" d="M 0 0
|
||||
<path id="m52108fd869" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mca15b3dfaf" x="41.443065" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m52108fd869" x="41.443065" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -102,7 +102,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#mca15b3dfaf" x="77.971003" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m52108fd869" x="77.971003" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -147,7 +147,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#mca15b3dfaf" x="114.498942" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m52108fd869" x="114.498942" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -162,7 +162,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#mca15b3dfaf" x="151.02688" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m52108fd869" x="151.02688" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -177,7 +177,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#mca15b3dfaf" x="187.554818" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m52108fd869" x="187.554818" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -216,7 +216,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#mca15b3dfaf" x="224.082757" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m52108fd869" x="224.082757" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -259,12 +259,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_7">
|
||||
<defs>
|
||||
<path id="ma79b6055e9" d="M 0 0
|
||||
<path id="md5cafe0011" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#ma79b6055e9" x="41.443065" y="127.481732" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#md5cafe0011" x="41.443065" y="127.481732" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
|
@ -288,7 +288,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#ma79b6055e9" x="41.443065" y="95.406603" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#md5cafe0011" x="41.443065" y="95.406603" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -303,7 +303,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#ma79b6055e9" x="41.443065" y="63.331475" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#md5cafe0011" x="41.443065" y="63.331475" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -346,7 +346,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#ma79b6055e9" x="41.443065" y="31.256346" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#md5cafe0011" x="41.443065" y="31.256346" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -670,7 +670,7 @@ L 228.319998 37.675787
|
|||
L 234.018356 37.597299
|
||||
L 240.593385 37.594223
|
||||
L 240.593385 37.594223
|
||||
" clip-path="url(#pbd8a6846a7)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p39da5ac085)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_12">
|
||||
<path d="M 41.150841 127.48173
|
||||
|
@ -729,7 +729,7 @@ L 230.950009 21.718268
|
|||
L 234.895027 21.721883
|
||||
L 240.593385 21.692868
|
||||
L 240.593385 21.692868
|
||||
" clip-path="url(#pbd8a6846a7)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p39da5ac085)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_13">
|
||||
<path d="M 41.150841 127.481732
|
||||
|
@ -790,7 +790,7 @@ L 236.648368 127.267264
|
|||
L 238.401709 127.453498
|
||||
L 240.593385 127.481732
|
||||
L 240.593385 127.481732
|
||||
" clip-path="url(#pbd8a6846a7)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p39da5ac085)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_14">
|
||||
<path d="M 41.150841 127.481732
|
||||
|
@ -838,7 +838,7 @@ L 238.840044 127.388864
|
|||
L 240.15505 127.481732
|
||||
L 240.593385 127.481732
|
||||
L 240.593385 127.481732
|
||||
" clip-path="url(#pbd8a6846a7)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p39da5ac085)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 41.443065 143.519296
|
||||
|
@ -1255,7 +1255,7 @@ z
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pbd8a6846a7">
|
||||
<clipPath id="p39da5ac085">
|
||||
<rect x="41.443065" y="7.2" width="204.556455" height="136.319296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |
|
@ -41,12 +41,12 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m0d5fca7944" d="M 0 0
|
||||
<path id="m3966fee25d" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m0d5fca7944" x="51.388503" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3966fee25d" x="51.388503" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -104,7 +104,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m0d5fca7944" x="78.282752" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3966fee25d" x="78.282752" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -149,7 +149,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m0d5fca7944" x="105.177001" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3966fee25d" x="105.177001" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -209,7 +209,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m0d5fca7944" x="132.07125" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3966fee25d" x="132.07125" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -224,7 +224,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m0d5fca7944" x="158.965499" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3966fee25d" x="158.965499" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -267,7 +267,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m0d5fca7944" x="185.859748" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3966fee25d" x="185.859748" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -282,7 +282,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m0d5fca7944" x="212.753997" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3966fee25d" x="212.753997" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -297,7 +297,7 @@ z
|
|||
<g id="xtick_8">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m0d5fca7944" x="239.648246" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3966fee25d" x="239.648246" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
|
@ -370,12 +370,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_9">
|
||||
<defs>
|
||||
<path id="m6c373c6a2b" d="M 0 0
|
||||
<path id="mf9a2f08908" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m6c373c6a2b" x="37.941379" y="134.615836" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf9a2f08908" x="37.941379" y="134.615836" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -410,7 +410,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m6c373c6a2b" x="37.941379" y="116.808917" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf9a2f08908" x="37.941379" y="116.808917" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -426,7 +426,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m6c373c6a2b" x="37.941379" y="99.001998" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf9a2f08908" x="37.941379" y="99.001998" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -442,7 +442,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m6c373c6a2b" x="37.941379" y="81.195078" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf9a2f08908" x="37.941379" y="81.195078" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -458,7 +458,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m6c373c6a2b" x="37.941379" y="63.388159" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf9a2f08908" x="37.941379" y="63.388159" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
|
@ -474,7 +474,7 @@ z
|
|||
<g id="ytick_6">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#m6c373c6a2b" x="37.941379" y="45.58124" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf9a2f08908" x="37.941379" y="45.58124" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
|
@ -490,7 +490,7 @@ z
|
|||
<g id="ytick_7">
|
||||
<g id="line2d_15">
|
||||
<g>
|
||||
<use xlink:href="#m6c373c6a2b" x="37.941379" y="27.77432" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf9a2f08908" x="37.941379" y="27.77432" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
|
@ -536,7 +536,7 @@ z
|
|||
<g id="ytick_8">
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#m6c373c6a2b" x="37.941379" y="9.967401" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf9a2f08908" x="37.941379" y="9.967401" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
|
@ -619,7 +619,7 @@ L 198.768987 116.746022
|
|||
L 201.996297 116.808917
|
||||
L 239.917188 116.808917
|
||||
L 239.917188 116.808917
|
||||
" clip-path="url(#pdc46239f67)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pb6106c8393)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 37.403494 88.152006
|
||||
|
@ -673,7 +673,7 @@ L 190.700713 116.719923
|
|||
L 197.155332 116.805813
|
||||
L 239.917188 116.808917
|
||||
L 239.917188 116.808917
|
||||
" clip-path="url(#pdc46239f67)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pb6106c8393)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
<path d="M 37.403494 116.808917
|
||||
|
@ -719,7 +719,7 @@ L 201.18947 116.877323
|
|||
L 202.803125 116.808917
|
||||
L 239.917188 116.808917
|
||||
L 239.917188 116.808917
|
||||
" clip-path="url(#pdc46239f67)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb6106c8393)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
<path d="M 37.403494 116.808917
|
||||
|
@ -774,7 +774,7 @@ L 191.50754 116.909106
|
|||
L 204.41678 116.808917
|
||||
L 239.917188 116.808917
|
||||
L 239.917188 116.808917
|
||||
" clip-path="url(#pdc46239f67)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb6106c8393)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 37.941379 143.519296
|
||||
|
@ -1191,7 +1191,7 @@ z
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pdc46239f67">
|
||||
<clipPath id="pb6106c8393">
|
||||
<rect x="37.941379" y="9.967401" width="201.706867" height="133.551895"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
|
@ -41,12 +41,12 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m6bd214c102" d="M 0 0
|
||||
<path id="m62dc7465af" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m6bd214c102" x="39.976366" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m62dc7465af" x="39.976366" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -82,7 +82,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m6bd214c102" x="73.607861" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m62dc7465af" x="73.607861" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -116,7 +116,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m6bd214c102" x="107.239357" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m62dc7465af" x="107.239357" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -154,7 +154,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m6bd214c102" x="140.870852" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m62dc7465af" x="140.870852" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -198,7 +198,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m6bd214c102" x="174.502347" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m62dc7465af" x="174.502347" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -240,7 +240,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m6bd214c102" x="208.133842" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m62dc7465af" x="208.133842" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -284,7 +284,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m6bd214c102" x="241.765337" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m62dc7465af" x="241.765337" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -351,12 +351,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_8">
|
||||
<defs>
|
||||
<path id="m259b041a04" d="M 0 0
|
||||
<path id="m1997c9a548" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m259b041a04" x="39.976366" y="193.679328" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1997c9a548" x="39.976366" y="193.679328" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -380,7 +380,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m259b041a04" x="39.976366" y="158.159456" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1997c9a548" x="39.976366" y="158.159456" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -395,7 +395,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m259b041a04" x="39.976366" y="122.639584" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1997c9a548" x="39.976366" y="122.639584" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -410,7 +410,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m259b041a04" x="39.976366" y="87.119712" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1997c9a548" x="39.976366" y="87.119712" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -425,7 +425,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m259b041a04" x="39.976366" y="51.59984" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1997c9a548" x="39.976366" y="51.59984" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -440,7 +440,7 @@ z
|
|||
<g id="ytick_6">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m259b041a04" x="39.976366" y="16.079968" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1997c9a548" x="39.976366" y="16.079968" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
|
@ -744,7 +744,7 @@ L 139.961892 193.5906
|
|||
L 140.769856 193.6792
|
||||
L 241.765337 193.679328
|
||||
L 241.765337 193.679328
|
||||
" clip-path="url(#p25f4a48e26)" style="fill: none; stroke: #d3d3d3; stroke-width: 3; stroke-linecap: square"/>
|
||||
" clip-path="url(#pc5bbf785db)" style="fill: none; stroke: #d3d3d3; stroke-width: 3; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 39.976366 193.679328
|
||||
|
@ -796,7 +796,7 @@ L 204.800991 193.647483
|
|||
L 206.012937 193.679328
|
||||
L 241.765337 193.679328
|
||||
L 241.765337 193.679328
|
||||
" clip-path="url(#p25f4a48e26)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pc5bbf785db)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 39.976366 193.679328
|
||||
|
@ -850,7 +850,7 @@ L 217.12244 193.669764
|
|||
L 219.950313 193.679328
|
||||
L 241.765337 193.679328
|
||||
L 241.765337 193.679328
|
||||
" clip-path="url(#p25f4a48e26)" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pc5bbf785db)" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 39.976366 193.679328
|
||||
|
@ -903,7 +903,7 @@ L 228.635925 193.554088
|
|||
L 229.443888 193.678116
|
||||
L 241.765337 193.679328
|
||||
L 241.765337 193.679328
|
||||
" clip-path="url(#p25f4a48e26)" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pc5bbf785db)" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 39.976366 193.679328
|
||||
|
@ -955,7 +955,7 @@ L 240.3514 193.355988
|
|||
L 240.957373 193.616611
|
||||
L 241.765337 193.679328
|
||||
L 241.765337 193.679328
|
||||
" clip-path="url(#p25f4a48e26)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pc5bbf785db)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
<path d="M 39.976366 104.879648
|
||||
|
@ -1009,7 +1009,7 @@ L 238.331491 60.128803
|
|||
L 239.947418 80.252946
|
||||
L 241.765337 104.879648
|
||||
L 241.765337 104.879648
|
||||
" clip-path="url(#p25f4a48e26)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pc5bbf785db)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
<path d="M 39.976366 16.079968
|
||||
|
@ -1062,7 +1062,7 @@ L 213.082621 16.089802
|
|||
L 215.910494 16.079968
|
||||
L 241.765337 16.079968
|
||||
L 241.765337 16.079968
|
||||
" clip-path="url(#p25f4a48e26)" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pc5bbf785db)" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_21">
|
||||
<path d="M 39.976366 16.079968
|
||||
|
@ -1114,7 +1114,7 @@ L 224.596105 16.206666
|
|||
L 225.404069 16.081249
|
||||
L 241.765337 16.079968
|
||||
L 241.765337 16.079968
|
||||
" clip-path="url(#p25f4a48e26)" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #e377c2; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pc5bbf785db)" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #e377c2; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_22">
|
||||
<path d="M 39.976366 16.079968
|
||||
|
@ -1166,7 +1166,7 @@ L 236.917554 16.143614
|
|||
L 237.725518 16.079968
|
||||
L 241.765337 16.079968
|
||||
L 241.765337 16.079968
|
||||
" clip-path="url(#p25f4a48e26)" style="fill: none; stroke: #7f7f7f; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pc5bbf785db)" style="fill: none; stroke: #7f7f7f; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_23">
|
||||
<path d="M 39.976366 53.353908
|
||||
|
@ -1218,7 +1218,114 @@ L 234.291672 149.67746
|
|||
L 235.907599 129.559423
|
||||
L 241.765337 53.353908
|
||||
L 241.765337 53.353908
|
||||
" clip-path="url(#p25f4a48e26)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #bcbd22; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pc5bbf785db)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #bcbd22; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_24">
|
||||
<path d="M 39.976366 187.375647
|
||||
L 40.78433 183.388221
|
||||
L 41.592294 178.265829
|
||||
L 42.602249 170.281043
|
||||
L 43.814194 158.529578
|
||||
L 45.228131 142.277848
|
||||
L 47.04605 118.59461
|
||||
L 51.28786 62.405639
|
||||
L 52.701797 46.904485
|
||||
L 53.913743 35.947349
|
||||
L 54.923697 28.687538
|
||||
L 55.731661 24.15738
|
||||
L 56.539625 20.747198
|
||||
L 57.347589 18.389297
|
||||
L 57.953562 17.239513
|
||||
L 58.559535 16.539308
|
||||
L 59.165508 16.193934
|
||||
L 59.973471 16.080711
|
||||
L 88.656188 16.081903
|
||||
L 89.464152 16.218732
|
||||
L 90.070125 16.598883
|
||||
L 90.676098 17.345673
|
||||
L 91.282071 18.551463
|
||||
L 91.888043 20.288243
|
||||
L 92.696007 23.518713
|
||||
L 93.503971 27.861596
|
||||
L 94.311935 33.342226
|
||||
L 95.32189 41.757731
|
||||
L 96.533836 53.970591
|
||||
L 97.947772 70.64358
|
||||
L 99.967682 97.389814
|
||||
L 103.401528 143.120234
|
||||
L 104.815465 159.25387
|
||||
L 106.027411 170.878156
|
||||
L 107.037366 178.745503
|
||||
L 108.04732 184.849435
|
||||
L 108.855284 188.463279
|
||||
L 109.663248 191.008284
|
||||
L 110.269221 192.281144
|
||||
L 110.875194 193.084256
|
||||
L 111.481167 193.507191
|
||||
L 112.08714 193.660981
|
||||
L 113.905058 193.679328
|
||||
L 238.533482 193.617531
|
||||
L 239.139455 193.358668
|
||||
L 239.745428 192.778334
|
||||
L 240.3514 191.775238
|
||||
L 240.957373 190.268987
|
||||
L 241.563346 188.198835
|
||||
L 241.765337 187.375647
|
||||
L 241.765337 187.375647
|
||||
" clip-path="url(#pc5bbf785db)" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #17becf; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_25">
|
||||
<path d="M 39.976366 193.679328
|
||||
L 48.863969 193.614743
|
||||
L 49.469941 193.350585
|
||||
L 50.075914 192.762717
|
||||
L 50.681887 191.750278
|
||||
L 51.28786 190.233281
|
||||
L 51.893833 188.15136
|
||||
L 52.701797 184.426588
|
||||
L 53.509761 179.571987
|
||||
L 54.519715 171.912986
|
||||
L 55.52967 162.571757
|
||||
L 56.741616 149.395365
|
||||
L 58.357544 129.240821
|
||||
L 64.215282 53.09093
|
||||
L 65.427227 41.022802
|
||||
L 66.437182 32.743214
|
||||
L 67.447137 26.212444
|
||||
L 68.255101 22.264294
|
||||
L 69.063065 19.407873
|
||||
L 69.669038 17.926602
|
||||
L 70.27501 16.94518
|
||||
L 70.880983 16.382269
|
||||
L 71.486956 16.13557
|
||||
L 72.496911 16.079968
|
||||
L 101.381619 16.157582
|
||||
L 101.987592 16.445254
|
||||
L 102.593564 17.066234
|
||||
L 103.199537 18.119526
|
||||
L 103.80551 19.683365
|
||||
L 104.411483 21.816478
|
||||
L 105.219447 25.613638
|
||||
L 106.027411 30.542314
|
||||
L 107.037366 38.291763
|
||||
L 108.249311 49.787787
|
||||
L 109.663248 65.801498
|
||||
L 111.481167 89.305264
|
||||
L 115.924968 148.117423
|
||||
L 117.338905 163.497315
|
||||
L 118.55085 174.328995
|
||||
L 119.560805 181.476095
|
||||
L 120.368769 185.915383
|
||||
L 121.176733 189.238189
|
||||
L 121.984697 191.516459
|
||||
L 122.59067 192.614401
|
||||
L 123.196643 193.271871
|
||||
L 123.802615 193.58588
|
||||
L 124.610579 193.679128
|
||||
L 237.119545 193.679328
|
||||
L 241.765337 193.679328
|
||||
L 241.765337 193.679328
|
||||
" clip-path="url(#pc5bbf785db)" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 39.976366 202.559296
|
||||
|
@ -1376,7 +1483,7 @@ z
|
|||
<use xlink:href="#CMR17-65" transform="translate(343.383394 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_24">
|
||||
<g id="line2d_26">
|
||||
<path d="M 48.076366 110.206298
|
||||
L 57.076366 110.206298
|
||||
L 66.076366 110.206298
|
||||
|
@ -1509,21 +1616,21 @@ z
|
|||
</g>
|
||||
<g id="legend_2">
|
||||
<g id="patch_8">
|
||||
<path d="M 99.062796 133.125993
|
||||
L 182.678907 133.125993
|
||||
Q 183.928107 133.125993 183.928107 131.876793
|
||||
L 183.928107 77.882503
|
||||
Q 183.928107 76.633303 182.678907 76.633303
|
||||
L 99.062796 76.633303
|
||||
Q 97.813596 76.633303 97.813596 77.882503
|
||||
L 97.813596 131.876793
|
||||
Q 97.813596 133.125993 99.062796 133.125993
|
||||
<path d="M 99.062796 137.47857
|
||||
L 182.678907 137.47857
|
||||
Q 183.928107 137.47857 183.928107 136.22937
|
||||
L 183.928107 73.529925
|
||||
Q 183.928107 72.280725 182.678907 72.280725
|
||||
L 99.062796 72.280725
|
||||
Q 97.813596 72.280725 97.813596 73.529925
|
||||
L 97.813596 136.22937
|
||||
Q 97.813596 137.47857 99.062796 137.47857
|
||||
z
|
||||
" style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-width: 0.24; stroke-linejoin: miter"/>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
<!-- Shift of $L_h$ -->
|
||||
<g transform="translate(119.183571 85.358353) scale(0.09 -0.09)">
|
||||
<g transform="translate(119.183571 81.005776) scale(0.09 -0.09)">
|
||||
<defs>
|
||||
<path id="CMR17-53" d="M 2803 4290
|
||||
C 2803 4404 2797 4411 2758 4411
|
||||
|
@ -1680,15 +1787,15 @@ z
|
|||
<use xlink:href="#CMMI12-68" transform="translate(389.102876 -14.943915) scale(0.697382)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_25">
|
||||
<path d="M 100.311996 92.410915
|
||||
L 106.557996 92.410915
|
||||
L 112.803996 92.410915
|
||||
<g id="line2d_27">
|
||||
<path d="M 100.311996 88.058338
|
||||
L 106.557996 88.058338
|
||||
L 112.803996 88.058338
|
||||
" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="text_19">
|
||||
<!-- $-18\%$ -->
|
||||
<g transform="translate(117.800796 94.597015) scale(0.06246 -0.06246)">
|
||||
<g transform="translate(117.800796 90.244438) scale(0.06246 -0.06246)">
|
||||
<defs>
|
||||
<path id="CMR17-38" d="M 1741 2264
|
||||
C 2144 2467 2554 2773 2554 3263
|
||||
|
@ -1764,122 +1871,150 @@ z
|
|||
<use xlink:href="#CMR17-25" transform="translate(168.868422 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_26">
|
||||
<path d="M 100.311996 101.116071
|
||||
L 106.557996 101.116071
|
||||
L 112.803996 101.116071
|
||||
<g id="line2d_28">
|
||||
<path d="M 100.311996 96.763493
|
||||
L 106.557996 96.763493
|
||||
L 112.803996 96.763493
|
||||
" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="text_20">
|
||||
<!-- $-12\%$ -->
|
||||
<g transform="translate(117.800796 103.302171) scale(0.06246 -0.06246)">
|
||||
<g transform="translate(117.800796 98.949593) scale(0.06246 -0.06246)">
|
||||
<use xlink:href="#CMSY10-0" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-31" transform="translate(77.487468 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(123.177945 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-25" transform="translate(168.868422 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_27">
|
||||
<path d="M 100.311996 109.821226
|
||||
L 106.557996 109.821226
|
||||
L 112.803996 109.821226
|
||||
<g id="line2d_29">
|
||||
<path d="M 100.311996 105.468648
|
||||
L 106.557996 105.468648
|
||||
L 112.803996 105.468648
|
||||
" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="text_21">
|
||||
<!-- $-6\%$ -->
|
||||
<g transform="translate(117.800796 112.007326) scale(0.06246 -0.06246)">
|
||||
<g transform="translate(117.800796 107.654748) scale(0.06246 -0.06246)">
|
||||
<use xlink:href="#CMSY10-0" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-36" transform="translate(77.487468 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-25" transform="translate(123.177945 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_28">
|
||||
<path d="M 100.311996 118.526382
|
||||
L 106.557996 118.526382
|
||||
L 112.803996 118.526382
|
||||
<g id="line2d_30">
|
||||
<path d="M 100.311996 114.173804
|
||||
L 106.557996 114.173804
|
||||
L 112.803996 114.173804
|
||||
" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="text_22">
|
||||
<!-- $0\%$ -->
|
||||
<g transform="translate(117.800796 120.712482) scale(0.06246 -0.06246)">
|
||||
<g transform="translate(117.800796 116.359904) scale(0.06246 -0.06246)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-25" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_29">
|
||||
<path d="M 100.311996 127.231537
|
||||
L 106.557996 127.231537
|
||||
L 112.803996 127.231537
|
||||
<g id="line2d_31">
|
||||
<path d="M 100.311996 122.878959
|
||||
L 106.557996 122.878959
|
||||
L 112.803996 122.878959
|
||||
" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="text_23">
|
||||
<!-- $6\%$ -->
|
||||
<g transform="translate(117.800796 129.417637) scale(0.06246 -0.06246)">
|
||||
<g transform="translate(117.800796 125.065059) scale(0.06246 -0.06246)">
|
||||
<use xlink:href="#CMR17-36" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-25" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_30">
|
||||
<path d="M 150.112925 92.410915
|
||||
L 156.358925 92.410915
|
||||
L 162.604925 92.410915
|
||||
<g id="line2d_32">
|
||||
<path d="M 100.311996 131.584115
|
||||
L 106.557996 131.584115
|
||||
L 112.803996 131.584115
|
||||
" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="text_24">
|
||||
<!-- $12\%$ -->
|
||||
<g transform="translate(167.601725 94.597015) scale(0.06246 -0.06246)">
|
||||
<g transform="translate(117.800796 133.770215) scale(0.06246 -0.06246)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-25" transform="translate(91.380954 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_31">
|
||||
<path d="M 150.112925 101.116071
|
||||
L 156.358925 101.116071
|
||||
L 162.604925 101.116071
|
||||
<g id="line2d_33">
|
||||
<path d="M 150.112925 88.058338
|
||||
L 156.358925 88.058338
|
||||
L 162.604925 88.058338
|
||||
" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #e377c2; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="text_25">
|
||||
<!-- $18\%$ -->
|
||||
<g transform="translate(167.601725 103.302171) scale(0.06246 -0.06246)">
|
||||
<g transform="translate(167.601725 90.244438) scale(0.06246 -0.06246)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-38" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-25" transform="translate(91.380954 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_32">
|
||||
<path d="M 150.112925 109.821226
|
||||
L 156.358925 109.821226
|
||||
L 162.604925 109.821226
|
||||
<g id="line2d_34">
|
||||
<path d="M 150.112925 96.763493
|
||||
L 156.358925 96.763493
|
||||
L 162.604925 96.763493
|
||||
" style="fill: none; stroke: #7f7f7f; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="text_26">
|
||||
<!-- $24\%$ -->
|
||||
<g transform="translate(167.601725 112.007326) scale(0.06246 -0.06246)">
|
||||
<g transform="translate(167.601725 98.949593) scale(0.06246 -0.06246)">
|
||||
<use xlink:href="#CMR17-32" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-25" transform="translate(91.380954 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_33">
|
||||
<path d="M 150.112925 118.526382
|
||||
L 156.358925 118.526382
|
||||
L 162.604925 118.526382
|
||||
<g id="line2d_35">
|
||||
<path d="M 150.112925 105.468648
|
||||
L 156.358925 105.468648
|
||||
L 162.604925 105.468648
|
||||
" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #bcbd22; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="text_27">
|
||||
<!-- $30\%$ -->
|
||||
<g transform="translate(167.601725 120.712482) scale(0.06246 -0.06246)">
|
||||
<g transform="translate(167.601725 107.654748) scale(0.06246 -0.06246)">
|
||||
<use xlink:href="#CMR17-33" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-25" transform="translate(91.380954 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_36">
|
||||
<path d="M 150.112925 114.173804
|
||||
L 156.358925 114.173804
|
||||
L 162.604925 114.173804
|
||||
" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #17becf; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="text_28">
|
||||
<!-- $36\%$ -->
|
||||
<g transform="translate(167.601725 116.359904) scale(0.06246 -0.06246)">
|
||||
<use xlink:href="#CMR17-33" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-36" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-25" transform="translate(91.380954 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_37">
|
||||
<path d="M 150.112925 122.878959
|
||||
L 156.358925 122.878959
|
||||
L 162.604925 122.878959
|
||||
" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="text_29">
|
||||
<!-- $42\%$ -->
|
||||
<g transform="translate(167.601725 125.065059) scale(0.06246 -0.06246)">
|
||||
<use xlink:href="#CMR17-34" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-25" transform="translate(91.380954 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p25f4a48e26">
|
||||
<clipPath id="pc5bbf785db">
|
||||
<rect x="39.976366" y="7.2" width="201.788971" height="195.359296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 58 KiB |
|
@ -0,0 +1,736 @@
|
|||
<?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="253.19952pt" height="238.79952pt" viewBox="0 0 253.19952 238.79952" 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>1980-01-01T00:00:00+00:00</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 238.79952
|
||||
L 253.19952 238.79952
|
||||
L 253.19952 0
|
||||
L 0 0
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="axes_1">
|
||||
<g id="patch_2">
|
||||
<path d="M 27.12069 215.414973
|
||||
L 77.389175 215.414973
|
||||
L 77.389175 9.967401
|
||||
L 27.12069 9.967401
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m7c54beef53" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m7c54beef53" x="27.12069" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
<!-- $\mathdefault{0.0}$ -->
|
||||
<g transform="translate(21.710345 230.049774) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-30" d="M 2688 2025
|
||||
C 2688 2416 2682 3080 2413 3591
|
||||
C 2176 4039 1798 4198 1466 4198
|
||||
C 1158 4198 768 4058 525 3597
|
||||
C 269 3118 243 2524 243 2025
|
||||
C 243 1661 250 1106 448 619
|
||||
C 723 -39 1216 -128 1466 -128
|
||||
C 1760 -128 2208 -7 2470 600
|
||||
C 2662 1042 2688 1559 2688 2025
|
||||
z
|
||||
M 1466 -26
|
||||
C 1056 -26 813 325 723 812
|
||||
C 653 1188 653 1738 653 2096
|
||||
C 653 2588 653 2997 736 3387
|
||||
C 858 3929 1216 4096 1466 4096
|
||||
C 1728 4096 2067 3923 2189 3400
|
||||
C 2272 3036 2278 2607 2278 2096
|
||||
C 2278 1680 2278 1169 2202 792
|
||||
C 2067 95 1690 -26 1466 -26
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMMI12-3a" d="M 1178 307
|
||||
C 1178 492 1024 619 870 619
|
||||
C 685 619 557 466 557 313
|
||||
C 557 128 710 0 864 0
|
||||
C 1050 0 1178 153 1178 307
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m7c54beef53" x="52.254932" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
<!-- $\mathdefault{0.5}$ -->
|
||||
<g transform="translate(46.844588 230.049774) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-35" d="M 730 3692
|
||||
C 794 3666 1056 3584 1325 3584
|
||||
C 1920 3584 2246 3911 2432 4100
|
||||
C 2432 4157 2432 4192 2394 4192
|
||||
C 2387 4192 2374 4192 2323 4163
|
||||
C 2099 4058 1837 3973 1517 3973
|
||||
C 1325 3973 1037 3999 723 4139
|
||||
C 653 4171 640 4171 634 4171
|
||||
C 602 4171 595 4164 595 4037
|
||||
L 595 2203
|
||||
C 595 2089 595 2057 659 2057
|
||||
C 691 2057 704 2070 736 2114
|
||||
C 941 2401 1222 2522 1542 2522
|
||||
C 1766 2522 2246 2382 2246 1289
|
||||
C 2246 1085 2246 715 2054 421
|
||||
C 1894 159 1645 25 1370 25
|
||||
C 947 25 518 320 403 814
|
||||
C 429 807 480 795 506 795
|
||||
C 589 795 749 840 749 1038
|
||||
C 749 1210 627 1280 506 1280
|
||||
C 358 1280 262 1190 262 1011
|
||||
C 262 454 704 -128 1382 -128
|
||||
C 2042 -128 2669 440 2669 1264
|
||||
C 2669 2030 2170 2624 1549 2624
|
||||
C 1222 2624 947 2503 730 2274
|
||||
L 730 3692
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m7c54beef53" x="77.389175" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
<!-- $\mathdefault{1.0}$ -->
|
||||
<g transform="translate(71.97883 230.049774) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-31" d="M 1702 4058
|
||||
C 1702 4192 1696 4192 1606 4192
|
||||
C 1357 3916 979 3827 621 3827
|
||||
C 602 3827 570 3827 563 3808
|
||||
C 557 3795 557 3782 557 3648
|
||||
C 755 3648 1088 3686 1344 3839
|
||||
L 1344 461
|
||||
C 1344 236 1331 160 781 160
|
||||
L 589 160
|
||||
L 589 0
|
||||
C 896 0 1216 0 1523 0
|
||||
C 1830 0 2150 0 2458 0
|
||||
L 2458 160
|
||||
L 2266 160
|
||||
C 1715 160 1702 230 1702 458
|
||||
L 1702 4058
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_2">
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_4">
|
||||
<defs>
|
||||
<path id="mebed3416e2" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mebed3416e2" x="27.12069" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
<!-- $\mathdefault{0.0}$ -->
|
||||
<g transform="translate(7.2 218.182373) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#mebed3416e2" x="27.12069" y="174.325458" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
<!-- $\mathdefault{0.2}$ -->
|
||||
<g transform="translate(7.2 177.092859) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-32" d="M 2669 989
|
||||
L 2554 989
|
||||
C 2490 536 2438 459 2413 420
|
||||
C 2381 369 1920 369 1830 369
|
||||
L 602 369
|
||||
C 832 619 1280 1072 1824 1597
|
||||
C 2214 1967 2669 2402 2669 3035
|
||||
C 2669 3790 2067 4224 1395 4224
|
||||
C 691 4224 262 3604 262 3030
|
||||
C 262 2780 448 2748 525 2748
|
||||
C 589 2748 781 2787 781 3010
|
||||
C 781 3207 614 3264 525 3264
|
||||
C 486 3264 448 3258 422 3245
|
||||
C 544 3790 915 4058 1306 4058
|
||||
C 1862 4058 2227 3617 2227 3035
|
||||
C 2227 2479 1901 2000 1536 1584
|
||||
L 262 146
|
||||
L 262 0
|
||||
L 2515 0
|
||||
L 2669 989
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#mebed3416e2" x="27.12069" y="133.235944" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
<!-- $\mathdefault{0.4}$ -->
|
||||
<g transform="translate(7.2 136.003345) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-34" d="M 2150 4122
|
||||
C 2150 4256 2144 4256 2029 4256
|
||||
L 128 1254
|
||||
L 128 1088
|
||||
L 1779 1088
|
||||
L 1779 457
|
||||
C 1779 224 1766 160 1318 160
|
||||
L 1197 160
|
||||
L 1197 0
|
||||
C 1402 0 1747 0 1965 0
|
||||
C 2182 0 2528 0 2733 0
|
||||
L 2733 160
|
||||
L 2611 160
|
||||
C 2163 160 2150 224 2150 457
|
||||
L 2150 1088
|
||||
L 2803 1088
|
||||
L 2803 1254
|
||||
L 2150 1254
|
||||
L 2150 4122
|
||||
z
|
||||
M 1798 3703
|
||||
L 1798 1254
|
||||
L 256 1254
|
||||
L 1798 3703
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#mebed3416e2" x="27.12069" y="92.14643" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
<!-- $\mathdefault{0.6}$ -->
|
||||
<g transform="translate(7.2 94.91383) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-36" d="M 678 2176
|
||||
C 678 3690 1395 4032 1811 4032
|
||||
C 1946 4032 2272 4009 2400 3776
|
||||
C 2298 3776 2106 3776 2106 3553
|
||||
C 2106 3381 2246 3323 2336 3323
|
||||
C 2394 3323 2566 3348 2566 3560
|
||||
C 2566 3954 2246 4179 1805 4179
|
||||
C 1043 4179 243 3390 243 1984
|
||||
C 243 253 966 -128 1478 -128
|
||||
C 2099 -128 2688 427 2688 1283
|
||||
C 2688 2081 2170 2662 1517 2662
|
||||
C 1126 2662 838 2407 678 1960
|
||||
L 678 2176
|
||||
z
|
||||
M 1478 25
|
||||
C 691 25 691 1200 691 1436
|
||||
C 691 1896 909 2560 1504 2560
|
||||
C 1613 2560 1926 2560 2138 2120
|
||||
C 2253 1870 2253 1609 2253 1289
|
||||
C 2253 944 2253 690 2118 434
|
||||
C 1978 171 1773 25 1478 25
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-36" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#mebed3416e2" x="27.12069" y="51.056915" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
<!-- $\mathdefault{0.8}$ -->
|
||||
<g transform="translate(7.2 53.824316) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-38" d="M 1741 2264
|
||||
C 2144 2467 2554 2773 2554 3263
|
||||
C 2554 3841 1990 4179 1472 4179
|
||||
C 890 4179 378 3759 378 3180
|
||||
C 378 3021 416 2747 666 2505
|
||||
C 730 2442 998 2251 1171 2130
|
||||
C 883 1983 211 1634 211 934
|
||||
C 211 279 838 -128 1459 -128
|
||||
C 2144 -128 2720 362 2720 1010
|
||||
C 2720 1590 2330 1857 2074 2029
|
||||
L 1741 2264
|
||||
z
|
||||
M 902 2822
|
||||
C 851 2854 595 3051 595 3351
|
||||
C 595 3739 998 4032 1459 4032
|
||||
C 1965 4032 2336 3676 2336 3262
|
||||
C 2336 2669 1670 2331 1638 2331
|
||||
C 1632 2331 1626 2331 1574 2370
|
||||
L 902 2822
|
||||
z
|
||||
M 2080 1519
|
||||
C 2176 1449 2483 1240 2483 851
|
||||
C 2483 381 2010 25 1472 25
|
||||
C 890 25 448 438 448 940
|
||||
C 448 1443 838 1862 1280 2060
|
||||
L 2080 1519
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-38" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#mebed3416e2" x="27.12069" y="9.967401" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
<!-- $\mathdefault{1.0}$ -->
|
||||
<g transform="translate(7.2 12.734802) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 27.12069 215.414973
|
||||
L 27.12069 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_4">
|
||||
<path d="M 77.389175 215.414973
|
||||
L 77.389175 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_5">
|
||||
<path d="M 27.12069 215.414973
|
||||
L 77.389175 215.414973
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_6">
|
||||
<path d="M 27.12069 9.967401
|
||||
L 77.389175 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="axes_2">
|
||||
<g id="patch_7">
|
||||
<path d="M 108.72069 215.414973
|
||||
L 158.989175 215.414973
|
||||
L 158.989175 9.967401
|
||||
L 108.72069 9.967401
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_3">
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m7c54beef53" x="108.72069" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
<!-- $\mathdefault{0.0}$ -->
|
||||
<g transform="translate(103.310345 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m7c54beef53" x="133.854932" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
<!-- $\mathdefault{0.5}$ -->
|
||||
<g transform="translate(128.444588 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m7c54beef53" x="158.989175" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
<!-- $\mathdefault{1.0}$ -->
|
||||
<g transform="translate(153.57883 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_4">
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#mebed3416e2" x="108.72069" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
<!-- $\mathdefault{0.0}$ -->
|
||||
<g transform="translate(88.8 218.182373) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#mebed3416e2" x="108.72069" y="174.325458" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
<!-- $\mathdefault{0.2}$ -->
|
||||
<g transform="translate(88.8 177.092859) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_9">
|
||||
<g id="line2d_15">
|
||||
<g>
|
||||
<use xlink:href="#mebed3416e2" x="108.72069" y="133.235944" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
<!-- $\mathdefault{0.4}$ -->
|
||||
<g transform="translate(88.8 136.003345) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_10">
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#mebed3416e2" x="108.72069" y="92.14643" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
<!-- $\mathdefault{0.6}$ -->
|
||||
<g transform="translate(88.8 94.91383) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-36" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_11">
|
||||
<g id="line2d_17">
|
||||
<g>
|
||||
<use xlink:href="#mebed3416e2" x="108.72069" y="51.056915" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
<!-- $\mathdefault{0.8}$ -->
|
||||
<g transform="translate(88.8 53.824316) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-38" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_12">
|
||||
<g id="line2d_18">
|
||||
<g>
|
||||
<use xlink:href="#mebed3416e2" x="108.72069" y="9.967401" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
<!-- $\mathdefault{1.0}$ -->
|
||||
<g transform="translate(88.8 12.734802) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_8">
|
||||
<path d="M 108.72069 215.414973
|
||||
L 108.72069 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_9">
|
||||
<path d="M 158.989175 215.414973
|
||||
L 158.989175 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_10">
|
||||
<path d="M 108.72069 215.414973
|
||||
L 158.989175 215.414973
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_11">
|
||||
<path d="M 108.72069 9.967401
|
||||
L 158.989175 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="axes_3">
|
||||
<g id="patch_12">
|
||||
<path d="M 190.32069 215.414973
|
||||
L 240.589175 215.414973
|
||||
L 240.589175 9.967401
|
||||
L 190.32069 9.967401
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_5">
|
||||
<g id="xtick_7">
|
||||
<g id="line2d_19">
|
||||
<g>
|
||||
<use xlink:href="#m7c54beef53" x="190.32069" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_19">
|
||||
<!-- $\mathdefault{0.0}$ -->
|
||||
<g transform="translate(184.910345 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_8">
|
||||
<g id="line2d_20">
|
||||
<g>
|
||||
<use xlink:href="#m7c54beef53" x="215.454932" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_20">
|
||||
<!-- $\mathdefault{0.5}$ -->
|
||||
<g transform="translate(210.044588 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_9">
|
||||
<g id="line2d_21">
|
||||
<g>
|
||||
<use xlink:href="#m7c54beef53" x="240.589175" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_21">
|
||||
<!-- $\mathdefault{1.0}$ -->
|
||||
<g transform="translate(235.17883 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_6">
|
||||
<g id="ytick_13">
|
||||
<g id="line2d_22">
|
||||
<g>
|
||||
<use xlink:href="#mebed3416e2" x="190.32069" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_22">
|
||||
<!-- $\mathdefault{0.0}$ -->
|
||||
<g transform="translate(170.4 218.182373) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_14">
|
||||
<g id="line2d_23">
|
||||
<g>
|
||||
<use xlink:href="#mebed3416e2" x="190.32069" y="174.325458" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_23">
|
||||
<!-- $\mathdefault{0.2}$ -->
|
||||
<g transform="translate(170.4 177.092859) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_15">
|
||||
<g id="line2d_24">
|
||||
<g>
|
||||
<use xlink:href="#mebed3416e2" x="190.32069" y="133.235944" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_24">
|
||||
<!-- $\mathdefault{0.4}$ -->
|
||||
<g transform="translate(170.4 136.003345) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_16">
|
||||
<g id="line2d_25">
|
||||
<g>
|
||||
<use xlink:href="#mebed3416e2" x="190.32069" y="92.14643" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_25">
|
||||
<!-- $\mathdefault{0.6}$ -->
|
||||
<g transform="translate(170.4 94.91383) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-36" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_17">
|
||||
<g id="line2d_26">
|
||||
<g>
|
||||
<use xlink:href="#mebed3416e2" x="190.32069" y="51.056915" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_26">
|
||||
<!-- $\mathdefault{0.8}$ -->
|
||||
<g transform="translate(170.4 53.824316) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-38" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_18">
|
||||
<g id="line2d_27">
|
||||
<g>
|
||||
<use xlink:href="#mebed3416e2" x="190.32069" y="9.967401" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_27">
|
||||
<!-- $\mathdefault{1.0}$ -->
|
||||
<g transform="translate(170.4 12.734802) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_13">
|
||||
<path d="M 190.32069 215.414973
|
||||
L 190.32069 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_14">
|
||||
<path d="M 240.589175 215.414973
|
||||
L 240.589175 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_15">
|
||||
<path d="M 190.32069 215.414973
|
||||
L 240.589175 215.414973
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_16">
|
||||
<path d="M 190.32069 9.967401
|
||||
L 240.589175 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 48 KiB |
|
@ -41,12 +41,12 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m110eba3471" d="M 0 0
|
||||
<path id="m1730ed418b" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m110eba3471" x="39.976366" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1730ed418b" x="39.976366" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -82,7 +82,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m110eba3471" x="114.407861" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1730ed418b" x="114.407861" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -116,7 +116,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m110eba3471" x="188.839357" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1730ed418b" x="188.839357" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -154,7 +154,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m110eba3471" x="263.270852" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1730ed418b" x="263.270852" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -198,7 +198,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m110eba3471" x="337.702347" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1730ed418b" x="337.702347" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -240,7 +240,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m110eba3471" x="412.133842" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1730ed418b" x="412.133842" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -284,7 +284,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m110eba3471" x="486.565337" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1730ed418b" x="486.565337" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -351,12 +351,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_8">
|
||||
<defs>
|
||||
<path id="mde08d8d6c4" d="M 0 0
|
||||
<path id="m45cd862ae6" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mde08d8d6c4" x="39.976366" y="90.588419" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m45cd862ae6" x="39.976366" y="90.588419" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -380,7 +380,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#mde08d8d6c4" x="39.976366" y="58.821402" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m45cd862ae6" x="39.976366" y="58.821402" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -395,7 +395,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#mde08d8d6c4" x="39.976366" y="27.054385" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m45cd862ae6" x="39.976366" y="27.054385" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -709,7 +709,7 @@ L 314.90351 90.551776
|
|||
L 318.032763 90.588419
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#pab69b8d58b)" style="fill: none; stroke: #d3d3d3; stroke-width: 3; stroke-linecap: square"/>
|
||||
" clip-path="url(#pa198a33406)" style="fill: none; stroke: #d3d3d3; stroke-width: 3; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_12">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -757,7 +757,7 @@ L 316.244619 90.579059
|
|||
L 322.056087 90.588419
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#pab69b8d58b)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pa198a33406)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_13">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -819,7 +819,7 @@ L 314.90351 90.551776
|
|||
L 318.032763 90.588419
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#pab69b8d58b)" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pa198a33406)" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 39.976366 94.559296
|
||||
|
@ -1354,7 +1354,7 @@ L 462.119155 26.100612
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pab69b8d58b">
|
||||
<clipPath id="pa198a33406">
|
||||
<rect x="39.976366" y="7.2" width="446.588971" height="87.359296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 973 KiB |
|
@ -1,7 +1,7 @@
|
|||
<?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="872.39952pt" height="296.39952pt" viewBox="0 0 872.39952 296.39952" xmlns="http://www.w3.org/2000/svg" version="1.1">
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="253.19952pt" height="238.79952pt" viewBox="0 0 253.19952 238.79952" 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>
|
||||
|
@ -21,18 +21,18 @@
|
|||
</defs>
|
||||
<g id="figure_1">
|
||||
<g id="patch_1">
|
||||
<path d="M 0 296.39952
|
||||
L 872.39952 296.39952
|
||||
L 872.39952 0
|
||||
<path d="M 0 238.79952
|
||||
L 253.19952 238.79952
|
||||
L 253.19952 0
|
||||
L 0 0
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="axes_1">
|
||||
<g id="patch_2">
|
||||
<path d="M 42.134959 260.159296
|
||||
L 865.19952 260.159296
|
||||
L 865.19952 7.2
|
||||
<path d="M 42.134959 202.559296
|
||||
L 245.99952 202.559296
|
||||
L 245.99952 7.2
|
||||
L 42.134959 7.2
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
|
@ -41,17 +41,17 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m0362067173" d="M 0 0
|
||||
<path id="mace5ed77a2" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m0362067173" x="79.546984" y="260.159296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mace5ed77a2" x="51.401529" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
<!-- $\mathdefault{0}$ -->
|
||||
<g transform="translate(77.429893 274.794098) scale(0.08 -0.08)">
|
||||
<g transform="translate(49.284438 217.194098) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-30" d="M 2688 2025
|
||||
C 2688 2416 2682 3080 2413 3591
|
||||
|
@ -82,12 +82,12 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m0362067173" x="204.253736" y="260.159296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mace5ed77a2" x="82.290099" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
<!-- $\mathdefault{10}$ -->
|
||||
<g transform="translate(200.019553 274.794098) scale(0.08 -0.08)">
|
||||
<g transform="translate(78.055917 217.194098) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-31" d="M 1702 4058
|
||||
C 1702 4192 1696 4192 1606 4192
|
||||
|
@ -116,12 +116,12 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m0362067173" x="328.960488" y="260.159296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mace5ed77a2" x="113.178669" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
<!-- $\mathdefault{20}$ -->
|
||||
<g transform="translate(324.726305 274.794098) scale(0.08 -0.08)">
|
||||
<g transform="translate(108.944486 217.194098) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-32" d="M 2669 989
|
||||
L 2554 989
|
||||
|
@ -154,12 +154,12 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m0362067173" x="453.667239" y="260.159296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mace5ed77a2" x="144.067239" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
<!-- $\mathdefault{30}$ -->
|
||||
<g transform="translate(449.433056 274.794098) scale(0.08 -0.08)">
|
||||
<g transform="translate(139.833056 217.194098) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-33" d="M 1414 2157
|
||||
C 1984 2157 2234 1662 2234 1090
|
||||
|
@ -198,12 +198,12 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m0362067173" x="578.373991" y="260.159296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mace5ed77a2" x="174.955809" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
<!-- $\mathdefault{40}$ -->
|
||||
<g transform="translate(574.139808 274.794098) scale(0.08 -0.08)">
|
||||
<g transform="translate(170.721626 217.194098) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-34" d="M 2150 4122
|
||||
C 2150 4256 2144 4256 2029 4256
|
||||
|
@ -240,12 +240,12 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m0362067173" x="703.080743" y="260.159296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mace5ed77a2" x="205.844379" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
<!-- $\mathdefault{50}$ -->
|
||||
<g transform="translate(698.84656 274.794098) scale(0.08 -0.08)">
|
||||
<g transform="translate(201.610196 217.194098) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-35" d="M 730 3692
|
||||
C 794 3666 1056 3584 1325 3584
|
||||
|
@ -284,12 +284,12 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m0362067173" x="827.787494" y="260.159296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mace5ed77a2" x="236.732949" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
<!-- $\mathdefault{60}$ -->
|
||||
<g transform="translate(823.553312 274.794098) scale(0.08 -0.08)">
|
||||
<g transform="translate(232.498766 217.194098) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-36" d="M 678 2176
|
||||
C 678 3690 1395 4032 1811 4032
|
||||
|
@ -322,7 +322,7 @@ z
|
|||
</g>
|
||||
<g id="text_8">
|
||||
<!-- $\tau$ -->
|
||||
<g transform="translate(451.489637 287.262342) scale(0.1 -0.1)">
|
||||
<g transform="translate(141.889637 229.662342) scale(0.1 -0.1)">
|
||||
<defs>
|
||||
<path id="CMMI12-1c" d="M 1837 2408
|
||||
L 2899 2408
|
||||
|
@ -351,17 +351,17 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_8">
|
||||
<defs>
|
||||
<path id="m25293afc10" d="M 0 0
|
||||
<path id="m9383745b01" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m25293afc10" x="42.134959" y="248.661146" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m9383745b01" x="42.134959" y="193.679328" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
<!-- $\mathdefault{0.0}$ -->
|
||||
<g transform="translate(22.214269 251.428547) scale(0.08 -0.08)">
|
||||
<g transform="translate(22.214269 196.446729) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMMI12-3a" d="M 1178 307
|
||||
C 1178 492 1024 619 870 619
|
||||
|
@ -380,12 +380,12 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m25293afc10" x="42.134959" y="202.668547" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m9383745b01" x="42.134959" y="158.159456" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
<!-- $\mathdefault{0.1}$ -->
|
||||
<g transform="translate(22.214269 205.435948) scale(0.08 -0.08)">
|
||||
<g transform="translate(22.214269 160.926857) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-31" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
|
@ -395,12 +395,12 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m25293afc10" x="42.134959" y="156.675948" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m9383745b01" x="42.134959" y="122.639584" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
<!-- $\mathdefault{0.2}$ -->
|
||||
<g transform="translate(22.214269 159.443348) scale(0.08 -0.08)">
|
||||
<g transform="translate(22.214269 125.406985) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
|
@ -410,12 +410,12 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m25293afc10" x="42.134959" y="110.683348" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m9383745b01" x="42.134959" y="87.119712" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
<!-- $\mathdefault{0.3}$ -->
|
||||
<g transform="translate(22.214269 113.450749) scale(0.08 -0.08)">
|
||||
<g transform="translate(22.214269 89.887113) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-33" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
|
@ -425,12 +425,12 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m25293afc10" x="42.134959" y="64.690749" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m9383745b01" x="42.134959" y="51.59984" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
<!-- $\mathdefault{0.4}$ -->
|
||||
<g transform="translate(22.214269 67.45815) scale(0.08 -0.08)">
|
||||
<g transform="translate(22.214269 54.367241) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
|
@ -440,12 +440,12 @@ z
|
|||
<g id="ytick_6">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m25293afc10" x="42.134959" y="18.69815" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m9383745b01" x="42.134959" y="16.079968" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
<!-- $\mathdefault{0.5}$ -->
|
||||
<g transform="translate(22.214269 21.465551) scale(0.08 -0.08)">
|
||||
<g transform="translate(22.214269 18.847369) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
|
@ -454,7 +454,7 @@ z
|
|||
</g>
|
||||
<g id="text_15">
|
||||
<!-- $||L_{h/c}||$ -->
|
||||
<g transform="translate(14.67198 149.006891) rotate(-90) scale(0.1 -0.1)">
|
||||
<g transform="translate(14.67198 120.206891) rotate(-90) scale(0.1 -0.1)">
|
||||
<defs>
|
||||
<path id="CMSY10-6a" d="M 1018 4570
|
||||
C 1018 4685 1018 4800 890 4800
|
||||
|
@ -570,360 +570,230 @@ z
|
|||
</g>
|
||||
</g>
|
||||
<g id="line2d_14">
|
||||
<path d="M 79.546984 248.661146
|
||||
L 499.730093 248.622172
|
||||
L 500.479083 248.493273
|
||||
L 501.228072 248.221259
|
||||
L 501.977062 247.760656
|
||||
L 502.726051 247.071642
|
||||
L 503.475041 246.119832
|
||||
L 504.22403 244.876065
|
||||
L 504.97302 243.316189
|
||||
L 505.722009 241.42085
|
||||
L 506.470999 239.175273
|
||||
L 507.968978 233.595931
|
||||
L 509.466957 226.543474
|
||||
L 510.964936 218.04282
|
||||
L 512.462915 208.171653
|
||||
L 513.960894 197.053569
|
||||
L 516.207862 178.403304
|
||||
L 519.20382 150.941482
|
||||
L 525.944726 87.780111
|
||||
L 528.191694 69.258029
|
||||
L 529.689673 58.24604
|
||||
L 531.187652 48.493792
|
||||
L 532.685631 40.121031
|
||||
L 534.18361 33.200972
|
||||
L 535.681589 27.75345
|
||||
L 536.430579 25.571807
|
||||
L 537.179568 23.738072
|
||||
L 537.928558 22.236661
|
||||
L 538.677547 21.047371
|
||||
L 539.426537 20.145165
|
||||
L 540.175526 19.499958
|
||||
L 540.924516 19.076401
|
||||
L 541.673505 18.833671
|
||||
L 543.171484 18.69873
|
||||
L 686.977468 18.69815
|
||||
L 784.346103 18.772381
|
||||
L 785.095093 18.949939
|
||||
L 785.844082 19.288571
|
||||
L 786.593072 19.831578
|
||||
L 787.342061 20.616692
|
||||
L 788.091051 21.676287
|
||||
L 788.84004 23.037594
|
||||
L 789.58903 24.722919
|
||||
L 790.338019 26.74985
|
||||
L 791.835998 31.876601
|
||||
L 793.333977 38.472408
|
||||
L 794.831956 46.5301
|
||||
L 796.329935 55.987618
|
||||
L 797.827914 66.734865
|
||||
L 800.074883 84.933461
|
||||
L 802.321851 105.037254
|
||||
L 811.309725 188.366446
|
||||
L 813.556694 205.827544
|
||||
L 815.054673 215.985107
|
||||
L 816.552652 224.795647
|
||||
L 818.050631 232.170793
|
||||
L 819.54861 238.07343
|
||||
L 821.046589 242.524546
|
||||
L 821.795578 244.229917
|
||||
L 822.544568 245.610085
|
||||
L 823.293557 246.687064
|
||||
L 824.042547 247.487786
|
||||
L 824.791536 248.04431
|
||||
L 825.540526 248.39404
|
||||
L 826.289515 248.579937
|
||||
L 827.787494 248.661146
|
||||
L 827.787494 248.661146
|
||||
" clip-path="url(#p6da6174b88)" style="fill: none; stroke: #ff7f0e; stroke-linecap: square"/>
|
||||
<path d="M 51.401529 193.679328
|
||||
L 155.476531 193.649229
|
||||
L 155.847565 193.339605
|
||||
L 156.218599 192.451761
|
||||
L 156.589632 190.756127
|
||||
L 156.960666 188.087681
|
||||
L 157.517217 182.044532
|
||||
L 158.073768 173.452392
|
||||
L 158.815836 158.229424
|
||||
L 159.74342 134.288568
|
||||
L 163.082725 42.728641
|
||||
L 163.824793 29.810371
|
||||
L 164.381344 23.073334
|
||||
L 164.937895 18.812744
|
||||
L 165.308928 17.197491
|
||||
L 165.679962 16.37209
|
||||
L 166.050996 16.1009
|
||||
L 167.164098 16.079968
|
||||
L 225.972967 16.137296
|
||||
L 226.344001 16.535947
|
||||
L 226.715034 17.561649
|
||||
L 227.086068 19.431301
|
||||
L 227.457102 22.298259
|
||||
L 228.013653 28.662053
|
||||
L 228.570204 37.574455
|
||||
L 229.312272 53.178501
|
||||
L 230.425373 82.759259
|
||||
L 233.208127 160.599134
|
||||
L 233.950195 175.248113
|
||||
L 234.692263 185.502483
|
||||
L 235.248814 190.25711
|
||||
L 235.619847 192.154753
|
||||
L 235.990881 193.202948
|
||||
L 236.361915 193.616611
|
||||
L 236.732949 193.679328
|
||||
L 236.732949 193.679328
|
||||
" clip-path="url(#p5d525c42c0)" style="fill: none; stroke: #ff7f0e; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 79.546984 248.661146
|
||||
L 125.984333 248.572543
|
||||
L 126.733323 248.378132
|
||||
L 127.482312 248.01715
|
||||
L 128.231302 247.446974
|
||||
L 128.980291 246.630528
|
||||
L 129.729281 245.536067
|
||||
L 130.47827 244.13696
|
||||
L 131.22726 242.411481
|
||||
L 131.976249 240.342591
|
||||
L 133.474228 235.128587
|
||||
L 134.972207 228.444284
|
||||
L 136.470186 220.300341
|
||||
L 137.968165 210.761891
|
||||
L 139.466144 199.941696
|
||||
L 141.713113 181.653465
|
||||
L 144.709071 154.481643
|
||||
L 151.449976 91.062019
|
||||
L 153.696945 72.189952
|
||||
L 155.194924 60.886539
|
||||
L 156.692903 50.806462
|
||||
L 158.190882 42.080031
|
||||
L 159.688861 34.792735
|
||||
L 161.18684 28.978395
|
||||
L 162.684819 24.612319
|
||||
L 163.433808 22.946978
|
||||
L 164.182798 21.60445
|
||||
L 164.931787 20.562142
|
||||
L 165.680777 19.79252
|
||||
L 166.429766 19.262894
|
||||
L 167.178756 18.935204
|
||||
L 168.676735 18.705268
|
||||
L 180.660567 18.69815
|
||||
L 409.851354 18.728897
|
||||
L 410.600343 18.843955
|
||||
L 411.349333 19.096281
|
||||
L 412.098322 19.532042
|
||||
L 412.847312 20.191726
|
||||
L 413.596301 21.110359
|
||||
L 414.345291 22.317719
|
||||
L 415.09428 23.838547
|
||||
L 415.84327 25.692762
|
||||
L 416.592259 27.895678
|
||||
L 418.090238 33.387106
|
||||
L 419.588217 40.351319
|
||||
L 421.086196 48.766778
|
||||
L 422.584175 58.558776
|
||||
L 424.082154 69.606275
|
||||
L 426.329123 88.171356
|
||||
L 429.325081 115.566279
|
||||
L 436.065986 178.795978
|
||||
L 438.312955 197.403787
|
||||
L 439.810934 208.486651
|
||||
L 441.308913 218.318289
|
||||
L 442.806892 226.77638
|
||||
L 444.304871 233.784725
|
||||
L 445.80285 239.320094
|
||||
L 446.551839 241.544322
|
||||
L 447.300829 243.419072
|
||||
L 448.049818 244.959388
|
||||
L 448.798808 246.184907
|
||||
L 449.547797 247.120076
|
||||
L 450.296787 247.794363
|
||||
L 451.045776 248.242472
|
||||
L 451.794766 248.50456
|
||||
L 453.292745 248.659828
|
||||
L 516.956852 248.661146
|
||||
L 827.787494 248.661146
|
||||
L 827.787494 248.661146
|
||||
" clip-path="url(#p6da6174b88)" style="fill: none; stroke-dasharray: 3.7,1.6; stroke-dashoffset: 0; stroke: #ff7f0e"/>
|
||||
<path d="M 51.401529 193.679328
|
||||
L 62.90358 193.6109
|
||||
L 63.274613 193.181972
|
||||
L 63.645647 192.111091
|
||||
L 64.016681 190.18532
|
||||
L 64.573232 185.382236
|
||||
L 65.129783 178.065939
|
||||
L 65.871851 164.409908
|
||||
L 66.799435 141.929605
|
||||
L 68.283571 98.829452
|
||||
L 69.767706 57.39144
|
||||
L 70.695291 37.371702
|
||||
L 71.437359 26.122424
|
||||
L 71.993909 20.647454
|
||||
L 72.55046 17.519521
|
||||
L 72.921494 16.516117
|
||||
L 73.292528 16.13222
|
||||
L 73.849079 16.079968
|
||||
L 133.214498 16.103714
|
||||
L 133.585532 16.387443
|
||||
L 133.956566 17.23345
|
||||
L 134.3276 18.875345
|
||||
L 134.698634 21.481875
|
||||
L 135.255185 27.424181
|
||||
L 135.811736 35.914827
|
||||
L 136.553803 51.016005
|
||||
L 137.481388 74.847741
|
||||
L 140.820693 166.576682
|
||||
L 141.562761 179.626177
|
||||
L 142.119311 186.465277
|
||||
L 142.675862 190.820477
|
||||
L 143.046896 192.489167
|
||||
L 143.41793 193.355988
|
||||
L 143.788964 193.652529
|
||||
L 144.716549 193.679328
|
||||
L 236.732949 193.679328
|
||||
L 236.732949 193.679328
|
||||
" clip-path="url(#p5d525c42c0)" style="fill: none; stroke-dasharray: 3.7,1.6; stroke-dashoffset: 0; stroke: #ff7f0e"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 79.546984 248.661146
|
||||
L 546.167442 248.600659
|
||||
L 548.414411 248.305264
|
||||
L 549.91239 247.895759
|
||||
L 551.410369 247.26728
|
||||
L 552.908348 246.384103
|
||||
L 554.406327 245.215782
|
||||
L 555.904306 243.736932
|
||||
L 557.402285 241.927019
|
||||
L 558.900264 239.770144
|
||||
L 560.398243 237.254827
|
||||
L 561.896222 234.3738
|
||||
L 563.394201 231.123782
|
||||
L 565.641169 225.558976
|
||||
L 567.888138 219.182414
|
||||
L 570.135106 212.027025
|
||||
L 572.382075 204.140539
|
||||
L 575.378033 192.594919
|
||||
L 578.373991 180.034722
|
||||
L 582.118938 163.222607
|
||||
L 587.361865 138.425848
|
||||
L 594.85176 102.893413
|
||||
L 598.596707 86.157776
|
||||
L 601.592665 73.680881
|
||||
L 604.588623 62.235678
|
||||
L 606.835592 54.433953
|
||||
L 609.08256 47.369779
|
||||
L 611.329529 41.089198
|
||||
L 613.576497 35.623254
|
||||
L 615.074476 32.439724
|
||||
L 616.572455 29.624879
|
||||
L 618.070434 27.174738
|
||||
L 619.568413 25.081289
|
||||
L 621.066392 23.332272
|
||||
L 622.564371 21.910971
|
||||
L 624.06235 20.795993
|
||||
L 625.560329 19.961059
|
||||
L 627.058308 19.374788
|
||||
L 628.556287 19.000484
|
||||
L 630.803256 18.74253
|
||||
L 634.548203 18.69815
|
||||
L 740.904712 18.772381
|
||||
L 743.151681 19.096281
|
||||
L 744.64966 19.532042
|
||||
L 746.147639 20.191726
|
||||
L 747.645618 21.110359
|
||||
L 749.143597 22.317719
|
||||
L 750.641576 23.838547
|
||||
L 752.139555 25.692762
|
||||
L 753.637534 27.895678
|
||||
L 755.135513 30.458212
|
||||
L 756.633492 33.387106
|
||||
L 758.131471 36.685134
|
||||
L 760.378439 42.321191
|
||||
L 762.625408 48.766778
|
||||
L 764.872376 55.987618
|
||||
L 767.119345 63.934775
|
||||
L 770.115303 75.552032
|
||||
L 773.111261 88.171356
|
||||
L 776.856208 105.037254
|
||||
L 782.099135 129.867868
|
||||
L 789.58903 165.361071
|
||||
L 793.333977 182.04003
|
||||
L 796.329935 194.455738
|
||||
L 799.325893 205.827544
|
||||
L 801.572862 213.567519
|
||||
L 803.81983 220.565399
|
||||
L 806.066799 226.77638
|
||||
L 808.313767 232.170793
|
||||
L 809.811746 235.306305
|
||||
L 811.309725 238.07343
|
||||
L 812.807704 240.476659
|
||||
L 814.305683 242.524546
|
||||
L 815.803662 244.229917
|
||||
L 817.301641 245.610085
|
||||
L 818.79962 246.687064
|
||||
L 820.297599 247.487786
|
||||
L 821.795578 248.04431
|
||||
L 823.293557 248.39404
|
||||
L 825.540526 248.626446
|
||||
L 827.787494 248.661146
|
||||
L 827.787494 248.661146
|
||||
" clip-path="url(#p6da6174b88)" style="fill: none; stroke: #2ca02c; stroke-linecap: square"/>
|
||||
<path d="M 51.401529 193.679328
|
||||
L 167.164098 193.583459
|
||||
L 167.720649 193.265603
|
||||
L 168.277199 192.602851
|
||||
L 168.83375 191.498475
|
||||
L 169.390301 189.87638
|
||||
L 170.132369 186.812848
|
||||
L 170.874437 182.645276
|
||||
L 171.802021 175.837629
|
||||
L 172.729606 167.293768
|
||||
L 173.842708 154.944971
|
||||
L 175.326843 135.584308
|
||||
L 177.553046 102.990928
|
||||
L 180.150283 65.703282
|
||||
L 181.634419 47.634731
|
||||
L 182.747521 36.537439
|
||||
L 183.675105 29.151147
|
||||
L 184.60269 23.537619
|
||||
L 185.344758 20.301732
|
||||
L 186.086825 18.102275
|
||||
L 186.643376 17.055307
|
||||
L 187.199927 16.43947
|
||||
L 187.756478 16.155475
|
||||
L 188.498546 16.079986
|
||||
L 215.212984 16.137296
|
||||
L 215.769535 16.387443
|
||||
L 216.326086 16.95531
|
||||
L 216.882637 17.942906
|
||||
L 217.439188 19.431301
|
||||
L 217.995738 21.481875
|
||||
L 218.737806 25.16221
|
||||
L 219.479874 29.971233
|
||||
L 220.407459 37.574455
|
||||
L 221.52056 48.910589
|
||||
L 222.819179 64.773665
|
||||
L 224.488831 88.16073
|
||||
L 228.755721 149.489474
|
||||
L 230.054339 164.645824
|
||||
L 231.167441 175.248113
|
||||
L 232.095026 182.190337
|
||||
L 233.02261 187.358486
|
||||
L 233.764678 190.25711
|
||||
L 234.321229 191.76694
|
||||
L 234.87778 192.773147
|
||||
L 235.43433 193.355988
|
||||
L 235.990881 193.616611
|
||||
L 236.732949 193.679328
|
||||
L 236.732949 193.679328
|
||||
" clip-path="url(#p5d525c42c0)" style="fill: none; stroke: #2ca02c; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 79.546984 248.661146
|
||||
L 172.421682 248.572543
|
||||
L 173.919661 248.378132
|
||||
L 175.41764 248.01715
|
||||
L 176.915619 247.446974
|
||||
L 178.413598 246.630528
|
||||
L 179.911577 245.536067
|
||||
L 181.409556 244.13696
|
||||
L 182.907535 242.411481
|
||||
L 184.405514 240.342591
|
||||
L 185.903493 237.917728
|
||||
L 187.401472 235.128587
|
||||
L 188.899451 231.970914
|
||||
L 191.14642 226.543474
|
||||
L 193.393388 220.300341
|
||||
L 195.640357 213.271822
|
||||
L 197.887325 205.503291
|
||||
L 200.134294 197.053569
|
||||
L 203.130252 184.851235
|
||||
L 206.12621 171.759534
|
||||
L 210.620147 150.941482
|
||||
L 222.603979 94.390679
|
||||
L 226.348926 78.249119
|
||||
L 229.344884 66.395036
|
||||
L 231.591853 58.24604
|
||||
L 233.838821 50.806462
|
||||
L 236.08579 44.129229
|
||||
L 238.332758 38.253086
|
||||
L 240.579727 33.200972
|
||||
L 242.077706 30.294176
|
||||
L 243.575685 27.75345
|
||||
L 245.073664 25.571807
|
||||
L 246.571643 23.738072
|
||||
L 248.069622 22.236661
|
||||
L 249.567601 21.047371
|
||||
L 251.06558 20.145165
|
||||
L 252.563559 19.499958
|
||||
L 254.061538 19.076401
|
||||
L 256.308506 18.765808
|
||||
L 259.304464 18.69815
|
||||
L 367.158952 18.804253
|
||||
L 368.656931 19.017708
|
||||
L 370.15491 19.403595
|
||||
L 371.652889 20.003805
|
||||
L 373.150868 20.854708
|
||||
L 374.648847 21.987374
|
||||
L 376.146826 23.427783
|
||||
L 377.644805 25.197039
|
||||
L 379.142784 27.311588
|
||||
L 380.640763 29.783426
|
||||
L 382.138742 32.620319
|
||||
L 383.636721 35.826012
|
||||
L 385.88369 41.324935
|
||||
L 388.130658 47.637561
|
||||
L 390.377627 54.732214
|
||||
L 392.624595 62.56229
|
||||
L 394.871564 71.067879
|
||||
L 397.867522 83.334254
|
||||
L 401.612469 99.873215
|
||||
L 406.106406 120.905232
|
||||
L 416.592259 170.477391
|
||||
L 420.337207 186.806082
|
||||
L 423.333165 198.852388
|
||||
L 425.580133 207.166755
|
||||
L 427.827102 214.786752
|
||||
L 430.07407 221.656205
|
||||
L 432.321039 227.73272
|
||||
L 434.568007 232.989306
|
||||
L 436.065986 236.032514
|
||||
L 437.563965 238.708089
|
||||
L 439.061944 241.021518
|
||||
L 440.559923 242.982402
|
||||
L 442.057902 244.604669
|
||||
L 443.555881 245.906787
|
||||
L 445.05386 246.911981
|
||||
L 446.551839 247.648443
|
||||
L 448.049818 248.149548
|
||||
L 449.547797 248.454071
|
||||
L 451.794766 248.640937
|
||||
L 457.786682 248.661146
|
||||
L 827.787494 248.661146
|
||||
L 827.787494 248.661146
|
||||
" clip-path="url(#p6da6174b88)" style="fill: none; stroke-dasharray: 3.7,1.6; stroke-dashoffset: 0; stroke: #2ca02c"/>
|
||||
<path d="M 51.401529 193.679328
|
||||
L 74.40563 193.6109
|
||||
L 74.96218 193.339605
|
||||
L 75.518731 192.741628
|
||||
L 76.075282 191.716682
|
||||
L 76.631833 190.18532
|
||||
L 77.373901 187.254947
|
||||
L 78.115968 183.228195
|
||||
L 79.043553 176.597952
|
||||
L 79.971138 168.223137
|
||||
L 81.084239 156.053522
|
||||
L 82.568375 136.871608
|
||||
L 84.794578 104.379653
|
||||
L 87.391815 66.93583
|
||||
L 88.875951 48.661866
|
||||
L 89.989052 37.371702
|
||||
L 90.916637 29.810371
|
||||
L 91.844222 24.019354
|
||||
L 92.586289 20.647454
|
||||
L 93.328357 18.32449
|
||||
L 93.884908 17.197491
|
||||
L 94.441459 16.516117
|
||||
L 94.99801 16.18463
|
||||
L 95.740077 16.080416
|
||||
L 122.454516 16.11811
|
||||
L 123.011067 16.326761
|
||||
L 123.567618 16.834006
|
||||
L 124.124169 17.745468
|
||||
L 124.680719 19.145618
|
||||
L 125.23727 21.09903
|
||||
L 125.979338 24.641076
|
||||
L 126.721406 29.307737
|
||||
L 127.64899 36.736107
|
||||
L 128.762092 47.879882
|
||||
L 130.060711 63.560105
|
||||
L 131.730363 86.802475
|
||||
L 136.182769 150.659278
|
||||
L 137.481388 165.61913
|
||||
L 138.59449 176.021701
|
||||
L 139.522074 182.786802
|
||||
L 140.264142 186.920527
|
||||
L 141.00621 189.951976
|
||||
L 141.748278 191.967698
|
||||
L 142.304828 192.897222
|
||||
L 142.861379 193.418753
|
||||
L 143.41793 193.637043
|
||||
L 144.345515 193.679328
|
||||
L 236.732949 193.679328
|
||||
L 236.732949 193.679328
|
||||
" clip-path="url(#p5d525c42c0)" style="fill: none; stroke-dasharray: 3.7,1.6; stroke-dashoffset: 0; stroke: #2ca02c"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 42.134959 260.159296
|
||||
<path d="M 42.134959 202.559296
|
||||
L 42.134959 7.2
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_4">
|
||||
<path d="M 865.19952 260.159296
|
||||
L 865.19952 7.2
|
||||
<path d="M 245.99952 202.559296
|
||||
L 245.99952 7.2
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_5">
|
||||
<path d="M 42.134959 260.159296
|
||||
L 865.19952 260.159296
|
||||
<path d="M 42.134959 202.559296
|
||||
L 245.99952 202.559296
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_6">
|
||||
<path d="M 42.134959 7.2
|
||||
L 865.19952 7.2
|
||||
L 245.99952 7.2
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="legend_1">
|
||||
<g id="patch_7">
|
||||
<path d="M 48.434959 39.486924
|
||||
L 138.158868 39.486924
|
||||
Q 139.958868 39.486924 139.958868 37.686924
|
||||
L 139.958868 13.5
|
||||
Q 139.958868 11.7 138.158868 11.7
|
||||
L 48.434959 11.7
|
||||
Q 46.634959 11.7 46.634959 13.5
|
||||
L 46.634959 37.686924
|
||||
Q 46.634959 39.486924 48.434959 39.486924
|
||||
<path d="M 149.97561 118.77311
|
||||
L 239.69952 118.77311
|
||||
Q 241.49952 118.77311 241.49952 116.97311
|
||||
L 241.49952 92.786186
|
||||
Q 241.49952 90.986186 239.69952 90.986186
|
||||
L 149.97561 90.986186
|
||||
Q 148.17561 90.986186 148.17561 92.786186
|
||||
L 148.17561 116.97311
|
||||
Q 148.17561 118.77311 149.97561 118.77311
|
||||
z
|
||||
" style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-width: 0.24; stroke-linejoin: miter"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 50.234959 18.45
|
||||
L 59.234959 18.45
|
||||
L 68.234959 18.45
|
||||
<path d="M 151.77561 97.736186
|
||||
L 160.77561 97.736186
|
||||
L 169.77561 97.736186
|
||||
" style="fill: none; stroke: #ff7f0e; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
<!-- Fast Switching -->
|
||||
<g transform="translate(75.434959 21.6) scale(0.09 -0.09)">
|
||||
<g transform="translate(176.97561 100.886186) scale(0.09 -0.09)">
|
||||
<defs>
|
||||
<path id="CMR17-46" d="M 3482 4325
|
||||
L 326 4325
|
||||
|
@ -1249,14 +1119,14 @@ z
|
|||
</g>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
<path d="M 50.234959 30.993462
|
||||
L 59.234959 30.993462
|
||||
L 68.234959 30.993462
|
||||
<path d="M 151.77561 110.279648
|
||||
L 160.77561 110.279648
|
||||
L 169.77561 110.279648
|
||||
" style="fill: none; stroke: #2ca02c; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
<!-- Slow Switching -->
|
||||
<g transform="translate(75.434959 34.143462) scale(0.09 -0.09)">
|
||||
<g transform="translate(176.97561 113.429648) scale(0.09 -0.09)">
|
||||
<defs>
|
||||
<path id="CMR17-6c" d="M 979 4396
|
||||
L 218 4326
|
||||
|
@ -1309,8 +1179,8 @@ z
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p6da6174b88">
|
||||
<rect x="42.134959" y="7.2" width="823.064561" height="252.959296"/>
|
||||
<clipPath id="p5d525c42c0">
|
||||
<rect x="42.134959" y="7.2" width="203.864561" height="195.359296"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 34 KiB |
|
@ -39,7 +39,7 @@ z
|
|||
</g>
|
||||
<g id="PolyCollection_1">
|
||||
<defs>
|
||||
<path id="m9567946451" d="M 59.669895 -108.45824
|
||||
<path id="m8f362af45a" d="M 59.669895 -108.45824
|
||||
L 59.669895 -108.755945
|
||||
L 59.847529 -108.755989
|
||||
L 60.025164 -108.755398
|
||||
|
@ -2044,13 +2044,13 @@ L 59.669895 -108.45824
|
|||
z
|
||||
" style="stroke: #7fbee9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pebd469a482)">
|
||||
<use xlink:href="#m9567946451" x="0" y="238.79952" style="fill: #7fbee9; fill-opacity: 0.5; stroke: #7fbee9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p25d11ff00e)">
|
||||
<use xlink:href="#m8f362af45a" x="0" y="238.79952" style="fill: #7fbee9; fill-opacity: 0.5; stroke: #7fbee9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_2">
|
||||
<defs>
|
||||
<path id="m0296d01024" d="M 59.669895 -108.534506
|
||||
<path id="m8cc02789ef" d="M 59.669895 -108.534506
|
||||
L 59.669895 -108.679679
|
||||
L 59.847529 -108.679714
|
||||
L 60.025164 -108.679245
|
||||
|
@ -4055,13 +4055,13 @@ L 59.669895 -108.534506
|
|||
z
|
||||
" style="stroke: #ffbf86; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pebd469a482)">
|
||||
<use xlink:href="#m0296d01024" x="0" y="238.79952" style="fill: #ffbf86; fill-opacity: 0.5; stroke: #ffbf86; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p25d11ff00e)">
|
||||
<use xlink:href="#m8cc02789ef" x="0" y="238.79952" style="fill: #ffbf86; fill-opacity: 0.5; stroke: #ffbf86; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_3">
|
||||
<defs>
|
||||
<path id="mb5e5973645" d="M 59.669895 -108.403692
|
||||
<path id="m46eb7bb8ae" d="M 59.669895 -108.403692
|
||||
L 59.669895 -108.810492
|
||||
L 59.847529 -108.810492
|
||||
L 60.025164 -108.810492
|
||||
|
@ -6066,13 +6066,13 @@ L 59.669895 -108.403692
|
|||
z
|
||||
" style="stroke: #87de87; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pebd469a482)">
|
||||
<use xlink:href="#mb5e5973645" x="0" y="238.79952" style="fill: #87de87; fill-opacity: 0.5; stroke: #87de87; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p25d11ff00e)">
|
||||
<use xlink:href="#m46eb7bb8ae" x="0" y="238.79952" style="fill: #87de87; fill-opacity: 0.5; stroke: #87de87; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_4">
|
||||
<defs>
|
||||
<path id="m9345df3865" d="M 59.669895 -108.503209
|
||||
<path id="mc98a484a16" d="M 59.669895 -108.503209
|
||||
L 59.669895 -108.710976
|
||||
L 59.847529 -108.711246
|
||||
L 60.025164 -108.707681
|
||||
|
@ -8077,20 +8077,20 @@ L 59.669895 -108.503209
|
|||
z
|
||||
" style="stroke: #eb9293; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pebd469a482)">
|
||||
<use xlink:href="#m9345df3865" x="0" y="238.79952" style="fill: #eb9293; fill-opacity: 0.5; stroke: #eb9293; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p25d11ff00e)">
|
||||
<use xlink:href="#mc98a484a16" x="0" y="238.79952" style="fill: #eb9293; fill-opacity: 0.5; stroke: #eb9293; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="mc9d009fedb" d="M 0 0
|
||||
<path id="md02d7c6aaa" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mc9d009fedb" x="59.669895" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#md02d7c6aaa" x="59.669895" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -8168,7 +8168,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#mc9d009fedb" x="89.275632" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#md02d7c6aaa" x="89.275632" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -8213,7 +8213,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#mc9d009fedb" x="118.881368" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#md02d7c6aaa" x="118.881368" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -8256,7 +8256,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#mc9d009fedb" x="148.487105" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#md02d7c6aaa" x="148.487105" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -8301,7 +8301,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#mc9d009fedb" x="178.092842" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#md02d7c6aaa" x="178.092842" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -8341,7 +8341,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#mc9d009fedb" x="207.698578" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#md02d7c6aaa" x="207.698578" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -8377,7 +8377,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#mc9d009fedb" x="237.304315" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#md02d7c6aaa" x="237.304315" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -8450,12 +8450,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_8">
|
||||
<defs>
|
||||
<path id="ma080ee5e0c" d="M 0 0
|
||||
<path id="m065f49a542" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#ma080ee5e0c" x="50.797056" y="198.548964" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m065f49a542" x="50.797056" y="198.548964" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -8490,7 +8490,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#ma080ee5e0c" x="50.797056" y="175.763452" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m065f49a542" x="50.797056" y="175.763452" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -8507,7 +8507,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#ma080ee5e0c" x="50.797056" y="152.97794" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m065f49a542" x="50.797056" y="152.97794" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -8524,7 +8524,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#ma080ee5e0c" x="50.797056" y="130.192428" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m065f49a542" x="50.797056" y="130.192428" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -8540,7 +8540,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#ma080ee5e0c" x="50.797056" y="107.406915" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m065f49a542" x="50.797056" y="107.406915" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -8556,7 +8556,7 @@ z
|
|||
<g id="ytick_6">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#ma080ee5e0c" x="50.797056" y="84.621403" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m065f49a542" x="50.797056" y="84.621403" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
|
@ -8572,7 +8572,7 @@ z
|
|||
<g id="ytick_7">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#ma080ee5e0c" x="50.797056" y="61.835891" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m065f49a542" x="50.797056" y="61.835891" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
|
@ -8588,7 +8588,7 @@ z
|
|||
<g id="ytick_8">
|
||||
<g id="line2d_15">
|
||||
<g>
|
||||
<use xlink:href="#ma080ee5e0c" x="50.797056" y="39.050379" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m065f49a542" x="50.797056" y="39.050379" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
|
@ -8604,7 +8604,7 @@ z
|
|||
<g id="ytick_9">
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#ma080ee5e0c" x="50.797056" y="16.264866" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m065f49a542" x="50.797056" y="16.264866" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
|
@ -8749,7 +8749,7 @@ L 211.547324 122.846943
|
|||
L 212.435496 122.757762
|
||||
L 237.126681 122.757302
|
||||
L 237.126681 122.757302
|
||||
" clip-path="url(#pebd469a482)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p25d11ff00e)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 59.669895 130.192428
|
||||
|
@ -8798,7 +8798,7 @@ L 169.270332 16.308768
|
|||
L 170.158504 16.249632
|
||||
L 237.126681 16.249614
|
||||
L 237.126681 16.249614
|
||||
" clip-path="url(#pebd469a482)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p25d11ff00e)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
<path d="M 59.669895 130.192428
|
||||
|
@ -8864,7 +8864,7 @@ L 190.764097 135.750233
|
|||
L 191.297 135.677635
|
||||
L 237.126681 135.677818
|
||||
L 237.126681 135.677818
|
||||
" clip-path="url(#pebd469a482)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p25d11ff00e)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
<path d="M 59.669895 130.192428
|
||||
|
@ -8903,7 +8903,7 @@ L 158.967536 16.264629
|
|||
L 159.500439 16.197052
|
||||
L 237.126681 16.19688
|
||||
L 237.126681 16.19688
|
||||
" clip-path="url(#pebd469a482)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p25d11ff00e)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 50.797056 202.559296
|
||||
|
@ -9272,7 +9272,7 @@ L 76.897056 189.150734
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pebd469a482">
|
||||
<clipPath id="p25d11ff00e">
|
||||
<rect x="50.797056" y="7.2" width="195.202464" height="195.359296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 235 KiB After Width: | Height: | Size: 235 KiB |
After Width: | Height: | Size: 966 KiB |
|
@ -6043,7 +6043,7 @@ L -393.279419 98.790415
|
|||
L -393.48983 98.790415
|
||||
L -393.70024 98.790415
|
||||
z
|
||||
" clip-path="url(#pde329a851f)" style="fill: #7fbee9; fill-opacity: 0.5; stroke: #7fbee9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
" clip-path="url(#pe3e18f2bf3)" style="fill: #7fbee9; fill-opacity: 0.5; stroke: #7fbee9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
<g id="PolyCollection_2">
|
||||
<path d="M -393.70024 16.038937
|
||||
|
@ -12051,18 +12051,18 @@ L -393.279419 16.038937
|
|||
L -393.48983 16.038937
|
||||
L -393.70024 16.038937
|
||||
z
|
||||
" clip-path="url(#pde329a851f)" style="fill: #ffbf86; fill-opacity: 0.5; stroke: #ffbf86; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
" clip-path="url(#pe3e18f2bf3)" style="fill: #ffbf86; fill-opacity: 0.5; stroke: #ffbf86; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m3e4d33b725" d="M 0 0
|
||||
<path id="m1899d87ba3" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m3e4d33b725" x="27.12069" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1899d87ba3" x="27.12069" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -12140,7 +12140,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m3e4d33b725" x="62.1891" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1899d87ba3" x="62.1891" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -12185,7 +12185,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m3e4d33b725" x="97.257511" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1899d87ba3" x="97.257511" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -12228,7 +12228,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m3e4d33b725" x="132.325922" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1899d87ba3" x="132.325922" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -12273,7 +12273,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m3e4d33b725" x="167.394333" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1899d87ba3" x="167.394333" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -12313,7 +12313,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m3e4d33b725" x="202.462744" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1899d87ba3" x="202.462744" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -12349,7 +12349,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m3e4d33b725" x="237.531154" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1899d87ba3" x="237.531154" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -12422,12 +12422,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_8">
|
||||
<defs>
|
||||
<path id="m9d0140f7b4" d="M 0 0
|
||||
<path id="m7adfd20a71" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m9d0140f7b4" x="27.12069" y="136.973832" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7adfd20a71" x="27.12069" y="136.973832" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -12451,7 +12451,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m9d0140f7b4" x="27.12069" y="114.323587" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7adfd20a71" x="27.12069" y="114.323587" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -12466,7 +12466,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m9d0140f7b4" x="27.12069" y="91.673343" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7adfd20a71" x="27.12069" y="91.673343" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -12481,7 +12481,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m9d0140f7b4" x="27.12069" y="69.023098" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7adfd20a71" x="27.12069" y="69.023098" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -12496,7 +12496,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m9d0140f7b4" x="27.12069" y="46.372854" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7adfd20a71" x="27.12069" y="46.372854" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -12511,7 +12511,7 @@ z
|
|||
<g id="ytick_6">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m9d0140f7b4" x="27.12069" y="23.722609" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7adfd20a71" x="27.12069" y="23.722609" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
|
@ -12626,7 +12626,7 @@ L 235.63746 132.835579
|
|||
L 236.899923 132.912244
|
||||
L 237.531154 132.913169
|
||||
L 237.531154 132.913169
|
||||
" clip-path="url(#pde329a851f)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pe3e18f2bf3)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 26.910279 57.987876
|
||||
|
@ -12735,7 +12735,7 @@ L 235.63746 58.36055
|
|||
L 236.899923 58.283883
|
||||
L 237.531154 58.282957
|
||||
L 237.531154 58.282957
|
||||
" clip-path="url(#pde329a851f)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pe3e18f2bf3)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 26.910279 136.973832
|
||||
|
@ -12777,7 +12777,7 @@ L 144.740139 136.968719
|
|||
L 149.36917 136.973832
|
||||
L 237.531154 136.973832
|
||||
L 237.531154 136.973832
|
||||
" clip-path="url(#pde329a851f)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pe3e18f2bf3)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 27.12069 143.519296
|
||||
|
@ -13340,7 +13340,7 @@ z
|
|||
<g id="xtick_8">
|
||||
<g id="line2d_20">
|
||||
<g>
|
||||
<use xlink:href="#m3e4d33b725" x="274.037781" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1899d87ba3" x="274.037781" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
|
@ -13355,7 +13355,7 @@ z
|
|||
<g id="xtick_9">
|
||||
<g id="line2d_21">
|
||||
<g>
|
||||
<use xlink:href="#m3e4d33b725" x="309.106192" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1899d87ba3" x="309.106192" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_19">
|
||||
|
@ -13370,7 +13370,7 @@ z
|
|||
<g id="xtick_10">
|
||||
<g id="line2d_22">
|
||||
<g>
|
||||
<use xlink:href="#m3e4d33b725" x="344.174603" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1899d87ba3" x="344.174603" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_20">
|
||||
|
@ -13385,7 +13385,7 @@ z
|
|||
<g id="xtick_11">
|
||||
<g id="line2d_23">
|
||||
<g>
|
||||
<use xlink:href="#m3e4d33b725" x="379.243013" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1899d87ba3" x="379.243013" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_21">
|
||||
|
@ -13400,7 +13400,7 @@ z
|
|||
<g id="xtick_12">
|
||||
<g id="line2d_24">
|
||||
<g>
|
||||
<use xlink:href="#m3e4d33b725" x="414.311424" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1899d87ba3" x="414.311424" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_22">
|
||||
|
@ -13415,7 +13415,7 @@ z
|
|||
<g id="xtick_13">
|
||||
<g id="line2d_25">
|
||||
<g>
|
||||
<use xlink:href="#m3e4d33b725" x="449.379835" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1899d87ba3" x="449.379835" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_23">
|
||||
|
@ -13430,7 +13430,7 @@ z
|
|||
<g id="xtick_14">
|
||||
<g id="line2d_26">
|
||||
<g>
|
||||
<use xlink:href="#m3e4d33b725" x="484.448246" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1899d87ba3" x="484.448246" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_24">
|
||||
|
@ -13453,7 +13453,7 @@ z
|
|||
<g id="ytick_7">
|
||||
<g id="line2d_27">
|
||||
<g>
|
||||
<use xlink:href="#m9d0140f7b4" x="274.037781" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7adfd20a71" x="274.037781" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_26">
|
||||
|
@ -13469,7 +13469,7 @@ z
|
|||
<g id="ytick_8">
|
||||
<g id="line2d_28">
|
||||
<g>
|
||||
<use xlink:href="#m9d0140f7b4" x="274.037781" y="121.260647" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7adfd20a71" x="274.037781" y="121.260647" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_27">
|
||||
|
@ -13485,7 +13485,7 @@ z
|
|||
<g id="ytick_9">
|
||||
<g id="line2d_29">
|
||||
<g>
|
||||
<use xlink:href="#m9d0140f7b4" x="274.037781" y="99.001998" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7adfd20a71" x="274.037781" y="99.001998" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_28">
|
||||
|
@ -13501,7 +13501,7 @@ z
|
|||
<g id="ytick_10">
|
||||
<g id="line2d_30">
|
||||
<g>
|
||||
<use xlink:href="#m9d0140f7b4" x="274.037781" y="76.743348" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7adfd20a71" x="274.037781" y="76.743348" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_29">
|
||||
|
@ -13517,7 +13517,7 @@ z
|
|||
<g id="ytick_11">
|
||||
<g id="line2d_31">
|
||||
<g>
|
||||
<use xlink:href="#m9d0140f7b4" x="274.037781" y="54.484699" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7adfd20a71" x="274.037781" y="54.484699" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_30">
|
||||
|
@ -13533,7 +13533,7 @@ z
|
|||
<g id="ytick_12">
|
||||
<g id="line2d_32">
|
||||
<g>
|
||||
<use xlink:href="#m9d0140f7b4" x="274.037781" y="32.22605" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7adfd20a71" x="274.037781" y="32.22605" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_31">
|
||||
|
@ -13549,7 +13549,7 @@ z
|
|||
<g id="ytick_13">
|
||||
<g id="line2d_33">
|
||||
<g>
|
||||
<use xlink:href="#m9d0140f7b4" x="274.037781" y="9.967401" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7adfd20a71" x="274.037781" y="9.967401" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_32">
|
||||
|
@ -13678,17 +13678,17 @@ L 482.764962 129.259894
|
|||
L 484.027425 129.327142
|
||||
L 484.448246 129.327391
|
||||
L 484.448246 129.327391
|
||||
" clip-path="url(#pf2174cdfdc)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pa90a55fbb7)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_35">
|
||||
<path d="M 274.037781 19.965688
|
||||
L 484.448246 19.965688
|
||||
" clip-path="url(#pf2174cdfdc)" style="fill: none; stroke: #d3d3d3; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pa90a55fbb7)" style="fill: none; stroke: #d3d3d3; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_36">
|
||||
<path d="M 274.037781 134.970674
|
||||
L 484.448246 134.970674
|
||||
" clip-path="url(#pf2174cdfdc)" style="fill: none; stroke: #d3d3d3; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pa90a55fbb7)" style="fill: none; stroke: #d3d3d3; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_9">
|
||||
<path d="M 274.037781 143.519296
|
||||
|
@ -13789,10 +13789,10 @@ L 450.488164 88.44831
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pde329a851f">
|
||||
<clipPath id="pe3e18f2bf3">
|
||||
<rect x="27.12069" y="9.967401" width="210.410465" height="133.551895"/>
|
||||
</clipPath>
|
||||
<clipPath id="pf2174cdfdc">
|
||||
<clipPath id="pa90a55fbb7">
|
||||
<rect x="274.037781" y="9.967401" width="210.410465" height="133.551895"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 342 KiB After Width: | Height: | Size: 342 KiB |
Before Width: | Height: | Size: 70 KiB |
|
@ -39,7 +39,7 @@ z
|
|||
</g>
|
||||
<g id="PolyCollection_1">
|
||||
<defs>
|
||||
<path id="m3d527e9c3f" d="M 66.755448 -165.919029
|
||||
<path id="m86c17c3b10" d="M 66.755448 -165.919029
|
||||
L 66.755448 -165.919029
|
||||
L 66.890065 -165.919029
|
||||
L 67.024682 -165.919029
|
||||
|
@ -6046,13 +6046,13 @@ L 66.755448 -165.919029
|
|||
z
|
||||
" style="stroke: #bfdef4; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pb1b680e6d3)">
|
||||
<use xlink:href="#m3d527e9c3f" x="0" y="253.19952" style="fill: #bfdef4; fill-opacity: 0.5; stroke: #bfdef4; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p8bc69bc7fd)">
|
||||
<use xlink:href="#m86c17c3b10" x="0" y="253.19952" style="fill: #bfdef4; fill-opacity: 0.5; stroke: #bfdef4; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_2">
|
||||
<defs>
|
||||
<path id="m0167e7a4ba" d="M 66.755448 -165.919029
|
||||
<path id="mdaa18bd442" d="M 66.755448 -165.919029
|
||||
L 66.755448 -165.919029
|
||||
L 66.890065 -165.919029
|
||||
L 67.024682 -165.919029
|
||||
|
@ -12059,13 +12059,13 @@ L 66.755448 -165.919029
|
|||
z
|
||||
" style="stroke: #ffdfc3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pb1b680e6d3)">
|
||||
<use xlink:href="#m0167e7a4ba" x="0" y="253.19952" style="fill: #ffdfc3; fill-opacity: 0.5; stroke: #ffdfc3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p8bc69bc7fd)">
|
||||
<use xlink:href="#mdaa18bd442" x="0" y="253.19952" style="fill: #ffdfc3; fill-opacity: 0.5; stroke: #ffdfc3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_3">
|
||||
<defs>
|
||||
<path id="mdf8640de84" d="M 66.755448 -165.919029
|
||||
<path id="m09f224025e" d="M 66.755448 -165.919029
|
||||
L 66.755448 -165.919029
|
||||
L 66.890065 -165.919029
|
||||
L 67.024682 -165.919029
|
||||
|
@ -18072,13 +18072,13 @@ L 66.755448 -165.919029
|
|||
z
|
||||
" style="stroke: #c3eec3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pb1b680e6d3)">
|
||||
<use xlink:href="#mdf8640de84" x="0" y="253.19952" style="fill: #c3eec3; fill-opacity: 0.5; stroke: #c3eec3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p8bc69bc7fd)">
|
||||
<use xlink:href="#m09f224025e" x="0" y="253.19952" style="fill: #c3eec3; fill-opacity: 0.5; stroke: #c3eec3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_4">
|
||||
<defs>
|
||||
<path id="m5f63fd4549" d="M 66.755448 -165.919029
|
||||
<path id="me1d7ca1762" d="M 66.755448 -165.919029
|
||||
L 66.755448 -165.919029
|
||||
L 66.890065 -165.919029
|
||||
L 67.024682 -165.919029
|
||||
|
@ -24085,13 +24085,13 @@ L 66.755448 -165.919029
|
|||
z
|
||||
" style="stroke: #f5c9c9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pb1b680e6d3)">
|
||||
<use xlink:href="#m5f63fd4549" x="0" y="253.19952" style="fill: #f5c9c9; fill-opacity: 0.5; stroke: #f5c9c9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p8bc69bc7fd)">
|
||||
<use xlink:href="#me1d7ca1762" x="0" y="253.19952" style="fill: #f5c9c9; fill-opacity: 0.5; stroke: #f5c9c9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_5">
|
||||
<defs>
|
||||
<path id="m144c2aa1cb" d="M 66.755448 -165.919029
|
||||
<path id="m94778de708" d="M 66.755448 -165.919029
|
||||
L 66.755448 -165.919029
|
||||
L 66.890065 -165.919029
|
||||
L 67.024682 -165.919029
|
||||
|
@ -30098,13 +30098,13 @@ L 66.755448 -165.919029
|
|||
z
|
||||
" style="stroke: #e4d9ee; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pb1b680e6d3)">
|
||||
<use xlink:href="#m144c2aa1cb" x="0" y="253.19952" style="fill: #e4d9ee; fill-opacity: 0.5; stroke: #e4d9ee; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p8bc69bc7fd)">
|
||||
<use xlink:href="#m94778de708" x="0" y="253.19952" style="fill: #e4d9ee; fill-opacity: 0.5; stroke: #e4d9ee; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_6">
|
||||
<defs>
|
||||
<path id="m9d13b9502c" d="M 66.755448 -165.919029
|
||||
<path id="m09468a4b80" d="M 66.755448 -165.919029
|
||||
L 66.755448 -165.919029
|
||||
L 66.890065 -165.919029
|
||||
L 67.024682 -165.919029
|
||||
|
@ -36111,20 +36111,20 @@ L 66.755448 -165.919029
|
|||
z
|
||||
" style="stroke: #e5d3cf; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pb1b680e6d3)">
|
||||
<use xlink:href="#m9d13b9502c" x="0" y="253.19952" style="fill: #e5d3cf; fill-opacity: 0.5; stroke: #e5d3cf; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p8bc69bc7fd)">
|
||||
<use xlink:href="#m09468a4b80" x="0" y="253.19952" style="fill: #e5d3cf; fill-opacity: 0.5; stroke: #e5d3cf; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m38db1f5aff" d="M 0 0
|
||||
<path id="m8ae86bf49e" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m38db1f5aff" x="66.755448" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8ae86bf49e" x="66.755448" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -36160,7 +36160,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m38db1f5aff" x="122.845933" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8ae86bf49e" x="122.845933" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -36226,7 +36226,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m38db1f5aff" x="178.936419" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8ae86bf49e" x="178.936419" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -36240,7 +36240,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m38db1f5aff" x="235.026905" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8ae86bf49e" x="235.026905" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -36275,7 +36275,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m38db1f5aff" x="291.117391" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8ae86bf49e" x="291.117391" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -36310,7 +36310,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m38db1f5aff" x="347.207876" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8ae86bf49e" x="347.207876" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -36325,7 +36325,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m38db1f5aff" x="403.298362" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8ae86bf49e" x="403.298362" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -36340,7 +36340,7 @@ z
|
|||
<g id="xtick_8">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m38db1f5aff" x="459.388848" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8ae86bf49e" x="459.388848" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
|
@ -36383,12 +36383,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_9">
|
||||
<defs>
|
||||
<path id="m3b091efa32" d="M 0 0
|
||||
<path id="m4b72e8116c" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m3b091efa32" x="46.562873" y="189.388826" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m4b72e8116c" x="46.562873" y="189.388826" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -36422,7 +36422,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m3b091efa32" x="46.562873" y="155.352714" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m4b72e8116c" x="46.562873" y="155.352714" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -36438,7 +36438,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m3b091efa32" x="46.562873" y="121.316603" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m4b72e8116c" x="46.562873" y="121.316603" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -36454,7 +36454,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m3b091efa32" x="46.562873" y="87.280491" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m4b72e8116c" x="46.562873" y="87.280491" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -36469,7 +36469,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m3b091efa32" x="46.562873" y="53.24438" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m4b72e8116c" x="46.562873" y="53.24438" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
|
@ -36484,7 +36484,7 @@ z
|
|||
<g id="ytick_6">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#m3b091efa32" x="46.562873" y="19.208268" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m4b72e8116c" x="46.562873" y="19.208268" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
|
@ -36678,16 +36678,16 @@ z
|
|||
<g id="LineCollection_1">
|
||||
<path d="M 66.755448 87.280491
|
||||
L 66.755448 87.280491
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 201.372614 78.39964
|
||||
L 201.372614 78.339152
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 335.989779 78.395429
|
||||
L 335.989779 78.335336
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 470.606945 78.333781
|
||||
L 470.606945 78.272537
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 66.755448 87.280491
|
||||
|
@ -36920,21 +36920,21 @@ L 468.45307 78.154872
|
|||
L 469.530008 78.292838
|
||||
L 470.606945 78.303159
|
||||
L 470.606945 78.303159
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #7fbee9; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #7fbee9; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_2">
|
||||
<path d="M 66.755448 87.280491
|
||||
L 66.755448 87.280491
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 201.372614 64.59239
|
||||
L 201.372614 64.556679
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 335.989779 41.769182
|
||||
L 335.989779 41.718605
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 470.606945 18.888624
|
||||
L 470.606945 18.826691
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 66.755448 87.280491
|
||||
|
@ -37020,21 +37020,21 @@ L 468.587688 18.796657
|
|||
L 469.933859 18.857311
|
||||
L 470.606945 18.857657
|
||||
L 470.606945 18.857657
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #ffbf86; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #ffbf86; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_3">
|
||||
<path d="M 66.755448 87.280491
|
||||
L 66.755448 87.280491
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 201.372614 87.280491
|
||||
L 201.372614 87.280491
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 335.989779 87.280491
|
||||
L 335.989779 87.280491
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 470.606945 87.280491
|
||||
L 470.606945 87.280491
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 66.755448 87.280491
|
||||
|
@ -37128,21 +37128,21 @@ L 469.126156 87.436236
|
|||
L 469.799242 87.293337
|
||||
L 470.606945 87.280491
|
||||
L 470.606945 87.280491
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #87de87; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #87de87; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_4">
|
||||
<path d="M 66.755448 87.280491
|
||||
L 66.755448 87.280491
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
<path d="M 201.372614 140.922145
|
||||
L 201.372614 140.709099
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
<path d="M 335.989779 174.082703
|
||||
L 335.989779 173.780709
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
<path d="M 470.606945 207.4221
|
||||
L 470.606945 207.051843
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 66.755448 87.280491
|
||||
|
@ -37235,21 +37235,21 @@ L 401.952191 207.239349
|
|||
L 443.818129 207.236971
|
||||
L 470.606945 207.236971
|
||||
L 470.606945 207.236971
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #eb9293; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #eb9293; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_5">
|
||||
<path d="M 66.755448 87.280491
|
||||
L 66.755448 87.280491
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 201.372614 87.280491
|
||||
L 201.372614 87.280491
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 335.989779 87.280491
|
||||
L 335.989779 87.280491
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 470.606945 87.280491
|
||||
L 470.606945 87.280491
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
<path d="M 66.755448 87.280491
|
||||
|
@ -37396,21 +37396,21 @@ L 402.759894 87.279029
|
|||
L 425.375577 87.280491
|
||||
L 470.606945 87.280491
|
||||
L 470.606945 87.280491
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #c9b3de; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #c9b3de; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_6">
|
||||
<path d="M 66.755448 87.280491
|
||||
L 66.755448 87.280491
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
<path d="M 201.372614 108.832951
|
||||
L 201.372614 108.800982
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
<path d="M 335.989779 118.907586
|
||||
L 335.989779 118.859934
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
<path d="M 470.606945 128.912174
|
||||
L 470.606945 128.852923
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
<path d="M 66.755448 87.280491
|
||||
|
@ -37563,11 +37563,11 @@ L 468.991539 129.030379
|
|||
L 469.664625 128.899123
|
||||
L 470.606945 128.882548
|
||||
L 470.606945 128.882548
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #cca79f; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #cca79f; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_21">
|
||||
<defs>
|
||||
<path id="m115af57a46" d="M 0 1
|
||||
<path id="m778925d420" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37579,16 +37579,16 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pb1b680e6d3)">
|
||||
<use xlink:href="#m115af57a46" x="66.755448" y="87.280491" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m115af57a46" x="201.372614" y="78.369396" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m115af57a46" x="335.989779" y="78.365382" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m115af57a46" x="470.606945" y="78.303159" style="fill: #1f77b4"/>
|
||||
<g clip-path="url(#p8bc69bc7fd)">
|
||||
<use xlink:href="#m778925d420" x="66.755448" y="87.280491" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m778925d420" x="201.372614" y="78.369396" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m778925d420" x="335.989779" y="78.365382" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m778925d420" x="470.606945" y="78.303159" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_22">
|
||||
<defs>
|
||||
<path id="maed01cb362" d="M 0 1
|
||||
<path id="ma187ebcd2a" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37600,16 +37600,16 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pb1b680e6d3)">
|
||||
<use xlink:href="#maed01cb362" x="66.755448" y="87.280491" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#maed01cb362" x="201.372614" y="64.574534" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#maed01cb362" x="335.989779" y="41.743893" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#maed01cb362" x="470.606945" y="18.857657" style="fill: #ff7f0e"/>
|
||||
<g clip-path="url(#p8bc69bc7fd)">
|
||||
<use xlink:href="#ma187ebcd2a" x="66.755448" y="87.280491" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#ma187ebcd2a" x="201.372614" y="64.574534" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#ma187ebcd2a" x="335.989779" y="41.743893" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#ma187ebcd2a" x="470.606945" y="18.857657" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_23">
|
||||
<defs>
|
||||
<path id="m524610a1fe" d="M 0 1
|
||||
<path id="m4eee69ec9e" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37621,16 +37621,16 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pb1b680e6d3)">
|
||||
<use xlink:href="#m524610a1fe" x="66.755448" y="87.280491" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m524610a1fe" x="201.372614" y="87.280491" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m524610a1fe" x="335.989779" y="87.280491" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m524610a1fe" x="470.606945" y="87.280491" style="fill: #2ca02c"/>
|
||||
<g clip-path="url(#p8bc69bc7fd)">
|
||||
<use xlink:href="#m4eee69ec9e" x="66.755448" y="87.280491" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m4eee69ec9e" x="201.372614" y="87.280491" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m4eee69ec9e" x="335.989779" y="87.280491" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m4eee69ec9e" x="470.606945" y="87.280491" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_24">
|
||||
<defs>
|
||||
<path id="mf32eb940e6" d="M 0 1
|
||||
<path id="m4525c58dbd" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37642,16 +37642,16 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pb1b680e6d3)">
|
||||
<use xlink:href="#mf32eb940e6" x="66.755448" y="87.280491" style="fill: #d62728"/>
|
||||
<use xlink:href="#mf32eb940e6" x="201.372614" y="140.815622" style="fill: #d62728"/>
|
||||
<use xlink:href="#mf32eb940e6" x="335.989779" y="173.931706" style="fill: #d62728"/>
|
||||
<use xlink:href="#mf32eb940e6" x="470.606945" y="207.236971" style="fill: #d62728"/>
|
||||
<g clip-path="url(#p8bc69bc7fd)">
|
||||
<use xlink:href="#m4525c58dbd" x="66.755448" y="87.280491" style="fill: #d62728"/>
|
||||
<use xlink:href="#m4525c58dbd" x="201.372614" y="140.815622" style="fill: #d62728"/>
|
||||
<use xlink:href="#m4525c58dbd" x="335.989779" y="173.931706" style="fill: #d62728"/>
|
||||
<use xlink:href="#m4525c58dbd" x="470.606945" y="207.236971" style="fill: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_25">
|
||||
<defs>
|
||||
<path id="md37ebaf45a" d="M 0 1
|
||||
<path id="m0c38f2b833" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37663,11 +37663,11 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pb1b680e6d3)">
|
||||
<use xlink:href="#md37ebaf45a" x="66.755448" y="87.280491" style="fill: #9467bd"/>
|
||||
<use xlink:href="#md37ebaf45a" x="201.372614" y="87.280491" style="fill: #9467bd"/>
|
||||
<use xlink:href="#md37ebaf45a" x="335.989779" y="87.280491" style="fill: #9467bd"/>
|
||||
<use xlink:href="#md37ebaf45a" x="470.606945" y="87.280491" style="fill: #9467bd"/>
|
||||
<g clip-path="url(#p8bc69bc7fd)">
|
||||
<use xlink:href="#m0c38f2b833" x="66.755448" y="87.280491" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m0c38f2b833" x="201.372614" y="87.280491" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m0c38f2b833" x="335.989779" y="87.280491" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m0c38f2b833" x="470.606945" y="87.280491" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_26">
|
||||
|
@ -37675,9 +37675,9 @@ z
|
|||
L 201.372614 108.816966
|
||||
L 335.989779 118.88376
|
||||
L 470.606945 128.882548
|
||||
" clip-path="url(#pb1b680e6d3)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p8bc69bc7fd)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="m57a4532295" d="M 0 1
|
||||
<path id="m587df0b5bb" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37689,11 +37689,11 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pb1b680e6d3)">
|
||||
<use xlink:href="#m57a4532295" x="66.755448" y="87.280491" style="fill: #8c564b"/>
|
||||
<use xlink:href="#m57a4532295" x="201.372614" y="108.816966" style="fill: #8c564b"/>
|
||||
<use xlink:href="#m57a4532295" x="335.989779" y="118.88376" style="fill: #8c564b"/>
|
||||
<use xlink:href="#m57a4532295" x="470.606945" y="128.882548" style="fill: #8c564b"/>
|
||||
<g clip-path="url(#p8bc69bc7fd)">
|
||||
<use xlink:href="#m587df0b5bb" x="66.755448" y="87.280491" style="fill: #8c564b"/>
|
||||
<use xlink:href="#m587df0b5bb" x="201.372614" y="108.816966" style="fill: #8c564b"/>
|
||||
<use xlink:href="#m587df0b5bb" x="335.989779" y="118.88376" style="fill: #8c564b"/>
|
||||
<use xlink:href="#m587df0b5bb" x="470.606945" y="128.882548" style="fill: #8c564b"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
|
@ -37738,7 +37738,7 @@ L 63.662873 131.635821
|
|||
<g id="line2d_27"/>
|
||||
<g id="line2d_28">
|
||||
<g>
|
||||
<use xlink:href="#m115af57a46" x="63.662873" y="136.135821" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m778925d420" x="63.662873" y="136.135821" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
|
@ -37872,7 +37872,7 @@ L 63.662873 145.102197
|
|||
<g id="line2d_29"/>
|
||||
<g id="line2d_30">
|
||||
<g>
|
||||
<use xlink:href="#maed01cb362" x="63.662873" y="149.602197" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#ma187ebcd2a" x="63.662873" y="149.602197" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
|
@ -38046,7 +38046,7 @@ L 63.662873 158.568574
|
|||
<g id="line2d_31"/>
|
||||
<g id="line2d_32">
|
||||
<g>
|
||||
<use xlink:href="#m524610a1fe" x="63.662873" y="163.068574" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m4eee69ec9e" x="63.662873" y="163.068574" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_19">
|
||||
|
@ -38099,7 +38099,7 @@ L 63.662873 172.03495
|
|||
<g id="line2d_33"/>
|
||||
<g id="line2d_34">
|
||||
<g>
|
||||
<use xlink:href="#mf32eb940e6" x="63.662873" y="176.53495" style="fill: #d62728"/>
|
||||
<use xlink:href="#m4525c58dbd" x="63.662873" y="176.53495" style="fill: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_20">
|
||||
|
@ -38175,7 +38175,7 @@ L 63.662873 185.501326
|
|||
<g id="line2d_35"/>
|
||||
<g id="line2d_36">
|
||||
<g>
|
||||
<use xlink:href="#md37ebaf45a" x="63.662873" y="190.001326" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m0c38f2b833" x="63.662873" y="190.001326" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_21">
|
||||
|
@ -38204,7 +38204,7 @@ L 72.662873 203.467702
|
|||
</g>
|
||||
<g id="line2d_38">
|
||||
<g>
|
||||
<use xlink:href="#m57a4532295" x="63.662873" y="203.467702" style="fill: #8c564b"/>
|
||||
<use xlink:href="#m587df0b5bb" x="63.662873" y="203.467702" style="fill: #8c564b"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_22">
|
||||
|
@ -38220,7 +38220,7 @@ L 72.662873 203.467702
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pb1b680e6d3">
|
||||
<clipPath id="p8bc69bc7fd">
|
||||
<rect x="46.562873" y="7.2" width="444.236647" height="209.759296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 966 KiB After Width: | Height: | Size: 966 KiB |
|
@ -9,7 +9,6 @@ find if there is an improvement.
|
|||
* Boilerplate
|
||||
#+name: boilerplate
|
||||
#+begin_src jupyter-python :results none
|
||||
import figsaver as fs
|
||||
import plot_utils as pu
|
||||
from hiro_models.one_qubit_model import StocProcTolerances
|
||||
from hiro_models.otto_cycle import OttoEngine
|
||||
|
@ -22,6 +21,7 @@ find if there is an improvement.
|
|||
import otto_utilities as ot
|
||||
import shift_cycle as sc
|
||||
import ray
|
||||
import figsaver as fs
|
||||
ray.shutdown()
|
||||
|
||||
#ray.init(address='auto')
|
||||
|
@ -29,7 +29,6 @@ find if there is an improvement.
|
|||
from hops.util.logging_setup import logging_setup
|
||||
import logging
|
||||
logging_setup(logging.INFO)
|
||||
plt.rcParams['figure.figsize'] = (12,4)
|
||||
#+end_src
|
||||
|
||||
* Cycles
|
||||
|
@ -80,7 +79,7 @@ We shift so that we just overlap with coupling/decoupling and one above.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/af1722dd51faebbec05b3013eba2c2e2864dd0f4.svg]]
|
||||
[[file:./.ob-jupyter/02cbbf58cd0cbe9a198d4e1b1ca05e1435224c50.svg]]
|
||||
|
||||
#+begin_src jupyter-python :tangle no
|
||||
#ot.plot_cycles(models, bath=0, legend=True)
|
||||
|
@ -104,7 +103,7 @@ We shift so that we just overlap with coupling/decoupling and one above.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/73ad99c8f33025ef14048abda5eeefe8c0dd7b15.svg]]
|
||||
[[file:./.ob-jupyter/2eaccf65458d4ed821c07abbb83664ee16b423f9.svg]]
|
||||
|
||||
** Integrate
|
||||
#+begin_src jupyter-python :tangle tangle/original.py
|
||||
|
@ -112,7 +111,6 @@ We shift so that we just overlap with coupling/decoupling and one above.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: 88731cee-8bf8-411e-b9db-0b0138807646
|
||||
|
||||
** Analysis
|
||||
#+begin_src jupyter-python
|
||||
|
@ -147,7 +145,7 @@ We shift so that we just overlap with coupling/decoupling and one above.
|
|||
#+RESULTS:
|
||||
:RESULTS:
|
||||
: \(N=80000\)
|
||||
[[file:./.ob-jupyter/7c4c619d2f9e55840f6181197c2c4e96a71c324a.svg]]
|
||||
[[file:./.ob-jupyter/f365b8ee0b20cdf41f305aaaf802be5b634b2953.svg]]
|
||||
:END:
|
||||
|
||||
#+begin_src jupyter-python
|
||||
|
@ -158,7 +156,7 @@ We shift so that we just overlap with coupling/decoupling and one above.
|
|||
return ρ
|
||||
import hops.util.utilities
|
||||
from hopsflow.util import EnsembleValue
|
||||
for model in models[3:4]:
|
||||
for model in [baseline]:
|
||||
with aux.get_data(model) as data:
|
||||
trace_dist_c = hops.util.utilities.trace_distance(data, relative_to=thermal_state(model.T[0], model.energy_gaps[0]))
|
||||
trace_dist_h = hops.util.utilities.trace_distance(data, relative_to=thermal_state(model.T[1], model.energy_gaps[1]))
|
||||
|
@ -202,7 +200,7 @@ We shift so that we just overlap with coupling/decoupling and one above.
|
|||
/nix/store/08ccd1bg10pbkpv71fwccyxabr1cycim-python3-3.9.15-env/lib/python3.9/site-packages/matplotlib/axes/_axes.py:5346: ComplexWarning: Casting complex values to real discards the imaginary part
|
||||
pts[N+2:, 1] = dep2slice[::-1]
|
||||
#+end_example
|
||||
[[file:./.ob-jupyter/81d7229d7ed52abe3f521c318cdeeeb4c52e5a87.svg]]
|
||||
[[file:./.ob-jupyter/de007b03b6f53431f27dcfefdd5740a92e27b785.svg]]
|
||||
:END:
|
||||
|
||||
#+begin_src jupyter-python
|
||||
|
@ -211,6 +209,7 @@ We shift so that we just overlap with coupling/decoupling and one above.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/1a1f8810d9deff000ef064ac9ff34c328f5e846b.svg]]
|
||||
|
||||
|
||||
#+begin_src jupyter-python
|
||||
|
@ -606,14 +605,31 @@ modulation.
|
|||
:END:
|
||||
|
||||
** Slower switching
|
||||
#+begin_src jupyter-python :results none :tangle tangle/long.py
|
||||
<<boilerplate>>
|
||||
#+begin_src jupyter-python :tangle tangle/long.py
|
||||
#<<boilerplate>>
|
||||
shifts = sc.make_shifts(extra_r=4)
|
||||
|
||||
long_models = [sc.make_model(shift, shift, switch_t=6., switch_t_sys=3) for shift in shifts]
|
||||
#long_models = [sc.make_model(shift, shift, switch_t=6., switch_t_sys=3) for shift in shifts]
|
||||
long_models = [sc.make_model(shift, shift, switch_t=6.) for shift in shifts]
|
||||
long_baseline = sc.make_model(0., 0., switch_t=6.)
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
#+begin_example
|
||||
7.199999999999999
|
||||
7.199999999999999
|
||||
7.199999999999999
|
||||
7.199999999999999
|
||||
7.199999999999999
|
||||
7.199999999999999
|
||||
7.199999999999999
|
||||
7.199999999999999
|
||||
7.199999999999999
|
||||
7.199999999999999
|
||||
7.199999999999999
|
||||
7.199999999999999
|
||||
#+end_example
|
||||
|
||||
#+begin_src jupyter-python :tangle no
|
||||
fig, ax = plt.subplots()
|
||||
t = np.linspace(0, models[0].Θ, 1000)
|
||||
|
@ -631,8 +647,8 @@ modulation.
|
|||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
: <matplotlib.legend.Legend at 0x7fe9b15f0340>
|
||||
[[file:./.ob-jupyter/cb7df72fdbae443014029e58c57c8cd040d2cdad.svg]]
|
||||
: <matplotlib.legend.Legend at 0x7fe235bfd1f0>
|
||||
[[file:./.ob-jupyter/b97b3645c10c9324bb66e178bdf8b63ec4a5a628.svg]]
|
||||
:END:
|
||||
|
||||
|
||||
|
@ -660,16 +676,15 @@ modulation.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/ad6aa52c6730f14c9f10f32edb03ae96b8f6a006.svg]]
|
||||
|
||||
[[file:./.ob-jupyter/ac824b547713cd79da184599c7f503e85b44bc40.svg]]
|
||||
|
||||
#+begin_src jupyter-python :tangle tangle/long.py
|
||||
ot.integrate_online_multi(long_models, 80_000, increment=10_000, analyze_kwargs=dict(every=10_000))
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
|
||||
#+begin_src jupyter-python
|
||||
long_baseline = long_models[np.argmin(abs(np.array(shifts) - 0))]
|
||||
long_baseline = best_shift_model
|
||||
for shift, model in zip(shifts, long_models):
|
||||
print(
|
||||
shift, best_shift,
|
||||
|
@ -682,17 +697,17 @@ modulation.
|
|||
|
||||
#+RESULTS:
|
||||
#+begin_example
|
||||
-0.18 0.12 80000 -0.7432352797196996 -98.3933277583729 (-0.6547883379568094, 0.32914493962691976)
|
||||
-0.12 0.12 80000 0.5515764970059213 -4.588837155210551 (0.28325656807481425, 0.32914493962691976)
|
||||
-0.06 0.12 80000 0.9849641934327689 10.389858999462525 (0.433043529621545, 0.32914493962691976)
|
||||
0.0 0.12 80000 0.9864290608793423 10.386118256193916 (0.4330061221888589, 0.32914493962691976)
|
||||
0.06 0.12 80000 0.9777553355809067 10.616195121156663 (0.4353068908384864, 0.32914493962691976)
|
||||
0.12 0.12 80000 1.1185864670592693 10.712677023075978 (0.43627170985767955, 0.32914493962691976)
|
||||
0.18 0.12 80000 1.280064611377701 7.403981413620636 (0.4031847537631261, 0.32914493962691976)
|
||||
0.24 0.12 80000 1.1867997141496045 2.747192020803302 (0.3566168598349528, 0.32914493962691976)
|
||||
0.3 0.12 80000 0.7281813558728701 -10.479096524510464 (0.22435397438181512, 0.32914493962691976)
|
||||
0.36 0.12 80000 -0.45197344202291523 -49.898300662353925 (-0.16983806699661946, 0.32914493962691976)
|
||||
0.42 0.12 80000 -1.4644608753444812 -108.49803909971185 (-0.7558354513701987, 0.32914493962691976)
|
||||
-0.18 0.12 80000 -0.7534604455561659 -108.77944601456684 (-0.6547883379568094, 0.4330061221888589)
|
||||
-0.12 0.12 80000 0.5591648896822077 -14.974955411404467 (0.28325656807481425, 0.4330061221888589)
|
||||
-0.06 0.12 80000 0.9985149794296736 0.0037407432686098474 (0.433043529621545, 0.4330061221888589)
|
||||
0.0 0.12 80000 1.0 0.0 (0.4330061221888589, 0.4330061221888589)
|
||||
0.06 0.12 80000 0.991206944683175 0.23007686496274715 (0.4353068908384864, 0.4330061221888589)
|
||||
0.12 0.12 80000 1.1339755806282883 0.3265587668820624 (0.43627170985767955, 0.4330061221888589)
|
||||
0.18 0.12 80000 1.297675283650504 -2.9821368425732797 (0.4031847537631261, 0.4330061221888589)
|
||||
0.24 0.12 80000 1.2031272812376834 -7.638926235390614 (0.3566168598349528, 0.4330061221888589)
|
||||
0.3 0.12 80000 0.7381994151953918 -20.86521478070438 (0.22435397438181512, 0.4330061221888589)
|
||||
0.36 0.12 80000 -0.45819153140116126 -60.284418918547836 (-0.16983806699661946, 0.4330061221888589)
|
||||
0.42 0.12 80000 -1.4846084056353754 -118.88415735590576 (-0.7558354513701987, 0.4330061221888589)
|
||||
#+end_example
|
||||
|
||||
|
||||
|
@ -710,7 +725,7 @@ modulation.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/3c84f70ced5643089d048ba60451f50a3409c231.svg]]
|
||||
[[file:./.ob-jupyter/04d76de3e6d507097b891765428934a25429abaf.svg]]
|
||||
|
||||
Aho! The trick is just to slow down the coupling switching.
|
||||
|
||||
|
@ -723,8 +738,8 @@ Aho! The trick is just to slow down the coupling switching.
|
|||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
: <matplotlib.legend.Legend at 0x7fe9b08ff2e0>
|
||||
[[file:./.ob-jupyter/4fb778a2d542fde60accec2963706290dff4418b.svg]]
|
||||
: <matplotlib.legend.Legend at 0x7f0ef3d3d940>
|
||||
[[file:./.ob-jupyter/bbb9d138d6915d98c086c7f49d76baf55e5f8e0c.svg]]
|
||||
:END:
|
||||
|
||||
#+begin_src jupyter-python
|
||||
|
@ -741,7 +756,7 @@ Aho! The trick is just to slow down the coupling switching.
|
|||
# [goto error]
|
||||
: [0;31m---------------------------------------------------------------------------[0m
|
||||
: [0;31mNameError[0m Traceback (most recent call last)
|
||||
: Cell [0;32mIn[27], line 3[0m
|
||||
: Cell [0;32mIn[53], line 3[0m
|
||||
: [1;32m 1[0m powers_long [38;5;241m=[39m [[38;5;241m-[39mmodel[38;5;241m.[39mpower(steady_idx[38;5;241m=[39m[38;5;241m2[39m)[38;5;241m.[39mvalue [38;5;28;01mfor[39;00m model [38;5;129;01min[39;00m long_models]
|
||||
: [1;32m 2[0m powers_short [38;5;241m=[39m [[38;5;241m-[39mmodel[38;5;241m.[39mpower(steady_idx[38;5;241m=[39m[38;5;241m2[39m)[38;5;241m.[39mvalue [38;5;28;01mfor[39;00m model [38;5;129;01min[39;00m models]
|
||||
: [0;32m----> 3[0m power_overlap [38;5;241m=[39m [38;5;241m-[39m[43moverlap_models[49m[[38;5;241m0[39m][38;5;241m.[39mpower(steady_idx[38;5;241m=[39m[38;5;241m2[39m)[38;5;241m.[39mvalue
|
||||
|
@ -804,7 +819,7 @@ Now let's try to find out why the efficiency improved.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/1446c6e53dac7fbcb1089dcf980e7299b7d75301.svg]]
|
||||
[[file:./.ob-jupyter/8cb5b5062c2f5c2b8d1cb21f999a299098958e0d.svg]]
|
||||
Way less energy is dumped into the cold bath.
|
||||
|
||||
#+begin_src jupyter-python
|
||||
|
@ -853,17 +868,17 @@ Way less energy is dumped into the cold bath.
|
|||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
: /home/hiro/src/hopsflow/hopsflow/util.py:332: RuntimeWarning: divide by zero encountered in divide
|
||||
: /home/hiro/src/hopsflow/hopsflow/util.py:331: RuntimeWarning: divide by zero encountered in divide
|
||||
: left_i[1] / right_i[1],
|
||||
: /home/hiro/src/hopsflow/hopsflow/util.py:332: RuntimeWarning: invalid value encountered in divide
|
||||
: /home/hiro/src/hopsflow/hopsflow/util.py:331: RuntimeWarning: invalid value encountered in divide
|
||||
: left_i[1] / right_i[1],
|
||||
: /home/hiro/src/hopsflow/hopsflow/util.py:334: RuntimeWarning: divide by zero encountered in divide
|
||||
: /home/hiro/src/hopsflow/hopsflow/util.py:333: RuntimeWarning: divide by zero encountered in divide
|
||||
: (left_i[2] / right_i[1]) ** 2
|
||||
: /home/hiro/src/hopsflow/hopsflow/util.py:335: RuntimeWarning: divide by zero encountered in divide
|
||||
: /home/hiro/src/hopsflow/hopsflow/util.py:334: RuntimeWarning: divide by zero encountered in divide
|
||||
: + (left_i[1] / (right_i[1]) ** 2 * right_i[2]) ** 2
|
||||
: /home/hiro/src/hopsflow/hopsflow/util.py:335: RuntimeWarning: invalid value encountered in divide
|
||||
: /home/hiro/src/hopsflow/hopsflow/util.py:334: RuntimeWarning: invalid value encountered in divide
|
||||
: + (left_i[1] / (right_i[1]) ** 2 * right_i[2]) ** 2
|
||||
[[file:./.ob-jupyter/3d588233ddaeb47b80e2d98855937e09ec32bd3f.svg]]
|
||||
[[file:./.ob-jupyter/73f0fb2a97297159d4517b28ae328108d70c260c.svg]]
|
||||
:END:
|
||||
|
||||
#+begin_src jupyter-python
|
||||
|
@ -895,9 +910,39 @@ Way less energy is dumped into the cold bath.
|
|||
#+end_src
|
||||
|
||||
#+begin_src jupyter-python :tangle tangle/only_cold.py
|
||||
ot.integrate_online_multi(cold_models, 80_000, increment=10_000, analyze_kwargs=dict(every=10_000))
|
||||
ot.integrate_online_multi(cold_models, 1, increment=1, analyze_kwargs=dict(every=10_000))
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
#+begin_example
|
||||
[INFO hops.core.integration 7496] Choosing the nonlinear integrator.
|
||||
[INFO root 7496] Starting analysis process.
|
||||
[INFO root 7496] Started analysis process with pid 16271.
|
||||
/home/hiro/src/hops/hops/core/hierarchy_data.py:570: UserWarning: Moving .data/5d118bc5b64eb105ed45c825742f9241f81efa681dc7f6095b7d27ab6b96c284/_6/5d118bc5b64eb105ed45c825742f9241f81efa681dc7f6095b7d27ab6b96c284_6c882ba21738f240daf65b5a8bfeab4b_1.h5 to .data/5d118bc5b64eb105ed45c825742f9241f81efa681dc7f6095b7d27ab6b96c284/_6/5d118bc5b64eb105ed45c825742f9241f81efa681dc7f6095b7d27ab6b96c284_6c882ba21738f240daf65b5a8bfeab4b_1.h5backup_1683647050.4820192 and starting fresh.
|
||||
warnings.warn(
|
||||
[INFO hops.core.hierarchy_data 7496] Creating the streaming fifo at: /home/hiro/Documents/Projects/UNI/master/eflow_paper/python/otto_motor/subprojects/cycle_shift/results_5d118bc5b64eb105ed45c825742f9241f81efa681dc7f6095b7d27ab6b96c284.fifo
|
||||
[INFO hops.core.integration 7496] Using 13 integrators.
|
||||
[INFO hops.core.integration 7496] Some 1 trajectories have to be integrated.
|
||||
[INFO hops.core.integration 7496] Using 1001 hierarchy states.
|
||||
100% 1/1 [00:09<00:00, 9.14s/it]
|
||||
[INFO hops.core.integration 7496] Choosing the nonlinear integrator.
|
||||
[INFO root 7496] Starting analysis process.
|
||||
[INFO root 7496] Started analysis process with pid 16288.
|
||||
[INFO hops.core.hierarchy_data 7496] Creating the streaming fifo at: /home/hiro/Documents/Projects/UNI/master/eflow_paper/python/otto_motor/subprojects/cycle_shift/results_a86b8a23ecd962904a2008808f85b00b9c337e36dc6bebe3b806343510f0ec7f.fifo
|
||||
[INFO hops.core.integration 7496] Using 13 integrators.
|
||||
[INFO hops.core.integration 7496] Some 1 trajectories have to be integrated.
|
||||
[INFO hops.core.integration 7496] Using 1001 hierarchy states.
|
||||
100% 1/1 [00:08<00:00, 8.61s/it]
|
||||
[INFO hops.core.integration 7496] Choosing the nonlinear integrator.
|
||||
[INFO root 7496] Starting analysis process.
|
||||
[INFO root 7496] Started analysis process with pid 16320.
|
||||
[INFO hops.core.hierarchy_data 7496] Creating the streaming fifo at: /home/hiro/Documents/Projects/UNI/master/eflow_paper/python/otto_motor/subprojects/cycle_shift/results_ca94f36cbacd1b29d6e4f3cf384624ef0f4930ef3b0f12b09179efb17e327454.fifo
|
||||
[INFO hops.core.integration 7496] Using 13 integrators.
|
||||
[INFO hops.core.integration 7496] Some 1 trajectories have to be integrated.
|
||||
[INFO hops.core.integration 7496] Using 1001 hierarchy states.
|
||||
100% 1/1 [00:09<00:00, 9.09s/it]
|
||||
#+end_example
|
||||
|
||||
*** Cycle showcase
|
||||
#+begin_src jupyter-python :tangle no
|
||||
fig, ax = plt.subplots()
|
||||
|
@ -916,9 +961,8 @@ Way less energy is dumped into the cold bath.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/de3eb2a9f0973f77f95d912248d6f10ee0635854.svg]]
|
||||
[[file:./.ob-jupyter/6f46b84d2bad1908064cc760b32f1330b4dd9530.svg]]
|
||||
|
||||
[[file:./.ob-jupyter/e3413d8306c7996bd7476d0047a621c7c973187e.svg]]
|
||||
|
||||
#+begin_src jupyter-python
|
||||
from itertools import cycle
|
||||
|
@ -942,7 +986,7 @@ Way less energy is dumped into the cold bath.
|
|||
#+RESULTS:
|
||||
:RESULTS:
|
||||
| 0.0 | 60.0 |
|
||||
[[file:./.ob-jupyter/71e4dbcb0c094107e336437a1247ef0a1e316bcb.svg]]
|
||||
[[file:./.ob-jupyter/91f5f58abe88d312dda69ea17845661d235cbb7b.svg]]
|
||||
:END:
|
||||
|
||||
#+begin_src jupyter-python
|
||||
|
@ -967,13 +1011,12 @@ Way less energy is dumped into the cold bath.
|
|||
# [goto error]
|
||||
#+begin_example
|
||||
[0;31m---------------------------------------------------------------------------[0m
|
||||
[0;31mValueError[0m Traceback (most recent call last)
|
||||
Cell [0;32mIn[36], line 3[0m
|
||||
[0;31mRuntimeError[0m Traceback (most recent call last)
|
||||
Cell [0;32mIn[56], line 2[0m
|
||||
[1;32m 1[0m fig, (ax2, ax1, ax3) [38;5;241m=[39m plt[38;5;241m.[39msubplots(nrows[38;5;241m=[39m[38;5;241m1[39m, ncols[38;5;241m=[39m[38;5;241m3[39m)
|
||||
[1;32m 2[0m _, ax1_right [38;5;241m=[39m ot[38;5;241m.[39mplot_powers_and_efficiencies(np[38;5;241m.[39marray(shifts) [38;5;241m*[39m [38;5;241m100[39m, cold_models, xlabel[38;5;241m=[39m[38;5;124m"[39m[38;5;124mCycle Shift[39m[38;5;124m"[39m, ax[38;5;241m=[39max1)[[38;5;241m2[39m]
|
||||
[0;32m----> 3[0m _, ax2_right [38;5;241m=[39m [43mot[49m[38;5;241;43m.[39;49m[43mplot_powers_and_efficiencies[49m[43m([49m[43mnp[49m[38;5;241;43m.[39;49m[43marray[49m[43m([49m[43mshifts[49m[43m)[49m[43m [49m[38;5;241;43m*[39;49m[43m [49m[38;5;241;43m100[39;49m[43m,[49m[43m [49m[43mlong_models[49m[43m,[49m[43m [49m[43mxlabel[49m[38;5;241;43m=[39;49m[38;5;124;43m"[39;49m[38;5;124;43mCycle Shift[39;49m[38;5;124;43m"[39;49m[43m,[49m[43m [49m[43max[49m[38;5;241;43m=[39;49m[43max2[49m[43m)[49m[[38;5;241m2[39m]
|
||||
[0;32m----> 2[0m _, ax1_right [38;5;241m=[39m [43mot[49m[38;5;241;43m.[39;49m[43mplot_powers_and_efficiencies[49m[43m([49m[43mnp[49m[38;5;241;43m.[39;49m[43marray[49m[43m([49m[43mshifts[49m[43m)[49m[43m [49m[38;5;241;43m*[39;49m[43m [49m[38;5;241;43m100[39;49m[43m,[49m[43m [49m[43mcold_models[49m[43m,[49m[43m [49m[43mxlabel[49m[38;5;241;43m=[39;49m[38;5;124;43m"[39;49m[38;5;124;43mCycle Shift[39;49m[38;5;124;43m"[39;49m[43m,[49m[43m [49m[43max[49m[38;5;241;43m=[39;49m[43max1[49m[43m)[49m[[38;5;241m2[39m]
|
||||
[1;32m 3[0m _, ax2_right [38;5;241m=[39m ot[38;5;241m.[39mplot_powers_and_efficiencies(np[38;5;241m.[39marray(shifts) [38;5;241m*[39m [38;5;241m100[39m, long_models, xlabel[38;5;241m=[39m[38;5;124m"[39m[38;5;124mCycle Shift[39m[38;5;124m"[39m, ax[38;5;241m=[39max2)[[38;5;241m2[39m]
|
||||
[1;32m 4[0m _, ax3_right [38;5;241m=[39m ot[38;5;241m.[39mplot_powers_and_efficiencies(np[38;5;241m.[39marray(shifts) [38;5;241m*[39m [38;5;241m100[39m, models, xlabel[38;5;241m=[39m[38;5;124m"[39m[38;5;124mCycle Shift[39m[38;5;124m"[39m, ax[38;5;241m=[39max3)[[38;5;241m2[39m]
|
||||
[1;32m 6[0m ax1_right[38;5;241m.[39msharey(ax2_right)
|
||||
|
||||
File [0;32m~/Documents/Projects/UNI/master/eflow_paper/python/otto_motor/subprojects/cycle_shift/plot_utils.py:40[0m, in [0;36mwrap_plot.<locals>.wrapped[0;34m(ax, setup_function, *args, **kwargs)[0m
|
||||
[1;32m 37[0m [38;5;28;01mif[39;00m [38;5;129;01mnot[39;00m ax:
|
||||
|
@ -981,42 +1024,70 @@ Way less energy is dumped into the cold bath.
|
|||
[0;32m---> 40[0m ret_val [38;5;241m=[39m [43mf[49m[43m([49m[38;5;241;43m*[39;49m[43margs[49m[43m,[49m[43m [49m[43max[49m[38;5;241;43m=[39;49m[43max[49m[43m,[49m[43m [49m[38;5;241;43m*[39;49m[38;5;241;43m*[39;49m[43mkwargs[49m[43m)[49m
|
||||
[1;32m 41[0m [38;5;28;01mreturn[39;00m (fig, ax, ret_val) [38;5;28;01mif[39;00m ret_val [38;5;28;01melse[39;00m (fig, ax)
|
||||
|
||||
File [0;32m~/Documents/Projects/UNI/master/eflow_paper/python/otto_motor/subprojects/cycle_shift/otto_utilities.py:80[0m, in [0;36mplot_powers_and_efficiencies[0;34m(x, models, steady_idx, ax, xlabel)[0m
|
||||
[1;32m 78[0m mask [38;5;241m=[39m efficiencies [38;5;241m>[39m [38;5;241m0[39m
|
||||
[1;32m 79[0m a2 [38;5;241m=[39m ax[38;5;241m.[39mtwinx()
|
||||
[0;32m---> 80[0m [43max[49m[38;5;241;43m.[39;49m[43merrorbar[49m[43m([49m[43mx[49m[43m,[49m[43m [49m[43mpowers[49m[43m,[49m[43m [49m[43myerr[49m[38;5;241;43m=[39;49m[43mpowers_σ[49m[43m,[49m[43m [49m[43mmarker[49m[38;5;241;43m=[39;49m[38;5;124;43m"[39;49m[38;5;124;43m.[39;49m[38;5;124;43m"[39;49m[43m,[49m[43m [49m[43mlabel[49m[38;5;241;43m=[39;49m[38;5;124;43mr[39;49m[38;5;124;43m"[39;49m[38;5;124;43m$[39;49m[38;5;124;43m\[39;49m[38;5;124;43mbar[39;49m[38;5;132;43;01m{P}[39;49;00m[38;5;124;43m$[39;49m[38;5;124;43m"[39;49m[43m)[49m
|
||||
[1;32m 81[0m ax[38;5;241m.[39merrorbar(
|
||||
[1;32m 82[0m x,
|
||||
[1;32m 83[0m system_powers,
|
||||
File [0;32m~/Documents/Projects/UNI/master/eflow_paper/python/otto_motor/subprojects/cycle_shift/otto_utilities.py:30[0m, in [0;36mplot_powers_and_efficiencies[0;34m(x, models, steady_idx, ax, xlabel)[0m
|
||||
[1;32m 28[0m [38;5;129m@pu[39m[38;5;241m.[39mwrap_plot
|
||||
[1;32m 29[0m [38;5;28;01mdef[39;00m [38;5;21mplot_powers_and_efficiencies[39m(x, models, steady_idx[38;5;241m=[39m[38;5;241m1[39m, ax[38;5;241m=[39m[38;5;28;01mNone[39;00m, xlabel[38;5;241m=[39m[38;5;124m"[39m[38;5;124m"[39m):
|
||||
[0;32m---> 30[0m powers [38;5;241m=[39m [[38;5;241m-[39mmodel[38;5;241m.[39mpower(steady_idx[38;5;241m=[39msteady_idx)[38;5;241m.[39mvalue [38;5;28;01mfor[39;00m model [38;5;129;01min[39;00m models]
|
||||
[1;32m 31[0m powers_σ [38;5;241m=[39m [model[38;5;241m.[39mpower(steady_idx[38;5;241m=[39msteady_idx)[38;5;241m.[39mσ [38;5;28;01mfor[39;00m model [38;5;129;01min[39;00m models]
|
||||
[1;32m 33[0m ax[38;5;241m.[39maxhline([38;5;241m0[39m, color[38;5;241m=[39m[38;5;124m"[39m[38;5;124mlightgray[39m[38;5;124m"[39m)
|
||||
|
||||
File [0;32m~/Documents/Projects/UNI/master/eflow_paper/python/otto_motor/subprojects/cycle_shift/otto_utilities.py:30[0m, in [0;36m<listcomp>[0;34m(.0)[0m
|
||||
[1;32m 28[0m [38;5;129m@pu[39m[38;5;241m.[39mwrap_plot
|
||||
[1;32m 29[0m [38;5;28;01mdef[39;00m [38;5;21mplot_powers_and_efficiencies[39m(x, models, steady_idx[38;5;241m=[39m[38;5;241m1[39m, ax[38;5;241m=[39m[38;5;28;01mNone[39;00m, xlabel[38;5;241m=[39m[38;5;124m"[39m[38;5;124m"[39m):
|
||||
[0;32m---> 30[0m powers [38;5;241m=[39m [[38;5;241m-[39m[43mmodel[49m[38;5;241;43m.[39;49m[43mpower[49m[43m([49m[43msteady_idx[49m[38;5;241;43m=[39;49m[43msteady_idx[49m[43m)[49m[38;5;241m.[39mvalue [38;5;28;01mfor[39;00m model [38;5;129;01min[39;00m models]
|
||||
[1;32m 31[0m powers_σ [38;5;241m=[39m [model[38;5;241m.[39mpower(steady_idx[38;5;241m=[39msteady_idx)[38;5;241m.[39mσ [38;5;28;01mfor[39;00m model [38;5;129;01min[39;00m models]
|
||||
[1;32m 33[0m ax[38;5;241m.[39maxhline([38;5;241m0[39m, color[38;5;241m=[39m[38;5;124m"[39m[38;5;124mlightgray[39m[38;5;124m"[39m)
|
||||
|
||||
File [0;32m<@beartype(hiro_models.otto_cycle.OttoEngine.power) at 0x7f0f4ec2a820>:31[0m, in [0;36mpower[0;34m(__beartype_func, __beartype_conf, __beartype_get_violation, *args, **kwargs)[0m
|
||||
|
||||
File [0;32m~/src/two_qubit_model/hiro_models/otto_cycle.py:483[0m, in [0;36mOttoEngine.power[0;34m(self, steady_idx, *args, **kwargs)[0m
|
||||
[1;32m 476[0m [38;5;124;03m"""[39;00m
|
||||
[1;32m 477[0m [38;5;124;03mCalculate the mean steady state power. For the arguments see[39;00m
|
||||
[1;32m 478[0m [38;5;124;03m:any:`steady_energy_change`.[39;00m
|
||||
[1;32m 479[0m [38;5;124;03m"""[39;00m
|
||||
[1;32m 481[0m _, indices [38;5;241m=[39m [38;5;28mself[39m[38;5;241m.[39mstrobe
|
||||
[0;32m--> 483[0m [38;5;28;01mreturn[39;00m [38;5;28;43mself[39;49m[38;5;241;43m.[39;49m[43mtotal_power[49m[43m([49m[43m)[49m[38;5;241m.[39mslice([38;5;28mslice[39m(indices[steady_idx], [38;5;28;01mNone[39;00m, [38;5;241m1[39m))[38;5;241m.[39mmean
|
||||
|
||||
File [0;32m~/src/two_qubit_model/hiro_models/model_base.py:649[0m, in [0;36mModel.total_power[0;34m(self, data, **kwargs)[0m
|
||||
[1;32m 638[0m [38;5;28;01mdef[39;00m [38;5;21mtotal_power[39m([38;5;28mself[39m, data: Optional[HIData] [38;5;241m=[39m [38;5;28;01mNone[39;00m, [38;5;241m*[39m[38;5;241m*[39mkwargs) [38;5;241m-[39m[38;5;241m>[39m EnsembleValue:
|
||||
[1;32m 639[0m [38;5;124;03m"""Calculates the total power from the trajectories in[39;00m
|
||||
[1;32m 640[0m [38;5;124;03m ``data`` or, if not supplied, tries to load[39;00m
|
||||
[1;32m 641[0m [38;5;124;03m the online results from ``results_path``.[39;00m
|
||||
[0;32m (...)[0m
|
||||
[1;32m 86[0m label[38;5;241m=[39m[38;5;124mr[39m[38;5;124m"[39m[38;5;124m$[39m[38;5;124m\[39m[38;5;124mbar[39m[38;5;132;01m{P}[39;00m[38;5;124m_[39m[38;5;124m{[39m[38;5;124m\[39m[38;5;124mmathrm[39m[38;5;132;01m{sys}[39;00m[38;5;124m}$[39m[38;5;124m"[39m,
|
||||
[1;32m 87[0m )
|
||||
[1;32m 89[0m ax[38;5;241m.[39merrorbar(
|
||||
[1;32m 90[0m x,
|
||||
[1;32m 91[0m interaction_powers,
|
||||
[1;32m 646[0m [38;5;124;03m :returns: The total power.[39;00m
|
||||
[1;32m 647[0m [38;5;124;03m """[39;00m
|
||||
[0;32m--> 649[0m power [38;5;241m=[39m [38;5;28;43mself[39;49m[38;5;241;43m.[39;49m[43minteraction_power[49m[43m([49m[43mdata[49m[43m,[49m[43m [49m[38;5;241;43m*[39;49m[38;5;241;43m*[39;49m[43mkwargs[49m[43m)[49m[38;5;241m.[39msum_baths()
|
||||
[1;32m 650[0m system_power [38;5;241m=[39m [38;5;28mself[39m[38;5;241m.[39msystem_power(data, [38;5;241m*[39m[38;5;241m*[39mkwargs)
|
||||
[1;32m 652[0m [38;5;28;01mif[39;00m system_power [38;5;129;01mis[39;00m [38;5;129;01mnot[39;00m [38;5;28;01mNone[39;00m:
|
||||
|
||||
File [0;32m~/src/two_qubit_model/hiro_models/model_base.py:560[0m, in [0;36mModel.interaction_power[0;34m(self, data, results_path, **kwargs)[0m
|
||||
[1;32m 550[0m [38;5;124;03m"""Calculates interaction power from the hierarchy data[39;00m
|
||||
[1;32m 551[0m [38;5;124;03m``data`` or, if not supplied, tries to load the online results from ``results_path``.[39;00m
|
||||
[1;32m 552[0m
|
||||
[0;32m (...)[0m
|
||||
[1;32m 94[0m label[38;5;241m=[39m[38;5;124mr[39m[38;5;124m"[39m[38;5;124m$[39m[38;5;124m\[39m[38;5;124mbar[39m[38;5;132;01m{P}[39;00m[38;5;124m_[39m[38;5;124m{[39m[38;5;124m\[39m[38;5;124mmathrm[39m[38;5;132;01m{int}[39;00m[38;5;124m}$[39m[38;5;124m"[39m,
|
||||
[1;32m 95[0m )
|
||||
[1;32m 556[0m [38;5;124;03m:returns: See :any:`hopsflow.util.interaction_energy_ensemble`.[39;00m
|
||||
[1;32m 557[0m [38;5;124;03m"""[39;00m
|
||||
[1;32m 559[0m [38;5;28;01mif[39;00m data [38;5;129;01mis[39;00m [38;5;28;01mNone[39;00m:
|
||||
[0;32m--> 560[0m [38;5;28;01mreturn[39;00m [38;5;28;43mself[39;49m[38;5;241;43m.[39;49m[43mtry_get_online_data[49m[43m([49m
|
||||
[1;32m 561[0m [43m [49m[43mresults_path[49m[43m,[49m[43m [49m[38;5;28;43mself[39;49m[38;5;241;43m.[39;49m[43monline_interaction_power_name[49m
|
||||
[1;32m 562[0m [43m [49m[43m)[49m
|
||||
[1;32m 564[0m N, kwargs [38;5;241m=[39m _get_N_kwargs(kwargs, data)
|
||||
[1;32m 566[0m [38;5;28;01mreturn[39;00m hopsflow[38;5;241m.[39mhopsflow[38;5;241m.[39minteraction_energy_ensemble(
|
||||
[1;32m 567[0m data[38;5;241m.[39mvalid_sample_iterator(data[38;5;241m.[39mstoc_traj), [38;5;66;03m# type: ignore[39;00m
|
||||
[1;32m 568[0m data[38;5;241m.[39mvalid_sample_iterator(data[38;5;241m.[39maux_states), [38;5;66;03m# type: ignore[39;00m
|
||||
[0;32m (...)[0m
|
||||
[1;32m 574[0m [38;5;241m*[39m[38;5;241m*[39mkwargs,
|
||||
[1;32m 575[0m )
|
||||
|
||||
File [0;32m/nix/store/08ccd1bg10pbkpv71fwccyxabr1cycim-python3-3.9.15-env/lib/python3.9/site-packages/matplotlib/__init__.py:1423[0m, in [0;36m_preprocess_data.<locals>.inner[0;34m(ax, data, *args, **kwargs)[0m
|
||||
[1;32m 1420[0m [38;5;129m@functools[39m[38;5;241m.[39mwraps(func)
|
||||
[1;32m 1421[0m [38;5;28;01mdef[39;00m [38;5;21minner[39m(ax, [38;5;241m*[39margs, data[38;5;241m=[39m[38;5;28;01mNone[39;00m, [38;5;241m*[39m[38;5;241m*[39mkwargs):
|
||||
[1;32m 1422[0m [38;5;28;01mif[39;00m data [38;5;129;01mis[39;00m [38;5;28;01mNone[39;00m:
|
||||
[0;32m-> 1423[0m [38;5;28;01mreturn[39;00m [43mfunc[49m[43m([49m[43max[49m[43m,[49m[43m [49m[38;5;241;43m*[39;49m[38;5;28;43mmap[39;49m[43m([49m[43msanitize_sequence[49m[43m,[49m[43m [49m[43margs[49m[43m)[49m[43m,[49m[43m [49m[38;5;241;43m*[39;49m[38;5;241;43m*[39;49m[43mkwargs[49m[43m)[49m
|
||||
[1;32m 1425[0m bound [38;5;241m=[39m new_sig[38;5;241m.[39mbind(ax, [38;5;241m*[39margs, [38;5;241m*[39m[38;5;241m*[39mkwargs)
|
||||
[1;32m 1426[0m auto_label [38;5;241m=[39m (bound[38;5;241m.[39marguments[38;5;241m.[39mget(label_namer)
|
||||
[1;32m 1427[0m [38;5;129;01mor[39;00m bound[38;5;241m.[39mkwargs[38;5;241m.[39mget(label_namer))
|
||||
File [0;32m~/src/two_qubit_model/hiro_models/model_base.py:298[0m, in [0;36mModel.try_get_online_data[0;34m(self, path, results_path)[0m
|
||||
[1;32m 296[0m file_path [38;5;241m=[39m os[38;5;241m.[39mpath[38;5;241m.[39mjoin(path, results_path)
|
||||
[1;32m 297[0m [38;5;28;01mif[39;00m [38;5;129;01mnot[39;00m os[38;5;241m.[39mpath[38;5;241m.[39mexists(file_path):
|
||||
[0;32m--> 298[0m [38;5;28;01mraise[39;00m [38;5;167;01mRuntimeError[39;00m([38;5;124mf[39m[38;5;124m"[39m[38;5;124mNo data found under [39m[38;5;124m'[39m[38;5;132;01m{[39;00mfile_path[38;5;132;01m}[39;00m[38;5;124m'[39m[38;5;124m.[39m[38;5;124m"[39m)
|
||||
[1;32m 300[0m [38;5;28;01mreturn[39;00m hopsflow[38;5;241m.[39mutil[38;5;241m.[39mget_online_values_from_cache(file_path)
|
||||
|
||||
File [0;32m/nix/store/08ccd1bg10pbkpv71fwccyxabr1cycim-python3-3.9.15-env/lib/python3.9/site-packages/matplotlib/axes/_axes.py:3491[0m, in [0;36mAxes.errorbar[0;34m(self, x, y, yerr, xerr, fmt, ecolor, elinewidth, capsize, barsabove, lolims, uplims, xlolims, xuplims, errorevery, capthick, **kwargs)[0m
|
||||
[1;32m 3489[0m x, y [38;5;241m=[39m np[38;5;241m.[39matleast_1d(x, y) [38;5;66;03m# Make sure all the args are iterable.[39;00m
|
||||
[1;32m 3490[0m [38;5;28;01mif[39;00m [38;5;28mlen[39m(x) [38;5;241m!=[39m [38;5;28mlen[39m(y):
|
||||
[0;32m-> 3491[0m [38;5;28;01mraise[39;00m [38;5;167;01mValueError[39;00m([38;5;124m"[39m[38;5;124m'[39m[38;5;124mx[39m[38;5;124m'[39m[38;5;124m and [39m[38;5;124m'[39m[38;5;124my[39m[38;5;124m'[39m[38;5;124m must have the same size[39m[38;5;124m"[39m)
|
||||
[1;32m 3493[0m everymask [38;5;241m=[39m [38;5;28mself[39m[38;5;241m.[39m_errorevery_to_mask(x, errorevery)
|
||||
[1;32m 3495[0m label [38;5;241m=[39m kwargs[38;5;241m.[39mpop([38;5;124m"[39m[38;5;124mlabel[39m[38;5;124m"[39m, [38;5;28;01mNone[39;00m)
|
||||
|
||||
[0;31mValueError[0m: 'x' and 'y' must have the same size
|
||||
[0;31mRuntimeError[0m: No data found under 'results/interaction_power_a86b8a23ecd962904a2008808f85b00b9c337e36dc6bebe3b806343510f0ec7f.npz'.
|
||||
#+end_example
|
||||
[[file:./.ob-jupyter/0808a4e641f3bfd149695bb00c73368d6b872d03.svg]]
|
||||
[[file:./.ob-jupyter/93e52118286ecb9820456f385076257d6d00cdaf.svg]]
|
||||
:END:
|
||||
|
||||
#+begin_src jupyter-python
|
||||
|
@ -1094,53 +1165,98 @@ Way less energy is dumped into the cold bath.
|
|||
<<boilerplate>>
|
||||
#+end_src
|
||||
|
||||
#+begin_src jupyter-python
|
||||
aux.import_results(other_data_path="taurus/.data_oa", other_results_path="taurus/results")
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
#+begin_example
|
||||
[INFO root 465451] Not importing 3a88241b44e111869567acbf6ae02285aed02d52bb726b72ac72f9ab31dd3519.
|
||||
[WARNING root 465451] Importing taurus/.data_oa/1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a/_b/1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a_b840f965f993ebd32f9155891c0b1cb4_1.h5 to .data/1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a/_b/1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a_b840f965f993ebd32f9155891c0b1cb4_1.h5.
|
||||
[WARNING root 465451] The model description is 'Classic Cycle'.
|
||||
[WARNING root 465451] Importing taurus/results/flow_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a.npz to results/flow_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a_10000.npz.
|
||||
[WARNING root 465451] Importing taurus/results/flow_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a.npz to results/flow_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a.npz.
|
||||
[WARNING root 465451] Importing taurus/results/interaction_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a.npz to results/interaction_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a_10000.npz.
|
||||
[WARNING root 465451] Importing taurus/results/interaction_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a.npz to results/interaction_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a.npz.
|
||||
[WARNING root 465451] Importing taurus/results/interaction_power_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a.npz to results/interaction_power_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a_10000.npz.
|
||||
[WARNING root 465451] Importing taurus/results/interaction_power_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a.npz to results/interaction_power_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a.npz.
|
||||
[WARNING root 465451] Importing taurus/results/system_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a.npz to results/system_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a.npz.
|
||||
[WARNING root 465451] Importing taurus/results/system_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a.npz to results/system_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a_10000.npz.
|
||||
[WARNING root 465451] Importing taurus/results/system_power_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a.npz to results/system_power_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a_10000.npz.
|
||||
[WARNING root 465451] Importing taurus/results/system_power_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a.npz to results/system_power_1ebe2f33ba38ab70dc6af5f72cd5e4163422489db2447d034dcd8d405a0fc79a.npz.
|
||||
#+end_example
|
||||
|
||||
#+begin_src jupyter-python :tangle tangle/off_axis.py
|
||||
proto = sc.make_model(0, 0, switch_t=6)
|
||||
off_ax_models = []
|
||||
for weight in [.3, .6]:
|
||||
off_ax = proto.copy()
|
||||
weights = [.3, .6]
|
||||
param_iter = lambda: itertools.product([3, 6], weights)
|
||||
for switch_t, weight in param_iter():
|
||||
off_ax = sc.make_model(0, 0, switch_t=switch_t)
|
||||
off_ax.H_0 = 1 / 2 * (qt.sigmaz().full() + np.eye(2) + weight * qt.sigmax().full())
|
||||
# NOTE: the hamiltonians will be normalzed so that their smallest EV is 0 and the largest one is 1
|
||||
|
||||
off_ax.H_1 = off_ax.H_0.copy()
|
||||
|
||||
off_ax_models.append(off_ax)
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: 3.5999999999999996
|
||||
: 3.5999999999999996
|
||||
: 7.199999999999999
|
||||
: 7.199999999999999
|
||||
|
||||
#+begin_src jupyter-python :tangle tangle/off_axis.py
|
||||
ot.integrate_online_multi(off_ax_models, 10_000, increment=10_000, analyze_kwargs=dict(every=10_000))
|
||||
ot.integrate_online_multi(off_ax_models, 10, increment=10, analyze_kwargs=dict(every=10_000))
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: [INFO hops.core.integration 4057165] Choosing the nonlinear integrator.
|
||||
: [INFO root 4057165] Starting analysis process.
|
||||
: [INFO root 4057165] Started analysis process with pid 146332.
|
||||
: [INFO hops.core.hierarchy_data 4057165] Creating the streaming fifo at: /home/hiro/Documents/Projects/UNI/master/eflow_paper/python/otto_motor/subprojects/cycle_shift/results_f41081a896f5826d5ec9ec455f52afb2020d140c4d25bd2986b63fb73863ee2d.fifo
|
||||
: [INFO hops.core.integration 4057165] Using 16 integrators.
|
||||
: [INFO hops.core.integration 4057165] Some 10 trajectories have to be integrated.
|
||||
: [INFO hops.core.integration 4057165] Using 1001 hierarchy states.
|
||||
: 100% 10/10 [00:45<00:00, 4.58s/it]
|
||||
:
|
||||
|
||||
#+begin_src jupyter-julia
|
||||
ot.plot_bloch_components(off_ax_models[0])
|
||||
#+begin_src jupyter-python
|
||||
for (i, model), weight in zip(enumerate(off_ax_models), weights):
|
||||
f, a = ot.plot_bloch_components(model)
|
||||
#ot.plot_bloch_components(off_ax_models[i+2], ax=a, linestyle="--", label=None)
|
||||
|
||||
a.set_title(rf"$r_y={weight}$")
|
||||
fs.export_fig(f"bloch_expectation_offaxis_{weight}", y_scaling=.7)
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
| <Figure | size | 340x320 | with | 1 | Axes> | <AxesSubplot: | xlabel= | $\tau$ | > |
|
||||
[[file:./.ob-jupyter/e69f3f0bcc548ae510cff4c2ec6ca0a46c17c078.svg]]
|
||||
[[file:./.ob-jupyter/9728f3b41ba1c00b9b3b8cdef827909ece227deb.svg]]
|
||||
[[file:./.ob-jupyter/66410d6f93476857e9f7f681a59a0091ebc27231.svg]]
|
||||
:END:
|
||||
|
||||
#+begin_src jupyter-python
|
||||
np.array(weights) / np.sqrt(1 + np.array(weights) ** 2)
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: array([0.28734789, 0.51449576])
|
||||
|
||||
|
||||
#+begin_src jupyter-python
|
||||
for model in off_ax_models:
|
||||
print(model.power(steady_idx=1).value / baseline.power(steady_idx=1).value, model.efficiency(steady_idx=1).value / baseline.efficiency(steady_idx=1).value)
|
||||
baselines = [baseline] * 2 + [long_baseline] * 2
|
||||
for model, ref in zip(off_ax_models, baselines):
|
||||
print(model.power(steady_idx=1).value / ref.power(steady_idx=1).value, model.efficiency(steady_idx=1).value / ref.efficiency(steady_idx=1).value)
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: 1.0574121708551179 1.016329556714788
|
||||
: 1.1608389370275625 0.9458062530964767
|
||||
: 1.039411606725501 0.9835515009556695
|
||||
: 1.117040153314062 0.9663817206527843
|
||||
|
||||
Interestingly, even with the too-fast switching we have greater power.
|
||||
Interestingly, even with the too-fast switching we have greater power, and greater efficiency.
|
||||
|
||||
#+begin_src jupyter-python
|
||||
for (i, model), weight in zip(enumerate(off_ax_models), weights):
|
||||
f, a = ot.plot_energy(model)
|
||||
a.set_title(rf"$r_y={weight}$")
|
||||
fs.export_fig(f"full_energy_offaxis_{weight}", x_scaling=2, y_scaling=1)
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
[[file:./.ob-jupyter/b0afa48c75085e2a541587c350698ad79958b170.svg]]
|
||||
[[file:./.ob-jupyter/cb9eaeab19b96ffab30ddb3adde4ba165801064d.svg]]
|
||||
:END:
|
||||
|
|
3153
python/otto_motor/subprojects/cycle_shift/plots.ipynb
Normal file
|
@ -1,4 +1,3 @@
|
|||
import figsaver as fs
|
||||
import plot_utils as pu
|
||||
from hiro_models.one_qubit_model import StocProcTolerances
|
||||
from hiro_models.otto_cycle import OttoEngine
|
||||
|
@ -11,6 +10,7 @@ import matplotlib.pyplot as plt
|
|||
import otto_utilities as ot
|
||||
import shift_cycle as sc
|
||||
import ray
|
||||
import figsaver as fs
|
||||
ray.shutdown()
|
||||
|
||||
#ray.init(address='auto')
|
||||
|
@ -18,7 +18,6 @@ ray.init()
|
|||
from hops.util.logging_setup import logging_setup
|
||||
import logging
|
||||
logging_setup(logging.INFO)
|
||||
plt.rcParams['figure.figsize'] = (12,4)
|
||||
|
||||
ot.plot_cycle(baseline)
|
||||
fs.export_fig("cycle_prototype", y_scaling=.7)
|
||||
|
@ -40,7 +39,7 @@ def thermal_state(T, Ω):
|
|||
return ρ
|
||||
import hops.util.utilities
|
||||
from hopsflow.util import EnsembleValue
|
||||
for model in models[3:4]:
|
||||
for model in [baseline]:
|
||||
with aux.get_data(model) as data:
|
||||
trace_dist_c = hops.util.utilities.trace_distance(data, relative_to=thermal_state(model.T[0], model.energy_gaps[0]))
|
||||
trace_dist_h = hops.util.utilities.trace_distance(data, relative_to=thermal_state(model.T[1], model.energy_gaps[1]))
|
||||
|
@ -277,8 +276,6 @@ ax.add_artist(legend_1)
|
|||
ax.set_xlim((0, long_models[0].Θ))
|
||||
fs.export_fig("cycle_shift_long_shifts", x_scaling=2, y_scaling=.5)
|
||||
|
||||
long_baseline = long_models[np.argmin(abs(np.array(shifts) - 0))]
|
||||
long_baseline = best_shift_model
|
||||
for shift, model in zip(shifts, long_models):
|
||||
print(
|
||||
shift, best_shift,
|
||||
|
@ -416,7 +413,22 @@ fs.export_fig("cycle_shift_power_efficiency_longer_vs_only_cold", y_scaling=.7,
|
|||
ot.plot_multi_powers_and_efficiencies(shifts, [models, long_models, cold_models], ["shifted", "shifted + slower modulation", "slower + only cold shifted"], xlabel=r"Shift $\delta$")
|
||||
fs.export_fig("shift_comparison", y_scaling=1, x_scaling=2)
|
||||
|
||||
ot.plot_bloch_components(off_ax_models[0])
|
||||
aux.import_results(other_data_path="taurus/.data_oa", other_results_path="taurus/results")
|
||||
|
||||
for model in off_ax_models:
|
||||
print(model.power(steady_idx=1).value / baseline.power(steady_idx=1).value, model.efficiency(steady_idx=1).value / baseline.efficiency(steady_idx=1).value)
|
||||
for (i, model), weight in zip(enumerate(off_ax_models), weights):
|
||||
f, a = ot.plot_bloch_components(model)
|
||||
#ot.plot_bloch_components(off_ax_models[i+2], ax=a, linestyle="--", label=None)
|
||||
|
||||
a.set_title(rf"$r_y={weight}$")
|
||||
fs.export_fig(f"bloch_expectation_offaxis_{weight}", y_scaling=.7)
|
||||
|
||||
np.array(weights) / np.sqrt(1 + np.array(weights) ** 2)
|
||||
|
||||
baselines = [baseline] * 2 + [long_baseline] * 2
|
||||
for model, ref in zip(off_ax_models, baselines):
|
||||
print(model.power(steady_idx=1).value / ref.power(steady_idx=1).value, model.efficiency(steady_idx=1).value / ref.efficiency(steady_idx=1).value)
|
||||
|
||||
for (i, model), weight in zip(enumerate(off_ax_models), weights):
|
||||
f, a = ot.plot_energy(model)
|
||||
a.set_title(rf"$r_y={weight}$")
|
||||
fs.export_fig(f"full_energy_offaxis_{weight}", x_scaling=2, y_scaling=1)
|
||||
|
|
|
@ -1,27 +1,27 @@
|
|||
import figsaver as fs
|
||||
import plot_utils as pu
|
||||
from hiro_models.one_qubit_model import StocProcTolerances
|
||||
from hiro_models.otto_cycle import OttoEngine
|
||||
import hiro_models.model_auxiliary as aux
|
||||
import numpy as np
|
||||
import qutip as qt
|
||||
import utilities as ut
|
||||
import stocproc
|
||||
import matplotlib.pyplot as plt
|
||||
import otto_utilities as ot
|
||||
import shift_cycle as sc
|
||||
import ray
|
||||
ray.shutdown()
|
||||
|
||||
#ray.init(address='auto')
|
||||
ray.init()
|
||||
from hops.util.logging_setup import logging_setup
|
||||
import logging
|
||||
logging_setup(logging.INFO)
|
||||
plt.rcParams['figure.figsize'] = (12,4)
|
||||
#import plot_utils as pu
|
||||
#from hiro_models.one_qubit_model import StocProcTolerances
|
||||
#from hiro_models.otto_cycle import OttoEngine
|
||||
#import hiro_models.model_auxiliary as aux
|
||||
#import numpy as np
|
||||
#import qutip as qt
|
||||
#import utilities as ut
|
||||
#import stocproc
|
||||
#import matplotlib.pyplot as plt
|
||||
#import otto_utilities as ot
|
||||
#import shift_cycle as sc
|
||||
#import ray
|
||||
#import figsaver as fs
|
||||
#ray.shutdown()
|
||||
#
|
||||
##ray.init(address='auto')
|
||||
#ray.init()
|
||||
#from hops.util.logging_setup import logging_setup
|
||||
#import logging
|
||||
#logging_setup(logging.INFO)
|
||||
shifts = sc.make_shifts(extra_r=4)
|
||||
|
||||
long_models = [sc.make_model(shift, shift, switch_t=6., switch_t_sys=3) for shift in shifts]
|
||||
#long_models = [sc.make_model(shift, shift, switch_t=6., switch_t_sys=3) for shift in shifts]
|
||||
long_models = [sc.make_model(shift, shift, switch_t=6.) for shift in shifts]
|
||||
long_baseline = sc.make_model(0., 0., switch_t=6.)
|
||||
|
||||
ot.integrate_online_multi(long_models, 80_000, increment=10_000, analyze_kwargs=dict(every=10_000))
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import figsaver as fs
|
||||
import plot_utils as pu
|
||||
from hiro_models.one_qubit_model import StocProcTolerances
|
||||
from hiro_models.otto_cycle import OttoEngine
|
||||
|
@ -11,6 +10,7 @@ import matplotlib.pyplot as plt
|
|||
import otto_utilities as ot
|
||||
import shift_cycle as sc
|
||||
import ray
|
||||
import figsaver as fs
|
||||
ray.shutdown()
|
||||
|
||||
#ray.init(address='auto')
|
||||
|
@ -18,15 +18,17 @@ ray.init()
|
|||
from hops.util.logging_setup import logging_setup
|
||||
import logging
|
||||
logging_setup(logging.INFO)
|
||||
plt.rcParams['figure.figsize'] = (12,4)
|
||||
|
||||
proto = sc.make_model(0, 0, switch_t=6)
|
||||
off_ax_models = []
|
||||
for weight in [.3, .6]:
|
||||
off_ax = proto.copy()
|
||||
weights = [.3, .6]
|
||||
param_iter = lambda: itertools.product([3, 6], weights)
|
||||
for switch_t, weight in param_iter():
|
||||
off_ax = sc.make_model(0, 0, switch_t=switch_t)
|
||||
off_ax.H_0 = 1 / 2 * (qt.sigmaz().full() + np.eye(2) + weight * qt.sigmax().full())
|
||||
# NOTE: the hamiltonians will be normalzed so that their smallest EV is 0 and the largest one is 1
|
||||
|
||||
off_ax.H_1 = off_ax.H_0.copy()
|
||||
|
||||
off_ax_models.append(off_ax)
|
||||
|
||||
ot.integrate_online_multi(off_ax_models, 10_000, increment=10_000, analyze_kwargs=dict(every=10_000))
|
||||
ot.integrate_online_multi(off_ax_models, 10, increment=10, analyze_kwargs=dict(every=10_000))
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import figsaver as fs
|
||||
import plot_utils as pu
|
||||
from hiro_models.one_qubit_model import StocProcTolerances
|
||||
from hiro_models.otto_cycle import OttoEngine
|
||||
|
@ -11,6 +10,7 @@ import matplotlib.pyplot as plt
|
|||
import otto_utilities as ot
|
||||
import shift_cycle as sc
|
||||
import ray
|
||||
import figsaver as fs
|
||||
ray.shutdown()
|
||||
|
||||
#ray.init(address='auto')
|
||||
|
@ -18,9 +18,8 @@ ray.init()
|
|||
from hops.util.logging_setup import logging_setup
|
||||
import logging
|
||||
logging_setup(logging.INFO)
|
||||
plt.rcParams['figure.figsize'] = (12,4)
|
||||
|
||||
shifts = sc.make_shifts(extra_r=4)
|
||||
cold_models = [sc.make_model(shift, shift, switch_t=6., only_cold=True) for shift in shifts]
|
||||
|
||||
ot.integrate_online_multi(cold_models, 80_000, increment=10_000, analyze_kwargs=dict(every=10_000))
|
||||
ot.integrate_online_multi(cold_models, 1, increment=1, analyze_kwargs=dict(every=10_000))
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import figsaver as fs
|
||||
import plot_utils as pu
|
||||
from hiro_models.one_qubit_model import StocProcTolerances
|
||||
from hiro_models.otto_cycle import OttoEngine
|
||||
|
@ -11,6 +10,7 @@ import matplotlib.pyplot as plt
|
|||
import otto_utilities as ot
|
||||
import shift_cycle as sc
|
||||
import ray
|
||||
import figsaver as fs
|
||||
ray.shutdown()
|
||||
|
||||
#ray.init(address='auto')
|
||||
|
@ -18,7 +18,6 @@ ray.init()
|
|||
from hops.util.logging_setup import logging_setup
|
||||
import logging
|
||||
logging_setup(logging.INFO)
|
||||
plt.rcParams['figure.figsize'] = (12,4)
|
||||
|
||||
shifts = sc.make_shifts(extra_r=4)
|
||||
shifts
|
||||
|
|
Before Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 79 KiB |
Before Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 235 KiB |
Before Width: | Height: | Size: 54 KiB |
Before Width: | Height: | Size: 966 KiB |
After Width: | Height: | Size: 29 KiB |
|
@ -0,0 +1,905 @@
|
|||
<?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="253.19952pt" height="238.79952pt" viewBox="0 0 253.19952 238.79952" 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>1980-01-01T00:00:00+00:00</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 238.79952
|
||||
L 253.19952 238.79952
|
||||
L 253.19952 0
|
||||
L 0 0
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="axes_1">
|
||||
<g id="patch_2">
|
||||
<path d="M 27.12069 100.214973
|
||||
L 118.189175 100.214973
|
||||
L 118.189175 9.967401
|
||||
L 27.12069 9.967401
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="me1c0084f0f" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#me1c0084f0f" x="27.12069" y="100.214973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
<!-- $\mathdefault{0.0}$ -->
|
||||
<g transform="translate(21.710345 114.849774) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-30" d="M 2688 2025
|
||||
C 2688 2416 2682 3080 2413 3591
|
||||
C 2176 4039 1798 4198 1466 4198
|
||||
C 1158 4198 768 4058 525 3597
|
||||
C 269 3118 243 2524 243 2025
|
||||
C 243 1661 250 1106 448 619
|
||||
C 723 -39 1216 -128 1466 -128
|
||||
C 1760 -128 2208 -7 2470 600
|
||||
C 2662 1042 2688 1559 2688 2025
|
||||
z
|
||||
M 1466 -26
|
||||
C 1056 -26 813 325 723 812
|
||||
C 653 1188 653 1738 653 2096
|
||||
C 653 2588 653 2997 736 3387
|
||||
C 858 3929 1216 4096 1466 4096
|
||||
C 1728 4096 2067 3923 2189 3400
|
||||
C 2272 3036 2278 2607 2278 2096
|
||||
C 2278 1680 2278 1169 2202 792
|
||||
C 2067 95 1690 -26 1466 -26
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMMI12-3a" d="M 1178 307
|
||||
C 1178 492 1024 619 870 619
|
||||
C 685 619 557 466 557 313
|
||||
C 557 128 710 0 864 0
|
||||
C 1050 0 1178 153 1178 307
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#me1c0084f0f" x="72.654932" y="100.214973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
<!-- $\mathdefault{0.5}$ -->
|
||||
<g transform="translate(67.244588 114.849774) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-35" d="M 730 3692
|
||||
C 794 3666 1056 3584 1325 3584
|
||||
C 1920 3584 2246 3911 2432 4100
|
||||
C 2432 4157 2432 4192 2394 4192
|
||||
C 2387 4192 2374 4192 2323 4163
|
||||
C 2099 4058 1837 3973 1517 3973
|
||||
C 1325 3973 1037 3999 723 4139
|
||||
C 653 4171 640 4171 634 4171
|
||||
C 602 4171 595 4164 595 4037
|
||||
L 595 2203
|
||||
C 595 2089 595 2057 659 2057
|
||||
C 691 2057 704 2070 736 2114
|
||||
C 941 2401 1222 2522 1542 2522
|
||||
C 1766 2522 2246 2382 2246 1289
|
||||
C 2246 1085 2246 715 2054 421
|
||||
C 1894 159 1645 25 1370 25
|
||||
C 947 25 518 320 403 814
|
||||
C 429 807 480 795 506 795
|
||||
C 589 795 749 840 749 1038
|
||||
C 749 1210 627 1280 506 1280
|
||||
C 358 1280 262 1190 262 1011
|
||||
C 262 454 704 -128 1382 -128
|
||||
C 2042 -128 2669 440 2669 1264
|
||||
C 2669 2030 2170 2624 1549 2624
|
||||
C 1222 2624 947 2503 730 2274
|
||||
L 730 3692
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#me1c0084f0f" x="118.189175" y="100.214973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
<!-- $\mathdefault{1.0}$ -->
|
||||
<g transform="translate(112.77883 114.849774) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-31" d="M 1702 4058
|
||||
C 1702 4192 1696 4192 1606 4192
|
||||
C 1357 3916 979 3827 621 3827
|
||||
C 602 3827 570 3827 563 3808
|
||||
C 557 3795 557 3782 557 3648
|
||||
C 755 3648 1088 3686 1344 3839
|
||||
L 1344 461
|
||||
C 1344 236 1331 160 781 160
|
||||
L 589 160
|
||||
L 589 0
|
||||
C 896 0 1216 0 1523 0
|
||||
C 1830 0 2150 0 2458 0
|
||||
L 2458 160
|
||||
L 2266 160
|
||||
C 1715 160 1702 230 1702 458
|
||||
L 1702 4058
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_2">
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_4">
|
||||
<defs>
|
||||
<path id="md1fdc212c0" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="27.12069" y="100.214973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
<!-- $\mathdefault{0.0}$ -->
|
||||
<g transform="translate(7.2 102.982373) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="27.12069" y="82.165458" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
<!-- $\mathdefault{0.2}$ -->
|
||||
<g transform="translate(7.2 84.932859) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-32" d="M 2669 989
|
||||
L 2554 989
|
||||
C 2490 536 2438 459 2413 420
|
||||
C 2381 369 1920 369 1830 369
|
||||
L 602 369
|
||||
C 832 619 1280 1072 1824 1597
|
||||
C 2214 1967 2669 2402 2669 3035
|
||||
C 2669 3790 2067 4224 1395 4224
|
||||
C 691 4224 262 3604 262 3030
|
||||
C 262 2780 448 2748 525 2748
|
||||
C 589 2748 781 2787 781 3010
|
||||
C 781 3207 614 3264 525 3264
|
||||
C 486 3264 448 3258 422 3245
|
||||
C 544 3790 915 4058 1306 4058
|
||||
C 1862 4058 2227 3617 2227 3035
|
||||
C 2227 2479 1901 2000 1536 1584
|
||||
L 262 146
|
||||
L 262 0
|
||||
L 2515 0
|
||||
L 2669 989
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="27.12069" y="64.115944" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
<!-- $\mathdefault{0.4}$ -->
|
||||
<g transform="translate(7.2 66.883345) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-34" d="M 2150 4122
|
||||
C 2150 4256 2144 4256 2029 4256
|
||||
L 128 1254
|
||||
L 128 1088
|
||||
L 1779 1088
|
||||
L 1779 457
|
||||
C 1779 224 1766 160 1318 160
|
||||
L 1197 160
|
||||
L 1197 0
|
||||
C 1402 0 1747 0 1965 0
|
||||
C 2182 0 2528 0 2733 0
|
||||
L 2733 160
|
||||
L 2611 160
|
||||
C 2163 160 2150 224 2150 457
|
||||
L 2150 1088
|
||||
L 2803 1088
|
||||
L 2803 1254
|
||||
L 2150 1254
|
||||
L 2150 4122
|
||||
z
|
||||
M 1798 3703
|
||||
L 1798 1254
|
||||
L 256 1254
|
||||
L 1798 3703
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="27.12069" y="46.06643" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
<!-- $\mathdefault{0.6}$ -->
|
||||
<g transform="translate(7.2 48.83383) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-36" d="M 678 2176
|
||||
C 678 3690 1395 4032 1811 4032
|
||||
C 1946 4032 2272 4009 2400 3776
|
||||
C 2298 3776 2106 3776 2106 3553
|
||||
C 2106 3381 2246 3323 2336 3323
|
||||
C 2394 3323 2566 3348 2566 3560
|
||||
C 2566 3954 2246 4179 1805 4179
|
||||
C 1043 4179 243 3390 243 1984
|
||||
C 243 253 966 -128 1478 -128
|
||||
C 2099 -128 2688 427 2688 1283
|
||||
C 2688 2081 2170 2662 1517 2662
|
||||
C 1126 2662 838 2407 678 1960
|
||||
L 678 2176
|
||||
z
|
||||
M 1478 25
|
||||
C 691 25 691 1200 691 1436
|
||||
C 691 1896 909 2560 1504 2560
|
||||
C 1613 2560 1926 2560 2138 2120
|
||||
C 2253 1870 2253 1609 2253 1289
|
||||
C 2253 944 2253 690 2118 434
|
||||
C 1978 171 1773 25 1478 25
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-36" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="27.12069" y="28.016915" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
<!-- $\mathdefault{0.8}$ -->
|
||||
<g transform="translate(7.2 30.784316) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-38" d="M 1741 2264
|
||||
C 2144 2467 2554 2773 2554 3263
|
||||
C 2554 3841 1990 4179 1472 4179
|
||||
C 890 4179 378 3759 378 3180
|
||||
C 378 3021 416 2747 666 2505
|
||||
C 730 2442 998 2251 1171 2130
|
||||
C 883 1983 211 1634 211 934
|
||||
C 211 279 838 -128 1459 -128
|
||||
C 2144 -128 2720 362 2720 1010
|
||||
C 2720 1590 2330 1857 2074 2029
|
||||
L 1741 2264
|
||||
z
|
||||
M 902 2822
|
||||
C 851 2854 595 3051 595 3351
|
||||
C 595 3739 998 4032 1459 4032
|
||||
C 1965 4032 2336 3676 2336 3262
|
||||
C 2336 2669 1670 2331 1638 2331
|
||||
C 1632 2331 1626 2331 1574 2370
|
||||
L 902 2822
|
||||
z
|
||||
M 2080 1519
|
||||
C 2176 1449 2483 1240 2483 851
|
||||
C 2483 381 2010 25 1472 25
|
||||
C 890 25 448 438 448 940
|
||||
C 448 1443 838 1862 1280 2060
|
||||
L 2080 1519
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-38" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="27.12069" y="9.967401" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
<!-- $\mathdefault{1.0}$ -->
|
||||
<g transform="translate(7.2 12.734802) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 27.12069 100.214973
|
||||
L 27.12069 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_4">
|
||||
<path d="M 118.189175 100.214973
|
||||
L 118.189175 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_5">
|
||||
<path d="M 27.12069 100.214973
|
||||
L 118.189175 100.214973
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_6">
|
||||
<path d="M 27.12069 9.967401
|
||||
L 118.189175 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="axes_2">
|
||||
<g id="patch_7">
|
||||
<path d="M 149.52069 100.214973
|
||||
L 240.589175 100.214973
|
||||
L 240.589175 9.967401
|
||||
L 149.52069 9.967401
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_3">
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#me1c0084f0f" x="149.52069" y="100.214973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
<!-- $\mathdefault{0.0}$ -->
|
||||
<g transform="translate(144.110345 114.849774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#me1c0084f0f" x="195.054932" y="100.214973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
<!-- $\mathdefault{0.5}$ -->
|
||||
<g transform="translate(189.644588 114.849774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#me1c0084f0f" x="240.589175" y="100.214973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
<!-- $\mathdefault{1.0}$ -->
|
||||
<g transform="translate(235.17883 114.849774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_4">
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="149.52069" y="100.214973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
<!-- $\mathdefault{0.0}$ -->
|
||||
<g transform="translate(129.6 102.982373) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="149.52069" y="82.165458" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
<!-- $\mathdefault{0.2}$ -->
|
||||
<g transform="translate(129.6 84.932859) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_9">
|
||||
<g id="line2d_15">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="149.52069" y="64.115944" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
<!-- $\mathdefault{0.4}$ -->
|
||||
<g transform="translate(129.6 66.883345) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_10">
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="149.52069" y="46.06643" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
<!-- $\mathdefault{0.6}$ -->
|
||||
<g transform="translate(129.6 48.83383) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-36" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_11">
|
||||
<g id="line2d_17">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="149.52069" y="28.016915" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
<!-- $\mathdefault{0.8}$ -->
|
||||
<g transform="translate(129.6 30.784316) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-38" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_12">
|
||||
<g id="line2d_18">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="149.52069" y="9.967401" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
<!-- $\mathdefault{1.0}$ -->
|
||||
<g transform="translate(129.6 12.734802) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_8">
|
||||
<path d="M 149.52069 100.214973
|
||||
L 149.52069 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_9">
|
||||
<path d="M 240.589175 100.214973
|
||||
L 240.589175 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_10">
|
||||
<path d="M 149.52069 100.214973
|
||||
L 240.589175 100.214973
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_11">
|
||||
<path d="M 149.52069 9.967401
|
||||
L 240.589175 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="axes_3">
|
||||
<g id="patch_12">
|
||||
<path d="M 27.12069 215.414973
|
||||
L 118.189175 215.414973
|
||||
L 118.189175 125.167401
|
||||
L 27.12069 125.167401
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_5">
|
||||
<g id="xtick_7">
|
||||
<g id="line2d_19">
|
||||
<g>
|
||||
<use xlink:href="#me1c0084f0f" x="27.12069" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_19">
|
||||
<!-- $\mathdefault{0.0}$ -->
|
||||
<g transform="translate(21.710345 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_8">
|
||||
<g id="line2d_20">
|
||||
<g>
|
||||
<use xlink:href="#me1c0084f0f" x="72.654932" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_20">
|
||||
<!-- $\mathdefault{0.5}$ -->
|
||||
<g transform="translate(67.244588 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_9">
|
||||
<g id="line2d_21">
|
||||
<g>
|
||||
<use xlink:href="#me1c0084f0f" x="118.189175" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_21">
|
||||
<!-- $\mathdefault{1.0}$ -->
|
||||
<g transform="translate(112.77883 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_6">
|
||||
<g id="ytick_13">
|
||||
<g id="line2d_22">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="27.12069" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_22">
|
||||
<!-- $\mathdefault{0.0}$ -->
|
||||
<g transform="translate(7.2 218.182373) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_14">
|
||||
<g id="line2d_23">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="27.12069" y="197.365458" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_23">
|
||||
<!-- $\mathdefault{0.2}$ -->
|
||||
<g transform="translate(7.2 200.132859) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_15">
|
||||
<g id="line2d_24">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="27.12069" y="179.315944" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_24">
|
||||
<!-- $\mathdefault{0.4}$ -->
|
||||
<g transform="translate(7.2 182.083345) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_16">
|
||||
<g id="line2d_25">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="27.12069" y="161.26643" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_25">
|
||||
<!-- $\mathdefault{0.6}$ -->
|
||||
<g transform="translate(7.2 164.03383) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-36" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_17">
|
||||
<g id="line2d_26">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="27.12069" y="143.216915" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_26">
|
||||
<!-- $\mathdefault{0.8}$ -->
|
||||
<g transform="translate(7.2 145.984316) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-38" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_18">
|
||||
<g id="line2d_27">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="27.12069" y="125.167401" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_27">
|
||||
<!-- $\mathdefault{1.0}$ -->
|
||||
<g transform="translate(7.2 127.934802) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_13">
|
||||
<path d="M 27.12069 215.414973
|
||||
L 27.12069 125.167401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_14">
|
||||
<path d="M 118.189175 215.414973
|
||||
L 118.189175 125.167401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_15">
|
||||
<path d="M 27.12069 215.414973
|
||||
L 118.189175 215.414973
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_16">
|
||||
<path d="M 27.12069 125.167401
|
||||
L 118.189175 125.167401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="axes_4">
|
||||
<g id="patch_17">
|
||||
<path d="M 149.52069 215.414973
|
||||
L 240.589175 215.414973
|
||||
L 240.589175 125.167401
|
||||
L 149.52069 125.167401
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_7">
|
||||
<g id="xtick_10">
|
||||
<g id="line2d_28">
|
||||
<g>
|
||||
<use xlink:href="#me1c0084f0f" x="149.52069" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_28">
|
||||
<!-- $\mathdefault{0.0}$ -->
|
||||
<g transform="translate(144.110345 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_11">
|
||||
<g id="line2d_29">
|
||||
<g>
|
||||
<use xlink:href="#me1c0084f0f" x="195.054932" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_29">
|
||||
<!-- $\mathdefault{0.5}$ -->
|
||||
<g transform="translate(189.644588 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_12">
|
||||
<g id="line2d_30">
|
||||
<g>
|
||||
<use xlink:href="#me1c0084f0f" x="240.589175" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_30">
|
||||
<!-- $\mathdefault{1.0}$ -->
|
||||
<g transform="translate(235.17883 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_8">
|
||||
<g id="ytick_19">
|
||||
<g id="line2d_31">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="149.52069" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_31">
|
||||
<!-- $\mathdefault{0.0}$ -->
|
||||
<g transform="translate(129.6 218.182373) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_20">
|
||||
<g id="line2d_32">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="149.52069" y="197.365458" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_32">
|
||||
<!-- $\mathdefault{0.2}$ -->
|
||||
<g transform="translate(129.6 200.132859) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_21">
|
||||
<g id="line2d_33">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="149.52069" y="179.315944" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_33">
|
||||
<!-- $\mathdefault{0.4}$ -->
|
||||
<g transform="translate(129.6 182.083345) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_22">
|
||||
<g id="line2d_34">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="149.52069" y="161.26643" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_34">
|
||||
<!-- $\mathdefault{0.6}$ -->
|
||||
<g transform="translate(129.6 164.03383) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-36" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_23">
|
||||
<g id="line2d_35">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="149.52069" y="143.216915" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_35">
|
||||
<!-- $\mathdefault{0.8}$ -->
|
||||
<g transform="translate(129.6 145.984316) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-38" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_24">
|
||||
<g id="line2d_36">
|
||||
<g>
|
||||
<use xlink:href="#md1fdc212c0" x="149.52069" y="125.167401" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_36">
|
||||
<!-- $\mathdefault{1.0}$ -->
|
||||
<g transform="translate(129.6 127.934802) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_18">
|
||||
<path d="M 149.52069 215.414973
|
||||
L 149.52069 125.167401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_19">
|
||||
<path d="M 240.589175 215.414973
|
||||
L 240.589175 125.167401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_20">
|
||||
<path d="M 149.52069 215.414973
|
||||
L 240.589175 215.414973
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_21">
|
||||
<path d="M 149.52069 125.167401
|
||||
L 240.589175 125.167401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 950 KiB |
Before Width: | Height: | Size: 342 KiB After Width: | Height: | Size: 342 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 126 KiB |
After Width: | Height: | Size: 958 KiB |
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 342 KiB |
After Width: | Height: | Size: 46 KiB |
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
|
@ -0,0 +1,968 @@
|
|||
<?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="253.19952pt" height="238.79952pt" viewBox="0 0 253.19952 238.79952" 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>1980-01-01T00:00:00+00:00</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 238.79952
|
||||
L 253.19952 238.79952
|
||||
L 253.19952 -0
|
||||
L 0 -0
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="axes_1">
|
||||
<g id="patch_2">
|
||||
<path d="M 37.941379 215.414973
|
||||
L 245.99952 215.414973
|
||||
L 245.99952 9.967401
|
||||
L 37.941379 9.967401
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="maf0ac63065" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#maf0ac63065" x="47.335498" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
<!-- $\mathdefault{0}$ -->
|
||||
<g transform="translate(45.218407 230.049774) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-30" d="M 2688 2025
|
||||
C 2688 2416 2682 3080 2413 3591
|
||||
C 2176 4039 1798 4198 1466 4198
|
||||
C 1158 4198 768 4058 525 3597
|
||||
C 269 3118 243 2524 243 2025
|
||||
C 243 1661 250 1106 448 619
|
||||
C 723 -39 1216 -128 1466 -128
|
||||
C 1760 -128 2208 -7 2470 600
|
||||
C 2662 1042 2688 1559 2688 2025
|
||||
z
|
||||
M 1466 -26
|
||||
C 1056 -26 813 325 723 812
|
||||
C 653 1188 653 1738 653 2096
|
||||
C 653 2588 653 2997 736 3387
|
||||
C 858 3929 1216 4096 1466 4096
|
||||
C 1728 4096 2067 3923 2189 3400
|
||||
C 2272 3036 2278 2607 2278 2096
|
||||
C 2278 1680 2278 1169 2202 792
|
||||
C 2067 95 1690 -26 1466 -26
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#maf0ac63065" x="73.614225" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
<!-- $\mathdefault{25}$ -->
|
||||
<g transform="translate(69.380042 230.049774) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-32" d="M 2669 989
|
||||
L 2554 989
|
||||
C 2490 536 2438 459 2413 420
|
||||
C 2381 369 1920 369 1830 369
|
||||
L 602 369
|
||||
C 832 619 1280 1072 1824 1597
|
||||
C 2214 1967 2669 2402 2669 3035
|
||||
C 2669 3790 2067 4224 1395 4224
|
||||
C 691 4224 262 3604 262 3030
|
||||
C 262 2780 448 2748 525 2748
|
||||
C 589 2748 781 2787 781 3010
|
||||
C 781 3207 614 3264 525 3264
|
||||
C 486 3264 448 3258 422 3245
|
||||
C 544 3790 915 4058 1306 4058
|
||||
C 1862 4058 2227 3617 2227 3035
|
||||
C 2227 2479 1901 2000 1536 1584
|
||||
L 262 146
|
||||
L 262 0
|
||||
L 2515 0
|
||||
L 2669 989
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMR17-35" d="M 730 3692
|
||||
C 794 3666 1056 3584 1325 3584
|
||||
C 1920 3584 2246 3911 2432 4100
|
||||
C 2432 4157 2432 4192 2394 4192
|
||||
C 2387 4192 2374 4192 2323 4163
|
||||
C 2099 4058 1837 3973 1517 3973
|
||||
C 1325 3973 1037 3999 723 4139
|
||||
C 653 4171 640 4171 634 4171
|
||||
C 602 4171 595 4164 595 4037
|
||||
L 595 2203
|
||||
C 595 2089 595 2057 659 2057
|
||||
C 691 2057 704 2070 736 2114
|
||||
C 941 2401 1222 2522 1542 2522
|
||||
C 1766 2522 2246 2382 2246 1289
|
||||
C 2246 1085 2246 715 2054 421
|
||||
C 1894 159 1645 25 1370 25
|
||||
C 947 25 518 320 403 814
|
||||
C 429 807 480 795 506 795
|
||||
C 589 795 749 840 749 1038
|
||||
C 749 1210 627 1280 506 1280
|
||||
C 358 1280 262 1190 262 1011
|
||||
C 262 454 704 -128 1382 -128
|
||||
C 2042 -128 2669 440 2669 1264
|
||||
C 2669 2030 2170 2624 1549 2624
|
||||
C 1222 2624 947 2503 730 2274
|
||||
L 730 3692
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-32" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#maf0ac63065" x="99.892952" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
<!-- $\mathdefault{50}$ -->
|
||||
<g transform="translate(95.658769 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-35" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#maf0ac63065" x="126.171679" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
<!-- $\mathdefault{75}$ -->
|
||||
<g transform="translate(121.937496 230.049774) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-37" d="M 2886 3941
|
||||
L 2886 4081
|
||||
L 1382 4081
|
||||
C 634 4081 621 4165 595 4288
|
||||
L 480 4288
|
||||
L 294 3094
|
||||
L 410 3094
|
||||
C 429 3215 474 3540 550 3661
|
||||
C 589 3712 1062 3712 1171 3712
|
||||
L 2579 3712
|
||||
L 1869 2661
|
||||
C 1395 1954 1069 999 1069 165
|
||||
C 1069 89 1069 -128 1299 -128
|
||||
C 1530 -128 1530 89 1530 171
|
||||
L 1530 465
|
||||
C 1530 1508 1709 2196 2003 2636
|
||||
L 2886 3941
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-37" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#maf0ac63065" x="152.450406" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
<!-- $\mathdefault{100}$ -->
|
||||
<g transform="translate(146.099132 230.049774) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-31" d="M 1702 4058
|
||||
C 1702 4192 1696 4192 1606 4192
|
||||
C 1357 3916 979 3827 621 3827
|
||||
C 602 3827 570 3827 563 3808
|
||||
C 557 3795 557 3782 557 3648
|
||||
C 755 3648 1088 3686 1344 3839
|
||||
L 1344 461
|
||||
C 1344 236 1331 160 781 160
|
||||
L 589 160
|
||||
L 589 0
|
||||
C 896 0 1216 0 1523 0
|
||||
C 1830 0 2150 0 2458 0
|
||||
L 2458 160
|
||||
L 2266 160
|
||||
C 1715 160 1702 230 1702 458
|
||||
L 1702 4058
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(91.380954 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#maf0ac63065" x="178.729133" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
<!-- $\mathdefault{125}$ -->
|
||||
<g transform="translate(172.377858 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(91.380954 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#maf0ac63065" x="205.00786" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
<!-- $\mathdefault{150}$ -->
|
||||
<g transform="translate(198.656585 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(91.380954 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_8">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#maf0ac63065" x="231.286586" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
<!-- $\mathdefault{175}$ -->
|
||||
<g transform="translate(224.935312 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-37" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(91.380954 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_2">
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_9">
|
||||
<defs>
|
||||
<path id="m13b836685e" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m13b836685e" x="37.941379" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
<!-- $\mathdefault{−1.00}$ -->
|
||||
<g transform="translate(7.2 218.182373) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMSY10-0" d="M 4218 1472
|
||||
C 4326 1472 4442 1472 4442 1600
|
||||
C 4442 1728 4326 1728 4218 1728
|
||||
L 755 1728
|
||||
C 646 1728 531 1728 531 1600
|
||||
C 531 1472 646 1472 755 1472
|
||||
L 4218 1472
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMMI12-3a" d="M 1178 307
|
||||
C 1178 492 1024 619 870 619
|
||||
C 685 619 557 466 557 313
|
||||
C 557 128 710 0 864 0
|
||||
C 1050 0 1178 153 1178 307
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMSY10-0" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-31" transform="translate(77.487468 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(123.177945 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(150.275122 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(195.965599 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m13b836685e" x="37.941379" y="189.734026" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
<!-- $\mathdefault{−0.75}$ -->
|
||||
<g transform="translate(7.2 192.501427) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMSY10-0" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(77.487468 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(123.177945 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-37" transform="translate(150.275122 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(195.965599 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m13b836685e" x="37.941379" y="164.05308" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
<!-- $\mathdefault{−0.50}$ -->
|
||||
<g transform="translate(7.2 166.820481) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMSY10-0" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(77.487468 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(123.177945 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(150.275122 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(195.965599 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m13b836685e" x="37.941379" y="138.372133" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
<!-- $\mathdefault{−0.25}$ -->
|
||||
<g transform="translate(7.2 141.139534) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMSY10-0" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(77.487468 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(123.177945 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(150.275122 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(195.965599 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m13b836685e" x="37.941379" y="112.691187" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
<!-- $\mathdefault{0.00}$ -->
|
||||
<g transform="translate(13.786507 115.458588) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#m13b836685e" x="37.941379" y="87.01024" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
<!-- $\mathdefault{0.25}$ -->
|
||||
<g transform="translate(13.786507 89.777641) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_15">
|
||||
<g>
|
||||
<use xlink:href="#m13b836685e" x="37.941379" y="61.329294" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
<!-- $\mathdefault{0.50}$ -->
|
||||
<g transform="translate(13.786507 64.096695) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#m13b836685e" x="37.941379" y="35.648347" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
<!-- $\mathdefault{0.75}$ -->
|
||||
<g transform="translate(13.786507 38.415748) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-37" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_9">
|
||||
<g id="line2d_17">
|
||||
<g>
|
||||
<use xlink:href="#m13b836685e" x="37.941379" y="9.967401" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
<!-- $\mathdefault{1.00}$ -->
|
||||
<g transform="translate(13.786507 12.734802) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 47.674963 -1
|
||||
L 47.674963 239.79952
|
||||
M 47.761944 239.79952
|
||||
L 47.761944 -1
|
||||
M 47.815406 -1
|
||||
L 47.815406 239.79952
|
||||
M 47.883304 239.79952
|
||||
L 47.883304 -1
|
||||
M 47.944962 -1
|
||||
L 47.944962 239.79952
|
||||
M 48.009159 239.79952
|
||||
L 48.009159 -1
|
||||
M 48.072179 -1
|
||||
L 48.072179 239.79952
|
||||
M 48.135627 239.79952
|
||||
L 48.135627 -1
|
||||
M 48.198833 -1
|
||||
L 48.198833 239.79952
|
||||
M 48.262096 239.79952
|
||||
L 48.262096 -1
|
||||
M 48.325295 -1
|
||||
L 48.325295 239.79952
|
||||
M 48.388488 239.79952
|
||||
L 48.388488 -1
|
||||
M 48.451656 -1
|
||||
L 48.451656 239.79952
|
||||
M 48.514812 239.79952
|
||||
L 48.514812 -1
|
||||
M 48.577953 -1
|
||||
L 48.577953 239.79952
|
||||
M 48.641082 239.79952
|
||||
L 48.641082 -1
|
||||
M 48.704201 -1
|
||||
L 48.704201 239.79952
|
||||
M 48.767311 239.79952
|
||||
L 48.767311 -1
|
||||
M 48.830411 -1
|
||||
L 48.830411 239.79952
|
||||
M 48.893504 239.79952
|
||||
L 48.893504 -1
|
||||
M 48.95659 -1
|
||||
L 48.95659 239.79952
|
||||
M 49.019668 239.79952
|
||||
L 49.019668 -1
|
||||
M 49.08274 -1
|
||||
L 49.08274 239.79952
|
||||
M 49.145805 239.79952
|
||||
L 49.145805 -1
|
||||
M 49.208865 -1
|
||||
L 49.208865 239.79952
|
||||
M 49.271918 239.79952
|
||||
L 49.271918 -1
|
||||
M 49.334966 -1
|
||||
L 49.334966 239.79952
|
||||
M 49.39801 239.79952
|
||||
L 49.39801 -1
|
||||
M 49.461049 -1
|
||||
L 49.461049 239.79952
|
||||
M 49.524084 239.79952
|
||||
L 49.524084 -1
|
||||
M 49.587117 -1
|
||||
L 49.587117 239.79952
|
||||
M 49.650148 239.79952
|
||||
L 49.650148 -1
|
||||
M 49.713177 -1
|
||||
L 49.713177 239.79952
|
||||
M 49.776207 239.79952
|
||||
L 49.776207 -1
|
||||
M 49.839237 -1
|
||||
L 49.839237 239.79952
|
||||
M 49.902268 239.79952
|
||||
L 49.902268 -1
|
||||
M 49.965302 -1
|
||||
L 49.965302 239.79952
|
||||
M 50.028339 239.79952
|
||||
L 50.028339 -1
|
||||
M 50.091379 -1
|
||||
L 50.091379 239.79952
|
||||
M 50.154422 239.79952
|
||||
L 50.154422 -1
|
||||
M 50.217469 -1
|
||||
L 50.217469 239.79952
|
||||
M 50.280521 239.79952
|
||||
L 50.280521 -1
|
||||
M 50.343576 -1
|
||||
L 50.343576 239.79952
|
||||
M 50.406635 239.79952
|
||||
L 50.406635 -1
|
||||
M 50.469697 -1
|
||||
L 50.469697 239.79952
|
||||
M 50.532763 239.79952
|
||||
L 50.532763 -1
|
||||
M 50.595832 -1
|
||||
L 50.595832 239.79952
|
||||
M 50.658903 239.79952
|
||||
L 50.658903 -1
|
||||
M 50.721976 -1
|
||||
L 50.721976 239.79952
|
||||
M 50.785052 239.79952
|
||||
L 50.785052 -1
|
||||
M 50.848129 -1
|
||||
L 50.848129 239.79952
|
||||
M 50.911206 239.79952
|
||||
L 50.911206 -1
|
||||
M 50.974285 -1
|
||||
L 50.974285 239.79952
|
||||
M 51.037364 239.79952
|
||||
L 51.037364 -1
|
||||
M 51.100444 -1
|
||||
L 51.100444 239.79952
|
||||
M 51.163524 239.79952
|
||||
L 51.163524 -1
|
||||
M 51.226604 -1
|
||||
L 51.226604 239.79952
|
||||
M 51.289683 239.79952
|
||||
L 51.289683 -1
|
||||
M 51.352763 -1
|
||||
L 51.352763 239.79952
|
||||
M 51.415843 239.79952
|
||||
L 51.415843 -1
|
||||
M 51.478923 -1
|
||||
L 51.478923 239.79952
|
||||
M 51.542003 239.79952
|
||||
L 51.542003 -1
|
||||
M 51.605084 -1
|
||||
L 51.605084 239.79952
|
||||
M 51.668164 239.79952
|
||||
L 51.668164 -1
|
||||
M 51.731245 -1
|
||||
L 51.731245 239.79952
|
||||
M 51.794327 239.79952
|
||||
L 51.794327 -1
|
||||
M 51.857408 -1
|
||||
L 51.857408 239.79952
|
||||
M 51.920489 239.79952
|
||||
L 51.920489 -1
|
||||
M 51.98357 -1
|
||||
L 51.98357 239.79952
|
||||
M 52.046651 239.79952
|
||||
L 52.046651 -1
|
||||
M 52.109731 -1
|
||||
L 52.109731 239.79952
|
||||
M 52.172811 239.79952
|
||||
L 52.172811 -1
|
||||
M 52.235891 -1
|
||||
L 52.235891 239.79952
|
||||
M 52.298969 239.79952
|
||||
L 52.298969 -1
|
||||
M 52.362047 -1
|
||||
L 52.362047 239.79952
|
||||
M 52.425123 239.79952
|
||||
L 52.425123 -1
|
||||
M 52.488199 -1
|
||||
L 52.488199 239.79952
|
||||
M 52.551273 239.79952
|
||||
L 52.551273 -1
|
||||
M 52.614347 -1
|
||||
L 52.614347 239.79952
|
||||
M 52.677419 239.79952
|
||||
L 52.677419 -1
|
||||
M 52.74049 -1
|
||||
L 52.74049 239.79952
|
||||
M 52.80356 239.79952
|
||||
L 52.80356 -1
|
||||
M 52.866629 -1
|
||||
L 52.866629 239.79952
|
||||
M 52.929697 239.79952
|
||||
L 52.929697 -1
|
||||
M 52.992764 -1
|
||||
L 52.992764 239.79952
|
||||
M 53.05583 239.79952
|
||||
L 53.05583 -1
|
||||
M 53.118896 -1
|
||||
L 53.118896 239.79952
|
||||
M 53.181962 239.79952
|
||||
L 53.181962 -1
|
||||
M 53.245027 -1
|
||||
L 53.245027 239.79952
|
||||
M 53.308092 239.79952
|
||||
L 53.308092 -1
|
||||
M 53.371157 -1
|
||||
L 53.371157 239.79952
|
||||
M 53.434222 239.79952
|
||||
L 53.434222 -1
|
||||
M 53.497287 -1
|
||||
L 53.497287 239.79952
|
||||
M 53.560352 239.79952
|
||||
L 53.560352 -1
|
||||
M 53.623418 -1
|
||||
L 53.623418 239.79952
|
||||
M 53.686484 239.79952
|
||||
L 53.686484 -1
|
||||
M 53.749551 -1
|
||||
L 53.749551 239.79952
|
||||
M 53.812618 239.79952
|
||||
L 53.812618 -1
|
||||
M 53.875685 -1
|
||||
L 53.875685 239.79952
|
||||
M 53.938753 239.79952
|
||||
L 53.938753 -1
|
||||
M 54.001821 -1
|
||||
L 54.001821 239.79952
|
||||
M 54.06489 239.79952
|
||||
L 54.06489 -1
|
||||
M 54.127959 -1
|
||||
L 54.127959 239.79952
|
||||
M 54.191028 239.79952
|
||||
L 54.191028 -1
|
||||
M 54.254097 -1
|
||||
L 54.254097 239.79952
|
||||
M 54.317166 239.79952
|
||||
L 54.317166 -1
|
||||
M 54.380236 -1
|
||||
L 54.380236 239.79952
|
||||
M 54.443305 239.79952
|
||||
L 54.443305 -1
|
||||
M 54.506374 -1
|
||||
L 54.506374 239.79952
|
||||
M 54.569444 239.79952
|
||||
L 54.569444 -1
|
||||
M 54.632513 -1
|
||||
L 54.632513 239.79952
|
||||
M 54.695582 239.79952
|
||||
L 54.695582 -1
|
||||
M 54.758651 -1
|
||||
L 54.758651 239.79952
|
||||
M 54.82172 239.79952
|
||||
L 54.82172 -1
|
||||
M 54.884789 -1
|
||||
L 54.884789 239.79952
|
||||
M 54.947858 239.79952
|
||||
L 54.947858 -1
|
||||
M 55.010927 -1
|
||||
L 55.010927 239.79952
|
||||
M 55.073996 239.79952
|
||||
L 55.073996 -1
|
||||
M 55.137065 -1
|
||||
L 55.137065 239.79952
|
||||
M 55.200134 239.79952
|
||||
L 55.200134 -1
|
||||
M 55.263203 -1
|
||||
L 55.263203 239.79952
|
||||
M 55.326272 239.79952
|
||||
L 55.326272 -1
|
||||
M 55.389341 -1
|
||||
L 55.389341 239.79952
|
||||
M 55.45241 239.79952
|
||||
L 55.45241 -1
|
||||
M 55.515479 -1
|
||||
L 55.515479 239.79952
|
||||
M 55.578547 239.79952
|
||||
L 55.578547 -1
|
||||
M 55.641616 -1
|
||||
L 55.641616 239.79952
|
||||
M 55.704685 239.79952
|
||||
L 55.704685 -1
|
||||
M 55.767754 -1
|
||||
L 55.767754 239.79952
|
||||
M 55.830823 239.79952
|
||||
L 55.830823 -1
|
||||
M 55.893892 -1
|
||||
L 55.893892 239.79952
|
||||
M 55.956961 239.79952
|
||||
L 55.956961 -1
|
||||
M 56.02003 -1
|
||||
L 56.02003 239.79952
|
||||
M 56.083099 239.79952
|
||||
L 56.083099 -1
|
||||
M 56.146168 -1
|
||||
L 56.146168 239.79952
|
||||
M 56.209237 239.79952
|
||||
L 56.209237 -1
|
||||
M 56.272306 -1
|
||||
L 56.272306 239.79952
|
||||
M 56.335375 239.79952
|
||||
L 56.335375 -1
|
||||
M 56.398444 -1
|
||||
L 56.398444 239.79952
|
||||
M 56.461513 239.79952
|
||||
L 56.461513 -1
|
||||
M 56.524582 -1
|
||||
L 56.524582 239.79952
|
||||
M 56.587651 239.79952
|
||||
L 56.587651 -1
|
||||
M 56.65072 -1
|
||||
L 56.65072 239.79952
|
||||
M 56.713788 239.79952
|
||||
L 56.713788 -1
|
||||
M 56.776857 -1
|
||||
L 56.776857 239.79952
|
||||
M 56.839926 239.79952
|
||||
L 56.839926 -1
|
||||
M 56.902995 -1
|
||||
L 56.902995 239.79952
|
||||
M 56.966064 239.79952
|
||||
L 56.966064 -1
|
||||
M 57.029133 -1
|
||||
L 57.029133 239.79952
|
||||
M 57.092202 239.79952
|
||||
L 57.092202 -1
|
||||
M 57.155271 -1
|
||||
L 57.155271 239.79952
|
||||
M 57.21834 239.79952
|
||||
L 57.21834 -1
|
||||
M 57.281409 -1
|
||||
L 57.281409 239.79952
|
||||
M 57.344478 239.79952
|
||||
L 57.344478 -1
|
||||
M 57.407547 -1
|
||||
L 57.407547 239.79952
|
||||
M 57.470616 239.79952
|
||||
L 57.470616 -1
|
||||
M 57.533685 -1
|
||||
L 57.533685 239.79952
|
||||
M 57.596754 239.79952
|
||||
L 57.596754 -1
|
||||
M 57.659823 -1
|
||||
L 57.659823 239.79952
|
||||
M 57.722892 239.79952
|
||||
L 57.722892 -1
|
||||
M 57.785961 -1
|
||||
L 57.785961 239.79952
|
||||
M 57.849029 239.79952
|
||||
L 57.849029 -1
|
||||
M 57.912098 -1
|
||||
L 57.912098 239.79952
|
||||
M 57.975167 239.79952
|
||||
L 57.975167 -1
|
||||
M 58.038236 -1
|
||||
L 58.038236 239.79952
|
||||
M 58.101305 239.79952
|
||||
L 58.101305 -1
|
||||
M 58.164374 -1
|
||||
L 58.164374 239.79952
|
||||
M 58.227443 239.79952
|
||||
L 58.227443 -1
|
||||
M 58.290512 -1
|
||||
L 58.290512 239.79952
|
||||
M 58.353581 239.79952
|
||||
L 58.353581 -1
|
||||
M 58.416649 -1
|
||||
L 58.416649 239.79952
|
||||
M 58.479714 239.79952
|
||||
L 58.479714 -1
|
||||
M 58.542738 -1
|
||||
L 58.542738 239.79952
|
||||
M 58.605341 239.79952
|
||||
L 58.605341 -1
|
||||
M 58.661728 -1
|
||||
L 58.661728 239.79952
|
||||
M 61.421536 239.79952
|
||||
L 61.715218 195.499606
|
||||
L 62.093631 169.577636
|
||||
L 62.472045 156.93421
|
||||
L 62.913528 148.693215
|
||||
L 63.481148 142.330814
|
||||
L 64.048769 138.370186
|
||||
L 64.679458 135.573067
|
||||
L 65.436285 133.326065
|
||||
L 66.130044 131.942131
|
||||
L 66.94994 130.760923
|
||||
L 67.769836 129.949921
|
||||
L 69.598836 128.709309
|
||||
L 70.860215 128.231329
|
||||
L 74.581282 127.496941
|
||||
L 81.26659 127.161432
|
||||
L 82.591038 126.67143
|
||||
L 84.672313 125.925288
|
||||
L 85.49221 125.759495
|
||||
L 87.321209 125.741859
|
||||
L 91.42069 125.831543
|
||||
L 91.736035 126.119785
|
||||
L 91.988311 126.656977
|
||||
L 92.303656 127.931034
|
||||
L 92.682069 130.594434
|
||||
L 93.186621 136.031438
|
||||
L 94.826413 155.183262
|
||||
L 95.772448 162.882272
|
||||
L 96.655413 168.358327
|
||||
L 97.538378 172.494192
|
||||
L 98.421343 175.616891
|
||||
L 99.304309 177.986606
|
||||
L 100.313412 180.066123
|
||||
L 101.196377 181.414785
|
||||
L 102.268549 182.650364
|
||||
L 103.214583 183.408713
|
||||
L 104.286755 183.971039
|
||||
L 106.052686 184.594946
|
||||
L 108.575443 185.112679
|
||||
L 109.773753 185.117805
|
||||
L 112.485718 185.129656
|
||||
L 112.801063 185.488279
|
||||
L 113.179476 186.316088
|
||||
L 113.810166 188.434224
|
||||
L 114.7562 191.495573
|
||||
L 115.197683 192.239121
|
||||
L 115.513027 192.395986
|
||||
L 115.891441 192.313394
|
||||
L 116.711337 192.066864
|
||||
L 118.792612 192.093682
|
||||
L 123.270507 192.012763
|
||||
L 123.522783 191.706623
|
||||
L 123.775059 190.929511
|
||||
L 124.090404 188.95548
|
||||
L 124.531886 184.454886
|
||||
L 125.414852 175.216935
|
||||
L 126.10861 170.482693
|
||||
L 126.802368 167.106802
|
||||
L 127.622265 164.209393
|
||||
L 128.631368 161.65423
|
||||
L 129.640471 159.839362
|
||||
L 130.649574 158.538151
|
||||
L 131.658677 157.599019
|
||||
L 132.604711 157.019241
|
||||
L 134.118366 156.283258
|
||||
L 136.893399 155.569967
|
||||
L 138.280916 155.396762
|
||||
L 140.362191 155.238119
|
||||
L 142.25426 155.095513
|
||||
L 144.083259 154.91127
|
||||
L 145.029293 154.475237
|
||||
L 147.425913 153.258481
|
||||
L 148.245809 152.896182
|
||||
L 149.002637 152.814143
|
||||
L 154.426566 152.843072
|
||||
L 154.80498 153.003981
|
||||
L 155.120324 153.38029
|
||||
L 155.435669 154.11549
|
||||
L 155.814083 155.58658
|
||||
L 156.381703 158.863688
|
||||
L 157.706151 166.807075
|
||||
L 158.652185 170.898724
|
||||
L 159.598219 174.026507
|
||||
L 160.544254 176.381868
|
||||
L 161.427219 178.030899
|
||||
L 162.373253 179.340019
|
||||
L 163.382356 180.358344
|
||||
L 164.454528 181.109007
|
||||
L 165.842045 181.812461
|
||||
L 167.292631 182.261824
|
||||
L 169.310837 182.622364
|
||||
L 171.644388 182.828201
|
||||
L 174.923973 182.847549
|
||||
L 175.554662 182.898712
|
||||
L 175.933076 183.131791
|
||||
L 176.374559 183.676523
|
||||
L 178.203558 186.363408
|
||||
L 178.645041 186.480682
|
||||
L 179.528006 186.337027
|
||||
L 180.663247 186.333202
|
||||
L 186.402521 186.272401
|
||||
L 186.717866 185.991317
|
||||
L 187.03321 185.274334
|
||||
L 187.411624 183.65086
|
||||
L 189.114486 174.967942
|
||||
L 189.997451 172.191976
|
||||
L 190.754278 170.466849
|
||||
L 191.763381 168.702612
|
||||
L 192.583277 167.626625
|
||||
L 193.65545 166.652869
|
||||
L 194.916828 165.766103
|
||||
L 196.556621 164.962821
|
||||
L 197.691862 164.597482
|
||||
L 200.277689 164.189217
|
||||
L 205.133997 164.006548
|
||||
L 206.521514 163.863547
|
||||
L 207.719824 163.527527
|
||||
L 211.503961 162.011385
|
||||
L 212.76534 161.978353
|
||||
L 217.810855 162.079191
|
||||
L 218.189269 162.363148
|
||||
L 218.567683 162.991478
|
||||
L 219.009165 164.26731
|
||||
L 219.702924 167.161388
|
||||
L 220.712027 171.173356
|
||||
L 221.658061 173.969592
|
||||
L 222.604095 176.122288
|
||||
L 223.550129 177.721348
|
||||
L 224.496163 178.895284
|
||||
L 225.568335 179.881308
|
||||
L 226.640507 180.583393
|
||||
L 227.838817 181.105911
|
||||
L 229.352472 181.522865
|
||||
L 231.24454 181.791847
|
||||
L 233.893436 181.989165
|
||||
L 236.542332 182.087644
|
||||
L 236.542332 182.087644
|
||||
" clip-path="url(#p71bb37714f)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 37.941379 215.414973
|
||||
L 37.941379 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_4">
|
||||
<path d="M 245.99952 215.414973
|
||||
L 245.99952 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_5">
|
||||
<path d="M 37.941379 215.414973
|
||||
L 245.99952 215.414973
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_6">
|
||||
<path d="M 37.941379 9.967401
|
||||
L 245.99952 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p71bb37714f">
|
||||
<rect x="37.941379" y="9.967401" width="208.058141" height="205.447572"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 232 KiB |
4
python/otto_motor/subprojects/cycle_shift/test.org
Normal file
|
@ -0,0 +1,4 @@
|
|||
\(a\)
|
||||
|
||||
|
||||
\(αβ\)
|