@protontech/autofill 0.0.22991789 → 0.0.33835493

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (176) hide show
  1. package/constants/features.d.ts +1 -0
  2. package/constants/features.js +1 -0
  3. package/constants/heuristics.d.ts +5 -4
  4. package/constants/heuristics.js +5 -10
  5. package/constants/selectors.d.ts +13 -7
  6. package/constants/selectors.js +29 -17
  7. package/debug.d.ts +24 -1
  8. package/debug.js +15 -13
  9. package/dictionary/generate.js +30 -21
  10. package/dictionary/generated/dictionary.d.ts +18 -4
  11. package/dictionary/generated/dictionary.js +31 -17
  12. package/dictionary/source/dictionary.d.ts +4 -3
  13. package/dictionary/source/dictionary.js +155 -89
  14. package/dictionary/source/patterns.js +2 -2
  15. package/features/feature.d.ts +18 -0
  16. package/features/feature.js +79 -0
  17. package/features/feature.spec.d.ts +1 -0
  18. package/features/feature.spec.js +55 -0
  19. package/features/v1/abstract.field.d.ts +20401 -0
  20. package/features/v1/abstract.field.js +95 -0
  21. package/features/v1/abstract.form.d.ts +1226 -0
  22. package/features/v1/abstract.form.js +336 -0
  23. package/features/v1/field.email.d.ts +62 -0
  24. package/features/v1/field.email.js +27 -0
  25. package/features/v1/field.otp.d.ts +142 -0
  26. package/features/v1/field.otp.js +105 -0
  27. package/features/v1/field.password.d.ts +162 -0
  28. package/features/v1/field.password.js +81 -0
  29. package/features/v1/field.username-hidden.d.ts +62 -0
  30. package/features/v1/field.username-hidden.js +25 -0
  31. package/features/v1/field.username.d.ts +72 -0
  32. package/features/v1/field.username.js +31 -0
  33. package/features/v1/index.d.ts +4428 -0
  34. package/features/v1/index.js +22 -0
  35. package/features/v1/index.spec.d.ts +1 -0
  36. package/features/v1/index.spec.js +30 -0
  37. package/index.d.ts +7 -2
  38. package/index.js +11 -3
  39. package/models/perceptron/index.d.ts +2 -0
  40. package/models/perceptron/index.js +42 -0
  41. package/models/perceptron/params/email-model.json +53 -0
  42. package/models/perceptron/params/login-model.json +465 -0
  43. package/models/perceptron/params/new-password-model.json +133 -0
  44. package/models/perceptron/params/otp-model.json +117 -0
  45. package/models/perceptron/params/password-change-model.json +465 -0
  46. package/models/perceptron/params/password-model.json +133 -0
  47. package/models/perceptron/params/recovery-model.json +465 -0
  48. package/models/perceptron/params/register-model.json +465 -0
  49. package/models/perceptron/params/username-hidden-model.json +53 -0
  50. package/models/perceptron/params/username-model.json +61 -0
  51. package/models/random_forest/index.d.ts +2 -0
  52. package/models/random_forest/index.js +42 -0
  53. package/models/random_forest/params/email-model.json +1456 -0
  54. package/models/random_forest/params/login-model.json +4194 -0
  55. package/models/random_forest/params/new-password-model.json +1448 -0
  56. package/models/random_forest/params/otp-model.json +2004 -0
  57. package/models/random_forest/params/password-change-model.json +1422 -0
  58. package/models/random_forest/params/password-model.json +1292 -0
  59. package/models/random_forest/params/recovery-model.json +2754 -0
  60. package/models/random_forest/params/register-model.json +3678 -0
  61. package/models/random_forest/params/username-hidden-model.json +1108 -0
  62. package/models/random_forest/params/username-model.json +1052 -0
  63. package/package.json +17 -15
  64. package/rules/v1/index.d.ts +4 -0
  65. package/rules/v1/index.js +66 -0
  66. package/rulesets.d.ts +9 -2
  67. package/rulesets.js +14 -9
  68. package/types/index.d.ts +70 -17
  69. package/types/index.js +34 -1
  70. package/utils/attributes.js +1 -1
  71. package/utils/clustering.js +18 -5
  72. package/utils/credit-card.d.ts +32 -0
  73. package/utils/credit-card.js +259 -0
  74. package/utils/credit-card.samples.spec.d.ts +1 -0
  75. package/utils/credit-card.samples.spec.js +452 -0
  76. package/utils/credit-card.spec.d.ts +1 -0
  77. package/utils/credit-card.spec.js +296 -0
  78. package/utils/dom.d.ts +3 -2
  79. package/utils/dom.js +12 -7
  80. package/utils/exclusion.d.ts +1 -0
  81. package/utils/exclusion.js +22 -10
  82. package/utils/extract.d.ts +1 -0
  83. package/utils/extract.js +26 -7
  84. package/utils/fathom.d.ts +10 -23
  85. package/utils/fathom.js +7 -12
  86. package/utils/field.d.ts +12 -4
  87. package/utils/field.js +25 -14
  88. package/utils/flags.d.ts +9 -3
  89. package/utils/flags.js +27 -9
  90. package/utils/form.d.ts +16 -5
  91. package/utils/form.js +35 -14
  92. package/utils/identity.d.ts +12 -21
  93. package/utils/identity.js +66 -41
  94. package/utils/identity.samples.spec.d.ts +1 -0
  95. package/utils/identity.samples.spec.js +28 -0
  96. package/utils/iframe.d.ts +2 -0
  97. package/utils/iframe.js +22 -0
  98. package/utils/overrides.d.ts +19 -0
  99. package/utils/overrides.js +40 -0
  100. package/utils/prepass.js +6 -4
  101. package/utils/re.d.ts +19 -4
  102. package/utils/re.js +22 -7
  103. package/utils/re.spec.d.ts +1 -0
  104. package/utils/re.spec.js +62 -0
  105. package/utils/shadow-dom.d.ts +8 -0
  106. package/utils/shadow-dom.js +53 -0
  107. package/utils/shadow-dom.spec.d.ts +1 -0
  108. package/utils/shadow-dom.spec.js +215 -0
  109. package/utils/visible.d.ts +3 -2
  110. package/utils/visible.js +42 -22
  111. package/cli.d.ts +0 -2
  112. package/cli.js +0 -128
  113. package/features/abstract.field.d.ts +0 -123
  114. package/features/abstract.field.js +0 -63
  115. package/features/abstract.form.d.ts +0 -98
  116. package/features/abstract.form.js +0 -281
  117. package/features/field.email.d.ts +0 -18
  118. package/features/field.email.js +0 -43
  119. package/features/field.otp.d.ts +0 -36
  120. package/features/field.otp.js +0 -116
  121. package/features/field.password.d.ts +0 -35
  122. package/features/field.password.js +0 -104
  123. package/features/field.username-hidden.d.ts +0 -15
  124. package/features/field.username-hidden.js +0 -40
  125. package/features/field.username.d.ts +0 -16
  126. package/features/field.username.js +0 -41
  127. package/features/form.combined.d.ts +0 -1
  128. package/features/form.combined.js +0 -6
  129. package/trainees/field.email.d.ts +0 -2
  130. package/trainees/field.email.js +0 -16
  131. package/trainees/field.identity.d.ts +0 -2
  132. package/trainees/field.identity.js +0 -9
  133. package/trainees/field.otp.d.ts +0 -2
  134. package/trainees/field.otp.js +0 -16
  135. package/trainees/field.password.current.d.ts +0 -2
  136. package/trainees/field.password.current.js +0 -16
  137. package/trainees/field.password.new.d.ts +0 -2
  138. package/trainees/field.password.new.js +0 -16
  139. package/trainees/field.username-hidden.d.ts +0 -2
  140. package/trainees/field.username-hidden.js +0 -22
  141. package/trainees/field.username.d.ts +0 -2
  142. package/trainees/field.username.js +0 -16
  143. package/trainees/form.login.d.ts +0 -2
  144. package/trainees/form.login.js +0 -16
  145. package/trainees/form.noop.d.ts +0 -1
  146. package/trainees/form.noop.js +0 -7
  147. package/trainees/form.password-change.d.ts +0 -2
  148. package/trainees/form.password-change.js +0 -16
  149. package/trainees/form.recovery.d.ts +0 -2
  150. package/trainees/form.recovery.js +0 -16
  151. package/trainees/form.register.d.ts +0 -2
  152. package/trainees/form.register.js +0 -16
  153. package/trainees/index.d.ts +0 -9
  154. package/trainees/index.js +0 -72
  155. package/trainees/results/result.email.d.ts +0 -2
  156. package/trainees/results/result.email.js +0 -17
  157. package/trainees/results/result.login.d.ts +0 -2
  158. package/trainees/results/result.login.js +0 -110
  159. package/trainees/results/result.new-password.d.ts +0 -2
  160. package/trainees/results/result.new-password.js +0 -36
  161. package/trainees/results/result.otp.d.ts +0 -2
  162. package/trainees/results/result.otp.js +0 -43
  163. package/trainees/results/result.password-change.d.ts +0 -2
  164. package/trainees/results/result.password-change.js +0 -110
  165. package/trainees/results/result.password.d.ts +0 -2
  166. package/trainees/results/result.password.js +0 -36
  167. package/trainees/results/result.recovery.d.ts +0 -2
  168. package/trainees/results/result.recovery.js +0 -110
  169. package/trainees/results/result.register.d.ts +0 -2
  170. package/trainees/results/result.register.js +0 -110
  171. package/trainees/results/result.username-hidden.d.ts +0 -2
  172. package/trainees/results/result.username-hidden.js +0 -15
  173. package/trainees/results/result.username.d.ts +0 -2
  174. package/trainees/results/result.username.js +0 -16
  175. package/utils/memoize.d.ts +0 -5
  176. package/utils/memoize.js +0 -12
@@ -0,0 +1,2004 @@
1
+ {
2
+ "trees": [
3
+ {
4
+ "categories_nodes": [],
5
+ "categories_segments": [],
6
+ "categories_sizes": [],
7
+ "categories": [],
8
+ "default_left": [
9
+ 0,
10
+ 0,
11
+ 0,
12
+ 0,
13
+ 0,
14
+ 0,
15
+ 0,
16
+ 0,
17
+ 0,
18
+ 0,
19
+ 0,
20
+ 0,
21
+ 0,
22
+ 0,
23
+ 0
24
+ ],
25
+ "id": 0,
26
+ "left_children": [
27
+ 1,
28
+ 3,
29
+ -1,
30
+ 5,
31
+ 7,
32
+ 9,
33
+ -1,
34
+ -1,
35
+ -1,
36
+ 11,
37
+ 13,
38
+ -1,
39
+ -1,
40
+ -1,
41
+ -1
42
+ ],
43
+ "right_children": [
44
+ 2,
45
+ 4,
46
+ -1,
47
+ 6,
48
+ 8,
49
+ 10,
50
+ -1,
51
+ -1,
52
+ -1,
53
+ 12,
54
+ 14,
55
+ -1,
56
+ -1,
57
+ -1,
58
+ -1
59
+ ],
60
+ "split_conditions": [
61
+ 1,
62
+ 1,
63
+ 1.4922475,
64
+ 1,
65
+ 0.5,
66
+ 1,
67
+ 0.70975745,
68
+ 1.2665932,
69
+ -0.23781154,
70
+ 1,
71
+ 0.112,
72
+ -0.44685653,
73
+ 0.080796,
74
+ 0.70975745,
75
+ -0.25314543
76
+ ],
77
+ "split_indices": [
78
+ 5,
79
+ 2,
80
+ 0,
81
+ 10,
82
+ 15,
83
+ 0,
84
+ 0,
85
+ 0,
86
+ 0,
87
+ 1,
88
+ 6,
89
+ 0,
90
+ 0,
91
+ 0,
92
+ 0
93
+ ],
94
+ "split_type": [
95
+ 0,
96
+ 0,
97
+ 0,
98
+ 0,
99
+ 0,
100
+ 0,
101
+ 0,
102
+ 0,
103
+ 0,
104
+ 0,
105
+ 0,
106
+ 0,
107
+ 0,
108
+ 0,
109
+ 0
110
+ ]
111
+ },
112
+ {
113
+ "categories_nodes": [],
114
+ "categories_segments": [],
115
+ "categories_sizes": [],
116
+ "categories": [],
117
+ "default_left": [
118
+ 0,
119
+ 0,
120
+ 0,
121
+ 0,
122
+ 0,
123
+ 0,
124
+ 0,
125
+ 0,
126
+ 0,
127
+ 0,
128
+ 0,
129
+ 0,
130
+ 0,
131
+ 0,
132
+ 0
133
+ ],
134
+ "id": 1,
135
+ "left_children": [
136
+ 1,
137
+ 3,
138
+ -1,
139
+ 5,
140
+ 7,
141
+ 9,
142
+ -1,
143
+ -1,
144
+ -1,
145
+ 11,
146
+ 13,
147
+ -1,
148
+ -1,
149
+ -1,
150
+ -1
151
+ ],
152
+ "right_children": [
153
+ 2,
154
+ 4,
155
+ -1,
156
+ 6,
157
+ 8,
158
+ 10,
159
+ -1,
160
+ -1,
161
+ -1,
162
+ 12,
163
+ 14,
164
+ -1,
165
+ -1,
166
+ -1,
167
+ -1
168
+ ],
169
+ "split_conditions": [
170
+ 1,
171
+ 1,
172
+ 0.5840001,
173
+ 1,
174
+ 0.5,
175
+ 1,
176
+ 0.43361202,
177
+ 0.5468722,
178
+ -0.21054608,
179
+ 1,
180
+ 0.112,
181
+ -0.4104386,
182
+ 0.061960697,
183
+ 0.43361202,
184
+ -0.22365318
185
+ ],
186
+ "split_indices": [
187
+ 5,
188
+ 2,
189
+ 0,
190
+ 10,
191
+ 15,
192
+ 0,
193
+ 0,
194
+ 0,
195
+ 0,
196
+ 1,
197
+ 6,
198
+ 0,
199
+ 0,
200
+ 0,
201
+ 0
202
+ ],
203
+ "split_type": [
204
+ 0,
205
+ 0,
206
+ 0,
207
+ 0,
208
+ 0,
209
+ 0,
210
+ 0,
211
+ 0,
212
+ 0,
213
+ 0,
214
+ 0,
215
+ 0,
216
+ 0,
217
+ 0,
218
+ 0
219
+ ]
220
+ },
221
+ {
222
+ "categories_nodes": [],
223
+ "categories_segments": [],
224
+ "categories_sizes": [],
225
+ "categories": [],
226
+ "default_left": [
227
+ 0,
228
+ 0,
229
+ 0,
230
+ 0,
231
+ 0,
232
+ 0,
233
+ 0,
234
+ 0,
235
+ 0,
236
+ 0,
237
+ 0,
238
+ 0,
239
+ 0,
240
+ 0,
241
+ 0,
242
+ 0,
243
+ 0,
244
+ 0,
245
+ 0,
246
+ 0,
247
+ 0
248
+ ],
249
+ "id": 2,
250
+ "left_children": [
251
+ 1,
252
+ 3,
253
+ 5,
254
+ 7,
255
+ 9,
256
+ -1,
257
+ -1,
258
+ 11,
259
+ 13,
260
+ -1,
261
+ 15,
262
+ 17,
263
+ 19,
264
+ -1,
265
+ -1,
266
+ -1,
267
+ -1,
268
+ -1,
269
+ -1,
270
+ -1,
271
+ -1
272
+ ],
273
+ "right_children": [
274
+ 2,
275
+ 4,
276
+ 6,
277
+ 8,
278
+ 10,
279
+ -1,
280
+ -1,
281
+ 12,
282
+ 14,
283
+ -1,
284
+ 16,
285
+ 18,
286
+ 20,
287
+ -1,
288
+ -1,
289
+ -1,
290
+ -1,
291
+ -1,
292
+ -1,
293
+ -1,
294
+ -1
295
+ ],
296
+ "split_conditions": [
297
+ 1,
298
+ 1,
299
+ 1,
300
+ 1,
301
+ 1,
302
+ 0.46501836,
303
+ 0.121096455,
304
+ 1,
305
+ 0.095,
306
+ 0.43346483,
307
+ 1,
308
+ 1,
309
+ 1,
310
+ 0.4041381,
311
+ 0.05427605,
312
+ -0.15262759,
313
+ 0.28753015,
314
+ -0.38849658,
315
+ -0.057092804,
316
+ 0.34635788,
317
+ -0.21336155
318
+ ],
319
+ "split_indices": [
320
+ 5,
321
+ 2,
322
+ 19,
323
+ 10,
324
+ 13,
325
+ 0,
326
+ 0,
327
+ 7,
328
+ 6,
329
+ 0,
330
+ 12,
331
+ 0,
332
+ 16,
333
+ 0,
334
+ 0,
335
+ 0,
336
+ 0,
337
+ 0,
338
+ 0,
339
+ 0,
340
+ 0
341
+ ],
342
+ "split_type": [
343
+ 0,
344
+ 0,
345
+ 0,
346
+ 0,
347
+ 0,
348
+ 0,
349
+ 0,
350
+ 0,
351
+ 0,
352
+ 0,
353
+ 0,
354
+ 0,
355
+ 0,
356
+ 0,
357
+ 0,
358
+ 0,
359
+ 0,
360
+ 0,
361
+ 0,
362
+ 0,
363
+ 0
364
+ ]
365
+ },
366
+ {
367
+ "categories_nodes": [],
368
+ "categories_segments": [],
369
+ "categories_sizes": [],
370
+ "categories": [],
371
+ "default_left": [
372
+ 0,
373
+ 0,
374
+ 0,
375
+ 0,
376
+ 0,
377
+ 0,
378
+ 0,
379
+ 0,
380
+ 0,
381
+ 0,
382
+ 0,
383
+ 0,
384
+ 0,
385
+ 0,
386
+ 0,
387
+ 0,
388
+ 0,
389
+ 0,
390
+ 0,
391
+ 0,
392
+ 0,
393
+ 0,
394
+ 0
395
+ ],
396
+ "id": 3,
397
+ "left_children": [
398
+ 1,
399
+ 3,
400
+ 5,
401
+ 7,
402
+ 9,
403
+ -1,
404
+ -1,
405
+ 11,
406
+ 13,
407
+ -1,
408
+ 15,
409
+ 17,
410
+ 19,
411
+ -1,
412
+ -1,
413
+ -1,
414
+ -1,
415
+ -1,
416
+ -1,
417
+ 21,
418
+ -1,
419
+ -1,
420
+ -1
421
+ ],
422
+ "right_children": [
423
+ 2,
424
+ 4,
425
+ 6,
426
+ 8,
427
+ 10,
428
+ -1,
429
+ -1,
430
+ 12,
431
+ 14,
432
+ -1,
433
+ 16,
434
+ 18,
435
+ 20,
436
+ -1,
437
+ -1,
438
+ -1,
439
+ -1,
440
+ -1,
441
+ -1,
442
+ 22,
443
+ -1,
444
+ -1,
445
+ -1
446
+ ],
447
+ "split_conditions": [
448
+ 1,
449
+ 1,
450
+ 1,
451
+ 1,
452
+ 1,
453
+ 0.39982027,
454
+ 0.10067068,
455
+ 1,
456
+ 0.095,
457
+ 0.35104817,
458
+ 1,
459
+ 1,
460
+ 0.12,
461
+ 0.32900572,
462
+ 0.04416581,
463
+ -0.12032564,
464
+ 0.24813074,
465
+ -0.37347665,
466
+ -0.04469339,
467
+ 1,
468
+ -0.21040004,
469
+ 0.082387105,
470
+ 0.3387792
471
+ ],
472
+ "split_indices": [
473
+ 5,
474
+ 2,
475
+ 19,
476
+ 10,
477
+ 13,
478
+ 0,
479
+ 0,
480
+ 7,
481
+ 6,
482
+ 0,
483
+ 12,
484
+ 0,
485
+ 6,
486
+ 0,
487
+ 0,
488
+ 0,
489
+ 0,
490
+ 0,
491
+ 0,
492
+ 0,
493
+ 0,
494
+ 0,
495
+ 0
496
+ ],
497
+ "split_type": [
498
+ 0,
499
+ 0,
500
+ 0,
501
+ 0,
502
+ 0,
503
+ 0,
504
+ 0,
505
+ 0,
506
+ 0,
507
+ 0,
508
+ 0,
509
+ 0,
510
+ 0,
511
+ 0,
512
+ 0,
513
+ 0,
514
+ 0,
515
+ 0,
516
+ 0,
517
+ 0,
518
+ 0,
519
+ 0,
520
+ 0
521
+ ]
522
+ },
523
+ {
524
+ "categories_nodes": [],
525
+ "categories_segments": [],
526
+ "categories_sizes": [],
527
+ "categories": [],
528
+ "default_left": [
529
+ 0,
530
+ 0,
531
+ 0,
532
+ 0,
533
+ 0,
534
+ 0,
535
+ 0,
536
+ 0,
537
+ 0,
538
+ 0,
539
+ 0,
540
+ 0,
541
+ 0,
542
+ 0,
543
+ 0,
544
+ 0,
545
+ 0,
546
+ 0,
547
+ 0,
548
+ 0,
549
+ 0
550
+ ],
551
+ "id": 4,
552
+ "left_children": [
553
+ 1,
554
+ 3,
555
+ 5,
556
+ 7,
557
+ 9,
558
+ -1,
559
+ -1,
560
+ 11,
561
+ -1,
562
+ -1,
563
+ 13,
564
+ 15,
565
+ -1,
566
+ -1,
567
+ 17,
568
+ 19,
569
+ -1,
570
+ -1,
571
+ -1,
572
+ -1,
573
+ -1
574
+ ],
575
+ "right_children": [
576
+ 2,
577
+ 4,
578
+ 6,
579
+ 8,
580
+ 10,
581
+ -1,
582
+ -1,
583
+ 12,
584
+ -1,
585
+ -1,
586
+ 14,
587
+ 16,
588
+ -1,
589
+ -1,
590
+ 18,
591
+ 20,
592
+ -1,
593
+ -1,
594
+ -1,
595
+ -1,
596
+ -1
597
+ ],
598
+ "split_conditions": [
599
+ 1,
600
+ 1,
601
+ 1,
602
+ 0.12,
603
+ 0.09,
604
+ 0.3561676,
605
+ 0.08386462,
606
+ 1,
607
+ -0.36622182,
608
+ 0.35497808,
609
+ 0.114,
610
+ 1,
611
+ -0.32892853,
612
+ -0.10147029,
613
+ 1,
614
+ 0.106,
615
+ -0.26282775,
616
+ 0.26493648,
617
+ -0.008242174,
618
+ 0.17512779,
619
+ 0.406486
620
+ ],
621
+ "split_indices": [
622
+ 5,
623
+ 2,
624
+ 19,
625
+ 6,
626
+ 6,
627
+ 0,
628
+ 0,
629
+ 16,
630
+ 0,
631
+ 0,
632
+ 6,
633
+ 22,
634
+ 0,
635
+ 0,
636
+ 13,
637
+ 6,
638
+ 0,
639
+ 0,
640
+ 0,
641
+ 0,
642
+ 0
643
+ ],
644
+ "split_type": [
645
+ 0,
646
+ 0,
647
+ 0,
648
+ 0,
649
+ 0,
650
+ 0,
651
+ 0,
652
+ 0,
653
+ 0,
654
+ 0,
655
+ 0,
656
+ 0,
657
+ 0,
658
+ 0,
659
+ 0,
660
+ 0,
661
+ 0,
662
+ 0,
663
+ 0,
664
+ 0,
665
+ 0
666
+ ]
667
+ },
668
+ {
669
+ "categories_nodes": [],
670
+ "categories_segments": [],
671
+ "categories_sizes": [],
672
+ "categories": [],
673
+ "default_left": [
674
+ 0,
675
+ 0,
676
+ 0,
677
+ 0,
678
+ 0,
679
+ 0,
680
+ 0,
681
+ 0,
682
+ 0,
683
+ 0,
684
+ 0,
685
+ 0,
686
+ 0,
687
+ 0,
688
+ 0,
689
+ 0,
690
+ 0,
691
+ 0,
692
+ 0,
693
+ 0,
694
+ 0,
695
+ 0,
696
+ 0,
697
+ 0,
698
+ 0
699
+ ],
700
+ "id": 5,
701
+ "left_children": [
702
+ 1,
703
+ 3,
704
+ 5,
705
+ 7,
706
+ 9,
707
+ 11,
708
+ -1,
709
+ 13,
710
+ -1,
711
+ 15,
712
+ 17,
713
+ -1,
714
+ 19,
715
+ -1,
716
+ 21,
717
+ -1,
718
+ -1,
719
+ -1,
720
+ -1,
721
+ -1,
722
+ -1,
723
+ 23,
724
+ -1,
725
+ -1,
726
+ -1
727
+ ],
728
+ "right_children": [
729
+ 2,
730
+ 4,
731
+ 6,
732
+ 8,
733
+ 10,
734
+ 12,
735
+ -1,
736
+ 14,
737
+ -1,
738
+ 16,
739
+ 18,
740
+ -1,
741
+ 20,
742
+ -1,
743
+ 22,
744
+ -1,
745
+ -1,
746
+ -1,
747
+ -1,
748
+ -1,
749
+ -1,
750
+ 24,
751
+ -1,
752
+ -1,
753
+ -1
754
+ ],
755
+ "split_conditions": [
756
+ 1,
757
+ 1,
758
+ 1,
759
+ 0.12,
760
+ 0.101,
761
+ 0.133,
762
+ 0.36432287,
763
+ 0.078,
764
+ -0.35670635,
765
+ 1,
766
+ 1,
767
+ 0.27241036,
768
+ 1,
769
+ -0.30305365,
770
+ 1,
771
+ 0.32477516,
772
+ 0.061699554,
773
+ -0.16172114,
774
+ 0.1631485,
775
+ -0.26182604,
776
+ 0.23507605,
777
+ 1,
778
+ -0.22374041,
779
+ 0.09688752,
780
+ 0.34742057
781
+ ],
782
+ "split_indices": [
783
+ 5,
784
+ 2,
785
+ 24,
786
+ 6,
787
+ 6,
788
+ 6,
789
+ 0,
790
+ 6,
791
+ 0,
792
+ 27,
793
+ 1,
794
+ 0,
795
+ 12,
796
+ 0,
797
+ 16,
798
+ 0,
799
+ 0,
800
+ 0,
801
+ 0,
802
+ 0,
803
+ 0,
804
+ 0,
805
+ 0,
806
+ 0,
807
+ 0
808
+ ],
809
+ "split_type": [
810
+ 0,
811
+ 0,
812
+ 0,
813
+ 0,
814
+ 0,
815
+ 0,
816
+ 0,
817
+ 0,
818
+ 0,
819
+ 0,
820
+ 0,
821
+ 0,
822
+ 0,
823
+ 0,
824
+ 0,
825
+ 0,
826
+ 0,
827
+ 0,
828
+ 0,
829
+ 0,
830
+ 0,
831
+ 0,
832
+ 0,
833
+ 0,
834
+ 0
835
+ ]
836
+ },
837
+ {
838
+ "categories_nodes": [],
839
+ "categories_segments": [],
840
+ "categories_sizes": [],
841
+ "categories": [],
842
+ "default_left": [
843
+ 0,
844
+ 0,
845
+ 0,
846
+ 0,
847
+ 0,
848
+ 0,
849
+ 0,
850
+ 0,
851
+ 0,
852
+ 0,
853
+ 0,
854
+ 0,
855
+ 0,
856
+ 0,
857
+ 0,
858
+ 0,
859
+ 0,
860
+ 0,
861
+ 0,
862
+ 0,
863
+ 0,
864
+ 0,
865
+ 0
866
+ ],
867
+ "id": 6,
868
+ "left_children": [
869
+ 1,
870
+ 3,
871
+ 5,
872
+ 7,
873
+ -1,
874
+ 9,
875
+ -1,
876
+ 11,
877
+ 13,
878
+ 15,
879
+ -1,
880
+ 17,
881
+ -1,
882
+ -1,
883
+ -1,
884
+ 19,
885
+ -1,
886
+ 21,
887
+ -1,
888
+ -1,
889
+ -1,
890
+ -1,
891
+ -1
892
+ ],
893
+ "right_children": [
894
+ 2,
895
+ 4,
896
+ 6,
897
+ 8,
898
+ -1,
899
+ 10,
900
+ -1,
901
+ 12,
902
+ 14,
903
+ 16,
904
+ -1,
905
+ 18,
906
+ -1,
907
+ -1,
908
+ -1,
909
+ 20,
910
+ -1,
911
+ 22,
912
+ -1,
913
+ -1,
914
+ -1,
915
+ -1,
916
+ -1
917
+ ],
918
+ "split_conditions": [
919
+ 1,
920
+ 1,
921
+ 1,
922
+ 1,
923
+ 0.31673974,
924
+ 1,
925
+ 0.3432649,
926
+ 1,
927
+ 1,
928
+ 1,
929
+ 0.267651,
930
+ 0.101,
931
+ 0.10703973,
932
+ 0.27958223,
933
+ -0.1602983,
934
+ 1,
935
+ 0.21143165,
936
+ 1,
937
+ -0.36099407,
938
+ -0.17892241,
939
+ 0.20438427,
940
+ -0.19477281,
941
+ 0.2420676
942
+ ],
943
+ "split_indices": [
944
+ 5,
945
+ 12,
946
+ 13,
947
+ 0,
948
+ 0,
949
+ 12,
950
+ 0,
951
+ 24,
952
+ 27,
953
+ 1,
954
+ 0,
955
+ 6,
956
+ 0,
957
+ 0,
958
+ 0,
959
+ 0,
960
+ 0,
961
+ 10,
962
+ 0,
963
+ 0,
964
+ 0,
965
+ 0,
966
+ 0
967
+ ],
968
+ "split_type": [
969
+ 0,
970
+ 0,
971
+ 0,
972
+ 0,
973
+ 0,
974
+ 0,
975
+ 0,
976
+ 0,
977
+ 0,
978
+ 0,
979
+ 0,
980
+ 0,
981
+ 0,
982
+ 0,
983
+ 0,
984
+ 0,
985
+ 0,
986
+ 0,
987
+ 0,
988
+ 0,
989
+ 0,
990
+ 0,
991
+ 0
992
+ ]
993
+ },
994
+ {
995
+ "categories_nodes": [],
996
+ "categories_segments": [],
997
+ "categories_sizes": [],
998
+ "categories": [],
999
+ "default_left": [
1000
+ 0,
1001
+ 0,
1002
+ 0,
1003
+ 0,
1004
+ 0,
1005
+ 0,
1006
+ 0,
1007
+ 0,
1008
+ 0,
1009
+ 0,
1010
+ 0,
1011
+ 0,
1012
+ 0,
1013
+ 0,
1014
+ 0,
1015
+ 0,
1016
+ 0,
1017
+ 0,
1018
+ 0,
1019
+ 0,
1020
+ 0,
1021
+ 0,
1022
+ 0,
1023
+ 0,
1024
+ 0,
1025
+ 0,
1026
+ 0
1027
+ ],
1028
+ "id": 7,
1029
+ "left_children": [
1030
+ 1,
1031
+ 3,
1032
+ 5,
1033
+ 7,
1034
+ 9,
1035
+ 11,
1036
+ -1,
1037
+ 13,
1038
+ -1,
1039
+ 15,
1040
+ 17,
1041
+ 19,
1042
+ 21,
1043
+ 23,
1044
+ -1,
1045
+ -1,
1046
+ -1,
1047
+ -1,
1048
+ -1,
1049
+ -1,
1050
+ -1,
1051
+ -1,
1052
+ -1,
1053
+ 25,
1054
+ -1,
1055
+ -1,
1056
+ -1
1057
+ ],
1058
+ "right_children": [
1059
+ 2,
1060
+ 4,
1061
+ 6,
1062
+ 8,
1063
+ 10,
1064
+ 12,
1065
+ -1,
1066
+ 14,
1067
+ -1,
1068
+ 16,
1069
+ 18,
1070
+ 20,
1071
+ 22,
1072
+ 24,
1073
+ -1,
1074
+ -1,
1075
+ -1,
1076
+ -1,
1077
+ -1,
1078
+ -1,
1079
+ -1,
1080
+ -1,
1081
+ -1,
1082
+ 26,
1083
+ -1,
1084
+ -1,
1085
+ -1
1086
+ ],
1087
+ "split_conditions": [
1088
+ 1,
1089
+ 1,
1090
+ 1,
1091
+ 0.12,
1092
+ 1,
1093
+ 0.133,
1094
+ 0.32774317,
1095
+ 1,
1096
+ -0.33995914,
1097
+ 1,
1098
+ 1,
1099
+ 0.096,
1100
+ 1,
1101
+ 1,
1102
+ 0.27673712,
1103
+ 0.08421451,
1104
+ 0.27369037,
1105
+ -0.14415935,
1106
+ 0.108816296,
1107
+ 0.2543661,
1108
+ 0.063688196,
1109
+ -0.26846474,
1110
+ 0.19629394,
1111
+ 0.108,
1112
+ 0.14568941,
1113
+ -0.2942844,
1114
+ 0
1115
+ ],
1116
+ "split_indices": [
1117
+ 5,
1118
+ 2,
1119
+ 24,
1120
+ 6,
1121
+ 13,
1122
+ 6,
1123
+ 0,
1124
+ 10,
1125
+ 0,
1126
+ 1,
1127
+ 10,
1128
+ 6,
1129
+ 1,
1130
+ 7,
1131
+ 0,
1132
+ 0,
1133
+ 0,
1134
+ 0,
1135
+ 0,
1136
+ 0,
1137
+ 0,
1138
+ 0,
1139
+ 0,
1140
+ 6,
1141
+ 0,
1142
+ 0,
1143
+ 0
1144
+ ],
1145
+ "split_type": [
1146
+ 0,
1147
+ 0,
1148
+ 0,
1149
+ 0,
1150
+ 0,
1151
+ 0,
1152
+ 0,
1153
+ 0,
1154
+ 0,
1155
+ 0,
1156
+ 0,
1157
+ 0,
1158
+ 0,
1159
+ 0,
1160
+ 0,
1161
+ 0,
1162
+ 0,
1163
+ 0,
1164
+ 0,
1165
+ 0,
1166
+ 0,
1167
+ 0,
1168
+ 0,
1169
+ 0,
1170
+ 0,
1171
+ 0,
1172
+ 0
1173
+ ]
1174
+ },
1175
+ {
1176
+ "categories_nodes": [],
1177
+ "categories_segments": [],
1178
+ "categories_sizes": [],
1179
+ "categories": [],
1180
+ "default_left": [
1181
+ 0,
1182
+ 0,
1183
+ 0,
1184
+ 0,
1185
+ 0,
1186
+ 0,
1187
+ 0,
1188
+ 0,
1189
+ 0,
1190
+ 0,
1191
+ 0,
1192
+ 0,
1193
+ 0,
1194
+ 0,
1195
+ 0,
1196
+ 0,
1197
+ 0,
1198
+ 0,
1199
+ 0
1200
+ ],
1201
+ "id": 8,
1202
+ "left_children": [
1203
+ 1,
1204
+ 3,
1205
+ 5,
1206
+ 7,
1207
+ 9,
1208
+ 11,
1209
+ -1,
1210
+ 13,
1211
+ -1,
1212
+ -1,
1213
+ -1,
1214
+ 15,
1215
+ -1,
1216
+ 17,
1217
+ -1,
1218
+ -1,
1219
+ -1,
1220
+ -1,
1221
+ -1
1222
+ ],
1223
+ "right_children": [
1224
+ 2,
1225
+ 4,
1226
+ 6,
1227
+ 8,
1228
+ 10,
1229
+ 12,
1230
+ -1,
1231
+ 14,
1232
+ -1,
1233
+ -1,
1234
+ -1,
1235
+ 16,
1236
+ -1,
1237
+ 18,
1238
+ -1,
1239
+ -1,
1240
+ -1,
1241
+ -1,
1242
+ -1
1243
+ ],
1244
+ "split_conditions": [
1245
+ 1,
1246
+ 0.12,
1247
+ 1,
1248
+ 1,
1249
+ 1,
1250
+ 1,
1251
+ 0.308322,
1252
+ 1,
1253
+ -0.31035522,
1254
+ -0.33192003,
1255
+ 0.071015455,
1256
+ 0.126,
1257
+ 0.24220105,
1258
+ 1,
1259
+ -0.19984566,
1260
+ 0.13531338,
1261
+ -0.19785042,
1262
+ 0.23288383,
1263
+ -0.1792446
1264
+ ],
1265
+ "split_indices": [
1266
+ 5,
1267
+ 6,
1268
+ 24,
1269
+ 18,
1270
+ 1,
1271
+ 1,
1272
+ 0,
1273
+ 16,
1274
+ 0,
1275
+ 0,
1276
+ 0,
1277
+ 6,
1278
+ 0,
1279
+ 22,
1280
+ 0,
1281
+ 0,
1282
+ 0,
1283
+ 0,
1284
+ 0
1285
+ ],
1286
+ "split_type": [
1287
+ 0,
1288
+ 0,
1289
+ 0,
1290
+ 0,
1291
+ 0,
1292
+ 0,
1293
+ 0,
1294
+ 0,
1295
+ 0,
1296
+ 0,
1297
+ 0,
1298
+ 0,
1299
+ 0,
1300
+ 0,
1301
+ 0,
1302
+ 0,
1303
+ 0,
1304
+ 0,
1305
+ 0
1306
+ ]
1307
+ },
1308
+ {
1309
+ "categories_nodes": [],
1310
+ "categories_segments": [],
1311
+ "categories_sizes": [],
1312
+ "categories": [],
1313
+ "default_left": [
1314
+ 0,
1315
+ 0,
1316
+ 0,
1317
+ 0,
1318
+ 0,
1319
+ 0,
1320
+ 0,
1321
+ 0,
1322
+ 0,
1323
+ 0,
1324
+ 0,
1325
+ 0,
1326
+ 0,
1327
+ 0,
1328
+ 0
1329
+ ],
1330
+ "id": 9,
1331
+ "left_children": [
1332
+ 1,
1333
+ 3,
1334
+ 5,
1335
+ 7,
1336
+ -1,
1337
+ -1,
1338
+ -1,
1339
+ 9,
1340
+ -1,
1341
+ 11,
1342
+ -1,
1343
+ 13,
1344
+ -1,
1345
+ -1,
1346
+ -1
1347
+ ],
1348
+ "right_children": [
1349
+ 2,
1350
+ 4,
1351
+ 6,
1352
+ 8,
1353
+ -1,
1354
+ -1,
1355
+ -1,
1356
+ 10,
1357
+ -1,
1358
+ 12,
1359
+ -1,
1360
+ 14,
1361
+ -1,
1362
+ -1,
1363
+ -1
1364
+ ],
1365
+ "split_conditions": [
1366
+ 0.294,
1367
+ 1,
1368
+ 1,
1369
+ 1,
1370
+ -0.31812036,
1371
+ -0.33138,
1372
+ -0.04991225,
1373
+ 1,
1374
+ -0.31793326,
1375
+ 1,
1376
+ -0.12286123,
1377
+ 1,
1378
+ 0.32142207,
1379
+ 0.07676724,
1380
+ 0.2632345
1381
+ ],
1382
+ "split_indices": [
1383
+ 6,
1384
+ 16,
1385
+ 24,
1386
+ 22,
1387
+ 0,
1388
+ 0,
1389
+ 0,
1390
+ 19,
1391
+ 0,
1392
+ 5,
1393
+ 0,
1394
+ 8,
1395
+ 0,
1396
+ 0,
1397
+ 0
1398
+ ],
1399
+ "split_type": [
1400
+ 0,
1401
+ 0,
1402
+ 0,
1403
+ 0,
1404
+ 0,
1405
+ 0,
1406
+ 0,
1407
+ 0,
1408
+ 0,
1409
+ 0,
1410
+ 0,
1411
+ 0,
1412
+ 0,
1413
+ 0,
1414
+ 0
1415
+ ]
1416
+ },
1417
+ {
1418
+ "categories_nodes": [],
1419
+ "categories_segments": [],
1420
+ "categories_sizes": [],
1421
+ "categories": [],
1422
+ "default_left": [
1423
+ 0,
1424
+ 0,
1425
+ 0,
1426
+ 0,
1427
+ 0,
1428
+ 0,
1429
+ 0,
1430
+ 0,
1431
+ 0,
1432
+ 0,
1433
+ 0,
1434
+ 0,
1435
+ 0,
1436
+ 0,
1437
+ 0,
1438
+ 0,
1439
+ 0,
1440
+ 0,
1441
+ 0
1442
+ ],
1443
+ "id": 10,
1444
+ "left_children": [
1445
+ 1,
1446
+ 3,
1447
+ 5,
1448
+ 7,
1449
+ -1,
1450
+ -1,
1451
+ -1,
1452
+ 9,
1453
+ 11,
1454
+ 13,
1455
+ -1,
1456
+ -1,
1457
+ 15,
1458
+ 17,
1459
+ -1,
1460
+ -1,
1461
+ -1,
1462
+ -1,
1463
+ -1
1464
+ ],
1465
+ "right_children": [
1466
+ 2,
1467
+ 4,
1468
+ 6,
1469
+ 8,
1470
+ -1,
1471
+ -1,
1472
+ -1,
1473
+ 10,
1474
+ 12,
1475
+ 14,
1476
+ -1,
1477
+ -1,
1478
+ 16,
1479
+ 18,
1480
+ -1,
1481
+ -1,
1482
+ -1,
1483
+ -1,
1484
+ -1
1485
+ ],
1486
+ "split_conditions": [
1487
+ 0.294,
1488
+ 1,
1489
+ 1,
1490
+ 1,
1491
+ -0.29651436,
1492
+ -0.31685287,
1493
+ -0.04041511,
1494
+ 1,
1495
+ 0.101,
1496
+ 1,
1497
+ -0.2033438,
1498
+ 0.03711609,
1499
+ 1,
1500
+ 1,
1501
+ 0.23342122,
1502
+ 0.28988746,
1503
+ 0.068769164,
1504
+ -0.038995635,
1505
+ 0.17579831
1506
+ ],
1507
+ "split_indices": [
1508
+ 6,
1509
+ 16,
1510
+ 24,
1511
+ 5,
1512
+ 0,
1513
+ 0,
1514
+ 0,
1515
+ 19,
1516
+ 6,
1517
+ 8,
1518
+ 0,
1519
+ 0,
1520
+ 19,
1521
+ 10,
1522
+ 0,
1523
+ 0,
1524
+ 0,
1525
+ 0,
1526
+ 0
1527
+ ],
1528
+ "split_type": [
1529
+ 0,
1530
+ 0,
1531
+ 0,
1532
+ 0,
1533
+ 0,
1534
+ 0,
1535
+ 0,
1536
+ 0,
1537
+ 0,
1538
+ 0,
1539
+ 0,
1540
+ 0,
1541
+ 0,
1542
+ 0,
1543
+ 0,
1544
+ 0,
1545
+ 0,
1546
+ 0,
1547
+ 0
1548
+ ]
1549
+ },
1550
+ {
1551
+ "categories_nodes": [],
1552
+ "categories_segments": [],
1553
+ "categories_sizes": [],
1554
+ "categories": [],
1555
+ "default_left": [
1556
+ 0,
1557
+ 0,
1558
+ 0,
1559
+ 0,
1560
+ 0,
1561
+ 0,
1562
+ 0,
1563
+ 0,
1564
+ 0,
1565
+ 0,
1566
+ 0,
1567
+ 0,
1568
+ 0,
1569
+ 0,
1570
+ 0,
1571
+ 0,
1572
+ 0,
1573
+ 0,
1574
+ 0
1575
+ ],
1576
+ "id": 11,
1577
+ "left_children": [
1578
+ 1,
1579
+ 3,
1580
+ 5,
1581
+ 7,
1582
+ -1,
1583
+ -1,
1584
+ -1,
1585
+ 9,
1586
+ -1,
1587
+ 11,
1588
+ 13,
1589
+ 15,
1590
+ 17,
1591
+ -1,
1592
+ -1,
1593
+ -1,
1594
+ -1,
1595
+ -1,
1596
+ -1
1597
+ ],
1598
+ "right_children": [
1599
+ 2,
1600
+ 4,
1601
+ 6,
1602
+ 8,
1603
+ -1,
1604
+ -1,
1605
+ -1,
1606
+ 10,
1607
+ -1,
1608
+ 12,
1609
+ 14,
1610
+ 16,
1611
+ 18,
1612
+ -1,
1613
+ -1,
1614
+ -1,
1615
+ -1,
1616
+ -1,
1617
+ -1
1618
+ ],
1619
+ "split_conditions": [
1620
+ 0.294,
1621
+ 1,
1622
+ 1,
1623
+ 1,
1624
+ -0.2729356,
1625
+ -0.29889426,
1626
+ -0.032703016,
1627
+ 1,
1628
+ 0.26589763,
1629
+ 1,
1630
+ 0.101,
1631
+ 0.095,
1632
+ 0.09,
1633
+ 0.05142674,
1634
+ 0.25787935,
1635
+ 0.01752624,
1636
+ -0.2548989,
1637
+ 0.23096834,
1638
+ 0.054622896
1639
+ ],
1640
+ "split_indices": [
1641
+ 6,
1642
+ 16,
1643
+ 24,
1644
+ 24,
1645
+ 0,
1646
+ 0,
1647
+ 0,
1648
+ 12,
1649
+ 0,
1650
+ 0,
1651
+ 6,
1652
+ 6,
1653
+ 6,
1654
+ 0,
1655
+ 0,
1656
+ 0,
1657
+ 0,
1658
+ 0,
1659
+ 0
1660
+ ],
1661
+ "split_type": [
1662
+ 0,
1663
+ 0,
1664
+ 0,
1665
+ 0,
1666
+ 0,
1667
+ 0,
1668
+ 0,
1669
+ 0,
1670
+ 0,
1671
+ 0,
1672
+ 0,
1673
+ 0,
1674
+ 0,
1675
+ 0,
1676
+ 0,
1677
+ 0,
1678
+ 0,
1679
+ 0,
1680
+ 0
1681
+ ]
1682
+ },
1683
+ {
1684
+ "categories_nodes": [],
1685
+ "categories_segments": [],
1686
+ "categories_sizes": [],
1687
+ "categories": [],
1688
+ "default_left": [
1689
+ 0,
1690
+ 0,
1691
+ 0,
1692
+ 0,
1693
+ 0,
1694
+ 0,
1695
+ 0,
1696
+ 0,
1697
+ 0,
1698
+ 0,
1699
+ 0,
1700
+ 0,
1701
+ 0,
1702
+ 0,
1703
+ 0,
1704
+ 0,
1705
+ 0,
1706
+ 0,
1707
+ 0
1708
+ ],
1709
+ "id": 12,
1710
+ "left_children": [
1711
+ 1,
1712
+ 3,
1713
+ -1,
1714
+ 5,
1715
+ 7,
1716
+ 9,
1717
+ -1,
1718
+ -1,
1719
+ -1,
1720
+ 11,
1721
+ 13,
1722
+ 15,
1723
+ -1,
1724
+ 17,
1725
+ -1,
1726
+ -1,
1727
+ -1,
1728
+ -1,
1729
+ -1
1730
+ ],
1731
+ "right_children": [
1732
+ 2,
1733
+ 4,
1734
+ -1,
1735
+ 6,
1736
+ 8,
1737
+ 10,
1738
+ -1,
1739
+ -1,
1740
+ -1,
1741
+ 12,
1742
+ 14,
1743
+ 16,
1744
+ -1,
1745
+ 18,
1746
+ -1,
1747
+ -1,
1748
+ -1,
1749
+ -1,
1750
+ -1
1751
+ ],
1752
+ "split_conditions": [
1753
+ 1,
1754
+ 1,
1755
+ -0.3003499,
1756
+ 0.274,
1757
+ 0.101,
1758
+ 1,
1759
+ -0.2709226,
1760
+ 0.020875867,
1761
+ 0.2474916,
1762
+ 1,
1763
+ 1,
1764
+ 1,
1765
+ 0.1516626,
1766
+ 0.101,
1767
+ -0.014188837,
1768
+ -0.1706997,
1769
+ 0.027387373,
1770
+ 0.21565223,
1771
+ 0.048471887
1772
+ ],
1773
+ "split_indices": [
1774
+ 16,
1775
+ 5,
1776
+ 0,
1777
+ 6,
1778
+ 6,
1779
+ 2,
1780
+ 0,
1781
+ 0,
1782
+ 0,
1783
+ 0,
1784
+ 13,
1785
+ 12,
1786
+ 0,
1787
+ 6,
1788
+ 0,
1789
+ 0,
1790
+ 0,
1791
+ 0,
1792
+ 0
1793
+ ],
1794
+ "split_type": [
1795
+ 0,
1796
+ 0,
1797
+ 0,
1798
+ 0,
1799
+ 0,
1800
+ 0,
1801
+ 0,
1802
+ 0,
1803
+ 0,
1804
+ 0,
1805
+ 0,
1806
+ 0,
1807
+ 0,
1808
+ 0,
1809
+ 0,
1810
+ 0,
1811
+ 0,
1812
+ 0,
1813
+ 0
1814
+ ]
1815
+ },
1816
+ {
1817
+ "categories_nodes": [],
1818
+ "categories_segments": [],
1819
+ "categories_sizes": [],
1820
+ "categories": [],
1821
+ "default_left": [
1822
+ 0,
1823
+ 0,
1824
+ 0,
1825
+ 0,
1826
+ 0,
1827
+ 0,
1828
+ 0,
1829
+ 0,
1830
+ 0,
1831
+ 0,
1832
+ 0,
1833
+ 0,
1834
+ 0,
1835
+ 0,
1836
+ 0
1837
+ ],
1838
+ "id": 13,
1839
+ "left_children": [
1840
+ 1,
1841
+ 3,
1842
+ -1,
1843
+ 5,
1844
+ -1,
1845
+ 7,
1846
+ 9,
1847
+ 11,
1848
+ -1,
1849
+ -1,
1850
+ -1,
1851
+ -1,
1852
+ 13,
1853
+ -1,
1854
+ -1
1855
+ ],
1856
+ "right_children": [
1857
+ 2,
1858
+ 4,
1859
+ -1,
1860
+ 6,
1861
+ -1,
1862
+ 8,
1863
+ 10,
1864
+ 12,
1865
+ -1,
1866
+ -1,
1867
+ -1,
1868
+ -1,
1869
+ 14,
1870
+ -1,
1871
+ -1
1872
+ ],
1873
+ "split_conditions": [
1874
+ 1,
1875
+ 1,
1876
+ -0.27100903,
1877
+ 1,
1878
+ -0.18288077,
1879
+ 0.274,
1880
+ 0.101,
1881
+ 1,
1882
+ -0.18061419,
1883
+ 0.017220693,
1884
+ 0.25683612,
1885
+ 0.16998498,
1886
+ 1,
1887
+ -0.033810657,
1888
+ 0.14408793
1889
+ ],
1890
+ "split_indices": [
1891
+ 16,
1892
+ 19,
1893
+ 0,
1894
+ 5,
1895
+ 0,
1896
+ 6,
1897
+ 6,
1898
+ 25,
1899
+ 0,
1900
+ 0,
1901
+ 0,
1902
+ 0,
1903
+ 10,
1904
+ 0,
1905
+ 0
1906
+ ],
1907
+ "split_type": [
1908
+ 0,
1909
+ 0,
1910
+ 0,
1911
+ 0,
1912
+ 0,
1913
+ 0,
1914
+ 0,
1915
+ 0,
1916
+ 0,
1917
+ 0,
1918
+ 0,
1919
+ 0,
1920
+ 0,
1921
+ 0,
1922
+ 0
1923
+ ]
1924
+ }
1925
+ ],
1926
+ "feature_names": [
1927
+ "otp--attrMFA",
1928
+ "otp--attrOTP",
1929
+ "otp--autocompleteOTC",
1930
+ "otp--fieldCC",
1931
+ "otp--fieldIdentity",
1932
+ "otp--formAuthenticator",
1933
+ "otp--formComplexity",
1934
+ "otp--formMFA",
1935
+ "otp--idMatch",
1936
+ "otp--labelAuthenticator",
1937
+ "otp--labelMFA",
1938
+ "otp--labelOTP",
1939
+ "otp--nameMatch",
1940
+ "otp--numericMode",
1941
+ "otp--outlierAutocomplete",
1942
+ "otp--outlierEmailMatchScaled",
1943
+ "otp--outlierField",
1944
+ "otp--outlierForm",
1945
+ "otp--outlierHeadings",
1946
+ "otp--outlierInputCount",
1947
+ "otp--outlierLink",
1948
+ "otp--outlierMaxLength",
1949
+ "otp--outlierSearch",
1950
+ "otp--patternOTP",
1951
+ "otp--siblingOfInterest",
1952
+ "otp--singleInput",
1953
+ "otp--textAuthenticator",
1954
+ "otp--textMFA"
1955
+ ],
1956
+ "feature_types": [
1957
+ "int",
1958
+ "int",
1959
+ "int",
1960
+ "int",
1961
+ "int",
1962
+ "int",
1963
+ "float",
1964
+ "int",
1965
+ "int",
1966
+ "int",
1967
+ "int",
1968
+ "int",
1969
+ "int",
1970
+ "int",
1971
+ "int",
1972
+ "float",
1973
+ "int",
1974
+ "int",
1975
+ "int",
1976
+ "int",
1977
+ "int",
1978
+ "int",
1979
+ "int",
1980
+ "int",
1981
+ "int",
1982
+ "int",
1983
+ "int",
1984
+ "int"
1985
+ ],
1986
+ "tree_info": [
1987
+ 0,
1988
+ 0,
1989
+ 0,
1990
+ 0,
1991
+ 0,
1992
+ 0,
1993
+ 0,
1994
+ 0,
1995
+ 0,
1996
+ 0,
1997
+ 0,
1998
+ 0,
1999
+ 0,
2000
+ 0
2001
+ ],
2002
+ "num_class": 0,
2003
+ "objective": "binary:logistic"
2004
+ }