-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
13519 lines (11533 loc) · 537 KB
/
index.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"><style>.ͼp {color: var(--jp-mirror-editor-meta-color);}
.ͼq {color: var(--jp-mirror-editor-header-color);}
.ͼr {color: var(--jp-mirror-editor-header-color); font-weight: bold;}
.ͼs {color: var(--jp-mirror-editor-keyword-color); font-weight: bold;}
.ͼt {color: var(--jp-mirror-editor-atom-color);}
.ͼu {color: var(--jp-mirror-editor-number-color);}
.ͼv {color: var(--jp-mirror-editor-def-color);}
.ͼw {color: var(--jp-mirror-editor-builtin-color);}
.ͼx {color: var(--jp-mirror-editor-variable-2-color);}
.ͼy {color: var(--jp-mirror-editor-punctuation-color);}
.ͼz {color: var(--jp-mirror-editor-property-color);}
.ͼ10 {color: var(--jp-mirror-editor-operator-color); font-weight: bold;}
.ͼ11 {color: var(--jp-mirror-editor-comment-color); font-style: italic;}
.ͼ12 {color: var(--jp-mirror-editor-string-color);}
.ͼ13 {color: var(--jp-mirror-editor-string-2-color);}
.ͼ14 {color: var(--jp-mirror-editor-bracket-color);}
.ͼ15 {color: var(--jp-mirror-editor-tag-color);}
.ͼ16 {color: var(--jp-mirror-editor-attribute-color);}
.ͼ17 {color: var(--jp-mirror-editor-quote-color);}
.ͼ18 {color: var(--jp-mirror-editor-link-color); text-decoration: underline;}
.ͼ19 {color: ;}
.ͼ1a {font-weight: bold;}
.ͼ1b {font-style: italic;}
.ͼ1c {text-decoration: line-through;}
.ͼ1d {color: var(--jp-mirror-editor-keyword-color); font-weight: bold;}
</style><meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exploring Graphs</title>
<!-- voila log js -->
<script>
const _debug = console.debug;
const _info = console.info;
const _warn = console.warn;
const _error = console.error;
function post(payload) {
try {
window.top.postMessage(payload);
} catch(err) {
window.top.postMessage({ level: "debug", msg: ["[Voilà]:",
"Issue cloning object when posting log message, JSON stringify version is:",
JSON.stringify(payload)
] });
}
}
console.debug = (...args) => {
post({ level: "debug", msg: ["[Voilà]:", ...args] });
_debug(...args);
};
console.info = console.info = (...args) => {
post({ level: "info", msg: ["[Voilà]:", ...args] });
_info(...args);
};
console.warn = (...args) => {
post({ level: "warn", msg: ["[Voilà]:", ...args] });
_warn(...args);
};
console.error = (...args) => {
post({ level: "error", msg: ["[Voilà]:", ...args] });
_error(...args);
};
</script>
<style type="text/css">
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: var(--jp-cell-editor-active-background) }
.highlight { background: var(--jp-cell-editor-background); color: var(--jp-mirror-editor-variable-color) }
.highlight .c { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment */
.highlight .err { color: var(--jp-mirror-editor-error-color) } /* Error */
.highlight .k { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword */
.highlight .o { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator */
.highlight .p { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation */
.highlight .ch { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Multiline */
.highlight .cp { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Preproc */
.highlight .cpf { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.PreprocFile */
.highlight .c1 { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Single */
.highlight .cs { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Special */
.highlight .kc { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Pseudo */
.highlight .kr { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Type */
.highlight .m { color: var(--jp-mirror-editor-number-color) } /* Literal.Number */
.highlight .s { color: var(--jp-mirror-editor-string-color) } /* Literal.String */
.highlight .ow { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator.Word */
.highlight .pm { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation.Marker */
.highlight .w { color: var(--jp-mirror-editor-variable-color) } /* Text.Whitespace */
.highlight .mb { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Bin */
.highlight .mf { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Float */
.highlight .mh { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Hex */
.highlight .mi { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer */
.highlight .mo { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Oct */
.highlight .sa { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Affix */
.highlight .sb { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Backtick */
.highlight .sc { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Char */
.highlight .dl { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Delimiter */
.highlight .sd { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Doc */
.highlight .s2 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Double */
.highlight .se { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Escape */
.highlight .sh { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Heredoc */
.highlight .si { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Interpol */
.highlight .sx { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Other */
.highlight .sr { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Regex */
.highlight .s1 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Single */
.highlight .ss { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Symbol */
.highlight .il { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer.Long */
</style>
<script src="Exploring%20Graphs_files/voila-style.js"></script><style>/*
* Copyright (c) Jupyter Development Team.
* Distributed under the terms of the Modified BSD License.
*/
/*-----------------------------------------------------------------------------
| Copyright (c) Jupyter Development Team.
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
.lm-Widget {
box-sizing: border-box;
position: relative;
}
.lm-Widget.lm-mod-hidden {
display: none !important;
}
</style><style>/*
* Copyright (c) Jupyter Development Team.
* Distributed under the terms of the Modified BSD License.
*/
.lm-AccordionPanel[data-orientation='horizontal'] > .lm-AccordionPanel-title {
/* Title is rotated for horizontal accordion panel using CSS */
display: block;
transform-origin: top left;
transform: rotate(-90deg) translate(-100%);
}
</style><style>/*
* Copyright (c) Jupyter Development Team.
* Distributed under the terms of the Modified BSD License.
*/
/*-----------------------------------------------------------------------------
| Copyright (c) Jupyter Development Team.
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
.lm-CommandPalette {
display: flex;
flex-direction: column;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.lm-CommandPalette-search {
flex: 0 0 auto;
}
.lm-CommandPalette-content {
flex: 1 1 auto;
margin: 0;
padding: 0;
min-height: 0;
overflow: auto;
list-style-type: none;
}
.lm-CommandPalette-header {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.lm-CommandPalette-item {
display: flex;
flex-direction: row;
}
.lm-CommandPalette-itemIcon {
flex: 0 0 auto;
}
.lm-CommandPalette-itemContent {
flex: 1 1 auto;
overflow: hidden;
}
.lm-CommandPalette-itemShortcut {
flex: 0 0 auto;
}
.lm-CommandPalette-itemLabel {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.lm-close-icon {
border: 1px solid transparent;
background-color: transparent;
position: absolute;
z-index: 1;
right: 3%;
top: 0;
bottom: 0;
margin: auto;
padding: 7px 0;
display: none;
vertical-align: middle;
outline: 0;
cursor: pointer;
}
.lm-close-icon:after {
content: 'X';
display: block;
width: 15px;
height: 15px;
text-align: center;
color: #000;
font-weight: normal;
font-size: 12px;
cursor: pointer;
}
</style><style>/*
* Copyright (c) Jupyter Development Team.
* Distributed under the terms of the Modified BSD License.
*/
/*-----------------------------------------------------------------------------
| Copyright (c) Jupyter Development Team.
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
.lm-DockPanel {
z-index: 0;
}
.lm-DockPanel-widget {
z-index: 0;
}
.lm-DockPanel-tabBar {
z-index: 1;
}
.lm-DockPanel-handle {
z-index: 2;
}
.lm-DockPanel-handle.lm-mod-hidden {
display: none !important;
}
.lm-DockPanel-handle:after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
content: '';
}
.lm-DockPanel-handle[data-orientation='horizontal'] {
cursor: ew-resize;
}
.lm-DockPanel-handle[data-orientation='vertical'] {
cursor: ns-resize;
}
.lm-DockPanel-handle[data-orientation='horizontal']:after {
left: 50%;
min-width: 8px;
transform: translateX(-50%);
}
.lm-DockPanel-handle[data-orientation='vertical']:after {
top: 50%;
min-height: 8px;
transform: translateY(-50%);
}
.lm-DockPanel-overlay {
z-index: 3;
box-sizing: border-box;
pointer-events: none;
}
.lm-DockPanel-overlay.lm-mod-hidden {
display: none !important;
}
</style><style>/*
* Copyright (c) Jupyter Development Team.
* Distributed under the terms of the Modified BSD License.
*/
/*-----------------------------------------------------------------------------
| Copyright (c) Jupyter Development Team.
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
.lm-Menu {
z-index: 10000;
position: absolute;
white-space: nowrap;
overflow-x: hidden;
overflow-y: auto;
outline: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.lm-Menu-content {
margin: 0;
padding: 0;
display: table;
list-style-type: none;
}
.lm-Menu-item {
display: table-row;
}
.lm-Menu-item.lm-mod-hidden,
.lm-Menu-item.lm-mod-collapsed {
display: none !important;
}
.lm-Menu-itemIcon,
.lm-Menu-itemSubmenuIcon {
display: table-cell;
text-align: center;
}
.lm-Menu-itemLabel {
display: table-cell;
text-align: left;
}
.lm-Menu-itemShortcut {
display: table-cell;
text-align: right;
}
</style><style>/*
* Copyright (c) Jupyter Development Team.
* Distributed under the terms of the Modified BSD License.
*/
/*-----------------------------------------------------------------------------
| Copyright (c) Jupyter Development Team.
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
.lm-MenuBar {
outline: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.lm-MenuBar-content {
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
list-style-type: none;
}
.lm-MenuBar-item {
box-sizing: border-box;
}
.lm-MenuBar-itemIcon,
.lm-MenuBar-itemLabel {
display: inline-block;
}
</style><style>/*
* Copyright (c) Jupyter Development Team.
* Distributed under the terms of the Modified BSD License.
*/
/*-----------------------------------------------------------------------------
| Copyright (c) Jupyter Development Team.
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
.lm-ScrollBar {
display: flex;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.lm-ScrollBar[data-orientation='horizontal'] {
flex-direction: row;
}
.lm-ScrollBar[data-orientation='vertical'] {
flex-direction: column;
}
.lm-ScrollBar-button {
box-sizing: border-box;
flex: 0 0 auto;
}
.lm-ScrollBar-track {
box-sizing: border-box;
position: relative;
overflow: hidden;
flex: 1 1 auto;
}
.lm-ScrollBar-thumb {
box-sizing: border-box;
position: absolute;
}
</style><style>/*
* Copyright (c) Jupyter Development Team.
* Distributed under the terms of the Modified BSD License.
*/
/*-----------------------------------------------------------------------------
| Copyright (c) Jupyter Development Team.
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
.lm-SplitPanel-child {
z-index: 0;
}
.lm-SplitPanel-handle {
z-index: 1;
}
.lm-SplitPanel-handle.lm-mod-hidden {
display: none !important;
}
.lm-SplitPanel-handle:after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
content: '';
}
.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle {
cursor: ew-resize;
}
.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle {
cursor: ns-resize;
}
.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle:after {
left: 50%;
min-width: 8px;
transform: translateX(-50%);
}
.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle:after {
top: 50%;
min-height: 8px;
transform: translateY(-50%);
}
</style><style>/*
* Copyright (c) Jupyter Development Team.
* Distributed under the terms of the Modified BSD License.
*/
/*-----------------------------------------------------------------------------
| Copyright (c) Jupyter Development Team.
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
.lm-TabBar {
display: flex;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.lm-TabBar[data-orientation='horizontal'] {
flex-direction: row;
align-items: flex-end;
}
.lm-TabBar[data-orientation='vertical'] {
flex-direction: column;
align-items: flex-end;
}
.lm-TabBar-content {
margin: 0;
padding: 0;
display: flex;
flex: 1 1 auto;
list-style-type: none;
}
.lm-TabBar[data-orientation='horizontal'] > .lm-TabBar-content {
flex-direction: row;
}
.lm-TabBar[data-orientation='vertical'] > .lm-TabBar-content {
flex-direction: column;
}
.lm-TabBar-tab {
display: flex;
flex-direction: row;
box-sizing: border-box;
overflow: hidden;
touch-action: none; /* Disable native Drag/Drop */
}
.lm-TabBar-tabIcon,
.lm-TabBar-tabCloseIcon {
flex: 0 0 auto;
}
.lm-TabBar-tabLabel {
flex: 1 1 auto;
overflow: hidden;
white-space: nowrap;
}
.lm-TabBar-tabInput {
user-select: all;
width: 100%;
box-sizing: border-box;
}
.lm-TabBar-tab.lm-mod-hidden {
display: none !important;
}
.lm-TabBar-addButton.lm-mod-hidden {
display: none !important;
}
.lm-TabBar.lm-mod-dragging .lm-TabBar-tab {
position: relative;
}
.lm-TabBar.lm-mod-dragging[data-orientation='horizontal'] .lm-TabBar-tab {
left: 0;
transition: left 150ms ease;
}
.lm-TabBar.lm-mod-dragging[data-orientation='vertical'] .lm-TabBar-tab {
top: 0;
transition: top 150ms ease;
}
.lm-TabBar.lm-mod-dragging .lm-TabBar-tab.lm-mod-dragging {
transition: none;
}
.lm-TabBar-tabLabel .lm-TabBar-tabInput {
user-select: all;
width: 100%;
box-sizing: border-box;
background: inherit;
}
</style><style>/*
* Copyright (c) Jupyter Development Team.
* Distributed under the terms of the Modified BSD License.
*/
/*-----------------------------------------------------------------------------
| Copyright (c) Jupyter Development Team.
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
.lm-TabPanel-tabBar {
z-index: 1;
}
.lm-TabPanel-stackedPanel {
z-index: 0;
}
</style><style>/*
* Copyright (c) Jupyter Development Team.
* Distributed under the terms of the Modified BSD License.
*/
/*-----------------------------------------------------------------------------
| Copyright (c) Jupyter Development Team.
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
</style><style>/*-----------------------------------------------------------------------------
| Copyright (c) Jupyter Development Team.
| Distributed under the terms of the Modified BSD License.
|----------------------------------------------------------------------------*/
.jp-Collapse {
display: flex;
flex-direction: column;
align-items: stretch;
}
.jp-Collapse-header {
padding: 1px 12px;
background-color: var(--jp-layout-color1);
border-bottom: solid var(--jp-border-width) var(--jp-border-color2);
color: var(--jp-ui-font-color1);
cursor: pointer;
display: flex;
align-items: center;
font-size: var(--jp-ui-font-size0);
font-weight: 600;
text-transform: uppercase;
user-select: none;
}
.jp-Collapser-icon {
height: 16px;
}
.jp-Collapse-header-collapsed .jp-Collapser-icon {
transform: rotate(-90deg);
margin: auto 0;
}
.jp-Collapser-title {
line-height: 25px;
}
.jp-Collapse-contents {
padding: 0 12px;
background-color: var(--jp-layout-color1);
color: var(--jp-ui-font-color1);
overflow: auto;
}
</style><style>/*-----------------------------------------------------------------------------
| Copyright (c) Jupyter Development Team.
| Distributed under the terms of the Modified BSD License.
|----------------------------------------------------------------------------*/
/* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */
/**
* (DEPRECATED) Support for consuming icons as CSS background images
*/
/* Icons urls */
:root {
--jp-icon-add-above: url("data:image/svg+xml,%3csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cg clip-path='url(%23clip0_137_19492)'%3e %3cpath class='jp-icon3' d='M4.75 4.93066H6.625V6.80566C6.625 7.01191 6.79375 7.18066 7 7.18066C7.20625 7.18066 7.375 7.01191 7.375 6.80566V4.93066H9.25C9.45625 4.93066 9.625 4.76191 9.625 4.55566C9.625 4.34941 9.45625 4.18066 9.25 4.18066H7.375V2.30566C7.375 2.09941 7.20625 1.93066 7 1.93066C6.79375 1.93066 6.625 2.09941 6.625 2.30566V4.18066H4.75C4.54375 4.18066 4.375 4.34941 4.375 4.55566C4.375 4.76191 4.54375 4.93066 4.75 4.93066Z' fill='%23616161' stroke='%23616161' stroke-width='0.7'/%3e %3c/g%3e %3cpath class='jp-icon3' fill-rule='evenodd' clip-rule='evenodd' d='M11.5 9.5V11.5L2.5 11.5V9.5L11.5 9.5ZM12 8C12.5523 8 13 8.44772 13 9V12C13 12.5523 12.5523 13 12 13L2 13C1.44772 13 1 12.5523 1 12V9C1 8.44772 1.44771 8 2 8L12 8Z' fill='%23616161'/%3e %3cdefs%3e %3cclipPath id='clip0_137_19492'%3e %3crect class='jp-icon3' width='6' height='6' fill='white' transform='matrix(-1 0 0 1 10 1.55566)'/%3e %3c/clipPath%3e %3c/defs%3e %3c/svg%3e");
--jp-icon-add-below: url("data:image/svg+xml,%3csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cg clip-path='url(%23clip0_137_19498)'%3e %3cpath class='jp-icon3' d='M9.25 10.0693L7.375 10.0693L7.375 8.19434C7.375 7.98809 7.20625 7.81934 7 7.81934C6.79375 7.81934 6.625 7.98809 6.625 8.19434L6.625 10.0693L4.75 10.0693C4.54375 10.0693 4.375 10.2381 4.375 10.4443C4.375 10.6506 4.54375 10.8193 4.75 10.8193L6.625 10.8193L6.625 12.6943C6.625 12.9006 6.79375 13.0693 7 13.0693C7.20625 13.0693 7.375 12.9006 7.375 12.6943L7.375 10.8193L9.25 10.8193C9.45625 10.8193 9.625 10.6506 9.625 10.4443C9.625 10.2381 9.45625 10.0693 9.25 10.0693Z' fill='%23616161' stroke='%23616161' stroke-width='0.7'/%3e %3c/g%3e %3cpath class='jp-icon3' fill-rule='evenodd' clip-rule='evenodd' d='M2.5 5.5L2.5 3.5L11.5 3.5L11.5 5.5L2.5 5.5ZM2 7C1.44772 7 1 6.55228 1 6L1 3C1 2.44772 1.44772 2 2 2L12 2C12.5523 2 13 2.44772 13 3L13 6C13 6.55229 12.5523 7 12 7L2 7Z' fill='%23616161'/%3e %3cdefs%3e %3cclipPath id='clip0_137_19498'%3e %3crect class='jp-icon3' width='6' height='6' fill='white' transform='matrix(1 1.74846e-07 1.74846e-07 -1 4 13.4443)'/%3e %3c/clipPath%3e %3c/defs%3e %3c/svg%3e");
--jp-icon-add: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-bell: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 16 16' version='1.1'%3e %3cpath class='jp-icon2 jp-icon-selectable' fill='%23333333' d='m8 0.29c-1.4 0-2.7 0.73-3.6 1.8-1.2 1.5-1.4 3.4-1.5 5.2-0.18 2.2-0.44 4-2.3 5.3l0.28 1.3h5c0.026 0.66 0.32 1.1 0.71 1.5 0.84 0.61 2 0.61 2.8 0 0.52-0.4 0.6-1 0.71-1.5h5l0.28-1.3c-1.9-0.97-2.2-3.3-2.3-5.3-0.13-1.8-0.26-3.7-1.5-5.2-0.85-1-2.2-1.8-3.6-1.8zm0 1.4c0.88 0 1.9 0.55 2.5 1.3 0.88 1.1 1.1 2.7 1.2 4.4 0.13 1.7 0.23 3.6 1.3 5.2h-10c1.1-1.6 1.2-3.4 1.3-5.2 0.13-1.7 0.3-3.3 1.2-4.4 0.59-0.72 1.6-1.3 2.5-1.3zm-0.74 12h1.5c-0.0015 0.28 0.015 0.79-0.74 0.79-0.73 0.0016-0.72-0.53-0.74-0.79z' /%3e %3c/svg%3e");
--jp-icon-bug-dot: url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3 jp-icon-selectable' fill='%23616161'%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.19 8H20V10H17.91C17.96 10.33 18 10.66 18 11V12H20V14H18.5H18V14.0275C15.75 14.2762 14 16.1837 14 18.5C14 19.208 14.1635 19.8779 14.4549 20.4739C13.7063 20.8117 12.8757 21 12 21C9.78 21 7.85 19.79 6.81 18H4V16H6.09C6.04 15.67 6 15.34 6 15V14H4V12H6V11C6 10.66 6.04 10.33 6.09 10H4V8H6.81C7.26 7.22 7.88 6.55 8.62 6.04L7 4.41L8.41 3L10.59 5.17C11.04 5.06 11.51 5 12 5C12.49 5 12.96 5.06 13.42 5.17L15.59 3L17 4.41L15.37 6.04C16.12 6.55 16.74 7.22 17.19 8ZM10 16H14V14H10V16ZM10 12H14V10H10V12Z' fill='%23616161'/%3e %3cpath d='M22 18.5C22 20.433 20.433 22 18.5 22C16.567 22 15 20.433 15 18.5C15 16.567 16.567 15 18.5 15C20.433 15 22 16.567 22 18.5Z' fill='%23616161'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-bug: url("data:image/svg+xml,%3csvg viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3 jp-icon-selectable' fill='%23616161'%3e %3cpath d='M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5c-.49 0-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-6 8h-4v-2h4v2zm0-4h-4v-2h4v2z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-build: url("data:image/svg+xml,%3csvg width='16' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M14.9 17.45C16.25 17.45 17.35 16.35 17.35 15C17.35 13.65 16.25 12.55 14.9 12.55C13.54 12.55 12.45 13.65 12.45 15C12.45 16.35 13.54 17.45 14.9 17.45ZM20.1 15.68L21.58 16.84C21.71 16.95 21.75 17.13 21.66 17.29L20.26 19.71C20.17 19.86 20 19.92 19.83 19.86L18.09 19.16C17.73 19.44 17.33 19.67 16.91 19.85L16.64 21.7C16.62 21.87 16.47 22 16.3 22H13.5C13.32 22 13.18 21.87 13.15 21.7L12.89 19.85C12.46 19.67 12.07 19.44 11.71 19.16L9.96002 19.86C9.81002 19.92 9.62002 19.86 9.54002 19.71L8.14002 17.29C8.05002 17.13 8.09002 16.95 8.22002 16.84L9.70002 15.68L9.65001 15L9.70002 14.31L8.22002 13.16C8.09002 13.05 8.05002 12.86 8.14002 12.71L9.54002 10.29C9.62002 10.13 9.81002 10.07 9.96002 10.13L11.71 10.84C12.07 10.56 12.46 10.32 12.89 10.15L13.15 8.28998C13.18 8.12998 13.32 7.99998 13.5 7.99998H16.3C16.47 7.99998 16.62 8.12998 16.64 8.28998L16.91 10.15C17.33 10.32 17.73 10.56 18.09 10.84L19.83 10.13C20 10.07 20.17 10.13 20.26 10.29L21.66 12.71C21.75 12.86 21.71 13.05 21.58 13.16L20.1 14.31L20.15 15L20.1 15.68Z'/%3e %3cpath d='M7.32966 7.44454C8.0831 7.00954 8.33932 6.05332 7.90432 5.29988C7.46932 4.54643 6.5081 4.28156 5.75466 4.71656C5.39176 4.92608 5.12695 5.27118 5.01849 5.67594C4.91004 6.08071 4.96682 6.51198 5.17634 6.87488C5.61134 7.62832 6.57622 7.87954 7.32966 7.44454ZM9.65718 4.79593L10.8672 4.95179C10.9628 4.97741 11.0402 5.07133 11.0382 5.18793L11.0388 6.98893C11.0455 7.10054 10.9616 7.19518 10.855 7.21054L9.66001 7.38083L9.23915 8.13188L9.66961 9.25745C9.70729 9.36271 9.66934 9.47699 9.57408 9.53199L8.01523 10.432C7.91131 10.492 7.79337 10.4677 7.72105 10.3824L6.98748 9.43188L6.10931 9.43083L5.34704 10.3905C5.28909 10.4702 5.17383 10.4905 5.07187 10.4339L3.51245 9.53293C3.41049 9.47633 3.37647 9.35741 3.41075 9.25679L3.86347 8.14093L3.61749 7.77488L3.42347 7.37883L2.23075 7.21297C2.12647 7.19235 2.04049 7.10342 2.04245 6.98682L2.04187 5.18582C2.04383 5.06922 2.11909 4.97958 2.21704 4.96922L3.42065 4.79393L3.86749 4.02788L3.41105 2.91731C3.37337 2.81204 3.41131 2.69776 3.51523 2.63776L5.07408 1.73776C5.16934 1.68276 5.28729 1.70704 5.35961 1.79231L6.11915 2.72788L6.98001 2.73893L7.72496 1.78922C7.79156 1.70458 7.91548 1.67922 8.00879 1.74082L9.56821 2.64182C9.67017 2.69842 9.71285 2.81234 9.68723 2.90797L9.21718 4.03383L9.46316 4.39988L9.65718 4.79593Z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-caret-down-empty-thin: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 20 20'%3e %3cg class='jp-icon3' fill='%23616161' shape-rendering='geometricPrecision'%3e %3cpolygon class='st1' points='9.9%2c13.6 3.6%2c7.4 4.4%2c6.6 9.9%2c12.2 15.4%2c6.7 16.1%2c7.4 '/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-caret-down-empty: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 18 18'%3e %3cg class='jp-icon3' fill='%23616161' shape-rendering='geometricPrecision'%3e %3cpath d='M5.2%2c5.9L9%2c9.7l3.8-3.8l1.2%2c1.2l-4.9%2c5l-4.9-5L5.2%2c5.9z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-caret-down: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 18 18'%3e %3cg class='jp-icon3' fill='%23616161' shape-rendering='geometricPrecision'%3e %3cpath d='M5.2%2c7.5L9%2c11.2l3.8-3.8H5.2z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-caret-left: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 18 18'%3e %3cg class='jp-icon3' fill='%23616161' shape-rendering='geometricPrecision'%3e %3cpath d='M10.8%2c12.8L7.1%2c9l3.8-3.8l0%2c7.6H10.8z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-caret-right: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 18 18'%3e %3cg class='jp-icon3' fill='%23616161' shape-rendering='geometricPrecision'%3e %3cpath d='M7.2%2c5.2L10.9%2c9l-3.8%2c3.8V5.2H7.2z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-caret-up-empty-thin: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 20 20'%3e %3cg class='jp-icon3' fill='%23616161' shape-rendering='geometricPrecision'%3e %3cpolygon class='st1' points='15.4%2c13.3 9.9%2c7.7 4.4%2c13.2 3.6%2c12.5 9.9%2c6.3 16.1%2c12.6 '/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-caret-up: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 18 18'%3e %3cg class='jp-icon3' fill='%23616161' shape-rendering='geometricPrecision'%3e %3cpath d='M5.2%2c10.5L9%2c6.8l3.8%2c3.8H5.2z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-case-sensitive: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 20 20'%3e %3cg class='jp-icon2' fill='%23414141'%3e %3crect x='2' y='2' width='16' height='16'/%3e %3c/g%3e %3cg class='jp-icon-accent2' fill='white'%3e %3cpath d='M7.6%2c8h0.9l3.5%2c8h-1.1L10%2c14H6l-0.9%2c2H4L7.6%2c8z M8%2c9.1L6.4%2c13h3.2L8%2c9.1z'/%3e %3cpath d='M16.6%2c9.8c-0.2%2c0.1-0.4%2c0.1-0.7%2c0.1c-0.2%2c0-0.4-0.1-0.6-0.2c-0.1-0.1-0.2-0.4-0.2-0.7 c-0.3%2c0.3-0.6%2c0.5-0.9%2c0.7c-0.3%2c0.1-0.7%2c0.2-1.1%2c0.2c-0.3%2c0-0.5%2c0-0.7-0.1c-0.2-0.1-0.4-0.2-0.6-0.3c-0.2-0.1-0.3-0.3-0.4-0.5 c-0.1-0.2-0.1-0.4-0.1-0.7c0-0.3%2c0.1-0.6%2c0.2-0.8c0.1-0.2%2c0.3-0.4%2c0.4-0.5C12%2c7%2c12.2%2c6.9%2c12.5%2c6.8c0.2-0.1%2c0.5-0.1%2c0.7-0.2 c0.3-0.1%2c0.5-0.1%2c0.7-0.1c0.2%2c0%2c0.4-0.1%2c0.6-0.1c0.2%2c0%2c0.3-0.1%2c0.4-0.2c0.1-0.1%2c0.2-0.2%2c0.2-0.4c0-1-1.1-1-1.3-1 c-0.4%2c0-1.4%2c0-1.4%2c1.2h-0.9c0-0.4%2c0.1-0.7%2c0.2-1c0.1-0.2%2c0.3-0.4%2c0.5-0.6c0.2-0.2%2c0.5-0.3%2c0.8-0.3C13.3%2c4%2c13.6%2c4%2c13.9%2c4 c0.3%2c0%2c0.5%2c0%2c0.8%2c0.1c0.3%2c0%2c0.5%2c0.1%2c0.7%2c0.2c0.2%2c0.1%2c0.4%2c0.3%2c0.5%2c0.5C16%2c5%2c16%2c5.2%2c16%2c5.6v2.9c0%2c0.2%2c0%2c0.4%2c0%2c0.5 c0%2c0.1%2c0.1%2c0.2%2c0.3%2c0.2c0.1%2c0%2c0.2%2c0%2c0.3%2c0V9.8z M15.2%2c6.9c-1.2%2c0.6-3.1%2c0.2-3.1%2c1.4c0%2c1.4%2c3.1%2c1%2c3.1-0.5V6.9z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-check: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cg class='jp-icon3 jp-icon-selectable' fill='%23616161'%3e %3cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-circle-empty: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-circle: url("data:image/svg+xml,%3csvg viewBox='0 0 18 18' width='16' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3ccircle cx='9' cy='9' r='8'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-clear: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cmask id='donutHole'%3e %3crect width='24' height='24' fill='white' /%3e %3ccircle cx='12' cy='12' r='8' fill='black'/%3e %3c/mask%3e %3cg class='jp-icon3' fill='%23616161'%3e %3crect height='18' width='2' x='11' y='3' transform='rotate(315%2c 12%2c 12)'/%3e %3ccircle cx='12' cy='12' r='10' mask='url(%23donutHole)'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-close: url("data:image/svg+xml,%3csvg viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon-none jp-icon-selectable-inverse jp-icon3-hover' fill='none'%3e %3ccircle cx='12' cy='12' r='11'/%3e %3c/g%3e %3cg class='jp-icon3 jp-icon-selectable jp-icon-accent2-hover' fill='%23616161'%3e %3cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3e %3c/g%3e %3cg class='jp-icon-none jp-icon-busy' fill='none'%3e %3ccircle cx='12' cy='12' r='7'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-code-check: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' viewBox='0 0 24 24'%3e %3cg class='jp-icon3 jp-icon-selectable' fill='%23616161' shape-rendering='geometricPrecision'%3e %3cpath d='M6.59%2c3.41L2%2c8L6.59%2c12.6L8%2c11.18L4.82%2c8L8%2c4.82L6.59%2c3.41M12.41%2c3.41L11%2c4.82L14.18%2c8L11%2c11.18L12.41%2c12.6L17%2c8L12.41%2c3.41M21.59%2c11.59L13.5%2c19.68L9.83%2c16L8.42%2c17.41L13.5%2c22.5L23%2c13L21.59%2c11.59Z' /%3e %3c/g%3e %3c/svg%3e");
--jp-icon-code: url("data:image/svg+xml,%3csvg width='22' height='22' viewBox='0 0 28 28' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M11.4 18.6L6.8 14L11.4 9.4L10 8L4 14L10 20L11.4 18.6ZM16.6 18.6L21.2 14L16.6 9.4L18 8L24 14L18 20L16.6 18.6V18.6Z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-collapse-all: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M8 2c1 0 11 0 12 0s2 1 2 2c0 1 0 11 0 12s0 2-2 2C20 14 20 4 20 4S10 4 6 4c0-2 1-2 2-2z' /%3e %3cpath d='M18 8c0-1-1-2-2-2S5 6 4 6s-2 1-2 2c0 1 0 11 0 12s1 2 2 2c1 0 11 0 12 0s2-1 2-2c0-1 0-11 0-12zm-2 0v12H4V8z' /%3e %3cpath d='M6 13v2h8v-2z' /%3e %3c/g%3e %3c/svg%3e");
--jp-icon-collapse: url("data:image/svg+xml,%3csvg width='16' viewBox='0 0 8.5 10.5' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon-output' fill='%23BDBDBD'%3e %3cpath d='M.019 0h8.458v1.064H.019zM0 9.52h8.491v1.059H0zM4.776 2.912H3.72V1.323h1.056z' /%3e %3cpath d='M4.244 5.243l-1.06-1.167-1.06-1.167h4.24l-1.06 1.167zM4.772 9.257H3.716V7.665h1.056z' /%3e %3cpath d='M4.242 5.332L5.302 6.5l1.06 1.167h-4.24l1.06-1.167z' /%3e %3c/g%3e %3c/svg%3e");
--jp-icon-console: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 200 200'%3e %3cg class='jp-console-icon-background-color jp-icon-selectable' fill='%230288D1'%3e %3cpath d='M20 19.8h160v159.9H20z'/%3e %3c/g%3e %3cg class='jp-console-icon-color jp-icon-selectable-inverse' fill='white'%3e %3cpath d='M105 127.3h40v12.8h-40zM51.1 77L74 99.9l-23.3 23.3 10.5 10.5 23.3-23.3L95 99.9 84.5 89.4 61.6 66.5z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-copy: url("data:image/svg+xml,%3csvg viewBox='0 0 18 18' width='16' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M11.9%2c1H3.2C2.4%2c1%2c1.7%2c1.7%2c1.7%2c2.5v10.2h1.5V2.5h8.7V1z M14.1%2c3.9h-8c-0.8%2c0-1.5%2c0.7-1.5%2c1.5v10.2c0%2c0.8%2c0.7%2c1.5%2c1.5%2c1.5h8 c0.8%2c0%2c1.5-0.7%2c1.5-1.5V5.4C15.5%2c4.6%2c14.9%2c3.9%2c14.1%2c3.9z M14.1%2c15.5h-8V5.4h8V15.5z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-copyright: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 24 24' height='24' viewBox='0 0 24 24' width='24'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M11.88%2c9.14c1.28%2c0.06%2c1.61%2c1.15%2c1.63%2c1.66h1.79c-0.08-1.98-1.49-3.19-3.45-3.19C9.64%2c7.61%2c8%2c9%2c8%2c12.14 c0%2c1.94%2c0.93%2c4.24%2c3.84%2c4.24c2.22%2c0%2c3.41-1.65%2c3.44-2.95h-1.79c-0.03%2c0.59-0.45%2c1.38-1.63%2c1.44C10.55%2c14.83%2c10%2c13.81%2c10%2c12.14 C10%2c9.25%2c11.28%2c9.16%2c11.88%2c9.14z M12%2c2C6.48%2c2%2c2%2c6.48%2c2%2c12s4.48%2c10%2c10%2c10s10-4.48%2c10-10S17.52%2c2%2c12%2c2z M12%2c20c-4.41%2c0-8-3.59-8-8 s3.59-8%2c8-8s8%2c3.59%2c8%2c8S16.41%2c20%2c12%2c20z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-cut: url("data:image/svg+xml,%3csvg viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-delete: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16px' height='16px'%3e %3cpath d='M0 0h24v24H0z' fill='none' /%3e %3cpath class='jp-icon3' fill='%23626262' d='M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z' /%3e %3c/svg%3e");
--jp-icon-download: url("data:image/svg+xml,%3csvg viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-duplicate: url("data:image/svg+xml,%3csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cpath class='jp-icon3' fill-rule='evenodd' clip-rule='evenodd' d='M2.79998 0.875H8.89582C9.20061 0.875 9.44998 1.13914 9.44998 1.46198C9.44998 1.78482 9.20061 2.04896 8.89582 2.04896H3.35415C3.04936 2.04896 2.79998 2.3131 2.79998 2.63594V9.67969C2.79998 10.0025 2.55061 10.2667 2.24582 10.2667C1.94103 10.2667 1.69165 10.0025 1.69165 9.67969V2.04896C1.69165 1.40328 2.1904 0.875 2.79998 0.875ZM5.36665 11.9V4.55H11.0833V11.9H5.36665ZM4.14165 4.14167C4.14165 3.69063 4.50728 3.325 4.95832 3.325H11.4917C11.9427 3.325 12.3083 3.69063 12.3083 4.14167V12.3083C12.3083 12.7594 11.9427 13.125 11.4917 13.125H4.95832C4.50728 13.125 4.14165 12.7594 4.14165 12.3083V4.14167Z' fill='%23616161'/%3e %3cpath class='jp-icon3' d='M9.43574 8.26507H8.36431V9.3365C8.36431 9.45435 8.26788 9.55078 8.15002 9.55078C8.03217 9.55078 7.93574 9.45435 7.93574 9.3365V8.26507H6.86431C6.74645 8.26507 6.65002 8.16864 6.65002 8.05078C6.65002 7.93292 6.74645 7.8365 6.86431 7.8365H7.93574V6.76507C7.93574 6.64721 8.03217 6.55078 8.15002 6.55078C8.26788 6.55078 8.36431 6.64721 8.36431 6.76507V7.8365H9.43574C9.5536 7.8365 9.65002 7.93292 9.65002 8.05078C9.65002 8.16864 9.5536 8.26507 9.43574 8.26507Z' fill='%23616161' stroke='%23616161' stroke-width='0.5'/%3e %3c/svg%3e");
--jp-icon-edit: url("data:image/svg+xml,%3csvg viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-ellipses: url("data:image/svg+xml,%3csvg viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3ccircle cx='5' cy='12' r='2'/%3e %3ccircle cx='12' cy='12' r='2'/%3e %3ccircle cx='19' cy='12' r='2'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-error: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cg class='jp-icon3' fill='%23616161'%3e%3ccircle cx='12' cy='19' r='2'/%3e%3cpath d='M10 3h4v12h-4z'/%3e%3c/g%3e %3cpath fill='none' d='M0 0h24v24H0z'/%3e %3c/svg%3e");
--jp-icon-expand-all: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M8 2c1 0 11 0 12 0s2 1 2 2c0 1 0 11 0 12s0 2-2 2C20 14 20 4 20 4S10 4 6 4c0-2 1-2 2-2z' /%3e %3cpath d='M18 8c0-1-1-2-2-2S5 6 4 6s-2 1-2 2c0 1 0 11 0 12s1 2 2 2c1 0 11 0 12 0s2-1 2-2c0-1 0-11 0-12zm-2 0v12H4V8z' /%3e %3cpath d='M11 10H9v3H6v2h3v3h2v-3h3v-2h-3z' /%3e %3c/g%3e %3c/svg%3e");
--jp-icon-expand: url("data:image/svg+xml,%3csvg width='16' viewBox='0 0 8.5 10.5' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon-output' fill='%23BDBDBD'%3e %3cpath d='M.019 0h8.458v1.064H.019zM0 9.521h8.491v1.059H0zM3.712 3.699h1.056v1.589H3.712z' /%3e %3cpath d='M4.244 1.368l1.06 1.167 1.06 1.167h-4.24l1.06-1.167zM3.712 5.288h1.056V6.88H3.712z' /%3e %3cpath d='M4.242 9.213l-1.06-1.167-1.06-1.167h4.24l-1.06 1.167z' /%3e %3c/g%3e %3c/svg%3e");
--jp-icon-extension: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M20.5 11H19V7c0-1.1-.9-2-2-2h-4V3.5C13 2.12 11.88 1 10.5 1S8 2.12 8 3.5V5H4c-1.1 0-1.99.9-1.99 2v3.8H3.5c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-1.5c0-1.49 1.21-2.7 2.7-2.7 1.49 0 2.7 1.21 2.7 2.7V22H17c1.1 0 2-.9 2-2v-4h1.5c1.38 0 2.5-1.12 2.5-2.5S21.88 11 20.5 11z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-fast-forward: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M4 18l8.5-6L4 6v12zm9-12v12l8.5-6L13 6z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-file-upload: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M9 16h6v-6h4l-7-7-7 7h4zm-4 2h14v2H5z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-file: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 22 22'%3e %3cpath class='jp-icon3 jp-icon-selectable' fill='%23616161' d='M19.3 8.2l-5.5-5.5c-.3-.3-.7-.5-1.2-.5H3.9c-.8.1-1.6.9-1.6 1.8v14.1c0 .9.7 1.6 1.6 1.6h14.2c.9 0 1.6-.7 1.6-1.6V9.4c.1-.5-.1-.9-.4-1.2zm-5.8-3.3l3.4 3.6h-3.4V4.9zm3.9 12.7H4.7c-.1 0-.2 0-.2-.2V4.7c0-.2.1-.3.2-.3h7.2v4.4s0 .8.3 1.1c.3.3 1.1.3 1.1.3h4.3v7.2s-.1.2-.2.2z'/%3e %3c/svg%3e");
--jp-icon-filter-dot: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cg class='jp-icon3' fill='white'%3e %3cpath d='M14%2c12V19.88C14.04%2c20.18 13.94%2c20.5 13.71%2c20.71C13.32%2c21.1 12.69%2c21.1 12.3%2c20.71L10.29%2c18.7C10.06%2c18.47 9.96%2c18.16 10%2c17.87V12H9.97L4.21%2c4.62C3.87%2c4.19 3.95%2c3.56 4.38%2c3.22C4.57%2c3.08 4.78%2c3 5%2c3V3H19V3C19.22%2c3 19.43%2c3.08 19.62%2c3.22C20.05%2c3.56 20.13%2c4.19 19.79%2c4.62L14.03%2c12H14Z' /%3e %3c/g%3e %3cg class='jp-icon-dot' fill='white'%3e %3ccircle cx='18' cy='17' r='3'%3e%3c/circle%3e %3c/g%3e %3c/svg%3e");
--jp-icon-filter-list: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-filter: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cg class='jp-icon3' fill='white'%3e %3cpath d='M14%2c12V19.88C14.04%2c20.18 13.94%2c20.5 13.71%2c20.71C13.32%2c21.1 12.69%2c21.1 12.3%2c20.71L10.29%2c18.7C10.06%2c18.47 9.96%2c18.16 10%2c17.87V12H9.97L4.21%2c4.62C3.87%2c4.19 3.95%2c3.56 4.38%2c3.22C4.57%2c3.08 4.78%2c3 5%2c3V3H19V3C19.22%2c3 19.43%2c3.08 19.62%2c3.22C20.05%2c3.56 20.13%2c4.19 19.79%2c4.62L14.03%2c12H14Z' /%3e %3c/g%3e %3c/svg%3e");
--jp-icon-folder-favorite: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='black'%3e %3cpath d='M0 0h24v24H0V0z' fill='none'/%3e%3cpath class='jp-icon3 jp-icon-selectable' fill='%23616161' d='M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-2.06 11L15 15.28 12.06 17l.78-3.33-2.59-2.24 3.41-.29L15 8l1.34 3.14 3.41.29-2.59 2.24.78 3.33z'/%3e %3c/svg%3e");
--jp-icon-folder: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cpath class='jp-icon3 jp-icon-selectable' fill='%23616161' d='M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z'/%3e %3c/svg%3e");
--jp-icon-history: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cg class='jp-icon3' fill='%23616161'%3e%3cpath d='M13.5%2c8H12V13L16.28%2c15.54L17%2c14.33L13.5%2c12.25V8M13%2c3A9%2c9 0 0%2c0 4%2c12H1L4.96%2c16.03L9%2c12H6A7%2c7 0 0%2c1 13%2c5A7%2c7 0 0%2c1 20%2c12A7%2c7 0 0%2c1 13%2c19C11.07%2c19 9.32%2c18.21 8.06%2c16.94L6.64%2c18.36C8.27%2c20 10.5%2c21 13%2c21A9%2c9 0 0%2c0 22%2c12A9%2c9 0 0%2c0 13%2c3' /%3e%3c/g%3e %3c/svg%3e");
--jp-icon-home: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='black'%3e %3cpath d='M0 0h24v24H0z' fill='none'/%3e%3cpath class='jp-icon3 jp-icon-selectable' fill='%23616161' d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3e %3c/svg%3e");
--jp-icon-html5: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 512 512'%3e %3cpath class='jp-icon0 jp-icon-selectable' fill='black' d='M108.4 0h23v22.8h21.2V0h23v69h-23V46h-21v23h-23.2M206 23h-20.3V0h63.7v23H229v46h-23m53.5-69h24.1l14.8 24.3L313.2 0h24.1v69h-23V34.8l-16.1 24.8-16.1-24.8V69h-22.6m89.2-69h23v46.2h32.6V69h-55.6'/%3e %3cpath class='jp-icon-selectable' fill='%23e44d26' d='M107.6 471l-33-370.4h362.8l-33 370.2L255.7 512'/%3e %3cpath class='jp-icon-selectable' fill='%23f16529' d='M256 480.5V131h148.3L376 447'/%3e %3cpath class='jp-icon-selectable-inverse' fill='%23ebebeb' d='M142 176.3h114v45.4h-64.2l4.2 46.5h60v45.3H154.4m2 22.8H202l3.2 36.3 50.8 13.6v47.4l-93.2-26'/%3e %3cpath class='jp-icon-selectable-inverse' fill='white' d='M369.6 176.3H255.8v45.4h109.6m-4.1 46.5H255.8v45.4h56l-5.3 59-50.7 13.6v47.2l93-25.8'/%3e %3c/svg%3e");
--jp-icon-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 22 22'%3e %3cpath class='jp-icon-brand4 jp-icon-selectable-inverse' fill='white' d='M2.2 2.2h17.5v17.5H2.2z'/%3e %3cpath class='jp-icon-brand0 jp-icon-selectable' fill='%233F51B5' d='M2.2 2.2v17.5h17.5l.1-17.5H2.2zm12.1 2.2c1.2 0 2.2 1 2.2 2.2s-1 2.2-2.2 2.2-2.2-1-2.2-2.2 1-2.2 2.2-2.2zM4.4 17.6l3.3-8.8 3.3 6.6 2.2-3.2 4.4 5.4H4.4z'/%3e %3c/svg%3e");
--jp-icon-info: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 50.978 50.978'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M43.52%2c7.458C38.711%2c2.648%2c32.307%2c0%2c25.489%2c0C18.67%2c0%2c12.266%2c2.648%2c7.458%2c7.458 c-9.943%2c9.941-9.943%2c26.119%2c0%2c36.062c4.809%2c4.809%2c11.212%2c7.456%2c18.031%2c7.458c0%2c0%2c0.001%2c0%2c0.002%2c0 c6.816%2c0%2c13.221-2.648%2c18.029-7.458c4.809-4.809%2c7.457-11.212%2c7.457-18.03C50.977%2c18.67%2c48.328%2c12.266%2c43.52%2c7.458z M42.106%2c42.105c-4.432%2c4.431-10.332%2c6.872-16.615%2c6.872h-0.002c-6.285-0.001-12.187-2.441-16.617-6.872 c-9.162-9.163-9.162-24.071%2c0-33.233C13.303%2c4.44%2c19.204%2c2%2c25.489%2c2c6.284%2c0%2c12.186%2c2.44%2c16.617%2c6.872 c4.431%2c4.431%2c6.871%2c10.332%2c6.871%2c16.617C48.977%2c31.772%2c46.536%2c37.675%2c42.106%2c42.105z'/%3e %3cpath d='M23.578%2c32.218c-0.023-1.734%2c0.143-3.059%2c0.496-3.972c0.353-0.913%2c1.11-1.997%2c2.272-3.253 c0.468-0.536%2c0.923-1.062%2c1.367-1.575c0.626-0.753%2c1.104-1.478%2c1.436-2.175c0.331-0.707%2c0.495-1.541%2c0.495-2.5 c0-1.096-0.26-2.088-0.779-2.979c-0.565-0.879-1.501-1.336-2.806-1.369c-1.802%2c0.057-2.985%2c0.667-3.55%2c1.832 c-0.301%2c0.535-0.503%2c1.141-0.607%2c1.814c-0.139%2c0.707-0.207%2c1.432-0.207%2c2.174h-2.937c-0.091-2.208%2c0.407-4.114%2c1.493-5.719 c1.062-1.64%2c2.855-2.481%2c5.378-2.527c2.16%2c0.023%2c3.874%2c0.608%2c5.141%2c1.758c1.278%2c1.16%2c1.929%2c2.764%2c1.95%2c4.811 c0%2c1.142-0.137%2c2.111-0.41%2c2.911c-0.309%2c0.845-0.731%2c1.593-1.268%2c2.243c-0.492%2c0.65-1.068%2c1.318-1.73%2c2.002 c-0.65%2c0.697-1.313%2c1.479-1.987%2c2.346c-0.239%2c0.377-0.429%2c0.777-0.565%2c1.199c-0.16%2c0.959-0.217%2c1.951-0.171%2c2.979 C26.589%2c32.218%2c23.578%2c32.218%2c23.578%2c32.218z M23.578%2c38.22v-3.484h3.076v3.484H23.578z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-inspector: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cpath class='jp-inspector-icon-color jp-icon-selectable' fill='%23616161' d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5 14H4v-4h11v4zm0-5H4V9h11v4zm5 5h-4V9h4v9z'/%3e %3c/svg%3e");
--jp-icon-json: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 22 22'%3e %3cg class='jp-json-icon-color jp-icon-selectable' fill='%23F9A825'%3e %3cpath d='M20.2 11.8c-1.6 0-1.7.5-1.7 1 0 .4.1.9.1 1.3.1.5.1.9.1 1.3 0 1.7-1.4 2.3-3.5 2.3h-.9v-1.9h.5c1.1 0 1.4 0 1.4-.8 0-.3 0-.6-.1-1 0-.4-.1-.8-.1-1.2 0-1.3 0-1.8 1.3-2-1.3-.2-1.3-.7-1.3-2 0-.4.1-.8.1-1.2.1-.4.1-.7.1-1 0-.8-.4-.7-1.4-.8h-.5V4.1h.9c2.2 0 3.5.7 3.5 2.3 0 .4-.1.9-.1 1.3-.1.5-.1.9-.1 1.3 0 .5.2 1 1.7 1v1.8zM1.8 10.1c1.6 0 1.7-.5 1.7-1 0-.4-.1-.9-.1-1.3-.1-.5-.1-.9-.1-1.3 0-1.6 1.4-2.3 3.5-2.3h.9v1.9h-.5c-1 0-1.4 0-1.4.8 0 .3 0 .6.1 1 0 .2.1.6.1 1 0 1.3 0 1.8-1.3 2C6 11.2 6 11.7 6 13c0 .4-.1.8-.1 1.2-.1.3-.1.7-.1 1 0 .8.3.8 1.4.8h.5v1.9h-.9c-2.1 0-3.5-.6-3.5-2.3 0-.4.1-.9.1-1.3.1-.5.1-.9.1-1.3 0-.5-.2-1-1.7-1v-1.9z'/%3e %3ccircle cx='11' cy='13.8' r='2.1'/%3e %3ccircle cx='11' cy='8.2' r='2.1'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-julia: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 325 300'%3e %3cg class='jp-brand0 jp-icon-selectable' fill='%23cb3c33'%3e %3cpath d='M 150.898438 225 C 150.898438 266.421875 117.320312 300 75.898438 300 C 34.476562 300 0.898438 266.421875 0.898438 225 C 0.898438 183.578125 34.476562 150 75.898438 150 C 117.320312 150 150.898438 183.578125 150.898438 225'/%3e %3c/g%3e %3cg class='jp-brand0 jp-icon-selectable' fill='%23389826'%3e %3cpath d='M 237.5 75 C 237.5 116.421875 203.921875 150 162.5 150 C 121.078125 150 87.5 116.421875 87.5 75 C 87.5 33.578125 121.078125 0 162.5 0 C 203.921875 0 237.5 33.578125 237.5 75'/%3e %3c/g%3e %3cg class='jp-brand0 jp-icon-selectable' fill='%239558b2'%3e %3cpath d='M 324.101562 225 C 324.101562 266.421875 290.523438 300 249.101562 300 C 207.679688 300 174.101562 266.421875 174.101562 225 C 174.101562 183.578125 207.679688 150 249.101562 150 C 290.523438 150 324.101562 183.578125 324.101562 225'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-jupyter-favicon: url("data:image/svg+xml,%3csvg width='152' height='165' viewBox='0 0 152 165' version='1.1' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-jupyter-icon-color' fill='%23F37726'%3e %3cpath transform='translate(0.078947%2c 110.582927)' d='M75.9422842%2c29.5804561 C43.3023947%2c29.5804561 14.7967832%2c17.6534634 0%2c0 C5.51083211%2c15.8406829 15.7815389%2c29.5667732 29.3904947%2c39.2784171 C42.9997%2c48.9898537 59.2737%2c54.2067805 75.9605789%2c54.2067805 C92.6474579%2c54.2067805 108.921458%2c48.9898537 122.530663%2c39.2784171 C136.139453%2c29.5667732 146.410284%2c15.8406829 151.921158%2c0 C137.087868%2c17.6534634 108.582589%2c29.5804561 75.9422842%2c29.5804561 L75.9422842%2c29.5804561 Z' /%3e %3cpath transform='translate(0.037368%2c 0.704878)' d='M75.9784579%2c24.6264073 C108.618763%2c24.6264073 137.124458%2c36.5534415 151.921158%2c54.2067805 C146.410284%2c38.366222 136.139453%2c24.6401317 122.530663%2c14.9284878 C108.921458%2c5.2168439 92.6474579%2c0 75.9605789%2c0 C59.2737%2c0 42.9997%2c5.2168439 29.3904947%2c14.9284878 C15.7815389%2c24.6401317 5.51083211%2c38.366222 0%2c54.2067805 C14.8330816%2c36.5899293 43.3385684%2c24.6264073 75.9784579%2c24.6264073 L75.9784579%2c24.6264073 Z' /%3e %3c/g%3e %3c/svg%3e");
--jp-icon-jupyter: url("data:image/svg+xml,%3csvg width='39' height='51' viewBox='0 0 39 51' xmlns='http://www.w3.org/2000/svg'%3e %3cg transform='translate(-1638 -2281)'%3e %3cg class='jp-jupyter-icon-color' fill='%23F37726'%3e %3cpath transform='translate(1639.74 2311.98)' d='M 18.2646 7.13411C 10.4145 7.13411 3.55872 4.2576 0 0C 1.32539 3.8204 3.79556 7.13081 7.0686 9.47303C 10.3417 11.8152 14.2557 13.0734 18.269 13.0734C 22.2823 13.0734 26.1963 11.8152 29.4694 9.47303C 32.7424 7.13081 35.2126 3.8204 36.538 0C 32.9705 4.2576 26.1148 7.13411 18.2646 7.13411Z'/%3e %3cpath transform='translate(1639.73 2285.48)' d='M 18.2733 5.93931C 26.1235 5.93931 32.9793 8.81583 36.538 13.0734C 35.2126 9.25303 32.7424 5.94262 29.4694 3.6004C 26.1963 1.25818 22.2823 0 18.269 0C 14.2557 0 10.3417 1.25818 7.0686 3.6004C 3.79556 5.94262 1.32539 9.25303 0 13.0734C 3.56745 8.82463 10.4232 5.93931 18.2733 5.93931Z'/%3e %3c/g%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath transform='translate(1669.3 2281.31)' d='M 5.89353 2.844C 5.91889 3.43165 5.77085 4.01367 5.46815 4.51645C 5.16545 5.01922 4.72168 5.42015 4.19299 5.66851C 3.6643 5.91688 3.07444 6.00151 2.49805 5.91171C 1.92166 5.8219 1.38463 5.5617 0.954898 5.16401C 0.52517 4.76633 0.222056 4.24903 0.0839037 3.67757C -0.0542483 3.10611 -0.02123 2.50617 0.178781 1.95364C 0.378793 1.4011 0.736809 0.920817 1.20754 0.573538C 1.67826 0.226259 2.24055 0.0275919 2.82326 0.00267229C 3.60389 -0.0307115 4.36573 0.249789 4.94142 0.782551C 5.51711 1.31531 5.85956 2.05676 5.89353 2.844Z'/%3e %3cpath transform='translate(1639.8 2323.81)' d='M 7.42789 3.58338C 7.46008 4.3243 7.27355 5.05819 6.89193 5.69213C 6.51031 6.32607 5.95075 6.83156 5.28411 7.1446C 4.61747 7.45763 3.87371 7.56414 3.14702 7.45063C 2.42032 7.33712 1.74336 7.0087 1.20184 6.50695C 0.660328 6.0052 0.27861 5.35268 0.105017 4.63202C -0.0685757 3.91135 -0.0262361 3.15494 0.226675 2.45856C 0.479587 1.76217 0.931697 1.15713 1.52576 0.720033C 2.11983 0.282935 2.82914 0.0334395 3.56389 0.00313344C 4.54667 -0.0374033 5.50529 0.316706 6.22961 0.987835C 6.95393 1.65896 7.38484 2.59235 7.42789 3.58338L 7.42789 3.58338Z'/%3e %3cpath transform='translate(1638.36 2286.06)' d='M 2.27471 4.39629C 1.84363 4.41508 1.41671 4.30445 1.04799 4.07843C 0.679268 3.8524 0.385328 3.52114 0.203371 3.12656C 0.0214136 2.73198 -0.0403798 2.29183 0.0258116 1.86181C 0.0920031 1.4318 0.283204 1.03126 0.575213 0.710883C 0.867222 0.39051 1.24691 0.164708 1.66622 0.0620592C 2.08553 -0.0405897 2.52561 -0.0154714 2.93076 0.134235C 3.33591 0.283941 3.68792 0.551505 3.94222 0.90306C 4.19652 1.25462 4.34169 1.67436 4.35935 2.10916C 4.38299 2.69107 4.17678 3.25869 3.78597 3.68746C 3.39516 4.11624 2.85166 4.37116 2.27471 4.39629L 2.27471 4.39629Z'/%3e %3c/g%3e %3c/g%3e%3e %3c/svg%3e");
--jp-icon-jupyterlab-wordmark: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='200' viewBox='0 0 1860.8 475'%3e %3cg class='jp-icon2' fill='%234E4E4E' transform='translate(480.136401%2c 64.271493)'%3e %3cg transform='translate(0.000000%2c 58.875566)'%3e %3cg transform='translate(0.087603%2c 0.140294)'%3e %3cpath d='M-426.9%2c169.8c0%2c48.7-3.7%2c64.7-13.6%2c76.4c-10.8%2c10-25%2c15.5-39.7%2c15.5l3.7%2c29 c22.8%2c0.3%2c44.8-7.9%2c61.9-23.1c17.8-18.5%2c24-44.1%2c24-83.3V0H-427v170.1L-426.9%2c169.8L-426.9%2c169.8z'/%3e %3c/g%3e %3c/g%3e %3cg transform='translate(155.045296%2c 56.837104)'%3e %3cg transform='translate(1.562453%2c 1.799842)'%3e %3cpath d='M-312%2c148c0%2c21%2c0%2c39.5%2c1.7%2c55.4h-31.8l-2.1-33.3h-0.8c-6.7%2c11.6-16.4%2c21.3-28%2c27.9 c-11.6%2c6.6-24.8%2c10-38.2%2c9.8c-31.4%2c0-69-17.7-69-89V0h36.4v112.7c0%2c38.7%2c11.6%2c64.7%2c44.6%2c64.7c10.3-0.2%2c20.4-3.5%2c28.9-9.4 c8.5-5.9%2c15.1-14.3%2c18.9-23.9c2.2-6.1%2c3.3-12.5%2c3.3-18.9V0.2h36.4V148H-312L-312%2c148z'/%3e %3c/g%3e %3c/g%3e %3cg transform='translate(390.013322%2c 53.479638)'%3e %3cg transform='translate(1.706458%2c 0.231425)'%3e %3cpath d='M-478.6%2c71.4c0-26-0.8-47-1.7-66.7h32.7l1.7%2c34.8h0.8c7.1-12.5%2c17.5-22.8%2c30.1-29.7 c12.5-7%2c26.7-10.3%2c41-9.8c48.3%2c0%2c84.7%2c41.7%2c84.7%2c103.3c0%2c73.1-43.7%2c109.2-91%2c109.2c-12.1%2c0.5-24.2-2.2-35-7.8 c-10.8-5.6-19.9-13.9-26.6-24.2h-0.8V291h-36v-220L-478.6%2c71.4L-478.6%2c71.4z M-442.6%2c125.6c0.1%2c5.1%2c0.6%2c10.1%2c1.7%2c15.1 c3%2c12.3%2c9.9%2c23.3%2c19.8%2c31.1c9.9%2c7.8%2c22.1%2c12.1%2c34.7%2c12.1c38.5%2c0%2c60.7-31.9%2c60.7-78.5c0-40.7-21.1-75.6-59.5-75.6 c-12.9%2c0.4-25.3%2c5.1-35.3%2c13.4c-9.9%2c8.3-16.9%2c19.7-19.6%2c32.4c-1.5%2c4.9-2.3%2c10-2.5%2c15.1V125.6L-442.6%2c125.6L-442.6%2c125.6z'/%3e %3c/g%3e %3c/g%3e %3cg transform='translate(606.740726%2c 56.837104)'%3e %3cg transform='translate(0.751226%2c 1.989299)'%3e %3cpath d='M-440.8%2c0l43.7%2c120.1c4.5%2c13.4%2c9.5%2c29.4%2c12.8%2c41.7h0.8c3.7-12.2%2c7.9-27.7%2c12.8-42.4 l39.7-119.2h38.5L-346.9%2c145c-26%2c69.7-43.7%2c105.4-68.6%2c127.2c-12.5%2c11.7-27.9%2c20-44.6%2c23.9l-9.1-31.1 c11.7-3.9%2c22.5-10.1%2c31.8-18.1c13.2-11.1%2c23.7-25.2%2c30.6-41.2c1.5-2.8%2c2.5-5.7%2c2.9-8.8c-0.3-3.3-1.2-6.6-2.5-9.7L-480.2%2c0.1 h39.7L-440.8%2c0L-440.8%2c0z'/%3e %3c/g%3e %3c/g%3e %3cg transform='translate(822.748104%2c 0.000000)'%3e %3cg transform='translate(1.464050%2c 0.378914)'%3e %3cpath d='M-413.7%2c0v58.3h52v28.2h-52V196c0%2c25%2c7%2c39.5%2c27.3%2c39.5c7.1%2c0.1%2c14.2-0.7%2c21.1-2.5 l1.7%2c27.7c-10.3%2c3.7-21.3%2c5.4-32.2%2c5c-7.3%2c0.4-14.6-0.7-21.3-3.4c-6.8-2.7-12.9-6.8-17.9-12.1c-10.3-10.9-14.1-29-14.1-52.9 V86.5h-31V58.3h31V9.6L-413.7%2c0L-413.7%2c0z'/%3e %3c/g%3e %3c/g%3e %3cg transform='translate(974.433286%2c 53.479638)'%3e %3cg transform='translate(0.990034%2c 0.610339)'%3e %3cpath d='M-445.8%2c113c0.8%2c50%2c32.2%2c70.6%2c68.6%2c70.6c19%2c0.6%2c37.9-3%2c55.3-10.5l6.2%2c26.4 c-20.9%2c8.9-43.5%2c13.1-66.2%2c12.6c-61.5%2c0-98.3-41.2-98.3-102.5C-480.2%2c48.2-444.7%2c0-386.5%2c0c65.2%2c0%2c82.7%2c58.3%2c82.7%2c95.7 c-0.1%2c5.8-0.5%2c11.5-1.2%2c17.2h-140.6H-445.8L-445.8%2c113z M-339.2%2c86.6c0.4-23.5-9.5-60.1-50.4-60.1 c-36.8%2c0-52.8%2c34.4-55.7%2c60.1H-339.2L-339.2%2c86.6L-339.2%2c86.6z'/%3e %3c/g%3e %3c/g%3e %3cg transform='translate(1201.961058%2c 53.479638)'%3e %3cg transform='translate(1.179640%2c 0.705068)'%3e %3cpath d='M-478.6%2c68c0-23.9-0.4-44.5-1.7-63.4h31.8l1.2%2c39.9h1.7c9.1-27.3%2c31-44.5%2c55.3-44.5 c3.5-0.1%2c7%2c0.4%2c10.3%2c1.2v34.8c-4.1-0.9-8.2-1.3-12.4-1.2c-25.6%2c0-43.7%2c19.7-48.7%2c47.4c-1%2c5.7-1.6%2c11.5-1.7%2c17.2v108.3h-36V68 L-478.6%2c68z'/%3e %3c/g%3e %3c/g%3e %3c/g%3e %3cg class='jp-jupyter-icon-color' fill='%23F37726'%3e %3cpath d='M1352.3%2c326.2h37V28h-37V326.2z M1604.8%2c326.2c-2.5-13.9-3.4-31.1-3.4-48.7v-76 c0-40.7-15.1-83.1-77.3-83.1c-25.6%2c0-50%2c7.1-66.8%2c18.1l8.4%2c24.4c14.3-9.2%2c34-15.1%2c53-15.1c41.6%2c0%2c46.2%2c30.2%2c46.2%2c47v4.2 c-78.6-0.4-122.3%2c26.5-122.3%2c75.6c0%2c29.4%2c21%2c58.4%2c62.2%2c58.4c29%2c0%2c50.9-14.3%2c62.2-30.2h1.3l2.9%2c25.6H1604.8z M1565.7%2c257.7 c0%2c3.8-0.8%2c8-2.1%2c11.8c-5.9%2c17.2-22.7%2c34-49.2%2c34c-18.9%2c0-34.9-11.3-34.9-35.3c0-39.5%2c45.8-46.6%2c86.2-45.8V257.7z M1698.5%2c326.2 l1.7-33.6h1.3c15.1%2c26.9%2c38.7%2c38.2%2c68.1%2c38.2c45.4%2c0%2c91.2-36.1%2c91.2-108.8c0.4-61.7-35.3-103.7-85.7-103.7 c-32.8%2c0-56.3%2c14.7-69.3%2c37.4h-0.8V28h-36.6v245.7c0%2c18.1-0.8%2c38.6-1.7%2c52.5H1698.5z M1704.8%2c208.2c0-5.9%2c1.3-10.9%2c2.1-15.1 c7.6-28.1%2c31.1-45.4%2c56.3-45.4c39.5%2c0%2c60.5%2c34.9%2c60.5%2c75.6c0%2c46.6-23.1%2c78.1-61.8%2c78.1c-26.9%2c0-48.3-17.6-55.5-43.3 c-0.8-4.2-1.7-8.8-1.7-13.4V208.2z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-kernel: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cpath class='jp-icon2' fill='%23616161' d='M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10z'/%3e %3c/svg%3e");
--jp-icon-keyboard: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cpath class='jp-icon3 jp-icon-selectable' fill='%23616161' d='M20 5H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm-1 2H5v-2h2v2zm0-3H5V8h2v2zm9 7H8v-2h8v2zm0-4h-2v-2h2v2zm0-3h-2V8h2v2zm3 3h-2v-2h2v2zm0-3h-2V8h2v2z'/%3e %3c/svg%3e");
--jp-icon-launch: url("data:image/svg+xml,%3csvg viewBox='0 0 32 32' width='32' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3 jp-icon-selectable' fill='%23616161'%3e %3cpath d='M26%2c28H6a2.0027%2c2.0027%2c0%2c0%2c1-2-2V6A2.0027%2c2.0027%2c0%2c0%2c1%2c6%2c4H16V6H6V26H26V16h2V26A2.0027%2c2.0027%2c0%2c0%2c1%2c26%2c28Z'/%3e %3cpolygon points='20 2 20 4 26.586 4 18 12.586 19.414 14 28 5.414 28 12 30 12 30 2 20 2'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-launcher: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cpath class='jp-icon3 jp-icon-selectable' fill='%23616161' d='M19 19H5V5h7V3H5a2 2 0 00-2 2v14a2 2 0 002 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z'/%3e %3c/svg%3e");
--jp-icon-line-form: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cpath fill='white' d='M5.88 4.12L13.76 12l-7.88 7.88L8 22l10-10L8 2z'/%3e %3c/svg%3e");
--jp-icon-link: url("data:image/svg+xml,%3csvg viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-list: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cpath class='jp-icon2 jp-icon-selectable' fill='%23616161' d='M19 5v14H5V5h14m1.1-2H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9zM11 7h6v2h-6V7zm0 4h6v2h-6v-2zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7z'/%3e %3c/svg%3e");
--jp-icon-lock: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 23'%3e %3cpath class='jp-icon4' fill='%23333333' d='M12%2c17A2%2c2 0 0%2c0 14%2c15C14%2c13.89 13.1%2c13 12%2c13A2%2c2 0 0%2c0 10%2c15A2%2c2 0 0%2c0 12%2c17M18%2c8A2%2c2 0 0%2c1 20%2c10V20A2%2c2 0 0%2c1 18%2c22H6A2%2c2 0 0%2c1 4%2c20V10C4%2c8.89 4.9%2c8 6%2c8H7V6A5%2c5 0 0%2c1 12%2c1A5%2c5 0 0%2c1 17%2c6V8H18M12%2c3A3%2c3 0 0%2c0 9%2c6V8H15V6A3%2c3 0 0%2c0 12%2c3Z' /%3e %3c/svg%3e");
--jp-icon-markdown: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 22 22'%3e %3cpath class='jp-icon-contrast0 jp-icon-selectable' fill='%237B1FA2' d='M5 14.9h12l-6.1 6zm9.4-6.8c0-1.3-.1-2.9-.1-4.5-.4 1.4-.9 2.9-1.3 4.3l-1.3 4.3h-2L8.5 7.9c-.4-1.3-.7-2.9-1-4.3-.1 1.6-.1 3.2-.2 4.6L7 12.4H4.8l.7-11h3.3L10 5c.4 1.2.7 2.7 1 3.9.3-1.2.7-2.6 1-3.9l1.2-3.7h3.3l.6 11h-2.4l-.3-4.2z'/%3e %3c/svg%3e");
--jp-icon-mermaid: url("data:image/svg+xml,%3csvg width='16' version='1.1' viewBox='0 0 491 675' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon-contrast2 jp-icon-selectable' fill='%23ff3670'%3e %3cpath d='m85 92c-46 0-85 37-85 85v321c0 46 37 85 85 85h321c46 0 85-37 85-85v-321c0-46-37-85-85-85zm-2 111c72-3.1 139 41 162 109 25-67 91-112 162-109 2.4 57-25 111-72 144-24 16-39 44-39 74v51h-104v-51c0.08-29-15-57-39-74-47-32-75-86-72-144z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-move-down: url("data:image/svg+xml,%3csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cpath class='jp-icon3' d='M12.471 7.52899C12.7632 7.23684 12.7632 6.76316 12.471 6.47101V6.47101C12.179 6.17905 11.7057 6.17884 11.4135 6.47054L7.75 10.1275V1.75C7.75 1.33579 7.41421 1 7 1V1C6.58579 1 6.25 1.33579 6.25 1.75V10.1275L2.59726 6.46822C2.30338 6.17381 1.82641 6.17359 1.53226 6.46774V6.46774C1.2383 6.7617 1.2383 7.2383 1.53226 7.53226L6.29289 12.2929C6.68342 12.6834 7.31658 12.6834 7.70711 12.2929L12.471 7.52899Z' fill='%23616161'/%3e %3c/svg%3e");
--jp-icon-move-up: url("data:image/svg+xml,%3csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cpath class='jp-icon3' d='M1.52899 6.47101C1.23684 6.76316 1.23684 7.23684 1.52899 7.52899V7.52899C1.82095 7.82095 2.29426 7.82116 2.58649 7.52946L6.25 3.8725V12.25C6.25 12.6642 6.58579 13 7 13V13C7.41421 13 7.75 12.6642 7.75 12.25V3.8725L11.4027 7.53178C11.6966 7.82619 12.1736 7.82641 12.4677 7.53226V7.53226C12.7617 7.2383 12.7617 6.7617 12.4677 6.46774L7.70711 1.70711C7.31658 1.31658 6.68342 1.31658 6.29289 1.70711L1.52899 6.47101Z' fill='%23616161'/%3e %3c/svg%3e");
--jp-icon-new-folder: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-1 8h-3v3h-2v-3h-3v-2h3V9h2v3h3v2z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-not-trusted: url("data:image/svg+xml,%3csvg fill='none' xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 25 25'%3e %3cpath class='jp-icon2' stroke='%23333333' stroke-width='2' transform='translate(3 3)' d='M1.86094 11.4409C0.826448 8.77027 0.863779 6.05764 1.24907 4.19932C2.48206 3.93347 4.08068 3.40347 5.60102 2.8449C7.23549 2.2444 8.85666 1.5815 9.9876 1.09539C11.0597 1.58341 12.6094 2.2444 14.218 2.84339C15.7503 3.41394 17.3995 3.95258 18.7539 4.21385C19.1364 6.07177 19.1709 8.77722 18.139 11.4409C17.0303 14.3032 14.6668 17.1844 9.99999 18.9354C5.33319 17.1844 2.96968 14.3032 1.86094 11.4409Z'/%3e %3cpath class='jp-icon2' stroke='%23333333' stroke-width='2' transform='translate(9.31592 9.32031)' d='M7.36842 0L0 7.36479'/%3e %3cpath class='jp-icon2' stroke='%23333333' stroke-width='2' transform='translate(9.31592 16.6836) scale(1 -1)' d='M7.36842 0L0 7.36479'/%3e %3c/svg%3e");
--jp-icon-notebook: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 22 22'%3e %3cg class='jp-notebook-icon-color jp-icon-selectable' fill='%23EF6C00'%3e %3cpath d='M18.7 3.3v15.4H3.3V3.3h15.4m1.5-1.5H1.8v18.3h18.3l.1-18.3z'/%3e %3cpath d='M16.5 16.5l-5.4-4.3-5.6 4.3v-11h11z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-numbering: url("data:image/svg+xml,%3csvg width='22' height='22' viewBox='0 0 28 28' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M4 19H6V19.5H5V20.5H6V21H4V22H7V18H4V19ZM5 10H6V6H4V7H5V10ZM4 13H5.8L4 15.1V16H7V15H5.2L7 12.9V12H4V13ZM9 7V9H23V7H9ZM9 21H23V19H9V21ZM9 15H23V13H9V15Z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-offline-bolt: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zM11.48 20v-6.26H8L13 4v6.26h3.35L11.48 20z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-palette: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M18 13V20H4V6H9.02C9.07 5.29 9.24 4.62 9.5 4H4C2.9 4 2 4.9 2 6V20C2 21.1 2.9 22 4 22H18C19.1 22 20 21.1 20 20V15L18 13ZM19.3 8.89C19.74 8.19 20 7.38 20 6.5C20 4.01 17.99 2 15.5 2C13.01 2 11 4.01 11 6.5C11 8.99 13.01 11 15.49 11C16.37 11 17.19 10.74 17.88 10.3L21 13.42L22.42 12L19.3 8.89ZM15.5 9C14.12 9 13 7.88 13 6.5C13 5.12 14.12 4 15.5 4C16.88 4 18 5.12 18 6.5C18 7.88 16.88 9 15.5 9Z'/%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 6H9.01894C9.00639 6.16502 9 6.33176 9 6.5C9 8.81577 10.211 10.8487 12.0343 12H9V14H16V12.9811C16.5703 12.9377 17.12 12.8207 17.6396 12.6396L18 13V20H4V6ZM8 8H6V10H8V8ZM6 12H8V14H6V12ZM8 16H6V18H8V16ZM9 16H16V18H9V16Z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-paste: url("data:image/svg+xml,%3csvg height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M19 2h-4.18C14.4.84 13.3 0 12 0c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-pdf: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22' width='16'%3e %3cpath transform='rotate(45)' class='jp-icon-selectable' fill='%23FF2A2A' d='m 22.344369%2c-3.0163642 h 5.638604 v 1.5792433 h -3.549227 v 1.50869299 h 3.337576 V 1.6508154 h -3.337576 v 3.4352613 h -2.089377 z m -7.136444%2c1.5792433 v 4.9439543 h 0.74892 q 1.280761%2c0 1.953703%2c-0.6349535 0.678369%2c-0.6349535 0.678369%2c-1.8451641 0%2c-1.20478355 -0.672942%2c-1.83431011 -0.672942%2c-0.62952659 -1.95913%2c-0.62952659 z m -2.089377%2c-1.5792433 h 2.203343 q 1.845164%2c0 2.746039%2c0.2659207 0.906301%2c0.2604937 1.552108%2c0.8900203 0.56983%2c0.5481223 0.846605%2c1.26448006 0.276774%2c0.71635781 0.276774%2c1.62265894 0%2c0.9171551 -0.276774%2c1.6389399 -0.276775%2c0.7163578 -0.846605%2c1.26448 -0.651234%2c0.6295266 -1.562962%2c0.8954473 -0.911728%2c0.2604937 -2.735185%2c0.2604937 h -2.203343 z m -8.1458565%2c0 h 3.467823 q 1.5466816%2c0 2.3715785%2c0.689223 0.830324%2c0.6837961 0.830324%2c1.95370314 0%2c1.27533397 -0.830324%2c1.96455706 Q 9.9871961%2c2.274915 8.4405145%2c2.274915 H 7.0620684 V 5.0860767 H 4.9726915 Z m 2.0893769%2c1.5141199 v 2.26303943 h 1.155941 q 0.6078188%2c0 0.9388629%2c-0.29305547 0.3310441%2c-0.29848241 0.3310441%2c-0.84117772 0%2c-0.54269531 -0.3310441%2c-0.83575074 -0.3310441%2c-0.2930555 -0.9388629%2c-0.2930555 z' /%3e %3c/svg%3e");
--jp-icon-python: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='-10 -10 131.16136169433594 132.38899993896484'%3e %3cpath class='jp-icon-selectable' fill='%23306998' d='M 54.918785%2c9.1927421e-4 C 50.335132%2c0.02221727 45.957846%2c0.41313697 42.106285%2c1.0946693 30.760069%2c3.0991731 28.700036%2c7.2947714 28.700035%2c15.032169 v 10.21875 h 26.8125 v 3.40625 h -26.8125 -10.0625 c -7.792459%2c0 -14.6157588%2c4.683717 -16.7499998%2c13.59375 -2.46181998%2c10.212966 -2.57101508%2c16.586023 0%2c27.25 1.9059283%2c7.937852 6.4575432%2c13.593748 14.2499998%2c13.59375 h 9.21875 v -12.25 c 0%2c-8.849902 7.657144%2c-16.656248 16.75%2c-16.65625 h 26.78125 c 7.454951%2c0 13.406253%2c-6.138164 13.40625%2c-13.625 v -25.53125 c 0%2c-7.2663386 -6.12998%2c-12.7247771 -13.40625%2c-13.9374997 C 64.281548%2c0.32794397 59.502438%2c-0.02037903 54.918785%2c9.1927421e-4 Z m -14.5%2c8.21875012579 c 2.769547%2c0 5.03125%2c2.2986456 5.03125%2c5.1249996 -2e-6%2c2.816336 -2.261703%2c5.09375 -5.03125%2c5.09375 -2.779476%2c-1e-6 -5.03125%2c-2.277415 -5.03125%2c-5.09375 -10e-7%2c-2.826353 2.251774%2c-5.1249996 5.03125%2c-5.1249996 z'/%3e %3cpath class='jp-icon-selectable' fill='%23ffd43b' d='m 85.637535%2c28.657169 v 11.90625 c 0%2c9.230755 -7.825895%2c16.999999 -16.75%2c17 h -26.78125 c -7.335833%2c0 -13.406249%2c6.278483 -13.40625%2c13.625 v 25.531247 c 0%2c7.266344 6.318588%2c11.540324 13.40625%2c13.625004 8.487331%2c2.49561 16.626237%2c2.94663 26.78125%2c0 6.750155%2c-1.95439 13.406253%2c-5.88761 13.40625%2c-13.625004 V 86.500919 h -26.78125 v -3.40625 h 26.78125 13.406254 c 7.792461%2c0 10.696251%2c-5.435408 13.406241%2c-13.59375 2.79933%2c-8.398886 2.68022%2c-16.475776 0%2c-27.25 -1.92578%2c-7.757441 -5.60387%2c-13.59375 -13.406241%2c-13.59375 z m -15.0625%2c64.65625 c 2.779478%2c3e-6 5.03125%2c2.277417 5.03125%2c5.093747 -2e-6%2c2.826354 -2.251775%2c5.125004 -5.03125%2c5.125004 -2.76955%2c0 -5.03125%2c-2.29865 -5.03125%2c-5.125004 2e-6%2c-2.81633 2.261697%2c-5.093747 5.03125%2c-5.093747 z'/%3e %3c/svg%3e");
--jp-icon-r-kernel: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 22 22'%3e %3cpath class='jp-icon-contrast3 jp-icon-selectable' fill='%232196F3' d='M4.4 2.5c1.2-.1 2.9-.3 4.9-.3 2.5 0 4.1.4 5.2 1.3 1 .7 1.5 1.9 1.5 3.5 0 2-1.4 3.5-2.9 4.1 1.2.4 1.7 1.6 2.2 3 .6 1.9 1 3.9 1.3 4.6h-3.8c-.3-.4-.8-1.7-1.2-3.7s-1.2-2.6-2.6-2.6h-.9v6.4H4.4V2.5zm3.7 6.9h1.4c1.9 0 2.9-.9 2.9-2.3s-1-2.3-2.8-2.3c-.7 0-1.3 0-1.6.2v4.5h.1v-.1z'/%3e %3c/svg%3e");
--jp-icon-react: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='150 150 541.9 295.3'%3e %3cg class='jp-icon-brand2 jp-icon-selectable' fill='%2361DAFB'%3e %3cpath d='M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z'/%3e %3ccircle cx='420.9' cy='296.5' r='45.7'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-redo: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 0 24 24' width='16'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M0 0h24v24H0z' fill='none'/%3e%3cpath d='M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-refresh: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 18 18'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M9 13.5c-2.49 0-4.5-2.01-4.5-4.5S6.51 4.5 9 4.5c1.24 0 2.36.52 3.17 1.33L10 8h5V3l-1.76 1.76C12.15 3.68 10.66 3 9 3 5.69 3 3.01 5.69 3.01 9S5.69 15 9 15c2.97 0 5.43-2.16 5.9-5h-1.52c-.46 2-2.24 3.5-4.38 3.5z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-regex: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 20 20'%3e %3cg class='jp-icon2' fill='%23414141'%3e %3crect x='2' y='2' width='16' height='16'/%3e %3c/g%3e %3cg class='jp-icon-accent2' fill='white'%3e %3ccircle class='st2' cx='5.5' cy='14.5' r='1.5'/%3e %3crect x='12' y='4' class='st2' width='1' height='8'/%3e %3crect x='8.5' y='7.5' transform='matrix(0.866 -0.5 0.5 0.866 -2.3255 7.3219)' class='st2' width='8' height='1'/%3e %3crect x='12' y='4' transform='matrix(0.5 -0.866 0.866 0.5 -0.6779 14.8252)' class='st2' width='1' height='8'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-run: url("data:image/svg+xml,%3csvg height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M8 5v14l11-7z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-running: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 512 512'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-save: url("data:image/svg+xml,%3csvg height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm-5 16c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-10H5V5h10v4z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-search: url("data:image/svg+xml,%3csvg viewBox='0 0 18 18' width='16' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M12.1%2c10.9h-0.7l-0.2-0.2c0.8-0.9%2c1.3-2.2%2c1.3-3.5c0-3-2.4-5.4-5.4-5.4S1.8%2c4.2%2c1.8%2c7.1s2.4%2c5.4%2c5.4%2c5.4 c1.3%2c0%2c2.5-0.5%2c3.5-1.3l0.2%2c0.2v0.7l4.1%2c4.1l1.2-1.2L12.1%2c10.9z M7.1%2c10.9c-2.1%2c0-3.7-1.7-3.7-3.7s1.7-3.7%2c3.7-3.7s3.7%2c1.7%2c3.7%2c3.7 S9.2%2c10.9%2c7.1%2c10.9z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-settings: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cpath class='jp-icon3 jp-icon-selectable' fill='%23616161' d='M19.43 12.98c.04-.32.07-.64.07-.98s-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.12-.22-.39-.3-.61-.22l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65A.488.488 0 0014 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.23-.09-.49 0-.61.22l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98s.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.12.22.39.3.61.22l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.23.09.49 0 .61-.22l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zM12 15.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z'/%3e %3c/svg%3e");
--jp-icon-share: url("data:image/svg+xml,%3csvg width='16' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M 18 2 C 16.35499 2 15 3.3549904 15 5 C 15 5.1909529 15.021791 5.3771224 15.056641 5.5585938 L 7.921875 9.7207031 C 7.3985399 9.2778539 6.7320771 9 6 9 C 4.3549904 9 3 10.35499 3 12 C 3 13.64501 4.3549904 15 6 15 C 6.7320771 15 7.3985399 14.722146 7.921875 14.279297 L 15.056641 18.439453 C 15.021555 18.621514 15 18.808386 15 19 C 15 20.64501 16.35499 22 18 22 C 19.64501 22 21 20.64501 21 19 C 21 17.35499 19.64501 16 18 16 C 17.26748 16 16.601593 16.279328 16.078125 16.722656 L 8.9433594 12.558594 C 8.9782095 12.377122 9 12.190953 9 12 C 9 11.809047 8.9782095 11.622878 8.9433594 11.441406 L 16.078125 7.2792969 C 16.60146 7.7221461 17.267923 8 18 8 C 19.64501 8 21 6.6450096 21 5 C 21 3.3549904 19.64501 2 18 2 z M 18 4 C 18.564129 4 19 4.4358706 19 5 C 19 5.5641294 18.564129 6 18 6 C 17.435871 6 17 5.5641294 17 5 C 17 4.4358706 17.435871 4 18 4 z M 6 11 C 6.5641294 11 7 11.435871 7 12 C 7 12.564129 6.5641294 13 6 13 C 5.4358706 13 5 12.564129 5 12 C 5 11.435871 5.4358706 11 6 11 z M 18 18 C 18.564129 18 19 18.435871 19 19 C 19 19.564129 18.564129 20 18 20 C 17.435871 20 17 19.564129 17 19 C 17 18.435871 17.435871 18 18 18 z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-spreadsheet: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 22 22'%3e %3cpath class='jp-icon-contrast1 jp-icon-selectable' fill='%234CAF50' d='M2.2 2.2v17.6h17.6V2.2H2.2zm15.4 7.7h-5.5V4.4h5.5v5.5zM9.9 4.4v5.5H4.4V4.4h5.5zm-5.5 7.7h5.5v5.5H4.4v-5.5zm7.7 5.5v-5.5h5.5v5.5h-5.5z'/%3e %3c/svg%3e");
--jp-icon-stop: url("data:image/svg+xml,%3csvg height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M0 0h24v24H0z' fill='none'/%3e %3cpath d='M6 6h12v12H6z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-tab: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-table-rows: url("data:image/svg+xml,%3csvg height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M0 0h24v24H0z' fill='none'/%3e %3cpath d='M21%2c8H3V4h18V8z M21%2c10H3v4h18V10z M21%2c16H3v4h18V16z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-tag: url("data:image/svg+xml,%3csvg width='28' height='28' viewBox='0 0 43 28' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M28.8332 12.334L32.9998 16.5007L37.1665 12.334H28.8332Z'/%3e %3cpath d='M16.2095 21.6104C15.6873 22.1299 14.8443 22.1299 14.3248 21.6104L6.9829 14.7245C6.5724 14.3394 6.08313 13.6098 6.04786 13.0482C5.95347 11.5288 6.02002 8.61944 6.06621 7.07695C6.08281 6.51477 6.55548 6.04347 7.11804 6.03055C9.08863 5.98473 13.2638 5.93579 13.6518 6.32425L21.7369 13.639C22.256 14.1585 21.7851 15.4724 21.262 15.9946L16.2095 21.6104ZM9.77585 8.265C9.33551 7.82566 8.62351 7.82566 8.1828 8.265C7.74346 8.70571 7.74346 9.41733 8.1828 9.85667C8.62382 10.2964 9.33582 10.2964 9.77585 9.85667C10.2156 9.41733 10.2156 8.70533 9.77585 8.265Z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-terminal: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24' %3e %3crect class='jp-terminal-icon-background-color jp-icon-selectable' width='20' height='20' transform='translate(2 2)' fill='%23333333'/%3e %3cpath class='jp-terminal-icon-color jp-icon-selectable-inverse' d='M5.05664 8.76172C5.05664 8.59766 5.03125 8.45312 4.98047 8.32812C4.93359 8.19922 4.85547 8.08203 4.74609 7.97656C4.64062 7.87109 4.5 7.77539 4.32422 7.68945C4.15234 7.59961 3.94336 7.51172 3.69727 7.42578C3.30273 7.28516 2.94336 7.13672 2.61914 6.98047C2.29492 6.82422 2.01758 6.64258 1.78711 6.43555C1.56055 6.22852 1.38477 5.98828 1.25977 5.71484C1.13477 5.4375 1.07227 5.10938 1.07227 4.73047C1.07227 4.39844 1.12891 4.0957 1.24219 3.82227C1.35547 3.54492 1.51562 3.30469 1.72266 3.10156C1.92969 2.89844 2.17969 2.73437 2.47266 2.60938C2.76562 2.48438 3.0918 2.4043 3.45117 2.36914V1.10938H4.38867V2.38086C4.74023 2.42773 5.05664 2.52344 5.33789 2.66797C5.61914 2.8125 5.85742 3.00195 6.05273 3.23633C6.25195 3.4668 6.4043 3.74023 6.50977 4.05664C6.61914 4.36914 6.67383 4.7207 6.67383 5.11133H5.04492C5.04492 4.63867 4.9375 4.28125 4.72266 4.03906C4.50781 3.79297 4.2168 3.66992 3.84961 3.66992C3.65039 3.66992 3.47656 3.69727 3.32812 3.75195C3.18359 3.80273 3.06445 3.87695 2.9707 3.97461C2.87695 4.06836 2.80664 4.17969 2.75977 4.30859C2.7168 4.4375 2.69531 4.57812 2.69531 4.73047C2.69531 4.88281 2.7168 5.01953 2.75977 5.14062C2.80664 5.25781 2.88281 5.36719 2.98828 5.46875C3.09766 5.57031 3.24023 5.66797 3.41602 5.76172C3.5918 5.85156 3.81055 5.94336 4.07227 6.03711C4.4668 6.18555 4.82422 6.33984 5.14453 6.5C5.46484 6.65625 5.73828 6.83984 5.96484 7.05078C6.19531 7.25781 6.37109 7.5 6.49219 7.77734C6.61719 8.05078 6.67969 8.375 6.67969 8.75C6.67969 9.09375 6.62305 9.4043 6.50977 9.68164C6.39648 9.95508 6.23438 10.1914 6.02344 10.3906C5.8125 10.5898 5.55859 10.75 5.26172 10.8711C4.96484 10.9883 4.63281 11.0645 4.26562 11.0996V12.248H3.33398V11.0996C3.00195 11.0684 2.67969 10.9961 2.36719 10.8828C2.05469 10.7656 1.77734 10.5977 1.53516 10.3789C1.29688 10.1602 1.10547 9.88477 0.960938 9.55273C0.816406 9.2168 0.744141 8.81445 0.744141 8.3457H2.37891C2.37891 8.62695 2.41992 8.86328 2.50195 9.05469C2.58398 9.24219 2.68945 9.39258 2.81836 9.50586C2.95117 9.61523 3.10156 9.69336 3.26953 9.74023C3.4375 9.78711 3.60938 9.81055 3.78516 9.81055C4.20312 9.81055 4.51953 9.71289 4.73438 9.51758C4.94922 9.32227 5.05664 9.07031 5.05664 8.76172ZM13.418 12.2715H8.07422V11H13.418V12.2715Z' transform='translate(3.95264 6)' fill='white'/%3e %3c/svg%3e");
--jp-icon-text-editor: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 24'%3e %3cpath class='jp-text-editor-icon-color jp-icon-selectable' fill='%23616161' d='M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z'/%3e %3c/svg%3e");
--jp-icon-toc: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3e %3cg class='jp-icon3 jp-icon-selectable' fill='%23616161'%3e %3cpath d='M7%2c5H21V7H7V5M7%2c13V11H21V13H7M4%2c4.5A1.5%2c1.5 0 0%2c1 5.5%2c6A1.5%2c1.5 0 0%2c1 4%2c7.5A1.5%2c1.5 0 0%2c1 2.5%2c6A1.5%2c1.5 0 0%2c1 4%2c4.5M4%2c10.5A1.5%2c1.5 0 0%2c1 5.5%2c12A1.5%2c1.5 0 0%2c1 4%2c13.5A1.5%2c1.5 0 0%2c1 2.5%2c12A1.5%2c1.5 0 0%2c1 4%2c10.5M7%2c19V17H21V19H7M4%2c16.5A1.5%2c1.5 0 0%2c1 5.5%2c18A1.5%2c1.5 0 0%2c1 4%2c19.5A1.5%2c1.5 0 0%2c1 2.5%2c18A1.5%2c1.5 0 0%2c1 4%2c16.5Z' /%3e %3c/g%3e %3c/svg%3e");
--jp-icon-tree-view: url("data:image/svg+xml,%3csvg height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M0 0h24v24H0z' fill='none'/%3e %3cpath d='M22 11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-trusted: url("data:image/svg+xml,%3csvg fill='none' xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 24 25'%3e %3cpath class='jp-icon2' stroke='%23333333' stroke-width='2' transform='translate(2 3)' d='M1.86094 11.4409C0.826448 8.77027 0.863779 6.05764 1.24907 4.19932C2.48206 3.93347 4.08068 3.40347 5.60102 2.8449C7.23549 2.2444 8.85666 1.5815 9.9876 1.09539C11.0597 1.58341 12.6094 2.2444 14.218 2.84339C15.7503 3.41394 17.3995 3.95258 18.7539 4.21385C19.1364 6.07177 19.1709 8.77722 18.139 11.4409C17.0303 14.3032 14.6668 17.1844 9.99999 18.9354C5.3332 17.1844 2.96968 14.3032 1.86094 11.4409Z'/%3e %3cpath class='jp-icon2' fill='%23333333' stroke='%23333333' transform='translate(8 9.86719)' d='M2.86015 4.86535L0.726549 2.99959L0 3.63045L2.86015 6.13157L8 0.630872L7.27857 0L2.86015 4.86535Z'/%3e %3c/svg%3e");
--jp-icon-undo: url("data:image/svg+xml,%3csvg viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-user: url("data:image/svg+xml,%3csvg width='16' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' fill='%23616161'%3e %3cpath d='M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-users: url("data:image/svg+xml,%3csvg width='24' height='24' version='1.1' viewBox='0 0 36 24' xmlns='http://www.w3.org/2000/svg'%3e %3cg class='jp-icon3' transform='matrix(1.7327 0 0 1.7327 -3.6282 .099577)' fill='%23616161'%3e %3cpath transform='matrix(1.5%2c0%2c0%2c1.5%2c0%2c-6)' d='m12.186 7.5098c-1.0535 0-1.9757 0.5665-2.4785 1.4102 0.75061 0.31277 1.3974 0.82648 1.873 1.4727h3.4863c0-1.592-1.2889-2.8828-2.8809-2.8828z'/%3e %3cpath d='m20.465 2.3895a2.1885 2.1885 0 0 1-2.1884 2.1885 2.1885 2.1885 0 0 1-2.1885-2.1885 2.1885 2.1885 0 0 1 2.1885-2.1885 2.1885 2.1885 0 0 1 2.1884 2.1885z'/%3e %3cpath transform='matrix(1.5%2c0%2c0%2c1.5%2c0%2c-6)' d='m3.5898 8.4219c-1.1126 0-2.0137 0.90111-2.0137 2.0137h2.8145c0.26797-0.37309 0.5907-0.70435 0.95898-0.97852-0.34433-0.61688-1.0031-1.0352-1.7598-1.0352z'/%3e %3cpath d='m6.9154 4.623a1.5294 1.5294 0 0 1-1.5294 1.5294 1.5294 1.5294 0 0 1-1.5294-1.5294 1.5294 1.5294 0 0 1 1.5294-1.5294 1.5294 1.5294 0 0 1 1.5294 1.5294z'/%3e %3cpath d='m6.135 13.535c0-3.2392 2.6259-5.865 5.865-5.865 3.2392 0 5.865 2.6259 5.865 5.865z'/%3e %3ccircle cx='12' cy='3.7685' r='2.9685'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-vega: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 22 22'%3e %3cg class='jp-icon1 jp-icon-selectable' fill='%23212121'%3e %3cpath d='M10.6 5.4l2.2-3.2H2.2v7.3l4-6.6z'/%3e %3cpath d='M15.8 2.2l-4.4 6.6L7 6.3l-4.8 8v5.5h17.6V2.2h-4zm-7 15.4H5.5v-4.4h3.3v4.4zm4.4 0H9.8V9.8h3.4v7.8zm4.4 0h-3.4V6.5h3.4v11.1z'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-word: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 20 20'%3e %3cg class='jp-icon2' fill='%23414141'%3e %3crect x='2' y='2' width='16' height='16'/%3e %3c/g%3e %3cg class='jp-icon-accent2' transform='translate(.43 .0401)' fill='white'%3e %3cpath d='m4.14 8.76q0.0682-1.89 2.42-1.89 1.16 0 1.68 0.42 0.567 0.41 0.567 1.16v3.47q0 0.462 0.514 0.462 0.103 0 0.2-0.0231v0.714q-0.399 0.103-0.651 0.103-0.452 0-0.693-0.22-0.231-0.2-0.284-0.662-0.956 0.872-2 0.872-0.903 0-1.47-0.472-0.525-0.472-0.525-1.26 0-0.262 0.0452-0.472 0.0567-0.22 0.116-0.378 0.0682-0.168 0.231-0.304 0.158-0.147 0.262-0.242 0.116-0.0914 0.368-0.168 0.262-0.0914 0.399-0.126 0.136-0.0452 0.472-0.103 0.336-0.0578 0.504-0.0798 0.158-0.0231 0.567-0.0798 0.556-0.0682 0.777-0.221 0.22-0.152 0.22-0.441v-0.252q0-0.43-0.357-0.662-0.336-0.231-0.976-0.231-0.662 0-0.998 0.262-0.336 0.252-0.399 0.798zm1.89 3.68q0.788 0 1.26-0.41 0.504-0.42 0.504-0.903v-1.05q-0.284 0.136-0.861 0.231-0.567 0.0914-0.987 0.158-0.42 0.0682-0.766 0.326-0.336 0.252-0.336 0.704t0.304 0.704 0.861 0.252z' stroke-width='1.05'/%3e %3cpath d='m10 4.56h0.945v3.15q0.651-0.976 1.89-0.976 1.16 0 1.89 0.84 0.682 0.84 0.682 2.31 0 1.47-0.704 2.42-0.704 0.882-1.89 0.882-1.26 0-1.89-1.02v0.766h-0.85zm2.62 3.04q-0.746 0-1.16 0.64-0.452 0.63-0.452 1.68 0 1.05 0.452 1.68t1.16 0.63q0.777 0 1.26-0.63 0.494-0.64 0.494-1.68 0-1.05-0.472-1.68-0.462-0.64-1.26-0.64z' stroke-width='1.05'/%3e %3cpath d='m2.73 15.8 13.6 0.0081c0.0069 0 0-2.6 0-2.6 0-0.0078-1.15 0-1.15 0-0.0069 0-0.0083 1.5-0.0083 1.5-2e-3 -0.0014-11.3-0.0014-11.3-0.0014l-0.00592-1.5c0-0.0078-1.17 0.0013-1.17 0.0013z' stroke-width='.975'/%3e %3c/g%3e %3c/svg%3e");
--jp-icon-yaml: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' viewBox='0 0 22 22'%3e %3cg class='jp-icon-contrast2 jp-icon-selectable' fill='%23D81B60'%3e %3cpath d='M7.2 18.6v-5.4L3 5.6h3.3l1.4 3.1c.3.9.6 1.6 1 2.5.3-.8.6-1.6 1-2.5l1.4-3.1h3.4l-4.4 7.6v5.5l-2.9-.1z'/%3e %3ccircle class='st0' cx='17.6' cy='16.5' r='2.1'/%3e %3ccircle class='st0' cx='17.6' cy='11' r='2.1'/%3e %3c/g%3e %3c/svg%3e");
}
/* Icon CSS class declarations */
.jp-AddAboveIcon {
background-image: var(--jp-icon-add-above);
}
.jp-AddBelowIcon {
background-image: var(--jp-icon-add-below);
}
.jp-AddIcon {
background-image: var(--jp-icon-add);
}
.jp-BellIcon {
background-image: var(--jp-icon-bell);
}
.jp-BugDotIcon {
background-image: var(--jp-icon-bug-dot);
}
.jp-BugIcon {
background-image: var(--jp-icon-bug);
}
.jp-BuildIcon {
background-image: var(--jp-icon-build);
}
.jp-CaretDownEmptyIcon {
background-image: var(--jp-icon-caret-down-empty);
}
.jp-CaretDownEmptyThinIcon {
background-image: var(--jp-icon-caret-down-empty-thin);
}
.jp-CaretDownIcon {
background-image: var(--jp-icon-caret-down);
}
.jp-CaretLeftIcon {
background-image: var(--jp-icon-caret-left);
}
.jp-CaretRightIcon {
background-image: var(--jp-icon-caret-right);
}
.jp-CaretUpEmptyThinIcon {
background-image: var(--jp-icon-caret-up-empty-thin);
}
.jp-CaretUpIcon {
background-image: var(--jp-icon-caret-up);
}
.jp-CaseSensitiveIcon {
background-image: var(--jp-icon-case-sensitive);
}
.jp-CheckIcon {
background-image: var(--jp-icon-check);
}
.jp-CircleEmptyIcon {
background-image: var(--jp-icon-circle-empty);
}
.jp-CircleIcon {
background-image: var(--jp-icon-circle);
}
.jp-ClearIcon {
background-image: var(--jp-icon-clear);
}
.jp-CloseIcon {
background-image: var(--jp-icon-close);
}
.jp-CodeCheckIcon {
background-image: var(--jp-icon-code-check);
}
.jp-CodeIcon {
background-image: var(--jp-icon-code);
}
.jp-CollapseAllIcon {
background-image: var(--jp-icon-collapse-all);
}
.jp-CollapseIcon {
background-image: var(--jp-icon-collapse);
}
.jp-ConsoleIcon {
background-image: var(--jp-icon-console);
}
.jp-CopyIcon {
background-image: var(--jp-icon-copy);
}
.jp-CopyrightIcon {
background-image: var(--jp-icon-copyright);
}
.jp-CutIcon {
background-image: var(--jp-icon-cut);
}
.jp-DeleteIcon {
background-image: var(--jp-icon-delete);
}
.jp-DownloadIcon {
background-image: var(--jp-icon-download);
}
.jp-DuplicateIcon {
background-image: var(--jp-icon-duplicate);
}
.jp-EditIcon {
background-image: var(--jp-icon-edit);
}
.jp-EllipsesIcon {
background-image: var(--jp-icon-ellipses);
}
.jp-ErrorIcon {
background-image: var(--jp-icon-error);
}
.jp-ExpandAllIcon {
background-image: var(--jp-icon-expand-all);
}
.jp-ExpandIcon {
background-image: var(--jp-icon-expand);
}
.jp-ExtensionIcon {
background-image: var(--jp-icon-extension);
}
.jp-FastForwardIcon {
background-image: var(--jp-icon-fast-forward);
}
.jp-FileIcon {
background-image: var(--jp-icon-file);
}
.jp-FileUploadIcon {
background-image: var(--jp-icon-file-upload);
}
.jp-FilterDotIcon {
background-image: var(--jp-icon-filter-dot);
}
.jp-FilterIcon {
background-image: var(--jp-icon-filter);
}
.jp-FilterListIcon {
background-image: var(--jp-icon-filter-list);
}
.jp-FolderFavoriteIcon {
background-image: var(--jp-icon-folder-favorite);
}