This example demonstrates how to find a solution to a Sudoku puzzle using Mixed Integer Linear Programming (MILP) and Constraint Programming (CP) methods.
In this example, we will use the functions of the JuMP.jl library to formulate the optimisation problem, the linear optimisation library HiGHS.jl, the random number generation library Random.jl and the Plots.jl library to visualise the results.
Installing the libraries¶
If your environment does not have the latest version of the JuMP
package installed , uncomment and run the box below:
To launch a new version of the library after the installation is complete, click on the "My Account" button:
Then click on the "Stop" button:

Restart the session by pressing the "Start Engee" button:

Sudoku is a logic combinatorial number placement puzzle game. The goal is to fill a 9x9 grid with numbers so that each column, each row and each of the nine 3x3 sub-grids contains all numbers from 1 to 9.
Rules:
- Each line must contain digits from 1 to 9 without repetition.
- Each column must contain digits from 1 to 9 without repetition.
- Each 3x3 subnet must contain digits from 1 to 9 without repetition.
Initial hints are provided to make solving the puzzle possible:
An example of a solved sudoku:
Sudoku puzzles range from simple to extremely complex, with the difficulty often determined by the number of initial clues provided and the complexity of the strategies required to solve them. A properly constructed sudoku puzzle should have only one solution.
Connect the library JuMP
:
Connect the solver library HiGHS
:
Connect the graphing library Plots
:
Connect the random number generation library Random
:
Creating a Sudoku visualisation function¶
Create a function plot_sudoku()
, which visualises sudoku:
Out[0]:
plot_sudoku (generic function with 1 method)
We will use this function to visualise sudoku in this example.
Generating Sudoku puzzles¶
In this section, we will write a programme that will generate sudoku puzzles to solve.
Create a function generate_full_grid()
, which is responsible for building the sudoku grid:
Out[0]:
generate_full_grid (generic function with 1 method)
Create a recursive function fill_grid!()
, which fills the sudoku grid with numbers:
Out[0]:
fill_grid! (generic function with 1 method)
This function implements a backtracking algorithm to fill the sudoku grid with valid numbers.
Create a function is_valid()
, which checks if a given number (num
) is allowed to be placed in a certain cell (row, column) of the sudoku grid:
Out[0]:
is_valid (generic function with 1 method)
This function is crucial for following all three rules in the sudoku grid filling process.
Create a function remove_numbers!()
, which is responsible for removing numbers from a filled sudoku grid, to create a puzzle:
Out[0]:
remove_numbers! (generic function with 1 method)
This is a key part of creating sudoku puzzles of varying levels of difficulty, as the number of cells removed can affect the difficulty of the puzzle.
Create a recursive function count_solutions()
, which counts the number of valid solutions for a given sudoku grid:
Out[0]:
count_solutions (generic function with 2 methods)
This function is crucial to ensure that removing numbers from the grid (in the function remove_numbers!
) does not result in multiple solutions.
Create a function generate_sudoku_puzzle()
that generates Sudoku with a given number of clues:
Out[0]:
generate_sudoku_puzzle (generic function with 1 method)
The theoretical minimum number of hints for a sudoku puzzle with a single solution is 17.
The programme we have written can consistently generate Sudoku with a single solution, where the minimum number of hints is somewhere between 20 and 30, which is more than enough for this example.
Generate Sudoku with 25 clues:
Visualise Sudoku with clues:
We will solve the problem using mixed integer linear programming. The goal is to model the puzzle as a feasibility problem where each cell must satisfy certain constraints.
Create an optimisation problem using the function Model()
and give the name of the solver in brackets:
Out[0]:
A JuMP Model
├ solver: HiGHS
├ objective_sense: FEASIBILITY_SENSE
├ num_variables: 0
├ num_constraints: 0
└ Names registered in the model: none
Create a variable x
, representing a three-dimensional array $x(i, j, k)$, where i
, j
, and k
are in the range 1 to 9. The argument Bin
indicates that the variable x
is binary.
The array x
consists of:
i
(row index): represents the row number in the sudoku grid, in the range 1 to 9
j
(column index): represents the number of a column in the sudoku grid, also in the range 1 to 9
k
(digit index): represents a potential digit (from 1 to 9) that can be placed in a cell (i
, j
)
Thus, the binary representation of x
means that:
$x(3, 3, 8) = 1$ - the digit 8 is placed in the cell located in row 3, column 3
$x(3, 3, 8)$ = 0 - the digit 8 is not placed in this cell
Using the loop for
to loop through the rows i
and columns j
, create the following condition for the optimisation problem:
$$\sum_{k=1}^{9} x_{i, j, k} = 1$$
This condition ensures that each of the cells in the sudoku grid contains exactly one number between 1 and 9.
Using loops for
to loop through rows i
and columns j
, create the following conditions for the optimisation problem:
$$\sum_{j=1}^{9} x_{ind, j, k} = 1$$
This constraint ensures that each digit of k
appears exactly once in each row of ind
.
$$\sum_{i=1}^{9} x_{i, ind, k} = 1$$
This constraint ensures that each digit k
appears exactly once in each column ind
.
The code in the above cell adds 162 constraints to the model:
- 81 constraints for rows (9 rows × 9 digits)
- 81 column constraints (9 columns × 9 digits)
With these two conditions, we have fulfilled the fulfilment of the first two sudoku rules:
- Each row must contain digits from 1 to 9 without repetition
- Each column must contain digits from 1 to 9 without repetition
Using loops for
, create the following condition for the optimisation problem:
$$\sum_{r=i}^{i+2} \sum_{c=j}^{j+2} x_{r, c, k} = 1$$
The outermost loop for i
at 1:3:7 searches rows 1, 4, and 7, which are the initial rows of each 3x3 subnet.
The middle loop for j
at 1:3:7 loops through columns 1, 4, and 7, which are the initial columns of each 3x3 subnet.
The innermost loop for k
at 1:9 searches all possible digits (from 1 to 9).
The variables r
and c
allow you to define constraints for each 3x3 subnet in sudoku.
r
- represents the row indices in the 3x3 subgrid and takes values from i
to i+2
c
- represents column indices in a 3x3 subnet and takes values from j
to j+2
The code in the above cell adds 81 constraints (9 digits for each of the 9 subgrids) to the model, ensuring that each 3x3 subgrid contains all digits from 1 to 9 without repetition. This is how we fulfil the third rule of Sudoku puzzles.
Using the loops for
to loop through the cells, put the values 1 (true
) in the binary variable x
in the cells that have the initial clues (sudoku_puzzle
) using the function fix()
:
You have created conditions for the fulfilment of all three puzzle solving rules and entered the clues into the variable x
. Now you can solve the optimisation problem:
Running HiGHS 1.7.2 (git hash: 5ce7a2753): Copyright (c) 2024 HiGHS under MIT licence terms
Coefficient ranges:
Matrix [1e+00, 1e+00]
Cost [0e+00, 0e+00]
Bound [1e+00, 1e+00]
RHS [1e+00, 1e+00]
Presolving model
200 rows, 184 cols, 736 nonzeros 0s
0 rows, 0 cols, 0 nonzeros 0s
Presolve: Optimal
Solving report
Status Optimal
Primal bound 0
Dual bound 0
Gap 0% (tolerance: 0.01%)
Solution status feasible
0 (objective)
0 (bound viol.)
0 (int. viol.)
0 (row viol.)
Timing 0.00 (total)
0.00 (presolve)
0.00 (postsolve)
Nodes 0
LP iterations 0 (total)
0 (strong br.)
0 (separation)
0 (heuristics)
Output the status of the solver's result:
Статус: OPTIMAL
Оптимальное решение найдено
The OPTIMAL status means that the solver has found the global optimal solution to the problem.
Save the values of the binary variable x
in the variable x_val
:
Out[0]:
9×9×9 Array{Float64, 3}:
[:, :, 1] =
0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0
0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
[:, :, 2] =
1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0
0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0
0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
[:, :, 3] =
0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0
0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0
0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
[:, :, 4] =
0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0
0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0
[:, :, 5] =
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0
1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
[:, :, 6] =
0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0
0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
[:, :, 7] =
0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0
0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0
0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
[:, :, 8] =
0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0
0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0
[:, :, 9] =
0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0
0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
You can make sure that each value k
from the solution has been assigned a grid position in the variable x_val
.
Create a new 9x9 matrix filled with zeros that will be used to convert the results from binary format to the standard sudoku grid format. The argument Int
indicates that the matrix values are integers.
Using for
loops to loop through all the cells and possible digits in the sudoku grid, convert the values of the three-dimensional array x_val
to a two-dimensional array of integers sol_milp
.
The variable sol_milp
now contains the actual solution to the puzzle in the format of a two-dimensional array of integers.
We have demonstrated solving the problem using mixed integer linear programming. The solver finds a possible configuration of numbers that satisfies the rules for solving sudoku, formulated as row, column, and subgrid constraints.
You can also model this problem using constraint programming. Let's apply the condition AllDifferent()
("all different"), which states that no two elements of the vector can take the same value.
Create an optimisation problem using the function Model()
and specify the name of the solver in brackets:
Out[0]:
A JuMP Model
├ solver: HiGHS
├ objective_sense: FEASIBILITY_SENSE
├ num_variables: 0
├ num_constraints: 0
└ Names registered in the model: none
Create a variable sudoku_cp
, containing a two-dimensional array $x(i, j)$. Each variable ranges from 1 to 9. The argument Int
indicates that the values of the variables are integers.
Set the condition that applies to each row i
of the sudoku grid. MOI.AllDifferent(9)
ensures that all elements in row i
are distinct.
This means that each number from 1 to 9 appears exactly once in each row.
Set the condition that applies to each column j
of the sudoku grid. MOI.AllDifferent(9)
guarantees that all elements in column j
are distinct.
This means that every number from 1 to 9 appears exactly once in each column.
Set the condition that applies to each 3x3 subgrid in sudoku. MOI.AllDifferent(9)
ensures that all elements in each subgrid are distinct. This means that every number from 1 to 9 appears exactly once in each 3x3 subgrid.
For each of the cells in [i, j]
, transfer the original clues from sudoku_puzzle
to the variable x
using the function fix
:
You have created the fulfilment conditions for all three puzzle solving rules and put the clues into the variable x
. Now you can solve the optimisation problem:
Running HiGHS 1.7.2 (git hash: 5ce7a2753): Copyright (c) 2024 HiGHS under MIT licence terms
Coefficient ranges:
Matrix [1e+00, 9e+00]
Cost [0e+00, 0e+00]
Bound [1e+00, 9e+00]
RHS [1e+00, 1e+00]
Presolving model
747 rows, 1568 cols, 5788 nonzeros 0s
504 rows, 1568 cols, 4108 nonzeros 0s
Objective function is integral with scale 1
Solving MIP model with:
504 rows
1568 cols (1512 binary, 56 integer, 0 implied int., 0 continuous)
4108 nonzeros
Nodes | B&B Tree | Objective Bounds | Dynamic Constraints | Work
Proc. InQueue | Leaves Expl. | BestBound BestSol Gap | Cuts InLp Confl. | LpIters Time
0 0 0 0.00% 0 inf inf 0 0 0 0 0.0s
0 0 0 0.00% 0 inf inf 0 0 3 831 0.0s
10.4% inactive integer columns, restarting
Model after restart has 302 rows, 570 cols (514 bin., 56 int., 0 impl., 0 cont.), and 2281 nonzeros
0 0 0 0.00% 0 inf inf 13 0 0 8462 1.7s
Solving report
Status Optimal
Primal bound 0
Dual bound 0
Gap 0% (tolerance: 0.01%)
Solution status feasible
0 (objective)
0 (bound viol.)
1.34559030585e-13 (int. viol.)
0 (row viol.)
Timing 1.77 (total)
0.08 (presolve)
0.00 (postsolve)
Nodes 1
LP iterations 8783 (total)
0 (strong br.)
1996 (separation)
5635 (heuristics)
Output the status of the solver's result:
Статус: OPTIMAL
Оптимальное решение найдено
The OPTIMAL status means that the solver has found the global optimal solution to the problem.
Save the results in a variable. The obtained values are of type Float64
. You can use the function round
together with the argument Int
, to convert the values to integers.
Visualise the resulting sudoku solution:
You can compare the solutions obtained by using mixed integer linear programming and constraint programming:
The results of both methods of solving the puzzle are the same.
In this example, we solved the Sudoku puzzle using two different approaches - Mixed Integer Linear Programming (MILP) and Constraint Programming (CP). Both approaches can solve the puzzle, but they formulate and solve the problem in fundamentally different ways, demonstrating different characteristics in modelling and problem solving. In the context of solving the problem demonstrated in this example, we can highlight some of the differences between these approaches.
Mixed integer linear programming:
** Uses binary variables $x(i, j, k)$
@variable(sudoku_milp, x[i = 1:9, j = 1:9, k = 1:9], Bin)
- Uses linear constraints to enforce sudoku rules
@constraint(sudoku_milp, sum(x[i, j, k] for k at 1:9) == 1)
- Larger model with more variables, but with simpler constraints
` * Generally more robust to small model changes and scales better with increasing problem size
** Constraint programming:**
- Uses integer variables $x(i, j)$
@variable(sudoku_cp, 1 <= x[1:9, 1:9] <= 9, Int)
- Uses global constraints such as
AllDifferent
, to enforce sudoku rules
@constraint(sudoku_cp, [i = 1:9], x[i, :] in MOI.AllDifferent(9))
- Smaller model with fewer variables but more complex constraints
` * May be more sensitive to problem size and structure
In practice, the choice between mixed integer linear programming and constraint programming often depends on the particular characteristics of the problem, and for some problems one method is better suited than the other. In some cases, hybrid approaches combining both methods may be effective.
{"id": "7925004c-4ad4-48f9-aae8-c12460e4ba0b", "data": [{"xaxis": "x", "mode": "lines", "x": [0, 0], "showlegend": true, "name": "y1", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y1", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y2", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y2", "y": [0, 0], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [1, 1], "showlegend": true, "name": "y3", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y3", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y4", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y4", "y": [1, 1], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [2, 2], "showlegend": true, "name": "y5", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y5", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y6", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y6", "y": [2, 2], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [3, 3], "showlegend": true, "name": "y7", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y7", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y8", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y8", "y": [3, 3], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [4, 4], "showlegend": true, "name": "y9", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y9", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y10", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y10", "y": [4, 4], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [5, 5], "showlegend": true, "name": "y11", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y11", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y12", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y12", "y": [5, 5], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [6, 6], "showlegend": true, "name": "y13", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y13", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y14", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y14", "y": [6, 6], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [7, 7], "showlegend": true, "name": "y15", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y15", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y16", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y16", "y": [7, 7], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [8, 8], "showlegend": true, "name": "y17", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y17", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y18", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y18", "y": [8, 8], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [9, 9], "showlegend": true, "name": "y19", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y19", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y20", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y20", "y": [9, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}], "config": {"showlegend": false, "height": 400, "xaxis": {"showline": false, "gridcolor": "rgba(0, 0, 0, 0.1)", "showticklabels": false, "anchor": "y", "range": [-2.7028915662650617, 11.702891566265059], "gridwidth": 0.5, "visible": true, "showgrid": false, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.006561679790026247, 0.9934383202099737], "title": {"text": ""}, "ticks": "inside", "type": "linear"}, "annotations": [{"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}, {"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 6.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 1.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}], "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "margin": {"t": 20, "b": 20, "r": 0, "l": 0}, "yaxis": {"showline": false, "gridcolor": "rgba(0, 0, 0, 0.1)", "showticklabels": false, "anchor": "x", "range": [-0.27000000000000046, 9.27], "gridwidth": 0.5, "visible": true, "showgrid": false, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.009842519685039424, 0.9901574803149606], "title": {"text": ""}, "ticks": "inside", "type": "linear"}, "width": 983.984375}}
{"id": "d0ce3730-b622-411d-b39c-57600fb5d20f", "data": [{"xaxis": "x", "mode": "lines", "x": [0, 0], "showlegend": true, "name": "y1", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y1", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y2", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y2", "y": [0, 0], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [1, 1], "showlegend": true, "name": "y3", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y3", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y4", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y4", "y": [1, 1], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [2, 2], "showlegend": true, "name": "y5", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y5", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y6", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y6", "y": [2, 2], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [3, 3], "showlegend": true, "name": "y7", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y7", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y8", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y8", "y": [3, 3], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [4, 4], "showlegend": true, "name": "y9", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y9", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y10", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y10", "y": [4, 4], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [5, 5], "showlegend": true, "name": "y11", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y11", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y12", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y12", "y": [5, 5], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [6, 6], "showlegend": true, "name": "y13", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y13", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y14", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y14", "y": [6, 6], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [7, 7], "showlegend": true, "name": "y15", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y15", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y16", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y16", "y": [7, 7], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [8, 8], "showlegend": true, "name": "y17", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y17", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y18", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y18", "y": [8, 8], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [9, 9], "showlegend": true, "name": "y19", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y19", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y20", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y20", "y": [9, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}], "config": {"showlegend": false, "height": 400, "xaxis": {"showline": false, "gridcolor": "rgba(0, 0, 0, 0.1)", "showticklabels": false, "anchor": "y", "range": [-2.7028915662650617, 11.702891566265059], "gridwidth": 0.5, "visible": true, "showgrid": false, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.006561679790026247, 0.9934383202099737], "title": {"text": ""}, "ticks": "inside", "type": "linear"}, "annotations": [{"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 1.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}, {"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}, {"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 1.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 6.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}, {"y": 6.5, "yanchor": "middle", "rotation": 0, "x": 1.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 6.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 6.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 6.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 6.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 6.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 6.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}, {"y": 6.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 1.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 1.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 1.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 1.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 1.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}, {"y": 1.5, "yanchor": "middle", "rotation": 0, "x": 1.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 1.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 1.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}, {"y": 1.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 1.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 1.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 1.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 1.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 1.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}], "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "margin": {"t": 20, "b": 20, "r": 0, "l": 0}, "yaxis": {"showline": false, "gridcolor": "rgba(0, 0, 0, 0.1)", "showticklabels": false, "anchor": "x", "range": [-0.27000000000000046, 9.27], "gridwidth": 0.5, "visible": true, "showgrid": false, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.009842519685039424, 0.9901574803149606], "title": {"text": ""}, "ticks": "inside", "type": "linear"}, "width": 983.984375}}
{"id": "21076e3c-2bf1-4c57-a704-7ef1ee6c6dd1", "data": [{"xaxis": "x", "mode": "lines", "x": [0, 0], "showlegend": true, "name": "y1", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y1", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y2", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y2", "y": [0, 0], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [1, 1], "showlegend": true, "name": "y3", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y3", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y4", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y4", "y": [1, 1], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [2, 2], "showlegend": true, "name": "y5", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y5", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y6", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y6", "y": [2, 2], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [3, 3], "showlegend": true, "name": "y7", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y7", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y8", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y8", "y": [3, 3], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [4, 4], "showlegend": true, "name": "y9", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y9", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y10", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y10", "y": [4, 4], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [5, 5], "showlegend": true, "name": "y11", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y11", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y12", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y12", "y": [5, 5], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [6, 6], "showlegend": true, "name": "y13", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y13", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y14", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y14", "y": [6, 6], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [7, 7], "showlegend": true, "name": "y15", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y15", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y16", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y16", "y": [7, 7], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [8, 8], "showlegend": true, "name": "y17", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y17", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y18", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y18", "y": [8, 8], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [9, 9], "showlegend": true, "name": "y19", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y19", "y": [0, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 9], "showlegend": true, "name": "y20", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "y20", "y": [9, 9], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 0, 1)", "dash": "solid", "width": 2}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 2, "minCount": 25000, "currentCount": 2}, "shouldEnableSmartZoom": false}, "type": "scatter"}], "config": {"showlegend": false, "height": 400, "xaxis": {"showline": false, "gridcolor": "rgba(0, 0, 0, 0.1)", "showticklabels": false, "anchor": "y", "range": [-2.7028915662650617, 11.702891566265059], "gridwidth": 0.5, "visible": true, "showgrid": false, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.006561679790026247, 0.9934383202099737], "title": {"text": ""}, "ticks": "inside", "type": "linear"}, "annotations": [{"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 1.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}, {"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}, {"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 8.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 1.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 7.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 6.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}, {"y": 6.5, "yanchor": "middle", "rotation": 0, "x": 1.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 6.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 6.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 6.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 6.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 6.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 6.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}, {"y": 6.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 1.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}, {"y": 5.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 1.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 4.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 1.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 3.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 1.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 2.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 1.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}, {"y": 1.5, "yanchor": "middle", "rotation": 0, "x": 1.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 1.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 1.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}, {"y": 1.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 1.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 1.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 1.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 1.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 0.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "9", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 1.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "7", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 2.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "2", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 3.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "3", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 4.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "4", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 5.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "5", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 6.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "1", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 7.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "8", "xanchor": "center"}, {"y": 0.5, "yanchor": "middle", "rotation": 0, "x": 8.5, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "y", "xref": "x", "showarrow": false, "text": "6", "xanchor": "center"}], "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "margin": {"t": 20, "b": 20, "r": 0, "l": 0}, "yaxis": {"showline": false, "gridcolor": "rgba(0, 0, 0, 0.1)", "showticklabels": false, "anchor": "x", "range": [-0.27000000000000046, 9.27], "gridwidth": 0.5, "visible": true, "showgrid": false, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.009842519685039424, 0.9901574803149606], "title": {"text": ""}, "ticks": "inside", "type": "linear"}, "width": 983.984375}}