@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,1292 @@
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
+ ],
23
+ "id": 0,
24
+ "left_children": [
25
+ 1,
26
+ 3,
27
+ 5,
28
+ 7,
29
+ -1,
30
+ -1,
31
+ -1,
32
+ 9,
33
+ -1,
34
+ -1,
35
+ 11,
36
+ -1,
37
+ -1
38
+ ],
39
+ "right_children": [
40
+ 2,
41
+ 4,
42
+ 6,
43
+ 8,
44
+ -1,
45
+ -1,
46
+ -1,
47
+ 10,
48
+ -1,
49
+ -1,
50
+ 12,
51
+ -1,
52
+ -1
53
+ ],
54
+ "split_conditions": [
55
+ 1,
56
+ 1,
57
+ 1,
58
+ 1,
59
+ 0.4496302,
60
+ 0.49374223,
61
+ 0.11809396,
62
+ 1,
63
+ -0.06910641,
64
+ -1.1140156,
65
+ 1,
66
+ 0.24903974,
67
+ -0.8246732
68
+ ],
69
+ "split_indices": [
70
+ 11,
71
+ 15,
72
+ 20,
73
+ 2,
74
+ 0,
75
+ 0,
76
+ 0,
77
+ 4,
78
+ 0,
79
+ 0,
80
+ 12,
81
+ 0,
82
+ 0
83
+ ],
84
+ "split_type": [
85
+ 0,
86
+ 0,
87
+ 0,
88
+ 0,
89
+ 0,
90
+ 0,
91
+ 0,
92
+ 0,
93
+ 0,
94
+ 0,
95
+ 0,
96
+ 0,
97
+ 0
98
+ ]
99
+ },
100
+ {
101
+ "categories_nodes": [],
102
+ "categories_segments": [],
103
+ "categories_sizes": [],
104
+ "categories": [],
105
+ "default_left": [
106
+ 0,
107
+ 0,
108
+ 0,
109
+ 0,
110
+ 0,
111
+ 0,
112
+ 0,
113
+ 0,
114
+ 0
115
+ ],
116
+ "id": 1,
117
+ "left_children": [
118
+ 1,
119
+ 3,
120
+ 5,
121
+ 7,
122
+ -1,
123
+ -1,
124
+ -1,
125
+ -1,
126
+ -1
127
+ ],
128
+ "right_children": [
129
+ 2,
130
+ 4,
131
+ 6,
132
+ 8,
133
+ -1,
134
+ -1,
135
+ -1,
136
+ -1,
137
+ -1
138
+ ],
139
+ "split_conditions": [
140
+ 1,
141
+ 1,
142
+ 1,
143
+ 1,
144
+ 0.39024788,
145
+ 0.43313774,
146
+ 0.09820838,
147
+ -0.57649165,
148
+ -0.0528307
149
+ ],
150
+ "split_indices": [
151
+ 11,
152
+ 15,
153
+ 20,
154
+ 2,
155
+ 0,
156
+ 0,
157
+ 0,
158
+ 0,
159
+ 0
160
+ ],
161
+ "split_type": [
162
+ 0,
163
+ 0,
164
+ 0,
165
+ 0,
166
+ 0,
167
+ 0,
168
+ 0,
169
+ 0,
170
+ 0
171
+ ]
172
+ },
173
+ {
174
+ "categories_nodes": [],
175
+ "categories_segments": [],
176
+ "categories_sizes": [],
177
+ "categories": [],
178
+ "default_left": [
179
+ 0,
180
+ 0,
181
+ 0,
182
+ 0,
183
+ 0,
184
+ 0,
185
+ 0,
186
+ 0,
187
+ 0,
188
+ 0,
189
+ 0,
190
+ 0,
191
+ 0
192
+ ],
193
+ "id": 2,
194
+ "left_children": [
195
+ 1,
196
+ 3,
197
+ 5,
198
+ 7,
199
+ -1,
200
+ -1,
201
+ -1,
202
+ -1,
203
+ 9,
204
+ 11,
205
+ -1,
206
+ -1,
207
+ -1
208
+ ],
209
+ "right_children": [
210
+ 2,
211
+ 4,
212
+ 6,
213
+ 8,
214
+ -1,
215
+ -1,
216
+ -1,
217
+ -1,
218
+ 10,
219
+ 12,
220
+ -1,
221
+ -1,
222
+ -1
223
+ ],
224
+ "split_conditions": [
225
+ 1,
226
+ 1,
227
+ 1,
228
+ 1,
229
+ 0.3503417,
230
+ 0.39806828,
231
+ 0.08183078,
232
+ -0.4793553,
233
+ 1,
234
+ 1,
235
+ 0.3404239,
236
+ -0.047163513,
237
+ -0.40678614
238
+ ],
239
+ "split_indices": [
240
+ 11,
241
+ 15,
242
+ 20,
243
+ 19,
244
+ 0,
245
+ 0,
246
+ 0,
247
+ 0,
248
+ 4,
249
+ 5,
250
+ 0,
251
+ 0,
252
+ 0
253
+ ],
254
+ "split_type": [
255
+ 0,
256
+ 0,
257
+ 0,
258
+ 0,
259
+ 0,
260
+ 0,
261
+ 0,
262
+ 0,
263
+ 0,
264
+ 0,
265
+ 0,
266
+ 0,
267
+ 0
268
+ ]
269
+ },
270
+ {
271
+ "categories_nodes": [],
272
+ "categories_segments": [],
273
+ "categories_sizes": [],
274
+ "categories": [],
275
+ "default_left": [
276
+ 0,
277
+ 0,
278
+ 0,
279
+ 0,
280
+ 0,
281
+ 0,
282
+ 0,
283
+ 0,
284
+ 0,
285
+ 0,
286
+ 0,
287
+ 0,
288
+ 0
289
+ ],
290
+ "id": 3,
291
+ "left_children": [
292
+ 1,
293
+ 3,
294
+ 5,
295
+ 7,
296
+ -1,
297
+ -1,
298
+ -1,
299
+ -1,
300
+ 9,
301
+ 11,
302
+ -1,
303
+ -1,
304
+ -1
305
+ ],
306
+ "right_children": [
307
+ 2,
308
+ 4,
309
+ 6,
310
+ 8,
311
+ -1,
312
+ -1,
313
+ -1,
314
+ -1,
315
+ 10,
316
+ 12,
317
+ -1,
318
+ -1,
319
+ -1
320
+ ],
321
+ "split_conditions": [
322
+ 1,
323
+ 1,
324
+ 1,
325
+ 1,
326
+ 0.3191816,
327
+ 0.3746573,
328
+ 0.068268396,
329
+ -0.41428885,
330
+ 1,
331
+ 1,
332
+ 0.28992122,
333
+ -0.039008193,
334
+ -0.35571253
335
+ ],
336
+ "split_indices": [
337
+ 11,
338
+ 15,
339
+ 20,
340
+ 19,
341
+ 0,
342
+ 0,
343
+ 0,
344
+ 0,
345
+ 4,
346
+ 16,
347
+ 0,
348
+ 0,
349
+ 0
350
+ ],
351
+ "split_type": [
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
+ 0
365
+ ]
366
+ },
367
+ {
368
+ "categories_nodes": [],
369
+ "categories_segments": [],
370
+ "categories_sizes": [],
371
+ "categories": [],
372
+ "default_left": [
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
+ ],
389
+ "id": 4,
390
+ "left_children": [
391
+ 1,
392
+ 3,
393
+ 5,
394
+ 7,
395
+ -1,
396
+ -1,
397
+ -1,
398
+ 9,
399
+ -1,
400
+ 11,
401
+ -1,
402
+ 13,
403
+ -1,
404
+ -1,
405
+ -1
406
+ ],
407
+ "right_children": [
408
+ 2,
409
+ 4,
410
+ 6,
411
+ 8,
412
+ -1,
413
+ -1,
414
+ -1,
415
+ 10,
416
+ -1,
417
+ 12,
418
+ -1,
419
+ 14,
420
+ -1,
421
+ -1,
422
+ -1
423
+ ],
424
+ "split_conditions": [
425
+ 1,
426
+ 1,
427
+ 1,
428
+ 1,
429
+ 0.2922169,
430
+ 0.35688967,
431
+ 0.057000414,
432
+ 1,
433
+ -0.4024385,
434
+ 1,
435
+ -0.36280486,
436
+ 1,
437
+ -0.24035749,
438
+ -0.22158751,
439
+ 0.47509545
440
+ ],
441
+ "split_indices": [
442
+ 11,
443
+ 15,
444
+ 20,
445
+ 12,
446
+ 0,
447
+ 0,
448
+ 0,
449
+ 22,
450
+ 0,
451
+ 16,
452
+ 0,
453
+ 18,
454
+ 0,
455
+ 0,
456
+ 0
457
+ ],
458
+ "split_type": [
459
+ 0,
460
+ 0,
461
+ 0,
462
+ 0,
463
+ 0,
464
+ 0,
465
+ 0,
466
+ 0,
467
+ 0,
468
+ 0,
469
+ 0,
470
+ 0,
471
+ 0,
472
+ 0,
473
+ 0
474
+ ]
475
+ },
476
+ {
477
+ "categories_nodes": [],
478
+ "categories_segments": [],
479
+ "categories_sizes": [],
480
+ "categories": [],
481
+ "default_left": [
482
+ 0,
483
+ 0,
484
+ 0,
485
+ 0,
486
+ 0,
487
+ 0,
488
+ 0,
489
+ 0,
490
+ 0,
491
+ 0,
492
+ 0
493
+ ],
494
+ "id": 5,
495
+ "left_children": [
496
+ 1,
497
+ 3,
498
+ 5,
499
+ 7,
500
+ -1,
501
+ -1,
502
+ -1,
503
+ -1,
504
+ 9,
505
+ -1,
506
+ -1
507
+ ],
508
+ "right_children": [
509
+ 2,
510
+ 4,
511
+ 6,
512
+ 8,
513
+ -1,
514
+ -1,
515
+ -1,
516
+ -1,
517
+ 10,
518
+ -1,
519
+ -1
520
+ ],
521
+ "split_conditions": [
522
+ 1,
523
+ 1,
524
+ 1,
525
+ 1,
526
+ 0.26744083,
527
+ 0.34153035,
528
+ 0.047619842,
529
+ -0.37255913,
530
+ 1,
531
+ 0.16404322,
532
+ -0.34384346
533
+ ],
534
+ "split_indices": [
535
+ 11,
536
+ 15,
537
+ 20,
538
+ 18,
539
+ 0,
540
+ 0,
541
+ 0,
542
+ 0,
543
+ 16,
544
+ 0,
545
+ 0
546
+ ],
547
+ "split_type": [
548
+ 0,
549
+ 0,
550
+ 0,
551
+ 0,
552
+ 0,
553
+ 0,
554
+ 0,
555
+ 0,
556
+ 0,
557
+ 0,
558
+ 0
559
+ ]
560
+ },
561
+ {
562
+ "categories_nodes": [],
563
+ "categories_segments": [],
564
+ "categories_sizes": [],
565
+ "categories": [],
566
+ "default_left": [
567
+ 0,
568
+ 0,
569
+ 0,
570
+ 0,
571
+ 0,
572
+ 0,
573
+ 0,
574
+ 0,
575
+ 0,
576
+ 0,
577
+ 0,
578
+ 0,
579
+ 0
580
+ ],
581
+ "id": 6,
582
+ "left_children": [
583
+ 1,
584
+ 3,
585
+ 5,
586
+ 7,
587
+ -1,
588
+ -1,
589
+ -1,
590
+ 9,
591
+ -1,
592
+ 11,
593
+ -1,
594
+ -1,
595
+ -1
596
+ ],
597
+ "right_children": [
598
+ 2,
599
+ 4,
600
+ 6,
601
+ 8,
602
+ -1,
603
+ -1,
604
+ -1,
605
+ 10,
606
+ -1,
607
+ 12,
608
+ -1,
609
+ -1,
610
+ -1
611
+ ],
612
+ "split_conditions": [
613
+ 1,
614
+ 1,
615
+ 1,
616
+ 1,
617
+ 0.24410152,
618
+ 0.3265541,
619
+ 0.039800175,
620
+ 1,
621
+ -0.3561045,
622
+ 1,
623
+ -0.3094336,
624
+ 0.13988066,
625
+ -0.02533794
626
+ ],
627
+ "split_indices": [
628
+ 11,
629
+ 15,
630
+ 20,
631
+ 12,
632
+ 0,
633
+ 0,
634
+ 0,
635
+ 22,
636
+ 0,
637
+ 7,
638
+ 0,
639
+ 0,
640
+ 0
641
+ ],
642
+ "split_type": [
643
+ 0,
644
+ 0,
645
+ 0,
646
+ 0,
647
+ 0,
648
+ 0,
649
+ 0,
650
+ 0,
651
+ 0,
652
+ 0,
653
+ 0,
654
+ 0,
655
+ 0
656
+ ]
657
+ },
658
+ {
659
+ "categories_nodes": [],
660
+ "categories_segments": [],
661
+ "categories_sizes": [],
662
+ "categories": [],
663
+ "default_left": [
664
+ 0,
665
+ 0,
666
+ 0,
667
+ 0,
668
+ 0,
669
+ 0,
670
+ 0,
671
+ 0,
672
+ 0,
673
+ 0,
674
+ 0
675
+ ],
676
+ "id": 7,
677
+ "left_children": [
678
+ 1,
679
+ 3,
680
+ 5,
681
+ 7,
682
+ -1,
683
+ -1,
684
+ -1,
685
+ -1,
686
+ 9,
687
+ -1,
688
+ -1
689
+ ],
690
+ "right_children": [
691
+ 2,
692
+ 4,
693
+ 6,
694
+ 8,
695
+ -1,
696
+ -1,
697
+ -1,
698
+ -1,
699
+ 10,
700
+ -1,
701
+ -1
702
+ ],
703
+ "split_conditions": [
704
+ 1,
705
+ 1,
706
+ 1,
707
+ 1,
708
+ 0.22208112,
709
+ 0.33164167,
710
+ 0.13370141,
711
+ -0.335515,
712
+ 1,
713
+ 0.14757052,
714
+ -0.2990378
715
+ ],
716
+ "split_indices": [
717
+ 11,
718
+ 15,
719
+ 7,
720
+ 18,
721
+ 0,
722
+ 0,
723
+ 0,
724
+ 0,
725
+ 16,
726
+ 0,
727
+ 0
728
+ ],
729
+ "split_type": [
730
+ 0,
731
+ 0,
732
+ 0,
733
+ 0,
734
+ 0,
735
+ 0,
736
+ 0,
737
+ 0,
738
+ 0,
739
+ 0,
740
+ 0
741
+ ]
742
+ },
743
+ {
744
+ "categories_nodes": [],
745
+ "categories_segments": [],
746
+ "categories_sizes": [],
747
+ "categories": [],
748
+ "default_left": [
749
+ 0,
750
+ 0,
751
+ 0,
752
+ 0,
753
+ 0,
754
+ 0,
755
+ 0,
756
+ 0,
757
+ 0,
758
+ 0,
759
+ 0
760
+ ],
761
+ "id": 8,
762
+ "left_children": [
763
+ 1,
764
+ 3,
765
+ 5,
766
+ 7,
767
+ -1,
768
+ -1,
769
+ -1,
770
+ 9,
771
+ -1,
772
+ -1,
773
+ -1
774
+ ],
775
+ "right_children": [
776
+ 2,
777
+ 4,
778
+ 6,
779
+ 8,
780
+ -1,
781
+ -1,
782
+ -1,
783
+ 10,
784
+ -1,
785
+ -1,
786
+ -1
787
+ ],
788
+ "split_conditions": [
789
+ 1,
790
+ 1,
791
+ 1,
792
+ 1,
793
+ -0.32278144,
794
+ 0.3183887,
795
+ 0.1088187,
796
+ 1,
797
+ -0.26563033,
798
+ 0.013331391,
799
+ 0.22376718
800
+ ],
801
+ "split_indices": [
802
+ 11,
803
+ 12,
804
+ 7,
805
+ 22,
806
+ 0,
807
+ 0,
808
+ 0,
809
+ 19,
810
+ 0,
811
+ 0,
812
+ 0
813
+ ],
814
+ "split_type": [
815
+ 0,
816
+ 0,
817
+ 0,
818
+ 0,
819
+ 0,
820
+ 0,
821
+ 0,
822
+ 0,
823
+ 0,
824
+ 0,
825
+ 0
826
+ ]
827
+ },
828
+ {
829
+ "categories_nodes": [],
830
+ "categories_segments": [],
831
+ "categories_sizes": [],
832
+ "categories": [],
833
+ "default_left": [
834
+ 0,
835
+ 0,
836
+ 0,
837
+ 0,
838
+ 0,
839
+ 0,
840
+ 0,
841
+ 0,
842
+ 0,
843
+ 0,
844
+ 0
845
+ ],
846
+ "id": 9,
847
+ "left_children": [
848
+ 1,
849
+ 3,
850
+ 5,
851
+ 7,
852
+ -1,
853
+ -1,
854
+ -1,
855
+ 9,
856
+ -1,
857
+ -1,
858
+ -1
859
+ ],
860
+ "right_children": [
861
+ 2,
862
+ 4,
863
+ 6,
864
+ 8,
865
+ -1,
866
+ -1,
867
+ -1,
868
+ 10,
869
+ -1,
870
+ -1,
871
+ -1
872
+ ],
873
+ "split_conditions": [
874
+ 1,
875
+ 1,
876
+ 1,
877
+ 1,
878
+ -0.30387706,
879
+ 0.3037404,
880
+ 0.08747358,
881
+ 1,
882
+ -0.24249832,
883
+ 0.010187702,
884
+ 0.19001824
885
+ ],
886
+ "split_indices": [
887
+ 11,
888
+ 12,
889
+ 7,
890
+ 22,
891
+ 0,
892
+ 0,
893
+ 0,
894
+ 19,
895
+ 0,
896
+ 0,
897
+ 0
898
+ ],
899
+ "split_type": [
900
+ 0,
901
+ 0,
902
+ 0,
903
+ 0,
904
+ 0,
905
+ 0,
906
+ 0,
907
+ 0,
908
+ 0,
909
+ 0,
910
+ 0
911
+ ]
912
+ },
913
+ {
914
+ "categories_nodes": [],
915
+ "categories_segments": [],
916
+ "categories_sizes": [],
917
+ "categories": [],
918
+ "default_left": [
919
+ 0,
920
+ 0,
921
+ 0,
922
+ 0,
923
+ 0,
924
+ 0,
925
+ 0,
926
+ 0,
927
+ 0
928
+ ],
929
+ "id": 10,
930
+ "left_children": [
931
+ 1,
932
+ 3,
933
+ -1,
934
+ 5,
935
+ -1,
936
+ -1,
937
+ 7,
938
+ -1,
939
+ -1
940
+ ],
941
+ "right_children": [
942
+ 2,
943
+ 4,
944
+ -1,
945
+ 6,
946
+ -1,
947
+ -1,
948
+ 8,
949
+ -1,
950
+ -1
951
+ ],
952
+ "split_conditions": [
953
+ 1,
954
+ 1,
955
+ -0.28096092,
956
+ 1,
957
+ -0.21004681,
958
+ 0.2529782,
959
+ 1,
960
+ -0.005611597,
961
+ 0.06567795
962
+ ],
963
+ "split_indices": [
964
+ 12,
965
+ 22,
966
+ 0,
967
+ 7,
968
+ 0,
969
+ 0,
970
+ 11,
971
+ 0,
972
+ 0
973
+ ],
974
+ "split_type": [
975
+ 0,
976
+ 0,
977
+ 0,
978
+ 0,
979
+ 0,
980
+ 0,
981
+ 0,
982
+ 0,
983
+ 0
984
+ ]
985
+ },
986
+ {
987
+ "categories_nodes": [],
988
+ "categories_segments": [],
989
+ "categories_sizes": [],
990
+ "categories": [],
991
+ "default_left": [
992
+ 0,
993
+ 0,
994
+ 0,
995
+ 0,
996
+ 0,
997
+ 0,
998
+ 0,
999
+ 0,
1000
+ 0
1001
+ ],
1002
+ "id": 11,
1003
+ "left_children": [
1004
+ 1,
1005
+ 3,
1006
+ 5,
1007
+ -1,
1008
+ 7,
1009
+ -1,
1010
+ -1,
1011
+ -1,
1012
+ -1
1013
+ ],
1014
+ "right_children": [
1015
+ 2,
1016
+ 4,
1017
+ 6,
1018
+ -1,
1019
+ 8,
1020
+ -1,
1021
+ -1,
1022
+ -1,
1023
+ -1
1024
+ ],
1025
+ "split_conditions": [
1026
+ 1,
1027
+ 1,
1028
+ 1,
1029
+ -0.27640566,
1030
+ 1,
1031
+ 0.2720447,
1032
+ 0.057004377,
1033
+ 0.18421102,
1034
+ -0.24857117
1035
+ ],
1036
+ "split_indices": [
1037
+ 11,
1038
+ 18,
1039
+ 7,
1040
+ 0,
1041
+ 16,
1042
+ 0,
1043
+ 0,
1044
+ 0,
1045
+ 0
1046
+ ],
1047
+ "split_type": [
1048
+ 0,
1049
+ 0,
1050
+ 0,
1051
+ 0,
1052
+ 0,
1053
+ 0,
1054
+ 0,
1055
+ 0,
1056
+ 0
1057
+ ]
1058
+ },
1059
+ {
1060
+ "categories_nodes": [],
1061
+ "categories_segments": [],
1062
+ "categories_sizes": [],
1063
+ "categories": [],
1064
+ "default_left": [
1065
+ 0,
1066
+ 0,
1067
+ 0,
1068
+ 0,
1069
+ 0,
1070
+ 0,
1071
+ 0,
1072
+ 0,
1073
+ 0
1074
+ ],
1075
+ "id": 12,
1076
+ "left_children": [
1077
+ 1,
1078
+ 3,
1079
+ 5,
1080
+ -1,
1081
+ 7,
1082
+ -1,
1083
+ -1,
1084
+ -1,
1085
+ -1
1086
+ ],
1087
+ "right_children": [
1088
+ 2,
1089
+ 4,
1090
+ 6,
1091
+ -1,
1092
+ 8,
1093
+ -1,
1094
+ -1,
1095
+ -1,
1096
+ -1
1097
+ ],
1098
+ "split_conditions": [
1099
+ 1,
1100
+ 1,
1101
+ 1,
1102
+ -0.25579017,
1103
+ 1,
1104
+ 0.25303987,
1105
+ 0.04474503,
1106
+ 0.1400022,
1107
+ -0.22548644
1108
+ ],
1109
+ "split_indices": [
1110
+ 11,
1111
+ 18,
1112
+ 7,
1113
+ 0,
1114
+ 16,
1115
+ 0,
1116
+ 0,
1117
+ 0,
1118
+ 0
1119
+ ],
1120
+ "split_type": [
1121
+ 0,
1122
+ 0,
1123
+ 0,
1124
+ 0,
1125
+ 0,
1126
+ 0,
1127
+ 0,
1128
+ 0,
1129
+ 0
1130
+ ]
1131
+ },
1132
+ {
1133
+ "categories_nodes": [],
1134
+ "categories_segments": [],
1135
+ "categories_sizes": [],
1136
+ "categories": [],
1137
+ "default_left": [
1138
+ 0,
1139
+ 0,
1140
+ 0,
1141
+ 0,
1142
+ 0,
1143
+ 0,
1144
+ 0,
1145
+ 0,
1146
+ 0
1147
+ ],
1148
+ "id": 13,
1149
+ "left_children": [
1150
+ 1,
1151
+ 3,
1152
+ -1,
1153
+ 5,
1154
+ -1,
1155
+ 7,
1156
+ -1,
1157
+ -1,
1158
+ -1
1159
+ ],
1160
+ "right_children": [
1161
+ 2,
1162
+ 4,
1163
+ -1,
1164
+ 6,
1165
+ -1,
1166
+ 8,
1167
+ -1,
1168
+ -1,
1169
+ -1
1170
+ ],
1171
+ "split_conditions": [
1172
+ 1,
1173
+ 1,
1174
+ -0.23387583,
1175
+ 1,
1176
+ -0.15985687,
1177
+ 1,
1178
+ 0.025468173,
1179
+ 0.07939808,
1180
+ 0.23254816
1181
+ ],
1182
+ "split_indices": [
1183
+ 12,
1184
+ 22,
1185
+ 0,
1186
+ 7,
1187
+ 0,
1188
+ 11,
1189
+ 0,
1190
+ 0,
1191
+ 0
1192
+ ],
1193
+ "split_type": [
1194
+ 0,
1195
+ 0,
1196
+ 0,
1197
+ 0,
1198
+ 0,
1199
+ 0,
1200
+ 0,
1201
+ 0,
1202
+ 0
1203
+ ]
1204
+ }
1205
+ ],
1206
+ "feature_names": [
1207
+ "password--attrConfirm",
1208
+ "password--attrCreate",
1209
+ "password--attrCurrent",
1210
+ "password--attrReset",
1211
+ "password--autocompleteCurrent",
1212
+ "password--autocompleteNew",
1213
+ "password--autocompleteOTP",
1214
+ "password--autocompleteOff",
1215
+ "password--fieldCC",
1216
+ "password--fieldExotic",
1217
+ "password--fieldIdentity",
1218
+ "password--fieldLogin",
1219
+ "password--fieldRegister",
1220
+ "password--labelConfirm",
1221
+ "password--labelCreate",
1222
+ "password--labelCurrent",
1223
+ "password--nextPwConfirm",
1224
+ "password--nextPwCurrent",
1225
+ "password--nextPwField",
1226
+ "password--nextPwNew",
1227
+ "password--passwordOutlier",
1228
+ "password--prevPwCurrent",
1229
+ "password--prevPwField",
1230
+ "password--prevPwNew",
1231
+ "password--textConfirm",
1232
+ "password--textCreate",
1233
+ "password--textCurrent",
1234
+ "password--fieldLogin,autocompleteNew",
1235
+ "password--fieldLogin,maybeNew",
1236
+ "password--fieldRegister,autocompleteCurrent",
1237
+ "password--fieldRegister,maybeCurrent",
1238
+ "password--prevPwCurrent,nextPwNew"
1239
+ ],
1240
+ "feature_types": [
1241
+ "int",
1242
+ "int",
1243
+ "int",
1244
+ "int",
1245
+ "int",
1246
+ "int",
1247
+ "int",
1248
+ "int",
1249
+ "int",
1250
+ "int",
1251
+ "int",
1252
+ "int",
1253
+ "int",
1254
+ "int",
1255
+ "int",
1256
+ "int",
1257
+ "int",
1258
+ "int",
1259
+ "int",
1260
+ "int",
1261
+ "int",
1262
+ "int",
1263
+ "int",
1264
+ "int",
1265
+ "int",
1266
+ "int",
1267
+ "int",
1268
+ "int",
1269
+ "int",
1270
+ "int",
1271
+ "int",
1272
+ "int"
1273
+ ],
1274
+ "tree_info": [
1275
+ 0,
1276
+ 0,
1277
+ 0,
1278
+ 0,
1279
+ 0,
1280
+ 0,
1281
+ 0,
1282
+ 0,
1283
+ 0,
1284
+ 0,
1285
+ 0,
1286
+ 0,
1287
+ 0,
1288
+ 0
1289
+ ],
1290
+ "num_class": 0,
1291
+ "objective": "binary:logistic"
1292
+ }