-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1641 lines (1569 loc) · 72.3 KB
/
index.html
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 charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>jQuery file size</title>
<style>html{font:1em/1.6 sans-serif}body{margin:0 auto;width:95%}h1,td,th{text-align:center}#chart{height:750px}table{width:100%;border-collapse:collapse;table-layout:fixed;margin:1em 0}td,th{border:1px solid #d3d3d3;padding:5px}th{background:#e1e1e1}tr span,i{display:none;color:#666}.increase{color:red}.decrease{color:green}tr:hover span{display:inline}tr:hover i{display:block}thead th{background:#666;color:#fff}</style>
</head>
<body>
<h1>jQuery file size</h1>
<p>Note: The gzipped and Zopflinated file sizes refer to the total byte size of the file after compressing it using gzip or Zopfli <em>with the default settings</em>. For gzip, this boils down to <code>gzip -6 file.js</code> — the default compression level is <code>6</code> on a scale from <code>1</code> (fastest, but less compression) to <code>9</code> (slowest, but best compression). For Zopfli, 15 iterations are performed (i.e. the default): <code>zopfli --i15 file.js</code>. Better compression could be achieved by increasing the number of iterations.</p>
<p>Disclaimer: it’s not the file size, it’s how you use it. Sure, jQuery has gotten bigger over time, but every new release patches bugs and/or introduces new features. This page aims to demonstrate the importance of HTTP compression and minification.</p>
<p>Also note that jQuery 1.8 allows you to create custom builds containing only the modules you need, in case file size is an issue.</p>
<table>
<thead>
<tr>
<th>jQuery version</th>
<th>Normal file size (bytes)</th>
<th>Gzipped file size (bytes)</th>
<th>Zopflinated file size (bytes)</th>
<th>Minified file size (bytes)</th>
<th>Minified and gzipped file size (bytes)</th>
<th>Minified and Zopflinated file size (bytes)</th>
</tr>
</thead>
<tbody>
<tr>
<th>1.2</th>
<td>79,259 <span>bytes (77.40 KB)</span></td>
<td>24,778 <span>bytes (24.20 KB)</span></td>
<td>23,513 <span>bytes (22.96 KB)</span></td>
<td>45,707 <span>bytes (44.64 KB)</span></td>
<td>14,610 <span>bytes (14.27 KB)</span></td>
<td>13,955 <span>bytes (13.63 KB)</span></td>
</tr>
<tr>
<th>1.2.1</th>
<td>80,469 <span>bytes (78.58 KB)</span>
<i class=increase>Δ +1,210 bytes</i>
</td>
<td>25,067 <span>bytes (24.48 KB)</span>
<i class=increase>Δ +289 bytes</i>
</td>
<td>23,783 <span>bytes (23.23 KB)</span>
<i class=increase>Δ +1,210 bytes</i>
</td>
<td>46,437 <span>bytes (45.35 KB)</span>
<i class=increase>Δ +730 bytes</i>
</td>
<td>14,770 <span>bytes (14.42 KB)</span>
<i class=increase>Δ +160 bytes</i>
</td>
<td>14,100 <span>bytes (13.77 KB)</span>
<i class=increase>Δ +145 bytes</i>
</td>
</tr>
<tr>
<th>1.2.2</th>
<td>95,285 <span>bytes (93.05 KB)</span>
<i class=increase>Δ +14,816 bytes</i>
</td>
<td>28,709 <span>bytes (28.04 KB)</span>
<i class=increase>Δ +3,642 bytes</i>
</td>
<td>27,206 <span>bytes (26.57 KB)</span>
<i class=increase>Δ +14,816 bytes</i>
</td>
<td>52,656 <span>bytes (51.42 KB)</span>
<i class=increase>Δ +6,219 bytes</i>
</td>
<td>15,780 <span>bytes (15.41 KB)</span>
<i class=increase>Δ +1,010 bytes</i>
</td>
<td>15,081 <span>bytes (14.73 KB)</span>
<i class=increase>Δ +981 bytes</i>
</td>
</tr>
<tr>
<th>1.2.3</th>
<td>96,763 <span>bytes (94.50 KB)</span>
<i class=increase>Δ +1,478 bytes</i>
</td>
<td>28,964 <span>bytes (28.29 KB)</span>
<i class=increase>Δ +255 bytes</i>
</td>
<td>27,476 <span>bytes (26.83 KB)</span>
<i class=increase>Δ +1,478 bytes</i>
</td>
<td>54,075 <span>bytes (52.81 KB)</span>
<i class=increase>Δ +1,419 bytes</i>
</td>
<td>16,020 <span>bytes (15.64 KB)</span>
<i class=increase>Δ +240 bytes</i>
</td>
<td>15,308 <span>bytes (14.95 KB)</span>
<i class=increase>Δ +227 bytes</i>
</td>
</tr>
<tr>
<th>1.2.4</th>
<td>97,623 <span>bytes (95.33 KB)</span>
<i class=increase>Δ +860 bytes</i>
</td>
<td>29,222 <span>bytes (28.54 KB)</span>
<i class=increase>Δ +258 bytes</i>
</td>
<td>27,704 <span>bytes (27.05 KB)</span>
<i class=increase>Δ +860 bytes</i>
</td>
<td>54,620 <span>bytes (53.34 KB)</span>
<i class=increase>Δ +545 bytes</i>
</td>
<td>16,178 <span>bytes (15.80 KB)</span>
<i class=increase>Δ +158 bytes</i>
</td>
<td>15,460 <span>bytes (15.10 KB)</span>
<i class=increase>Δ +152 bytes</i>
</td>
</tr>
<tr>
<th>1.2.5</th>
<td>99,997 <span>bytes (97.65 KB)</span>
<i class=increase>Δ +2,374 bytes</i>
</td>
<td>30,376 <span>bytes (29.66 KB)</span>
<i class=increase>Δ +1,154 bytes</i>
</td>
<td>28,790 <span>bytes (28.12 KB)</span>
<i class=increase>Δ +2,374 bytes</i>
</td>
<td>55,715 <span>bytes (54.41 KB)</span>
<i class=increase>Δ +1,095 bytes</i>
</td>
<td>16,861 <span>bytes (16.47 KB)</span>
<i class=increase>Δ +683 bytes</i>
</td>
<td>16,107 <span>bytes (15.73 KB)</span>
<i class=increase>Δ +647 bytes</i>
</td>
</tr>
<tr>
<th>1.2.6</th>
<td>100,196 <span>bytes (97.85 KB)</span>
<i class=increase>Δ +199 bytes</i>
</td>
<td>30,444 <span>bytes (29.73 KB)</span>
<i class=increase>Δ +68 bytes</i>
</td>
<td>28,856 <span>bytes (28.18 KB)</span>
<i class=increase>Δ +199 bytes</i>
</td>
<td>55,774 <span>bytes (54.47 KB)</span>
<i class=increase>Δ +59 bytes</i>
</td>
<td>16,885 <span>bytes (16.49 KB)</span>
<i class=increase>Δ +24 bytes</i>
</td>
<td>16,129 <span>bytes (15.75 KB)</span>
<i class=increase>Δ +22 bytes</i>
</td>
</tr>
<tr>
<th>1.3</th>
<td>116,798 <span>bytes (114.06 KB)</span>
<i class=increase>Δ +16,602 bytes</i>
</td>
<td>34,463 <span>bytes (33.66 KB)</span>
<i class=increase>Δ +4,019 bytes</i>
</td>
<td>32,648 <span>bytes (31.88 KB)</span>
<i class=increase>Δ +16,602 bytes</i>
</td>
<td>55,026 <span>bytes (53.74 KB)</span>
<i class=decrease>Δ -748 bytes</i>
</td>
<td>19,221 <span>bytes (18.77 KB)</span>
<i class=increase>Δ +2,336 bytes</i>
</td>
<td>18,409 <span>bytes (17.98 KB)</span>
<i class=increase>Δ +2,280 bytes</i>
</td>
</tr>
<tr>
<th>1.3.1</th>
<td>117,302 <span>bytes (114.55 KB)</span>
<i class=increase>Δ +504 bytes</i>
</td>
<td>34,624 <span>bytes (33.81 KB)</span>
<i class=increase>Δ +161 bytes</i>
</td>
<td>32,807 <span>bytes (32.04 KB)</span>
<i class=increase>Δ +504 bytes</i>
</td>
<td>55,272 <span>bytes (53.98 KB)</span>
<i class=increase>Δ +246 bytes</i>
</td>
<td>19,344 <span>bytes (18.89 KB)</span>
<i class=increase>Δ +123 bytes</i>
</td>
<td>18,510 <span>bytes (18.08 KB)</span>
<i class=increase>Δ +101 bytes</i>
</td>
</tr>
<tr>
<th>1.3.2</th>
<td>120,619 <span>bytes (117.79 KB)</span>
<i class=increase>Δ +3,317 bytes</i>
</td>
<td>35,410 <span>bytes (34.58 KB)</span>
<i class=increase>Δ +786 bytes</i>
</td>
<td>33,505 <span>bytes (32.72 KB)</span>
<i class=increase>Δ +3,317 bytes</i>
</td>
<td>57,254 <span>bytes (55.91 KB)</span>
<i class=increase>Δ +1,982 bytes</i>
</td>
<td>19,936 <span>bytes (19.47 KB)</span>
<i class=increase>Δ +592 bytes</i>
</td>
<td>19,073 <span>bytes (18.63 KB)</span>
<i class=increase>Δ +563 bytes</i>
</td>
</tr>
<tr>
<th>1.4</th>
<td>158,407 <span>bytes (154.69 KB)</span>
<i class=increase>Δ +37,788 bytes</i>
</td>
<td>44,946 <span>bytes (43.89 KB)</span>
<i class=increase>Δ +9,536 bytes</i>
</td>
<td>42,503 <span>bytes (41.51 KB)</span>
<i class=increase>Δ +37,788 bytes</i>
</td>
<td>69,838 <span>bytes (68.20 KB)</span>
<i class=increase>Δ +12,584 bytes</i>
</td>
<td>23,851 <span>bytes (23.29 KB)</span>
<i class=increase>Δ +3,915 bytes</i>
</td>
<td>22,934 <span>bytes (22.40 KB)</span>
<i class=increase>Δ +3,861 bytes</i>
</td>
</tr>
<tr>
<th>1.4.1</th>
<td>160,712 <span>bytes (156.95 KB)</span>
<i class=increase>Δ +2,305 bytes</i>
</td>
<td>45,544 <span>bytes (44.48 KB)</span>
<i class=increase>Δ +598 bytes</i>
</td>
<td>43,033 <span>bytes (42.02 KB)</span>
<i class=increase>Δ +2,305 bytes</i>
</td>
<td>70,843 <span>bytes (69.18 KB)</span>
<i class=increase>Δ +1,005 bytes</i>
</td>
<td>24,190 <span>bytes (23.62 KB)</span>
<i class=increase>Δ +339 bytes</i>
</td>
<td>23,247 <span>bytes (22.70 KB)</span>
<i class=increase>Δ +313 bytes</i>
</td>
</tr>
<tr>
<th>1.4.2</th>
<td>163,855 <span>bytes (160.01 KB)</span>
<i class=increase>Δ +3,143 bytes</i>
</td>
<td>46,230 <span>bytes (45.15 KB)</span>
<i class=increase>Δ +686 bytes</i>
</td>
<td>43,668 <span>bytes (42.64 KB)</span>
<i class=increase>Δ +3,143 bytes</i>
</td>
<td>72,174 <span>bytes (70.48 KB)</span>
<i class=increase>Δ +1,331 bytes</i>
</td>
<td>24,738 <span>bytes (24.16 KB)</span>
<i class=increase>Δ +548 bytes</i>
</td>
<td>23,794 <span>bytes (23.24 KB)</span>
<i class=increase>Δ +547 bytes</i>
</td>
</tr>
<tr>
<th>1.4.3</th>
<td>180,459 <span>bytes (176.23 KB)</span>
<i class=increase>Δ +16,604 bytes</i>
</td>
<td>51,266 <span>bytes (50.06 KB)</span>
<i class=increase>Δ +5,036 bytes</i>
</td>
<td>48,449 <span>bytes (47.31 KB)</span>
<i class=increase>Δ +16,604 bytes</i>
</td>
<td>77,746 <span>bytes (75.92 KB)</span>
<i class=increase>Δ +5,572 bytes</i>
</td>
<td>26,945 <span>bytes (26.31 KB)</span>
<i class=increase>Δ +2,207 bytes</i>
</td>
<td>25,868 <span>bytes (25.26 KB)</span>
<i class=increase>Δ +2,074 bytes</i>
</td>
</tr>
<tr>
<th>1.4.4</th>
<td>183,184 <span>bytes (178.89 KB)</span>
<i class=increase>Δ +2,725 bytes</i>
</td>
<td>51,977 <span>bytes (50.76 KB)</span>
<i class=increase>Δ +711 bytes</i>
</td>
<td>49,044 <span>bytes (47.89 KB)</span>
<i class=increase>Δ +2,725 bytes</i>
</td>
<td>78,601 <span>bytes (76.76 KB)</span>
<i class=increase>Δ +855 bytes</i>
</td>
<td>27,281 <span>bytes (26.64 KB)</span>
<i class=increase>Δ +336 bytes</i>
</td>
<td>26,190 <span>bytes (25.58 KB)</span>
<i class=increase>Δ +322 bytes</i>
</td>
</tr>
<tr>
<th>1.5</th>
<td>211,978 <span>bytes (207.01 KB)</span>
<i class=increase>Δ +28,794 bytes</i>
</td>
<td>61,048 <span>bytes (59.62 KB)</span>
<i class=increase>Δ +9,071 bytes</i>
</td>
<td>57,535 <span>bytes (56.19 KB)</span>
<i class=increase>Δ +28,794 bytes</i>
</td>
<td>84,362 <span>bytes (82.38 KB)</span>
<i class=increase>Δ +5,761 bytes</i>
</td>
<td>29,561 <span>bytes (28.87 KB)</span>
<i class=increase>Δ +2,280 bytes</i>
</td>
<td>28,280 <span>bytes (27.62 KB)</span>
<i class=increase>Δ +2,090 bytes</i>
</td>
</tr>
<tr>
<th>1.5.1</th>
<td>216,840 <span>bytes (211.76 KB)</span>
<i class=increase>Δ +4,862 bytes</i>
</td>
<td>62,677 <span>bytes (61.21 KB)</span>
<i class=increase>Δ +1,629 bytes</i>
</td>
<td>59,072 <span>bytes (57.69 KB)</span>
<i class=increase>Δ +4,862 bytes</i>
</td>
<td>85,260 <span>bytes (83.26 KB)</span>
<i class=increase>Δ +898 bytes</i>
</td>
<td>29,888 <span>bytes (29.19 KB)</span>
<i class=increase>Δ +327 bytes</i>
</td>
<td>28,590 <span>bytes (27.92 KB)</span>
<i class=increase>Δ +310 bytes</i>
</td>
</tr>
<tr>
<th>1.5.2</th>
<td>219,227 <span>bytes (214.09 KB)</span>
<i class=increase>Δ +2,387 bytes</i>
</td>
<td>63,504 <span>bytes (62.02 KB)</span>
<i class=increase>Δ +827 bytes</i>
</td>
<td>59,879 <span>bytes (58.48 KB)</span>
<i class=increase>Δ +2,387 bytes</i>
</td>
<td>85,925 <span>bytes (83.91 KB)</span>
<i class=increase>Δ +665 bytes</i>
</td>
<td>30,130 <span>bytes (29.42 KB)</span>
<i class=increase>Δ +242 bytes</i>
</td>
<td>28,824 <span>bytes (28.15 KB)</span>
<i class=increase>Δ +234 bytes</i>
</td>
</tr>
<tr>
<th>1.6</th>
<td>232,651 <span>bytes (227.20 KB)</span>
<i class=increase>Δ +13,424 bytes</i>
</td>
<td>67,115 <span>bytes (65.54 KB)</span>
<i class=increase>Δ +3,611 bytes</i>
</td>
<td>63,344 <span>bytes (61.86 KB)</span>
<i class=increase>Δ +13,424 bytes</i>
</td>
<td>90,518 <span>bytes (88.40 KB)</span>
<i class=increase>Δ +4,593 bytes</i>
</td>
<td>31,791 <span>bytes (31.05 KB)</span>
<i class=increase>Δ +1,661 bytes</i>
</td>
<td>30,462 <span>bytes (29.75 KB)</span>
<i class=increase>Δ +1,638 bytes</i>
</td>
</tr>
<tr>
<th>1.6.1</th>
<td>234,995 <span>bytes (229.49 KB)</span>
<i class=increase>Δ +2,344 bytes</i>
</td>
<td>67,761 <span>bytes (66.17 KB)</span>
<i class=increase>Δ +646 bytes</i>
</td>
<td>63,993 <span>bytes (62.49 KB)</span>
<i class=increase>Δ +2,344 bytes</i>
</td>
<td>91,342 <span>bytes (89.20 KB)</span>
<i class=increase>Δ +824 bytes</i>
</td>
<td>32,170 <span>bytes (31.42 KB)</span>
<i class=increase>Δ +379 bytes</i>
</td>
<td>30,812 <span>bytes (30.09 KB)</span>
<i class=increase>Δ +350 bytes</i>
</td>
</tr>
<tr>
<th>1.6.2</th>
<td>236,202 <span>bytes (230.67 KB)</span>
<i class=increase>Δ +1,207 bytes</i>
</td>
<td>68,103 <span>bytes (66.51 KB)</span>
<i class=increase>Δ +342 bytes</i>
</td>
<td>64,272 <span>bytes (62.77 KB)</span>
<i class=increase>Δ +1,207 bytes</i>
</td>
<td>91,556 <span>bytes (89.41 KB)</span>
<i class=increase>Δ +214 bytes</i>
</td>
<td>32,285 <span>bytes (31.53 KB)</span>
<i class=increase>Δ +115 bytes</i>
</td>
<td>30,915 <span>bytes (30.19 KB)</span>
<i class=increase>Δ +103 bytes</i>
</td>
</tr>
<tr>
<th>1.6.3</th>
<td>238,009 <span>bytes (232.43 KB)</span>
<i class=increase>Δ +1,807 bytes</i>
</td>
<td>68,833 <span>bytes (67.22 KB)</span>
<i class=increase>Δ +730 bytes</i>
</td>
<td>64,975 <span>bytes (63.45 KB)</span>
<i class=increase>Δ +1,807 bytes</i>
</td>
<td>91,626 <span>bytes (89.48 KB)</span>
<i class=increase>Δ +70 bytes</i>
</td>
<td>32,265 <span>bytes (31.51 KB)</span>
<i class=decrease>Δ -20 bytes</i>
</td>
<td>30,894 <span>bytes (30.17 KB)</span>
<i class=decrease>Δ -21 bytes</i>
</td>
</tr>
<tr>
<th>1.6.4</th>
<td>238,159 <span>bytes (232.58 KB)</span>
<i class=increase>Δ +150 bytes</i>
</td>
<td>68,880 <span>bytes (67.27 KB)</span>
<i class=increase>Δ +47 bytes</i>
</td>
<td>64,980 <span>bytes (63.46 KB)</span>
<i class=increase>Δ +150 bytes</i>
</td>
<td>91,669 <span>bytes (89.52 KB)</span>
<i class=increase>Δ +43 bytes</i>
</td>
<td>32,270 <span>bytes (31.51 KB)</span>
<i class=increase>Δ +5 bytes</i>
</td>
<td>30,902 <span>bytes (30.18 KB)</span>
<i class=increase>Δ +8 bytes</i>
</td>
</tr>
<tr>
<th>1.7</th>
<td>249,159 <span>bytes (243.32 KB)</span>
<i class=increase>Δ +11,000 bytes</i>
</td>
<td>73,007 <span>bytes (71.30 KB)</span>
<i class=increase>Δ +4,127 bytes</i>
</td>
<td>68,884 <span>bytes (67.27 KB)</span>
<i class=increase>Δ +11,000 bytes</i>
</td>
<td>94,020 <span>bytes (91.82 KB)</span>
<i class=increase>Δ +2,351 bytes</i>
</td>
<td>33,503 <span>bytes (32.72 KB)</span>
<i class=increase>Δ +1,233 bytes</i>
</td>
<td>32,094 <span>bytes (31.34 KB)</span>
<i class=increase>Δ +1,192 bytes</i>
</td>
</tr>
<tr>
<th>1.7.1</th>
<td>248,235 <span>bytes (242.42 KB)</span>
<i class=decrease>Δ -924 bytes</i>
</td>
<td>72,686 <span>bytes (70.98 KB)</span>
<i class=decrease>Δ -321 bytes</i>
</td>
<td>68,613 <span>bytes (67.00 KB)</span>
<i class=decrease>Δ -924 bytes</i>
</td>
<td>93,868 <span>bytes (91.67 KB)</span>
<i class=decrease>Δ -152 bytes</i>
</td>
<td>33,375 <span>bytes (32.59 KB)</span>
<i class=decrease>Δ -128 bytes</i>
</td>
<td>31,986 <span>bytes (31.24 KB)</span>
<i class=decrease>Δ -108 bytes</i>
</td>
</tr>
<tr>
<th>1.7.2</th>
<td>252,881 <span>bytes (246.95 KB)</span>
<i class=increase>Δ +4,646 bytes</i>
</td>
<td>74,030 <span>bytes (72.29 KB)</span>
<i class=increase>Δ +1,344 bytes</i>
</td>
<td>69,926 <span>bytes (68.29 KB)</span>
<i class=increase>Δ +4,646 bytes</i>
</td>
<td>94,840 <span>bytes (92.62 KB)</span>
<i class=increase>Δ +972 bytes</i>
</td>
<td>33,883 <span>bytes (33.09 KB)</span>
<i class=increase>Δ +508 bytes</i>
</td>
<td>32,471 <span>bytes (31.71 KB)</span>
<i class=increase>Δ +485 bytes</i>
</td>
</tr>
<tr>
<th>1.8.0</th>
<td>258,377 <span>bytes (252.32 KB)</span>
<i class=increase>Δ +5,496 bytes</i>
</td>
<td>76,939 <span>bytes (75.14 KB)</span>
<i class=increase>Δ +2,909 bytes</i>
</td>
<td>72,744 <span>bytes (71.04 KB)</span>
<i class=increase>Δ +5,496 bytes</i>
</td>
<td>92,555 <span>bytes (90.39 KB)</span>
<i class=decrease>Δ -2,285 bytes</i>
</td>
<td>33,318 <span>bytes (32.54 KB)</span>
<i class=decrease>Δ -565 bytes</i>
</td>
<td>31,949 <span>bytes (31.20 KB)</span>
<i class=decrease>Δ -522 bytes</i>
</td>
</tr>
<tr>
<th>1.8.1</th>
<td>259,996 <span>bytes (253.90 KB)</span>
<i class=increase>Δ +1,619 bytes</i>
</td>
<td>77,545 <span>bytes (75.73 KB)</span>
<i class=increase>Δ +606 bytes</i>
</td>
<td>73,346 <span>bytes (71.63 KB)</span>
<i class=increase>Δ +1,619 bytes</i>
</td>
<td>92,792 <span>bytes (90.62 KB)</span>
<i class=increase>Δ +237 bytes</i>
</td>
<td>33,427 <span>bytes (32.64 KB)</span>
<i class=increase>Δ +109 bytes</i>
</td>
<td>32,070 <span>bytes (31.32 KB)</span>
<i class=increase>Δ +121 bytes</i>
</td>
</tr>
<tr>
<th>1.8.2</th>
<td>265,218 <span>bytes (259.00 KB)</span>
<i class=increase>Δ +5,222 bytes</i>
</td>
<td>79,123 <span>bytes (77.27 KB)</span>
<i class=increase>Δ +1,578 bytes</i>
</td>
<td>74,808 <span>bytes (73.05 KB)</span>
<i class=increase>Δ +5,222 bytes</i>
</td>
<td>93,435 <span>bytes (91.25 KB)</span>
<i class=increase>Δ +643 bytes</i>
</td>
<td>33,650 <span>bytes (32.86 KB)</span>
<i class=increase>Δ +223 bytes</i>
</td>
<td>32,271 <span>bytes (31.51 KB)</span>
<i class=increase>Δ +201 bytes</i>
</td>
</tr>
<tr>
<th>1.8.3</th>
<td>266,057 <span>bytes (259.82 KB)</span>
<i class=increase>Δ +839 bytes</i>
</td>
<td>79,476 <span>bytes (77.61 KB)</span>
<i class=increase>Δ +353 bytes</i>
</td>
<td>75,132 <span>bytes (73.37 KB)</span>
<i class=increase>Δ +839 bytes</i>
</td>
<td>93,636 <span>bytes (91.44 KB)</span>
<i class=increase>Δ +201 bytes</i>
</td>
<td>33,621 <span>bytes (32.83 KB)</span>
<i class=decrease>Δ -29 bytes</i>
</td>
<td>32,273 <span>bytes (31.52 KB)</span>
<i class=increase>Δ +2 bytes</i>
</td>
</tr>
<tr>
<th>1.9.0</th>
<td>267,320 <span>bytes (261.05 KB)</span>
<i class=increase>Δ +1,263 bytes</i>
</td>
<td>79,677 <span>bytes (77.81 KB)</span>
<i class=increase>Δ +201 bytes</i>
</td>
<td>75,262 <span>bytes (73.50 KB)</span>
<i class=increase>Δ +1,263 bytes</i>
</td>
<td>93,068 <span>bytes (90.89 KB)</span>
<i class=decrease>Δ -568 bytes</i>
</td>
<td>33,170 <span>bytes (32.39 KB)</span>
<i class=decrease>Δ -451 bytes</i>
</td>
<td>31,801 <span>bytes (31.06 KB)</span>
<i class=decrease>Δ -472 bytes</i>
</td>
</tr>
<tr>
<th>1.9.1</th>
<td>268,381 <span>bytes (262.09 KB)</span>
<i class=increase>Δ +1,061 bytes</i>
</td>
<td>80,123 <span>bytes (78.25 KB)</span>
<i class=increase>Δ +446 bytes</i>
</td>
<td>75,739 <span>bytes (73.96 KB)</span>
<i class=increase>Δ +1,061 bytes</i>
</td>
<td>92,629 <span>bytes (90.46 KB)</span>
<i class=decrease>Δ -439 bytes</i>
</td>
<td>33,048 <span>bytes (32.27 KB)</span>
<i class=decrease>Δ -122 bytes</i>
</td>
<td>31,691 <span>bytes (30.95 KB)</span>
<i class=decrease>Δ -110 bytes</i>
</td>
</tr>
<tr>
<th>1.10.0</th>
<td>273,810 <span>bytes (267.39 KB)</span>
<i class=increase>Δ +5,429 bytes</i>
</td>
<td>81,682 <span>bytes (79.77 KB)</span>
<i class=increase>Δ +1,559 bytes</i>
</td>
<td>77,170 <span>bytes (75.36 KB)</span>
<i class=increase>Δ +5,429 bytes</i>
</td>
<td>93,026 <span>bytes (90.85 KB)</span>
<i class=increase>Δ +397 bytes</i>
</td>
<td>32,999 <span>bytes (32.23 KB)</span>
<i class=decrease>Δ -49 bytes</i>
</td>
<td>31,687 <span>bytes (30.94 KB)</span>
<i class=decrease>Δ -4 bytes</i>
</td>
</tr>
<tr>
<th>1.10.1</th>
<td>274,080 <span>bytes (267.66 KB)</span>
<i class=increase>Δ +270 bytes</i>
</td>
<td>81,785 <span>bytes (79.87 KB)</span>
<i class=increase>Δ +103 bytes</i>
</td>
<td>77,236 <span>bytes (75.43 KB)</span>
<i class=increase>Δ +270 bytes</i>
</td>
<td>93,064 <span>bytes (90.88 KB)</span>
<i class=increase>Δ +38 bytes</i>
</td>
<td>33,020 <span>bytes (32.25 KB)</span>
<i class=increase>Δ +21 bytes</i>
</td>
<td>31,712 <span>bytes (30.97 KB)</span>
<i class=increase>Δ +25 bytes</i>
</td>
</tr>
<tr>
<th>1.10.2</th>
<td>273,199 <span>bytes (266.80 KB)</span>
<i class=decrease>Δ -881 bytes</i>
</td>
<td>81,429 <span>bytes (79.52 KB)</span>
<i class=decrease>Δ -356 bytes</i>
</td>
<td>76,896 <span>bytes (75.09 KB)</span>
<i class=decrease>Δ -881 bytes</i>
</td>
<td>93,107 <span>bytes (90.92 KB)</span>
<i class=increase>Δ +43 bytes</i>
</td>
<td>32,993 <span>bytes (32.22 KB)</span>
<i class=decrease>Δ -27 bytes</i>
</td>
<td>31,669 <span>bytes (30.93 KB)</span>
<i class=decrease>Δ -43 bytes</i>
</td>
</tr>
<tr>
<th>1.11.0</th>
<td>282,944 <span>bytes (276.31 KB)</span>
<i class=increase>Δ +9,745 bytes</i>
</td>
<td>84,199 <span>bytes (82.23 KB)</span>
<i class=increase>Δ +2,770 bytes</i>
</td>
<td>79,584 <span>bytes (77.72 KB)</span>
<i class=increase>Δ +9,745 bytes</i>
</td>
<td>96,381 <span>bytes (94.12 KB)</span>
<i class=increase>Δ +3,274 bytes</i>
</td>
<td>33,619 <span>bytes (32.83 KB)</span>
<i class=increase>Δ +626 bytes</i>
</td>
<td>32,240 <span>bytes (31.48 KB)</span>
<i class=increase>Δ +571 bytes</i>
</td>
</tr>
<tr>
<th>1.11.1</th>
<td>282,766 <span>bytes (276.14 KB)</span>
<i class=decrease>Δ -178 bytes</i>
</td>
<td>84,496 <span>bytes (82.52 KB)</span>
<i class=increase>Δ +297 bytes</i>
</td>
<td>79,880 <span>bytes (78.01 KB)</span>
<i class=increase>Δ +-178 bytes</i>
</td>
<td>95,786 <span>bytes (93.54 KB)</span>
<i class=decrease>Δ -595 bytes</i>
</td>
<td>33,469 <span>bytes (32.68 KB)</span>
<i class=decrease>Δ -150 bytes</i>
</td>
<td>32,095 <span>bytes (31.34 KB)</span>
<i class=decrease>Δ -145 bytes</i>
</td>
</tr>
<tr>
<th>1.11.2</th>
<td>284,184 <span>bytes (277.52 KB)</span>
<i class=increase>Δ +1,418 bytes</i>
</td>
<td>85,078 <span>bytes (83.08 KB)</span>
<i class=increase>Δ +582 bytes</i>
</td>
<td>80,425 <span>bytes (78.54 KB)</span>
<i class=increase>Δ +1,418 bytes</i>
</td>
<td>95,931 <span>bytes (93.68 KB)</span>
<i class=increase>Δ +145 bytes</i>
</td>
<td>33,533 <span>bytes (32.75 KB)</span>
<i class=increase>Δ +64 bytes</i>
</td>
<td>32,165 <span>bytes (31.41 KB)</span>
<i class=increase>Δ +70 bytes</i>
</td>
</tr>
<tr>
<th>1.11.3</th>
<td>284,394 <span>bytes (277.73 KB)</span>
<i class=increase>Δ +210 bytes</i>
</td>
<td>85,183 <span>bytes (83.19 KB)</span>
<i class=increase>Δ +105 bytes</i>
</td>
<td>80,525 <span>bytes (78.64 KB)</span>
<i class=increase>Δ +210 bytes</i>
</td>
<td>95,957 <span>bytes (93.71 KB)</span>
<i class=increase>Δ +26 bytes</i>
</td>
<td>33,521 <span>bytes (32.74 KB)</span>
<i class=decrease>Δ -12 bytes</i>
</td>
<td>32,168 <span>bytes (31.41 KB)</span>
<i class=increase>Δ +3 bytes</i>
</td>
</tr>
<tr>
<th>1.12.0</th>
<td>294,161 <span>bytes (287.27 KB)</span>
<i class=increase>Δ +9,767 bytes</i>
</td>
<td>88,057 <span>bytes (85.99 KB)</span>
<i class=increase>Δ +2,874 bytes</i>
</td>
<td>83,236 <span>bytes (81.29 KB)</span>
<i class=increase>Δ +9,767 bytes</i>
</td>
<td>97,362 <span>bytes (95.08 KB)</span>
<i class=increase>Δ +1,405 bytes</i>
</td>
<td>34,081 <span>bytes (33.28 KB)</span>
<i class=increase>Δ +560 bytes</i>
</td>
<td>32,657 <span>bytes (31.89 KB)</span>
<i class=increase>Δ +489 bytes</i>
</td>
</tr>
<tr>
<th>1.12.1</th>
<td>294,199 <span>bytes (287.30 KB)</span>
<i class=increase>Δ +38 bytes</i>
</td>
<td>88,057 <span>bytes (85.99 KB)</span>
<i class=decrease>Δ 0 bytes</i>
</td>
<td>83,175 <span>bytes (81.23 KB)</span>
<i class=decrease>Δ 38 bytes</i>
</td>
<td>97,403 <span>bytes (95.12 KB)</span>
<i class=increase>Δ +41 bytes</i>
</td>
<td>34,094 <span>bytes (33.29 KB)</span>
<i class=increase>Δ +13 bytes</i>
</td>
<td>32,666 <span>bytes (31.90 KB)</span>
<i class=increase>Δ +9 bytes</i>
</td>
</tr>
<tr>
<th>1.12.2</th>
<td>293,840 <span>bytes (286.95 KB)</span>
<i class=decrease>Δ -359 bytes</i>
</td>
<td>87,924 <span>bytes (85.86 KB)</span>
<i class=decrease>Δ -133 bytes</i>
</td>
<td>83,105 <span>bytes (81.16 KB)</span>
<i class=decrease>Δ -359 bytes</i>
</td>
<td>97,244 <span>bytes (94.96 KB)</span>
<i class=decrease>Δ -159 bytes</i>
</td>
<td>34,044 <span>bytes (33.25 KB)</span>
<i class=decrease>Δ -50 bytes</i>
</td>
<td>32,616 <span>bytes (31.85 KB)</span>
<i class=decrease>Δ -50 bytes</i>
</td>
</tr>
<tr>
<th>1.12.3</th>
<td>293,650 <span>bytes (286.77 KB)</span>
<i class=decrease>Δ -190 bytes</i>
</td>
<td>87,863 <span>bytes (85.80 KB)</span>
<i class=decrease>Δ -61 bytes</i>
</td>
<td>83,050 <span>bytes (81.10 KB)</span>
<i class=decrease>Δ -190 bytes</i>
</td>
<td>97,180 <span>bytes (94.90 KB)</span>
<i class=decrease>Δ -64 bytes</i>
</td>
<td>34,027 <span>bytes (33.23 KB)</span>
<i class=decrease>Δ -17 bytes</i>
</td>
<td>32,601 <span>bytes (31.84 KB)</span>
<i class=decrease>Δ -15 bytes</i>
</td>
</tr>
<tr>
<th>1.12.4</th>
<td>293,430 <span>bytes (286.55 KB)</span>
<i class=decrease>Δ -220 bytes</i>
</td>
<td>87,812 <span>bytes (85.75 KB)</span>
<i class=decrease>Δ -51 bytes</i>
</td>
<td>82,957 <span>bytes (81.01 KB)</span>
<i class=decrease>Δ -220 bytes</i>
</td>
<td>97,163 <span>bytes (94.89 KB)</span>
<i class=decrease>Δ -17 bytes</i>
</td>
<td>33,987 <span>bytes (33.19 KB)</span>
<i class=decrease>Δ -40 bytes</i>
</td>
<td>32,568 <span>bytes (31.80 KB)</span>
<i class=decrease>Δ -33 bytes</i>
</td>
</tr>
<tr>
<th>2.0.0</th>
<td>240,196 <span>bytes (234.57 KB)</span>
<i class=decrease>Δ -53,234 bytes</i>
</td>
<td>71,316 <span>bytes (69.64 KB)</span>
<i class=decrease>Δ -16,496 bytes</i>
</td>
<td>67,404 <span>bytes (65.82 KB)</span>
<i class=decrease>Δ -53,234 bytes</i>
</td>
<td>83,095 <span>bytes (81.15 KB)</span>
<i class=decrease>Δ -14,068 bytes</i>
</td>
<td>29,244 <span>bytes (28.56 KB)</span>
<i class=decrease>Δ -4,743 bytes</i>
</td>