|
...
|
...
|
@@ -1,7 +1,7 @@
|
|
1
|
|
-From db92a9fe6f63daf1ad6df8e62f2bb32d80399058 Mon Sep 17 00:00:00 2001
|
|
|
1
|
+From f8d5684a26a77a20e4e77aff73ca9c96ac063ed4 Mon Sep 17 00:00:00 2001
|
|
2
|
2
|
From: DheerajSShetty <dheerajs@vmware.com>
|
|
3
|
|
-Date: Thu, 26 Jul 2018 12:20:03 -0700
|
|
4
|
|
-Subject: [PATCH] VKE patches on Kubernets v1.11.1 (16081a2)
|
|
|
3
|
+Date: Tue, 16 Oct 2018 15:49:44 -0700
|
|
|
4
|
+Subject: [PATCH] VKE patch for k8s 1.11.3 (350444)
|
|
5
|
5
|
|
|
6
|
6
|
---
|
|
7
|
7
|
api/swagger-spec/apps_v1alpha1.json | 21 +
|
|
...
|
...
|
@@ -17,35 +17,24 @@ Subject: [PATCH] VKE patches on Kubernets v1.11.1 (16081a2)
|
|
17
|
17
|
cmd/kube-controller-manager/app/plugins.go | 4 +
|
|
18
|
18
|
cmd/kubelet/app/BUILD | 1 +
|
|
19
|
19
|
cmd/kubelet/app/plugins.go | 2 +
|
|
20
|
|
- pkg/apis/apps/v1/zz_generated.defaults.go | 24 +-
|
|
21
|
|
- pkg/apis/apps/v1beta1/zz_generated.defaults.go | 12 +-
|
|
22
|
|
- pkg/apis/apps/v1beta2/zz_generated.defaults.go | 24 +-
|
|
23
|
|
- pkg/apis/batch/v1/zz_generated.defaults.go | 6 +-
|
|
24
|
|
- pkg/apis/batch/v1beta1/zz_generated.defaults.go | 12 +-
|
|
25
|
|
- pkg/apis/batch/v2alpha1/zz_generated.defaults.go | 12 +-
|
|
26
|
20
|
pkg/apis/core/types.go | 14 +
|
|
27
|
|
- pkg/apis/core/v1/zz_generated.conversion.go | 32 +-
|
|
28
|
|
- pkg/apis/core/v1/zz_generated.defaults.go | 24 +-
|
|
29
|
21
|
pkg/apis/core/validation/validation.go | 25 +
|
|
30
|
|
- pkg/apis/core/zz_generated.deepcopy.go | 34 +
|
|
31
|
|
- .../extensions/v1beta1/zz_generated.defaults.go | 18 +-
|
|
32
|
22
|
pkg/apis/policy/types.go | 1 +
|
|
33
|
|
- .../settings/v1alpha1/zz_generated.defaults.go | 6 +-
|
|
34
|
23
|
pkg/cloudprovider/providers/BUILD | 2 +
|
|
35
|
24
|
pkg/cloudprovider/providers/cascade/BUILD | 56 +
|
|
36
|
25
|
pkg/cloudprovider/providers/cascade/OWNERS | 3 +
|
|
37
|
|
- pkg/cloudprovider/providers/cascade/apitypes.go | 229 ++
|
|
|
26
|
+ pkg/cloudprovider/providers/cascade/apitypes.go | 230 ++
|
|
38
|
27
|
pkg/cloudprovider/providers/cascade/auth.go | 145 ++
|
|
39
|
|
- pkg/cloudprovider/providers/cascade/cascade.go | 214 ++
|
|
40
|
|
- .../providers/cascade/cascade_disks.go | 227 ++
|
|
41
|
|
- .../providers/cascade/cascade_instances.go | 98 +
|
|
|
28
|
+ pkg/cloudprovider/providers/cascade/cascade.go | 215 ++
|
|
|
29
|
+ .../providers/cascade/cascade_disks.go | 228 ++
|
|
|
30
|
+ .../providers/cascade/cascade_instances.go | 132 +
|
|
42
|
31
|
.../providers/cascade/cascade_instances_test.go | 44 +
|
|
43
|
32
|
.../providers/cascade/cascade_loadbalancer.go | 285 +++
|
|
44
|
33
|
pkg/cloudprovider/providers/cascade/client.go | 399 +++
|
|
45
|
34
|
pkg/cloudprovider/providers/cascade/oidcclient.go | 297 +++
|
|
46
|
35
|
pkg/cloudprovider/providers/cascade/restclient.go | 262 ++
|
|
47
|
36
|
pkg/cloudprovider/providers/cascade/tests_owed | 5 +
|
|
48
|
|
- pkg/cloudprovider/providers/cascade/utils.go | 25 +
|
|
|
37
|
+ pkg/cloudprovider/providers/cascade/utils.go | 29 +
|
|
49
|
38
|
pkg/cloudprovider/providers/providers.go | 1 +
|
|
50
|
39
|
pkg/kubeapiserver/authorizer/config.go | 8 +-
|
|
51
|
40
|
pkg/kubeapiserver/authorizer/modes/modes.go | 3 +-
|
|
...
|
...
|
@@ -56,20 +45,18 @@ Subject: [PATCH] VKE patches on Kubernets v1.11.1 (16081a2)
|
|
56
|
56
|
pkg/volume/cascade_disk/OWNERS | 2 +
|
|
57
|
57
|
pkg/volume/cascade_disk/attacher.go | 264 ++
|
|
58
|
58
|
pkg/volume/cascade_disk/cascade_disk.go | 390 +++
|
|
59
|
|
- pkg/volume/cascade_disk/cascade_util.go | 152 ++
|
|
|
59
|
+ pkg/volume/cascade_disk/cascade_util.go | 162 ++
|
|
60
|
60
|
.../storage/persistentvolume/label/admission.go | 54 +
|
|
61
|
|
- plugin/pkg/admission/vke/BUILD | 60 +
|
|
62
|
|
- plugin/pkg/admission/vke/admission.go | 555 ++++
|
|
63
|
|
- plugin/pkg/admission/vke/admission_test.go | 882 +++++++
|
|
64
|
|
- plugin/pkg/auth/authorizer/vke/BUILD | 30 +
|
|
|
61
|
+ plugin/pkg/admission/vke/BUILD | 61 +
|
|
|
62
|
+ plugin/pkg/admission/vke/admission.go | 624 +++++
|
|
|
63
|
+ plugin/pkg/admission/vke/admission_test.go | 960 +++++++
|
|
|
64
|
+ plugin/pkg/auth/authorizer/vke/BUILD | 40 +
|
|
65
|
65
|
plugin/pkg/auth/authorizer/vke/OWNERS | 2 +
|
|
66
|
|
- plugin/pkg/auth/authorizer/vke/vke_authorizer.go | 63 +
|
|
67
|
|
- staging/src/k8s.io/api/core/v1/generated.pb.go | 2688 +++++++++++---------
|
|
68
|
|
- staging/src/k8s.io/api/core/v1/generated.proto | 27 +-
|
|
|
66
|
+ plugin/pkg/auth/authorizer/vke/vke_authorizer.go | 125 +
|
|
|
67
|
+ .../pkg/auth/authorizer/vke/vke_authorizer_test.go | 230 ++
|
|
|
68
|
+ staging/src/k8s.io/api/core/v1/generated.pb.go | 2686 +++++++++++---------
|
|
69
|
69
|
staging/src/k8s.io/api/core/v1/types.go | 24 +-
|
|
70
|
|
- .../api/core/v1/types_swagger_doc_generated.go | 16 +-
|
|
71
|
|
- .../k8s.io/api/core/v1/zz_generated.deepcopy.go | 50 +-
|
|
72
|
|
- 65 files changed, 6765 insertions(+), 1302 deletions(-)
|
|
|
70
|
+ 52 files changed, 7054 insertions(+), 1215 deletions(-)
|
|
73
|
71
|
|
|
74
|
72
|
diff --git a/api/swagger-spec/apps_v1alpha1.json b/api/swagger-spec/apps_v1alpha1.json
|
|
75
|
73
|
index 6f54662..0ce6f3f 100644
|
|
...
|
...
|
@@ -513,330 +500,6 @@ index 22700b0..540e501 100644
|
|
513
|
513
|
if utilfeature.DefaultFeatureGate.Enabled(features.CSIPersistentVolume) {
|
|
514
|
514
|
allPlugins = append(allPlugins, csi.ProbeVolumePlugins()...)
|
|
515
|
515
|
}
|
|
516
|
|
-diff --git a/pkg/apis/apps/v1/zz_generated.defaults.go b/pkg/apis/apps/v1/zz_generated.defaults.go
|
|
517
|
|
-index 8a4a0a5..36160c8 100644
|
|
518
|
|
-+++ b/pkg/apis/apps/v1/zz_generated.defaults.go
|
|
519
|
|
-@@ -71,9 +71,6 @@ func SetObjectDefaults_DaemonSet(in *v1.DaemonSet) {
|
|
520
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
521
|
|
- core_v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
522
|
|
- }
|
|
523
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
524
|
|
-- core_v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
525
|
|
-- }
|
|
526
|
|
- if a.VolumeSource.Projected != nil {
|
|
527
|
|
- core_v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
528
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
529
|
|
-@@ -94,6 +91,9 @@ func SetObjectDefaults_DaemonSet(in *v1.DaemonSet) {
|
|
530
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
531
|
|
- core_v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
532
|
|
- }
|
|
533
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
534
|
|
-+ core_v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
535
|
|
-+ }
|
|
536
|
|
- }
|
|
537
|
|
- for i := range in.Spec.Template.Spec.InitContainers {
|
|
538
|
|
- a := &in.Spec.Template.Spec.InitContainers[i]
|
|
539
|
|
-@@ -218,9 +218,6 @@ func SetObjectDefaults_Deployment(in *v1.Deployment) {
|
|
540
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
541
|
|
- core_v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
542
|
|
- }
|
|
543
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
544
|
|
-- core_v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
545
|
|
-- }
|
|
546
|
|
- if a.VolumeSource.Projected != nil {
|
|
547
|
|
- core_v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
548
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
549
|
|
-@@ -241,6 +238,9 @@ func SetObjectDefaults_Deployment(in *v1.Deployment) {
|
|
550
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
551
|
|
- core_v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
552
|
|
- }
|
|
553
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
554
|
|
-+ core_v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
555
|
|
-+ }
|
|
556
|
|
- }
|
|
557
|
|
- for i := range in.Spec.Template.Spec.InitContainers {
|
|
558
|
|
- a := &in.Spec.Template.Spec.InitContainers[i]
|
|
559
|
|
-@@ -365,9 +365,6 @@ func SetObjectDefaults_ReplicaSet(in *v1.ReplicaSet) {
|
|
560
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
561
|
|
- core_v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
562
|
|
- }
|
|
563
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
564
|
|
-- core_v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
565
|
|
-- }
|
|
566
|
|
- if a.VolumeSource.Projected != nil {
|
|
567
|
|
- core_v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
568
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
569
|
|
-@@ -388,6 +385,9 @@ func SetObjectDefaults_ReplicaSet(in *v1.ReplicaSet) {
|
|
570
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
571
|
|
- core_v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
572
|
|
- }
|
|
573
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
574
|
|
-+ core_v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
575
|
|
-+ }
|
|
576
|
|
- }
|
|
577
|
|
- for i := range in.Spec.Template.Spec.InitContainers {
|
|
578
|
|
- a := &in.Spec.Template.Spec.InitContainers[i]
|
|
579
|
|
-@@ -512,9 +512,6 @@ func SetObjectDefaults_StatefulSet(in *v1.StatefulSet) {
|
|
580
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
581
|
|
- core_v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
582
|
|
- }
|
|
583
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
584
|
|
-- core_v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
585
|
|
-- }
|
|
586
|
|
- if a.VolumeSource.Projected != nil {
|
|
587
|
|
- core_v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
588
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
589
|
|
-@@ -535,6 +532,9 @@ func SetObjectDefaults_StatefulSet(in *v1.StatefulSet) {
|
|
590
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
591
|
|
- core_v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
592
|
|
- }
|
|
593
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
594
|
|
-+ core_v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
595
|
|
-+ }
|
|
596
|
|
- }
|
|
597
|
|
- for i := range in.Spec.Template.Spec.InitContainers {
|
|
598
|
|
- a := &in.Spec.Template.Spec.InitContainers[i]
|
|
599
|
|
-diff --git a/pkg/apis/apps/v1beta1/zz_generated.defaults.go b/pkg/apis/apps/v1beta1/zz_generated.defaults.go
|
|
600
|
|
-index 656f61e..57fc4d2 100644
|
|
601
|
|
-+++ b/pkg/apis/apps/v1beta1/zz_generated.defaults.go
|
|
602
|
|
-@@ -67,9 +67,6 @@ func SetObjectDefaults_Deployment(in *v1beta1.Deployment) {
|
|
603
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
604
|
|
- v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
605
|
|
- }
|
|
606
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
607
|
|
-- v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
608
|
|
-- }
|
|
609
|
|
- if a.VolumeSource.Projected != nil {
|
|
610
|
|
- v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
611
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
612
|
|
-@@ -90,6 +87,9 @@ func SetObjectDefaults_Deployment(in *v1beta1.Deployment) {
|
|
613
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
614
|
|
- v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
615
|
|
- }
|
|
616
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
617
|
|
-+ v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
618
|
|
-+ }
|
|
619
|
|
- }
|
|
620
|
|
- for i := range in.Spec.Template.Spec.InitContainers {
|
|
621
|
|
- a := &in.Spec.Template.Spec.InitContainers[i]
|
|
622
|
|
-@@ -214,9 +214,6 @@ func SetObjectDefaults_StatefulSet(in *v1beta1.StatefulSet) {
|
|
623
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
624
|
|
- v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
625
|
|
- }
|
|
626
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
627
|
|
-- v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
628
|
|
-- }
|
|
629
|
|
- if a.VolumeSource.Projected != nil {
|
|
630
|
|
- v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
631
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
632
|
|
-@@ -237,6 +234,9 @@ func SetObjectDefaults_StatefulSet(in *v1beta1.StatefulSet) {
|
|
633
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
634
|
|
- v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
635
|
|
- }
|
|
636
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
637
|
|
-+ v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
638
|
|
-+ }
|
|
639
|
|
- }
|
|
640
|
|
- for i := range in.Spec.Template.Spec.InitContainers {
|
|
641
|
|
- a := &in.Spec.Template.Spec.InitContainers[i]
|
|
642
|
|
-diff --git a/pkg/apis/apps/v1beta2/zz_generated.defaults.go b/pkg/apis/apps/v1beta2/zz_generated.defaults.go
|
|
643
|
|
-index 713bcaa..20bee29 100644
|
|
644
|
|
-+++ b/pkg/apis/apps/v1beta2/zz_generated.defaults.go
|
|
645
|
|
-@@ -71,9 +71,6 @@ func SetObjectDefaults_DaemonSet(in *v1beta2.DaemonSet) {
|
|
646
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
647
|
|
- v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
648
|
|
- }
|
|
649
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
650
|
|
-- v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
651
|
|
-- }
|
|
652
|
|
- if a.VolumeSource.Projected != nil {
|
|
653
|
|
- v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
654
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
655
|
|
-@@ -94,6 +91,9 @@ func SetObjectDefaults_DaemonSet(in *v1beta2.DaemonSet) {
|
|
656
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
657
|
|
- v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
658
|
|
- }
|
|
659
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
660
|
|
-+ v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
661
|
|
-+ }
|
|
662
|
|
- }
|
|
663
|
|
- for i := range in.Spec.Template.Spec.InitContainers {
|
|
664
|
|
- a := &in.Spec.Template.Spec.InitContainers[i]
|
|
665
|
|
-@@ -218,9 +218,6 @@ func SetObjectDefaults_Deployment(in *v1beta2.Deployment) {
|
|
666
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
667
|
|
- v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
668
|
|
- }
|
|
669
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
670
|
|
-- v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
671
|
|
-- }
|
|
672
|
|
- if a.VolumeSource.Projected != nil {
|
|
673
|
|
- v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
674
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
675
|
|
-@@ -241,6 +238,9 @@ func SetObjectDefaults_Deployment(in *v1beta2.Deployment) {
|
|
676
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
677
|
|
- v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
678
|
|
- }
|
|
679
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
680
|
|
-+ v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
681
|
|
-+ }
|
|
682
|
|
- }
|
|
683
|
|
- for i := range in.Spec.Template.Spec.InitContainers {
|
|
684
|
|
- a := &in.Spec.Template.Spec.InitContainers[i]
|
|
685
|
|
-@@ -365,9 +365,6 @@ func SetObjectDefaults_ReplicaSet(in *v1beta2.ReplicaSet) {
|
|
686
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
687
|
|
- v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
688
|
|
- }
|
|
689
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
690
|
|
-- v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
691
|
|
-- }
|
|
692
|
|
- if a.VolumeSource.Projected != nil {
|
|
693
|
|
- v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
694
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
695
|
|
-@@ -388,6 +385,9 @@ func SetObjectDefaults_ReplicaSet(in *v1beta2.ReplicaSet) {
|
|
696
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
697
|
|
- v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
698
|
|
- }
|
|
699
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
700
|
|
-+ v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
701
|
|
-+ }
|
|
702
|
|
- }
|
|
703
|
|
- for i := range in.Spec.Template.Spec.InitContainers {
|
|
704
|
|
- a := &in.Spec.Template.Spec.InitContainers[i]
|
|
705
|
|
-@@ -512,9 +512,6 @@ func SetObjectDefaults_StatefulSet(in *v1beta2.StatefulSet) {
|
|
706
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
707
|
|
- v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
708
|
|
- }
|
|
709
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
710
|
|
-- v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
711
|
|
-- }
|
|
712
|
|
- if a.VolumeSource.Projected != nil {
|
|
713
|
|
- v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
714
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
715
|
|
-@@ -535,6 +532,9 @@ func SetObjectDefaults_StatefulSet(in *v1beta2.StatefulSet) {
|
|
716
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
717
|
|
- v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
718
|
|
- }
|
|
719
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
720
|
|
-+ v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
721
|
|
-+ }
|
|
722
|
|
- }
|
|
723
|
|
- for i := range in.Spec.Template.Spec.InitContainers {
|
|
724
|
|
- a := &in.Spec.Template.Spec.InitContainers[i]
|
|
725
|
|
-diff --git a/pkg/apis/batch/v1/zz_generated.defaults.go b/pkg/apis/batch/v1/zz_generated.defaults.go
|
|
726
|
|
-index 859d17b..db45d3e 100644
|
|
727
|
|
-+++ b/pkg/apis/batch/v1/zz_generated.defaults.go
|
|
728
|
|
-@@ -65,9 +65,6 @@ func SetObjectDefaults_Job(in *v1.Job) {
|
|
729
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
730
|
|
- core_v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
731
|
|
- }
|
|
732
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
733
|
|
-- core_v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
734
|
|
-- }
|
|
735
|
|
- if a.VolumeSource.Projected != nil {
|
|
736
|
|
- core_v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
737
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
738
|
|
-@@ -88,6 +85,9 @@ func SetObjectDefaults_Job(in *v1.Job) {
|
|
739
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
740
|
|
- core_v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
741
|
|
- }
|
|
742
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
743
|
|
-+ core_v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
744
|
|
-+ }
|
|
745
|
|
- }
|
|
746
|
|
- for i := range in.Spec.Template.Spec.InitContainers {
|
|
747
|
|
- a := &in.Spec.Template.Spec.InitContainers[i]
|
|
748
|
|
-diff --git a/pkg/apis/batch/v1beta1/zz_generated.defaults.go b/pkg/apis/batch/v1beta1/zz_generated.defaults.go
|
|
749
|
|
-index d90031c..7d42b65 100644
|
|
750
|
|
-+++ b/pkg/apis/batch/v1beta1/zz_generated.defaults.go
|
|
751
|
|
-@@ -66,9 +66,6 @@ func SetObjectDefaults_CronJob(in *v1beta1.CronJob) {
|
|
752
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
753
|
|
- v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
754
|
|
- }
|
|
755
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
756
|
|
-- v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
757
|
|
-- }
|
|
758
|
|
- if a.VolumeSource.Projected != nil {
|
|
759
|
|
- v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
760
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
761
|
|
-@@ -89,6 +86,9 @@ func SetObjectDefaults_CronJob(in *v1beta1.CronJob) {
|
|
762
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
763
|
|
- v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
764
|
|
- }
|
|
765
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
766
|
|
-+ v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
767
|
|
-+ }
|
|
768
|
|
- }
|
|
769
|
|
- for i := range in.Spec.JobTemplate.Spec.Template.Spec.InitContainers {
|
|
770
|
|
- a := &in.Spec.JobTemplate.Spec.Template.Spec.InitContainers[i]
|
|
771
|
|
-@@ -212,9 +212,6 @@ func SetObjectDefaults_JobTemplate(in *v1beta1.JobTemplate) {
|
|
772
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
773
|
|
- v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
774
|
|
- }
|
|
775
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
776
|
|
-- v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
777
|
|
-- }
|
|
778
|
|
- if a.VolumeSource.Projected != nil {
|
|
779
|
|
- v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
780
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
781
|
|
-@@ -235,6 +232,9 @@ func SetObjectDefaults_JobTemplate(in *v1beta1.JobTemplate) {
|
|
782
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
783
|
|
- v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
784
|
|
- }
|
|
785
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
786
|
|
-+ v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
787
|
|
-+ }
|
|
788
|
|
- }
|
|
789
|
|
- for i := range in.Template.Spec.Template.Spec.InitContainers {
|
|
790
|
|
- a := &in.Template.Spec.Template.Spec.InitContainers[i]
|
|
791
|
|
-diff --git a/pkg/apis/batch/v2alpha1/zz_generated.defaults.go b/pkg/apis/batch/v2alpha1/zz_generated.defaults.go
|
|
792
|
|
-index 367c56b..7df1f6b 100644
|
|
793
|
|
-+++ b/pkg/apis/batch/v2alpha1/zz_generated.defaults.go
|
|
794
|
|
-@@ -66,9 +66,6 @@ func SetObjectDefaults_CronJob(in *v2alpha1.CronJob) {
|
|
795
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
796
|
|
- v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
797
|
|
- }
|
|
798
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
799
|
|
-- v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
800
|
|
-- }
|
|
801
|
|
- if a.VolumeSource.Projected != nil {
|
|
802
|
|
- v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
803
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
804
|
|
-@@ -89,6 +86,9 @@ func SetObjectDefaults_CronJob(in *v2alpha1.CronJob) {
|
|
805
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
806
|
|
- v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
807
|
|
- }
|
|
808
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
809
|
|
-+ v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
810
|
|
-+ }
|
|
811
|
|
- }
|
|
812
|
|
- for i := range in.Spec.JobTemplate.Spec.Template.Spec.InitContainers {
|
|
813
|
|
- a := &in.Spec.JobTemplate.Spec.Template.Spec.InitContainers[i]
|
|
814
|
|
-@@ -212,9 +212,6 @@ func SetObjectDefaults_JobTemplate(in *v2alpha1.JobTemplate) {
|
|
815
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
816
|
|
- v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
817
|
|
- }
|
|
818
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
819
|
|
-- v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
820
|
|
-- }
|
|
821
|
|
- if a.VolumeSource.Projected != nil {
|
|
822
|
|
- v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
823
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
824
|
|
-@@ -235,6 +232,9 @@ func SetObjectDefaults_JobTemplate(in *v2alpha1.JobTemplate) {
|
|
825
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
826
|
|
- v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
827
|
|
- }
|
|
828
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
829
|
|
-+ v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
830
|
|
-+ }
|
|
831
|
|
- }
|
|
832
|
|
- for i := range in.Template.Spec.Template.Spec.InitContainers {
|
|
833
|
|
- a := &in.Template.Spec.Template.Spec.InitContainers[i]
|
|
834
|
516
|
diff --git a/pkg/apis/core/types.go b/pkg/apis/core/types.go
|
|
835
|
517
|
index 1669edc..60ba08e 100644
|
|
836
|
518
|
--- a/pkg/apis/core/types.go
|
|
...
|
...
|
@@ -876,177 +539,6 @@ index 1669edc..60ba08e 100644
|
|
876
|
876
|
// Adapts a ConfigMap into a volume.
|
|
877
|
877
|
//
|
|
878
|
878
|
// The contents of the target ConfigMap's Data field will be presented in a
|
|
879
|
|
-diff --git a/pkg/apis/core/v1/zz_generated.conversion.go b/pkg/apis/core/v1/zz_generated.conversion.go
|
|
880
|
|
-index 6ef20a5..c724b21 100644
|
|
881
|
|
-+++ b/pkg/apis/core/v1/zz_generated.conversion.go
|
|
882
|
|
-@@ -60,6 +60,8 @@ func RegisterConversions(scheme *runtime.Scheme) error {
|
|
883
|
|
- Convert_core_CSIPersistentVolumeSource_To_v1_CSIPersistentVolumeSource,
|
|
884
|
|
- Convert_v1_Capabilities_To_core_Capabilities,
|
|
885
|
|
- Convert_core_Capabilities_To_v1_Capabilities,
|
|
886
|
|
-+ Convert_v1_CascadeDiskVolumeSource_To_core_CascadeDiskVolumeSource,
|
|
887
|
|
-+ Convert_core_CascadeDiskVolumeSource_To_v1_CascadeDiskVolumeSource,
|
|
888
|
|
- Convert_v1_CephFSPersistentVolumeSource_To_core_CephFSPersistentVolumeSource,
|
|
889
|
|
- Convert_core_CephFSPersistentVolumeSource_To_v1_CephFSPersistentVolumeSource,
|
|
890
|
|
- Convert_v1_CephFSVolumeSource_To_core_CephFSVolumeSource,
|
|
891
|
|
-@@ -685,6 +687,28 @@ func Convert_core_Capabilities_To_v1_Capabilities(in *core.Capabilities, out *v1
|
|
892
|
|
- return autoConvert_core_Capabilities_To_v1_Capabilities(in, out, s)
|
|
893
|
|
- }
|
|
894
|
|
-
|
|
895
|
|
-+func autoConvert_v1_CascadeDiskVolumeSource_To_core_CascadeDiskVolumeSource(in *v1.CascadeDiskVolumeSource, out *core.CascadeDiskVolumeSource, s conversion.Scope) error {
|
|
896
|
|
-+ out.DiskID = in.DiskID
|
|
897
|
|
-+ out.FSType = in.FSType
|
|
898
|
|
-+ return nil
|
|
899
|
|
-+}
|
|
900
|
|
-+
|
|
901
|
|
-+// Convert_v1_CascadeDiskVolumeSource_To_core_CascadeDiskVolumeSource is an autogenerated conversion function.
|
|
902
|
|
-+func Convert_v1_CascadeDiskVolumeSource_To_core_CascadeDiskVolumeSource(in *v1.CascadeDiskVolumeSource, out *core.CascadeDiskVolumeSource, s conversion.Scope) error {
|
|
903
|
|
-+ return autoConvert_v1_CascadeDiskVolumeSource_To_core_CascadeDiskVolumeSource(in, out, s)
|
|
904
|
|
-+}
|
|
905
|
|
-+
|
|
906
|
|
-+func autoConvert_core_CascadeDiskVolumeSource_To_v1_CascadeDiskVolumeSource(in *core.CascadeDiskVolumeSource, out *v1.CascadeDiskVolumeSource, s conversion.Scope) error {
|
|
907
|
|
-+ out.DiskID = in.DiskID
|
|
908
|
|
-+ out.FSType = in.FSType
|
|
909
|
|
-+ return nil
|
|
910
|
|
-+}
|
|
911
|
|
-+
|
|
912
|
|
-+// Convert_core_CascadeDiskVolumeSource_To_v1_CascadeDiskVolumeSource is an autogenerated conversion function.
|
|
913
|
|
-+func Convert_core_CascadeDiskVolumeSource_To_v1_CascadeDiskVolumeSource(in *core.CascadeDiskVolumeSource, out *v1.CascadeDiskVolumeSource, s conversion.Scope) error {
|
|
914
|
|
-+ return autoConvert_core_CascadeDiskVolumeSource_To_v1_CascadeDiskVolumeSource(in, out, s)
|
|
915
|
|
-+}
|
|
916
|
|
-+
|
|
917
|
|
- func autoConvert_v1_CephFSPersistentVolumeSource_To_core_CephFSPersistentVolumeSource(in *v1.CephFSPersistentVolumeSource, out *core.CephFSPersistentVolumeSource, s conversion.Scope) error {
|
|
918
|
|
- out.Monitors = *(*[]string)(unsafe.Pointer(&in.Monitors))
|
|
919
|
|
- out.Path = in.Path
|
|
920
|
|
-@@ -3283,13 +3307,14 @@ func autoConvert_v1_PersistentVolumeSource_To_core_PersistentVolumeSource(in *v1
|
|
921
|
|
- out.AzureFile = (*core.AzureFilePersistentVolumeSource)(unsafe.Pointer(in.AzureFile))
|
|
922
|
|
- out.VsphereVolume = (*core.VsphereVirtualDiskVolumeSource)(unsafe.Pointer(in.VsphereVolume))
|
|
923
|
|
- out.Quobyte = (*core.QuobyteVolumeSource)(unsafe.Pointer(in.Quobyte))
|
|
924
|
|
-- out.AzureDisk = (*core.AzureDiskVolumeSource)(unsafe.Pointer(in.AzureDisk))
|
|
925
|
|
-+ out.CascadeDisk = (*core.CascadeDiskVolumeSource)(unsafe.Pointer(in.CascadeDisk))
|
|
926
|
|
- out.PhotonPersistentDisk = (*core.PhotonPersistentDiskVolumeSource)(unsafe.Pointer(in.PhotonPersistentDisk))
|
|
927
|
|
- out.PortworxVolume = (*core.PortworxVolumeSource)(unsafe.Pointer(in.PortworxVolume))
|
|
928
|
|
- out.ScaleIO = (*core.ScaleIOPersistentVolumeSource)(unsafe.Pointer(in.ScaleIO))
|
|
929
|
|
- out.Local = (*core.LocalVolumeSource)(unsafe.Pointer(in.Local))
|
|
930
|
|
- out.StorageOS = (*core.StorageOSPersistentVolumeSource)(unsafe.Pointer(in.StorageOS))
|
|
931
|
|
- out.CSI = (*core.CSIPersistentVolumeSource)(unsafe.Pointer(in.CSI))
|
|
932
|
|
-+ out.AzureDisk = (*core.AzureDiskVolumeSource)(unsafe.Pointer(in.AzureDisk))
|
|
933
|
|
- return nil
|
|
934
|
|
- }
|
|
935
|
|
-
|
|
936
|
|
-@@ -3321,6 +3346,7 @@ func autoConvert_core_PersistentVolumeSource_To_v1_PersistentVolumeSource(in *co
|
|
937
|
|
- out.Local = (*v1.LocalVolumeSource)(unsafe.Pointer(in.Local))
|
|
938
|
|
- out.StorageOS = (*v1.StorageOSPersistentVolumeSource)(unsafe.Pointer(in.StorageOS))
|
|
939
|
|
- out.CSI = (*v1.CSIPersistentVolumeSource)(unsafe.Pointer(in.CSI))
|
|
940
|
|
-+ out.CascadeDisk = (*v1.CascadeDiskVolumeSource)(unsafe.Pointer(in.CascadeDisk))
|
|
941
|
|
- return nil
|
|
942
|
|
- }
|
|
943
|
|
-
|
|
944
|
|
-@@ -5749,7 +5775,7 @@ func autoConvert_v1_VolumeSource_To_core_VolumeSource(in *v1.VolumeSource, out *
|
|
945
|
|
- out.ConfigMap = (*core.ConfigMapVolumeSource)(unsafe.Pointer(in.ConfigMap))
|
|
946
|
|
- out.VsphereVolume = (*core.VsphereVirtualDiskVolumeSource)(unsafe.Pointer(in.VsphereVolume))
|
|
947
|
|
- out.Quobyte = (*core.QuobyteVolumeSource)(unsafe.Pointer(in.Quobyte))
|
|
948
|
|
-- out.AzureDisk = (*core.AzureDiskVolumeSource)(unsafe.Pointer(in.AzureDisk))
|
|
949
|
|
-+ out.CascadeDisk = (*core.CascadeDiskVolumeSource)(unsafe.Pointer(in.CascadeDisk))
|
|
950
|
|
- out.PhotonPersistentDisk = (*core.PhotonPersistentDiskVolumeSource)(unsafe.Pointer(in.PhotonPersistentDisk))
|
|
951
|
|
- if in.Projected != nil {
|
|
952
|
|
- in, out := &in.Projected, &out.Projected
|
|
953
|
|
-@@ -5763,6 +5789,7 @@ func autoConvert_v1_VolumeSource_To_core_VolumeSource(in *v1.VolumeSource, out *
|
|
954
|
|
- out.PortworxVolume = (*core.PortworxVolumeSource)(unsafe.Pointer(in.PortworxVolume))
|
|
955
|
|
- out.ScaleIO = (*core.ScaleIOVolumeSource)(unsafe.Pointer(in.ScaleIO))
|
|
956
|
|
- out.StorageOS = (*core.StorageOSVolumeSource)(unsafe.Pointer(in.StorageOS))
|
|
957
|
|
-+ out.AzureDisk = (*core.AzureDiskVolumeSource)(unsafe.Pointer(in.AzureDisk))
|
|
958
|
|
- return nil
|
|
959
|
|
- }
|
|
960
|
|
-
|
|
961
|
|
-@@ -5807,6 +5834,7 @@ func autoConvert_core_VolumeSource_To_v1_VolumeSource(in *core.VolumeSource, out
|
|
962
|
|
- out.PortworxVolume = (*v1.PortworxVolumeSource)(unsafe.Pointer(in.PortworxVolume))
|
|
963
|
|
- out.ScaleIO = (*v1.ScaleIOVolumeSource)(unsafe.Pointer(in.ScaleIO))
|
|
964
|
|
- out.StorageOS = (*v1.StorageOSVolumeSource)(unsafe.Pointer(in.StorageOS))
|
|
965
|
|
-+ out.CascadeDisk = (*v1.CascadeDiskVolumeSource)(unsafe.Pointer(in.CascadeDisk))
|
|
966
|
|
- return nil
|
|
967
|
|
- }
|
|
968
|
|
-
|
|
969
|
|
-diff --git a/pkg/apis/core/v1/zz_generated.defaults.go b/pkg/apis/core/v1/zz_generated.defaults.go
|
|
970
|
|
-index 00e0b38..e333745 100644
|
|
971
|
|
-+++ b/pkg/apis/core/v1/zz_generated.defaults.go
|
|
972
|
|
-@@ -139,12 +139,12 @@ func SetObjectDefaults_PersistentVolume(in *v1.PersistentVolume) {
|
|
973
|
|
- if in.Spec.PersistentVolumeSource.ISCSI != nil {
|
|
974
|
|
- SetDefaults_ISCSIPersistentVolumeSource(in.Spec.PersistentVolumeSource.ISCSI)
|
|
975
|
|
- }
|
|
976
|
|
-- if in.Spec.PersistentVolumeSource.AzureDisk != nil {
|
|
977
|
|
-- SetDefaults_AzureDiskVolumeSource(in.Spec.PersistentVolumeSource.AzureDisk)
|
|
978
|
|
-- }
|
|
979
|
|
- if in.Spec.PersistentVolumeSource.ScaleIO != nil {
|
|
980
|
|
- SetDefaults_ScaleIOPersistentVolumeSource(in.Spec.PersistentVolumeSource.ScaleIO)
|
|
981
|
|
- }
|
|
982
|
|
-+ if in.Spec.PersistentVolumeSource.AzureDisk != nil {
|
|
983
|
|
-+ SetDefaults_AzureDiskVolumeSource(in.Spec.PersistentVolumeSource.AzureDisk)
|
|
984
|
|
-+ }
|
|
985
|
|
- }
|
|
986
|
|
-
|
|
987
|
|
- func SetObjectDefaults_PersistentVolumeClaim(in *v1.PersistentVolumeClaim) {
|
|
988
|
|
-@@ -198,9 +198,6 @@ func SetObjectDefaults_Pod(in *v1.Pod) {
|
|
989
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
990
|
|
- SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
991
|
|
- }
|
|
992
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
993
|
|
-- SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
994
|
|
-- }
|
|
995
|
|
- if a.VolumeSource.Projected != nil {
|
|
996
|
|
- SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
997
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
998
|
|
-@@ -221,6 +218,9 @@ func SetObjectDefaults_Pod(in *v1.Pod) {
|
|
999
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
1000
|
|
- SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
1001
|
|
- }
|
|
1002
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
1003
|
|
-+ SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
1004
|
|
-+ }
|
|
1005
|
|
- }
|
|
1006
|
|
- for i := range in.Spec.InitContainers {
|
|
1007
|
|
- a := &in.Spec.InitContainers[i]
|
|
1008
|
|
-@@ -344,9 +344,6 @@ func SetObjectDefaults_PodTemplate(in *v1.PodTemplate) {
|
|
1009
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
1010
|
|
- SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
1011
|
|
- }
|
|
1012
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
1013
|
|
-- SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
1014
|
|
-- }
|
|
1015
|
|
- if a.VolumeSource.Projected != nil {
|
|
1016
|
|
- SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
1017
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
1018
|
|
-@@ -367,6 +364,9 @@ func SetObjectDefaults_PodTemplate(in *v1.PodTemplate) {
|
|
1019
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
1020
|
|
- SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
1021
|
|
- }
|
|
1022
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
1023
|
|
-+ SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
1024
|
|
-+ }
|
|
1025
|
|
- }
|
|
1026
|
|
- for i := range in.Template.Spec.InitContainers {
|
|
1027
|
|
- a := &in.Template.Spec.InitContainers[i]
|
|
1028
|
|
-@@ -492,9 +492,6 @@ func SetObjectDefaults_ReplicationController(in *v1.ReplicationController) {
|
|
1029
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
1030
|
|
- SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
1031
|
|
- }
|
|
1032
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
1033
|
|
-- SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
1034
|
|
-- }
|
|
1035
|
|
- if a.VolumeSource.Projected != nil {
|
|
1036
|
|
- SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
1037
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
1038
|
|
-@@ -515,6 +512,9 @@ func SetObjectDefaults_ReplicationController(in *v1.ReplicationController) {
|
|
1039
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
1040
|
|
- SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
1041
|
|
- }
|
|
1042
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
1043
|
|
-+ SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
1044
|
|
-+ }
|
|
1045
|
|
- }
|
|
1046
|
|
- for i := range in.Spec.Template.Spec.InitContainers {
|
|
1047
|
|
- a := &in.Spec.Template.Spec.InitContainers[i]
|
|
1048
|
879
|
diff --git a/pkg/apis/core/validation/validation.go b/pkg/apis/core/validation/validation.go
|
|
1049
|
880
|
index 7050c60..cf15bb7 100644
|
|
1050
|
881
|
--- a/pkg/apis/core/validation/validation.go
|
|
...
|
...
|
@@ -1097,129 +589,6 @@ index 7050c60..cf15bb7 100644
|
|
1097
|
1097
|
if numVolumes == 0 {
|
|
1098
|
1098
|
allErrs = append(allErrs, field.Required(specPath, "must specify a volume type"))
|
|
1099
|
1099
|
}
|
|
1100
|
|
-diff --git a/pkg/apis/core/zz_generated.deepcopy.go b/pkg/apis/core/zz_generated.deepcopy.go
|
|
1101
|
|
-index 3331f6e..6a25bbb 100644
|
|
1102
|
|
-+++ b/pkg/apis/core/zz_generated.deepcopy.go
|
|
1103
|
|
-@@ -321,6 +321,22 @@ func (in *Capabilities) DeepCopy() *Capabilities {
|
|
1104
|
|
- }
|
|
1105
|
|
-
|
|
1106
|
|
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
1107
|
|
-+func (in *CascadeDiskVolumeSource) DeepCopyInto(out *CascadeDiskVolumeSource) {
|
|
1108
|
|
-+ *out = *in
|
|
1109
|
|
-+ return
|
|
1110
|
|
-+}
|
|
1111
|
|
-+
|
|
1112
|
|
-+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CascadeDiskVolumeSource.
|
|
1113
|
|
-+func (in *CascadeDiskVolumeSource) DeepCopy() *CascadeDiskVolumeSource {
|
|
1114
|
|
-+ if in == nil {
|
|
1115
|
|
-+ return nil
|
|
1116
|
|
-+ }
|
|
1117
|
|
-+ out := new(CascadeDiskVolumeSource)
|
|
1118
|
|
-+ in.DeepCopyInto(out)
|
|
1119
|
|
-+ return out
|
|
1120
|
|
-+}
|
|
1121
|
|
-+
|
|
1122
|
|
-+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
1123
|
|
- func (in *CephFSPersistentVolumeSource) DeepCopyInto(out *CephFSPersistentVolumeSource) {
|
|
1124
|
|
- *out = *in
|
|
1125
|
|
- if in.Monitors != nil {
|
|
1126
|
|
-@@ -3250,6 +3266,15 @@ func (in *PersistentVolumeSource) DeepCopyInto(out *PersistentVolumeSource) {
|
|
1127
|
|
- (*in).DeepCopyInto(*out)
|
|
1128
|
|
- }
|
|
1129
|
|
- }
|
|
1130
|
|
-+ if in.CascadeDisk != nil {
|
|
1131
|
|
-+ in, out := &in.CascadeDisk, &out.CascadeDisk
|
|
1132
|
|
-+ if *in == nil {
|
|
1133
|
|
-+ *out = nil
|
|
1134
|
|
-+ } else {
|
|
1135
|
|
-+ *out = new(CascadeDiskVolumeSource)
|
|
1136
|
|
-+ **out = **in
|
|
1137
|
|
-+ }
|
|
1138
|
|
-+ }
|
|
1139
|
|
- return
|
|
1140
|
|
- }
|
|
1141
|
|
-
|
|
1142
|
|
-@@ -5997,6 +6022,15 @@ func (in *VolumeSource) DeepCopyInto(out *VolumeSource) {
|
|
1143
|
|
- (*in).DeepCopyInto(*out)
|
|
1144
|
|
- }
|
|
1145
|
|
- }
|
|
1146
|
|
-+ if in.CascadeDisk != nil {
|
|
1147
|
|
-+ in, out := &in.CascadeDisk, &out.CascadeDisk
|
|
1148
|
|
-+ if *in == nil {
|
|
1149
|
|
-+ *out = nil
|
|
1150
|
|
-+ } else {
|
|
1151
|
|
-+ *out = new(CascadeDiskVolumeSource)
|
|
1152
|
|
-+ **out = **in
|
|
1153
|
|
-+ }
|
|
1154
|
|
-+ }
|
|
1155
|
|
- return
|
|
1156
|
|
- }
|
|
1157
|
|
-
|
|
1158
|
|
-diff --git a/pkg/apis/extensions/v1beta1/zz_generated.defaults.go b/pkg/apis/extensions/v1beta1/zz_generated.defaults.go
|
|
1159
|
|
-index 0fa4c32..8318339 100644
|
|
1160
|
|
-+++ b/pkg/apis/extensions/v1beta1/zz_generated.defaults.go
|
|
1161
|
|
-@@ -73,9 +73,6 @@ func SetObjectDefaults_DaemonSet(in *v1beta1.DaemonSet) {
|
|
1162
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
1163
|
|
- v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
1164
|
|
- }
|
|
1165
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
1166
|
|
-- v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
1167
|
|
-- }
|
|
1168
|
|
- if a.VolumeSource.Projected != nil {
|
|
1169
|
|
- v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
1170
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
1171
|
|
-@@ -96,6 +93,9 @@ func SetObjectDefaults_DaemonSet(in *v1beta1.DaemonSet) {
|
|
1172
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
1173
|
|
- v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
1174
|
|
- }
|
|
1175
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
1176
|
|
-+ v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
1177
|
|
-+ }
|
|
1178
|
|
- }
|
|
1179
|
|
- for i := range in.Spec.Template.Spec.InitContainers {
|
|
1180
|
|
- a := &in.Spec.Template.Spec.InitContainers[i]
|
|
1181
|
|
-@@ -220,9 +220,6 @@ func SetObjectDefaults_Deployment(in *v1beta1.Deployment) {
|
|
1182
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
1183
|
|
- v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
1184
|
|
- }
|
|
1185
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
1186
|
|
-- v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
1187
|
|
-- }
|
|
1188
|
|
- if a.VolumeSource.Projected != nil {
|
|
1189
|
|
- v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
1190
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
1191
|
|
-@@ -243,6 +240,9 @@ func SetObjectDefaults_Deployment(in *v1beta1.Deployment) {
|
|
1192
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
1193
|
|
- v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
1194
|
|
- }
|
|
1195
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
1196
|
|
-+ v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
1197
|
|
-+ }
|
|
1198
|
|
- }
|
|
1199
|
|
- for i := range in.Spec.Template.Spec.InitContainers {
|
|
1200
|
|
- a := &in.Spec.Template.Spec.InitContainers[i]
|
|
1201
|
|
-@@ -389,9 +389,6 @@ func SetObjectDefaults_ReplicaSet(in *v1beta1.ReplicaSet) {
|
|
1202
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
1203
|
|
- v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
1204
|
|
- }
|
|
1205
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
1206
|
|
-- v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
1207
|
|
-- }
|
|
1208
|
|
- if a.VolumeSource.Projected != nil {
|
|
1209
|
|
- v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
1210
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
1211
|
|
-@@ -412,6 +409,9 @@ func SetObjectDefaults_ReplicaSet(in *v1beta1.ReplicaSet) {
|
|
1212
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
1213
|
|
- v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
1214
|
|
- }
|
|
1215
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
1216
|
|
-+ v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
1217
|
|
-+ }
|
|
1218
|
|
- }
|
|
1219
|
|
- for i := range in.Spec.Template.Spec.InitContainers {
|
|
1220
|
|
- a := &in.Spec.Template.Spec.InitContainers[i]
|
|
1221
|
1100
|
diff --git a/pkg/apis/policy/types.go b/pkg/apis/policy/types.go
|
|
1222
|
1101
|
index 298fcd0..174d0fc 100644
|
|
1223
|
1102
|
--- a/pkg/apis/policy/types.go
|
|
...
|
...
|
@@ -1232,30 +601,6 @@ index 298fcd0..174d0fc 100644
|
|
1232
|
1232
|
All FSType = "*"
|
|
1233
|
1233
|
)
|
|
1234
|
1234
|
|
|
1235
|
|
-diff --git a/pkg/apis/settings/v1alpha1/zz_generated.defaults.go b/pkg/apis/settings/v1alpha1/zz_generated.defaults.go
|
|
1236
|
|
-index b8559cf..d1f316e 100644
|
|
1237
|
|
-+++ b/pkg/apis/settings/v1alpha1/zz_generated.defaults.go
|
|
1238
|
|
-@@ -71,9 +71,6 @@ func SetObjectDefaults_PodPreset(in *v1alpha1.PodPreset) {
|
|
1239
|
|
- if a.VolumeSource.ConfigMap != nil {
|
|
1240
|
|
- v1.SetDefaults_ConfigMapVolumeSource(a.VolumeSource.ConfigMap)
|
|
1241
|
|
- }
|
|
1242
|
|
-- if a.VolumeSource.AzureDisk != nil {
|
|
1243
|
|
-- v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
1244
|
|
-- }
|
|
1245
|
|
- if a.VolumeSource.Projected != nil {
|
|
1246
|
|
- v1.SetDefaults_ProjectedVolumeSource(a.VolumeSource.Projected)
|
|
1247
|
|
- for j := range a.VolumeSource.Projected.Sources {
|
|
1248
|
|
-@@ -94,6 +91,9 @@ func SetObjectDefaults_PodPreset(in *v1alpha1.PodPreset) {
|
|
1249
|
|
- if a.VolumeSource.ScaleIO != nil {
|
|
1250
|
|
- v1.SetDefaults_ScaleIOVolumeSource(a.VolumeSource.ScaleIO)
|
|
1251
|
|
- }
|
|
1252
|
|
-+ if a.VolumeSource.AzureDisk != nil {
|
|
1253
|
|
-+ v1.SetDefaults_AzureDiskVolumeSource(a.VolumeSource.AzureDisk)
|
|
1254
|
|
-+ }
|
|
1255
|
|
- }
|
|
1256
|
|
- }
|
|
1257
|
|
-
|
|
1258
|
1235
|
diff --git a/pkg/cloudprovider/providers/BUILD b/pkg/cloudprovider/providers/BUILD
|
|
1259
|
1236
|
index aeccfa1..4313576 100644
|
|
1260
|
1237
|
--- a/pkg/cloudprovider/providers/BUILD
|
|
...
|
...
|
@@ -1349,10 +694,10 @@ index 0000000..70efc9d
|
|
1349
|
1349
|
+- ysheng
|
|
1350
|
1350
|
diff --git a/pkg/cloudprovider/providers/cascade/apitypes.go b/pkg/cloudprovider/providers/cascade/apitypes.go
|
|
1351
|
1351
|
new file mode 100644
|
|
1352
|
|
-index 0000000..fba1b3b
|
|
|
1352
|
+index 0000000..d437394
|
|
1353
|
1353
|
--- /dev/null
|
|
1354
|
1354
|
+++ b/pkg/cloudprovider/providers/cascade/apitypes.go
|
|
1355
|
|
-@@ -0,0 +1,229 @@
|
|
|
1355
|
+@@ -0,0 +1,230 @@
|
|
1356
|
1356
|
+package cascade
|
|
1357
|
1357
|
+
|
|
1358
|
1358
|
+import "fmt"
|
|
...
|
...
|
@@ -1533,6 +878,7 @@ index 0000000..fba1b3b
|
|
1533
|
1533
|
+ Name *string `json:"name"`
|
|
1534
|
1534
|
+ Tags []string `json:"tags"`
|
|
1535
|
1535
|
+ Zone *string `json:"zone"`
|
|
|
1536
|
++ Encrypted *bool `json:"encrypted"`
|
|
1536
|
1537
|
+}
|
|
1537
|
1538
|
+
|
|
1538
|
1539
|
+// Represents the spec for specifying affinity for a disk with another entity.
|
|
...
|
...
|
@@ -1736,10 +1082,10 @@ index 0000000..fc92377
|
|
1736
|
1736
|
\ No newline at end of file
|
|
1737
|
1737
|
diff --git a/pkg/cloudprovider/providers/cascade/cascade.go b/pkg/cloudprovider/providers/cascade/cascade.go
|
|
1738
|
1738
|
new file mode 100644
|
|
1739
|
|
-index 0000000..e7cf2fc
|
|
|
1739
|
+index 0000000..06ada64
|
|
1740
|
1740
|
--- /dev/null
|
|
1741
|
1741
|
+++ b/pkg/cloudprovider/providers/cascade/cascade.go
|
|
1742
|
|
-@@ -0,0 +1,214 @@
|
|
|
1742
|
+@@ -0,0 +1,215 @@
|
|
1743
|
1743
|
+// The use of Cascade cloud provider requires the kubelet, kube-apiserver, and kube-controller-manager to be started
|
|
1744
|
1744
|
+// with config flag: '--cloud-provider=cascade --cloud-config=[path_to_config_file]'.
|
|
1745
|
1745
|
+package cascade
|
|
...
|
...
|
@@ -1834,6 +1180,7 @@ index 0000000..e7cf2fc
|
|
1834
|
1834
|
+ Tags map[string]string
|
|
1835
|
1835
|
+ Name string
|
|
1836
|
1836
|
+ Flavor string
|
|
|
1837
|
++ Encrypted bool
|
|
1837
|
1838
|
+}
|
|
1838
|
1839
|
+
|
|
1839
|
1840
|
+func readConfig(config io.Reader) (*CascadeConfig, error) {
|
|
...
|
...
|
@@ -1956,10 +1303,10 @@ index 0000000..e7cf2fc
|
|
1956
|
1956
|
+}
|
|
1957
|
1957
|
diff --git a/pkg/cloudprovider/providers/cascade/cascade_disks.go b/pkg/cloudprovider/providers/cascade/cascade_disks.go
|
|
1958
|
1958
|
new file mode 100644
|
|
1959
|
|
-index 0000000..8431004
|
|
|
1959
|
+index 0000000..a2e8ded
|
|
1960
|
1960
|
--- /dev/null
|
|
1961
|
1961
|
+++ b/pkg/cloudprovider/providers/cascade/cascade_disks.go
|
|
1962
|
|
-@@ -0,0 +1,227 @@
|
|
|
1962
|
+@@ -0,0 +1,228 @@
|
|
1963
|
1963
|
+package cascade
|
|
1964
|
1964
|
+
|
|
1965
|
1965
|
+import (
|
|
...
|
...
|
@@ -2130,6 +1477,7 @@ index 0000000..8431004
|
|
2130
|
2130
|
+ diskSpec.CapacityGB = Int32Ptr(int32(volumeOptions.CapacityGB))
|
|
2131
|
2131
|
+ diskSpec.Kind = StringPtr(DiskSpecKind)
|
|
2132
|
2132
|
+ diskSpec.Zone = StringPtr(zone)
|
|
|
2133
|
++ diskSpec.Encrypted = BoolPtr(volumeOptions.Encrypted)
|
|
2133
|
2134
|
+
|
|
2134
|
2135
|
+ task, err := cc.apiClient.CreateDisk(&diskSpec)
|
|
2135
|
2136
|
+ if err != nil {
|
|
...
|
...
|
@@ -2189,19 +1537,22 @@ index 0000000..8431004
|
|
2189
|
2189
|
+}
|
|
2190
|
2190
|
diff --git a/pkg/cloudprovider/providers/cascade/cascade_instances.go b/pkg/cloudprovider/providers/cascade/cascade_instances.go
|
|
2191
|
2191
|
new file mode 100644
|
|
2192
|
|
-index 0000000..6ef9d8b
|
|
|
2192
|
+index 0000000..33acfc0
|
|
2193
|
2193
|
--- /dev/null
|
|
2194
|
2194
|
+++ b/pkg/cloudprovider/providers/cascade/cascade_instances.go
|
|
2195
|
|
-@@ -0,0 +1,98 @@
|
|
|
2195
|
+@@ -0,0 +1,132 @@
|
|
2196
|
2196
|
+package cascade
|
|
2197
|
2197
|
+
|
|
2198
|
2198
|
+import (
|
|
2199
|
2199
|
+ "context"
|
|
2200
|
2200
|
+ "errors"
|
|
|
2201
|
++ "github.com/golang/glog"
|
|
|
2202
|
++ "os"
|
|
|
2203
|
++ "strings"
|
|
|
2204
|
++
|
|
2201
|
2205
|
+ "k8s.io/api/core/v1"
|
|
2202
|
2206
|
+ k8stypes "k8s.io/apimachinery/pkg/types"
|
|
2203
|
2207
|
+ "k8s.io/kubernetes/pkg/cloudprovider"
|
|
2204
|
|
-+ "strings"
|
|
2205
|
2208
|
+)
|
|
2206
|
2209
|
+
|
|
2207
|
2210
|
+// NodeAddresses is an implementation of Instances.NodeAddresses. In the future, private IP address, external IP, etc.
|
|
...
|
...
|
@@ -2246,12 +1597,12 @@ index 0000000..6ef9d8b
|
|
2246
|
2246
|
+}
|
|
2247
|
2247
|
+
|
|
2248
|
2248
|
+// ExternalID returns the cloud provider ID of the specified instance (deprecated).
|
|
2249
|
|
-+// Note: We do not call Cascade Controller here to check if the instance is alive or not because that requires the
|
|
2250
|
|
-+// worker nodes to also login to Cascade Controller. That check is used by Kubernetes to proactively remove nodes that
|
|
2251
|
|
-+// the cloud provider believes is no longer available. Even otherwise, Kubernetes will remove those nodes eventually.
|
|
2252
|
|
-+// So we are not losing much by not doing that check.
|
|
|
2249
|
++// Note: We call Cascade Controller here to check if the instance is alive or not. That check is used by Kubernetes
|
|
|
2250
|
++// to proactively remove nodes that the cloud provider believes is no longer available. Even otherwise, Kubernetes
|
|
|
2251
|
++// will remove those nodes eventually.
|
|
|
2252
|
++
|
|
2253
|
2253
|
+func (cc *CascadeCloud) ExternalID(ctx context.Context, nodeName k8stypes.NodeName) (string, error) {
|
|
2254
|
|
-+ return getInstanceIDFromNodeName(nodeName)
|
|
|
2254
|
++ return getInstanceIDAndLivelinessFromNodeName(cc, nodeName)
|
|
2255
|
2255
|
+}
|
|
2256
|
2256
|
+
|
|
2257
|
2257
|
+// InstanceExistsByProviderID returns true if the instance with the given provider id still exists and is running.
|
|
...
|
...
|
@@ -2276,6 +1627,37 @@ index 0000000..6ef9d8b
|
|
2276
|
2276
|
+ return nodeParts[1], nil
|
|
2277
|
2277
|
+}
|
|
2278
|
2278
|
+
|
|
|
2279
|
++// This gets the Cascade VM ID and its liveliness from the Kubernetes node name.
|
|
|
2280
|
++func getInstanceIDAndLivelinessFromNodeName(cc *CascadeCloud, nodeName k8stypes.NodeName) (string, error) {
|
|
|
2281
|
++ instanceID, err := getInstanceIDFromNodeName(nodeName)
|
|
|
2282
|
++ if err != nil {
|
|
|
2283
|
++ return "", err
|
|
|
2284
|
++ }
|
|
|
2285
|
++ // Get local hostname. We need to do this check to make sure we call VKE controller only from master nodes
|
|
|
2286
|
++ // because worker nodes cannot login to VKE controller.
|
|
|
2287
|
++ hostname, err := os.Hostname()
|
|
|
2288
|
++ if err != nil {
|
|
|
2289
|
++ glog.Errorf("Cascade Cloud Provider: get hostname failed. Error[%v]", err)
|
|
|
2290
|
++ return "", err
|
|
|
2291
|
++ }
|
|
|
2292
|
++ // Note: Kubelet running on the worker node do not need to call VKE.
|
|
|
2293
|
++ if strings.HasPrefix(hostname, MasterPrefix) {
|
|
|
2294
|
++ _, err := cc.apiClient.GetVM(instanceID)
|
|
|
2295
|
++ if err != nil {
|
|
|
2296
|
++ switch err.(type) {
|
|
|
2297
|
++ case APIError:
|
|
|
2298
|
++ if err.(APIError).ErrorCode == VMNotFoundError {
|
|
|
2299
|
++ // If instance no longer exists, we will return instance not found error
|
|
|
2300
|
++ glog.Warningf("Cascade Cloud Provider: VM %s does not exist", instanceID)
|
|
|
2301
|
++ return "", cloudprovider.InstanceNotFound
|
|
|
2302
|
++ }
|
|
|
2303
|
++ }
|
|
|
2304
|
++ }
|
|
|
2305
|
++ }
|
|
|
2306
|
++ return instanceID, nil
|
|
|
2307
|
++}
|
|
|
2308
|
++
|
|
|
2309
|
++
|
|
2279
|
2310
|
+// InstanceTypeByProviderID returns the cloudprovider instance type of the node with the specified unique providerID
|
|
2280
|
2311
|
+// This method will not be called from the node that is requesting this ID. i.e. metadata service
|
|
2281
|
2312
|
+// and other local methods cannot be used here
|
|
...
|
...
|
@@ -3621,10 +3003,10 @@ index 0000000..dff5ab1
|
|
3621
|
3621
|
+
|
|
3622
|
3622
|
diff --git a/pkg/cloudprovider/providers/cascade/utils.go b/pkg/cloudprovider/providers/cascade/utils.go
|
|
3623
|
3623
|
new file mode 100644
|
|
3624
|
|
-index 0000000..4e9e44c
|
|
|
3624
|
+index 0000000..866f853
|
|
3625
|
3625
|
--- /dev/null
|
|
3626
|
3626
|
+++ b/pkg/cloudprovider/providers/cascade/utils.go
|
|
3627
|
|
-@@ -0,0 +1,25 @@
|
|
|
3627
|
+@@ -0,0 +1,29 @@
|
|
3628
|
3628
|
+package cascade
|
|
3629
|
3629
|
+
|
|
3630
|
3630
|
+func StringPtr(s string) *string {
|
|
...
|
...
|
@@ -3650,7 +3032,10 @@ index 0000000..4e9e44c
|
|
3650
|
3650
|
+func Int32Ptr(s int32) *int32 {
|
|
3651
|
3651
|
+ return &s
|
|
3652
|
3652
|
+}
|
|
3653
|
|
-\ No newline at end of file
|
|
|
3653
|
++
|
|
|
3654
|
++func BoolPtr(s bool) *bool {
|
|
|
3655
|
++ return &s
|
|
|
3656
|
++}
|
|
3654
|
3657
|
diff --git a/pkg/cloudprovider/providers/providers.go b/pkg/cloudprovider/providers/providers.go
|
|
3655
|
3658
|
index 7de9ca9..a655477 100644
|
|
3656
|
3659
|
--- a/pkg/cloudprovider/providers/providers.go
|
|
...
|
...
|
@@ -4515,14 +3900,15 @@ index 0000000..d1b791c
|
|
4515
|
4515
|
+}
|
|
4516
|
4516
|
diff --git a/pkg/volume/cascade_disk/cascade_util.go b/pkg/volume/cascade_disk/cascade_util.go
|
|
4517
|
4517
|
new file mode 100644
|
|
4518
|
|
-index 0000000..e08b7d0
|
|
|
4518
|
+index 0000000..e16199c
|
|
4519
|
4519
|
--- /dev/null
|
|
4520
|
4520
|
+++ b/pkg/volume/cascade_disk/cascade_util.go
|
|
4521
|
|
-@@ -0,0 +1,152 @@
|
|
|
4521
|
+@@ -0,0 +1,162 @@
|
|
4522
|
4522
|
+package cascade_disk
|
|
4523
|
4523
|
+
|
|
4524
|
4524
|
+import (
|
|
4525
|
4525
|
+ "fmt"
|
|
|
4526
|
++ "strconv"
|
|
4526
|
4527
|
+ "strings"
|
|
4527
|
4528
|
+ "time"
|
|
4528
|
4529
|
+
|
|
...
|
...
|
@@ -4585,10 +3971,19 @@ index 0000000..e08b7d0
|
|
4585
|
4585
|
+ Name: name,
|
|
4586
|
4586
|
+ }
|
|
4587
|
4587
|
+
|
|
|
4588
|
++ // enabling encryption by default if not provided from within storage class
|
|
|
4589
|
++ volumeOptions.Encrypted = true
|
|
4588
|
4590
|
+ for parameter, value := range p.options.Parameters {
|
|
4589
|
4591
|
+ switch strings.ToLower(parameter) {
|
|
4590
|
4592
|
+ case "flavor":
|
|
4591
|
4593
|
+ volumeOptions.Flavor = value
|
|
|
4594
|
++ case "encrypted":
|
|
|
4595
|
++ volumeOptions.Encrypted, err = strconv.ParseBool(value)
|
|
|
4596
|
++ if err != nil {
|
|
|
4597
|
++ glog.Errorf("Cascade Util: invalid value %q for encryption of volume plugin %s.", value,
|
|
|
4598
|
++ p.plugin.GetPluginName())
|
|
|
4599
|
++ return "", 0, "", fmt.Errorf("invalid encrypted boolean value %q, must be true or false: %v", value, err)
|
|
|
4600
|
++ }
|
|
4592
|
4601
|
+ case volume.VolumeParameterFSType:
|
|
4593
|
4602
|
+ fstype = value
|
|
4594
|
4603
|
+ glog.V(4).Infof("Cascade Util: Setting fstype to %s", fstype)
|
|
...
|
...
|
@@ -4756,10 +4151,10 @@ index 19fc962..8c51e38 100644
|
|
4756
|
4756
|
+}
|
|
4757
|
4757
|
diff --git a/plugin/pkg/admission/vke/BUILD b/plugin/pkg/admission/vke/BUILD
|
|
4758
|
4758
|
new file mode 100644
|
|
4759
|
|
-index 0000000..2fb36c7
|
|
|
4759
|
+index 0000000..530877a
|
|
4760
|
4760
|
--- /dev/null
|
|
4761
|
4761
|
+++ b/plugin/pkg/admission/vke/BUILD
|
|
4762
|
|
-@@ -0,0 +1,60 @@
|
|
|
4762
|
+@@ -0,0 +1,61 @@
|
|
4763
|
4763
|
+package(default_visibility = ["//visibility:public"])
|
|
4764
|
4764
|
+
|
|
4765
|
4765
|
+load(
|
|
...
|
...
|
@@ -4781,6 +4176,7 @@ index 0000000..2fb36c7
|
|
4781
|
4781
|
+ "//vendor/github.com/golang/glog:go_default_library",
|
|
4782
|
4782
|
+ "//vendor/k8s.io/api/policy/v1beta1:go_default_library"
|
|
4783
|
4783
|
+ "//vendor/k8s.io/apimachinery/pkg/api/equality:go_default_library",
|
|
|
4784
|
++ "//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library",
|
|
4784
|
4785
|
+ "//vendor/k8s.io/apimachinery/pkg/util/yaml:go_default_library",
|
|
4785
|
4786
|
+ "//vendor/k8s.io/apimachinery/pkg/util/validation/field:go_default_library",
|
|
4786
|
4787
|
+ "//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library",
|
|
...
|
...
|
@@ -4823,10 +4219,10 @@ index 0000000..2fb36c7
|
|
4823
|
4823
|
\ No newline at end of file
|
|
4824
|
4824
|
diff --git a/plugin/pkg/admission/vke/admission.go b/plugin/pkg/admission/vke/admission.go
|
|
4825
|
4825
|
new file mode 100644
|
|
4826
|
|
-index 0000000..ce1bd46
|
|
|
4826
|
+index 0000000..53a9d6a
|
|
4827
|
4827
|
--- /dev/null
|
|
4828
|
4828
|
+++ b/plugin/pkg/admission/vke/admission.go
|
|
4829
|
|
-@@ -0,0 +1,555 @@
|
|
|
4829
|
+@@ -0,0 +1,624 @@
|
|
4830
|
4830
|
+package vke
|
|
4831
|
4831
|
+
|
|
4832
|
4832
|
+import (
|
|
...
|
...
|
@@ -4854,11 +4250,9 @@ index 0000000..ce1bd46
|
|
4854
|
4854
|
+ // PluginName indicates name of admission plugin.
|
|
4855
|
4855
|
+ PluginName = "VMwareAdmissionController"
|
|
4856
|
4856
|
+
|
|
4857
|
|
-+ systemUnsecuredUser = "system:unsecured"
|
|
4858
|
4857
|
+ systemNodesGroup = "system:nodes"
|
|
4859
|
|
-+ systemMasterGroup = "system:master"
|
|
4860
|
|
-+ systemNodePrefix = "system:node:"
|
|
4861
|
|
-+ systemClusterPrefix = "system:clusterID:"
|
|
|
4858
|
++ systemMastersGroup = "system:masters"
|
|
|
4859
|
++ systemWorkerGroup = "system:worker"
|
|
4862
|
4860
|
+ privilegedNamespace = "vke-system"
|
|
4863
|
4861
|
+ privilegedServiceAccount = "system:serviceaccount:" + privilegedNamespace + ":"
|
|
4864
|
4862
|
+ reservedPrefix = "vke"
|
|
...
|
...
|
@@ -4896,20 +4290,32 @@ index 0000000..ce1bd46
|
|
4896
|
4896
|
+ VMwareAdmissionController vmwareAdmissionControllerConfig `yaml:"vmwareAdmissionController"`
|
|
4897
|
4897
|
+}
|
|
4898
|
4898
|
+
|
|
4899
|
|
-+var _ admission.ValidationInterface = &vmwareAdmissionController{}
|
|
|
4899
|
++var _ admission.MutationInterface = &vmwareAdmissionController{}
|
|
|
4900
|
++
|
|
|
4901
|
++// Admit makes an admission decision based on the request attributes.
|
|
|
4902
|
++// Note: We implement the mutation interface for this admission controller, which means we have the ability to modify
|
|
|
4903
|
++// the resources. But we do not modify them because we just need to validate the requests to either let them through or
|
|
|
4904
|
++// block them. We have implemented this as a mutation interface because we need access to oldObjects during update
|
|
|
4905
|
++// operations to find out what values are being modified. For node update operation, the old and new objects are always
|
|
|
4906
|
++// identical in the validation phase (possibly due to some initializer modifying it). So, we are performing our
|
|
|
4907
|
++// validation during the mutation phase.
|
|
|
4908
|
++func (vac *vmwareAdmissionController) Admit(a admission.Attributes) (err error) {
|
|
4900
|
4909
|
+
|
|
4901
|
|
-+// Validate makes an admission decision based on the request attributes. It is NOT allowed to mutate.
|
|
4902
|
|
-+func (vac *vmwareAdmissionController) Validate(a admission.Attributes) (err error) {
|
|
4903
|
4910
|
+ if isPrivilegedUser(vac, a) {
|
|
4904
|
4911
|
+ return nil
|
|
4905
|
4912
|
+ }
|
|
4906
|
4913
|
+
|
|
4907
|
|
-+ if isSystemUnsecuredUser(a) {
|
|
4908
|
|
-+ return validateSystemUnsecuredUser(vac, a)
|
|
|
4914
|
++ if isCertificateFromMaster(a) {
|
|
|
4915
|
++ return validateCertificateFromMaster(vac, a)
|
|
4909
|
4916
|
+ }
|
|
4910
|
4917
|
+
|
|
4911
|
|
-+ if isCertificateFromNode(a) {
|
|
4912
|
|
-+ return validateNodeCertificate(vac, a)
|
|
|
4918
|
++ if isCertificateFromWorker(a) {
|
|
|
4919
|
++ return validateCertificateFromWorker(a)
|
|
|
4920
|
++ }
|
|
|
4921
|
++
|
|
|
4922
|
++
|
|
|
4923
|
++ if isPrivilegedServiceAccount(a) {
|
|
|
4924
|
++ return validatePrivilegedServiceAccount(a)
|
|
4913
|
4925
|
+ }
|
|
4914
|
4926
|
+
|
|
4915
|
4927
|
+ if isPrivilegedNamespace(a) {
|
|
...
|
...
|
@@ -5048,13 +4454,6 @@ index 0000000..ce1bd46
|
|
5048
|
5048
|
+}
|
|
5049
|
5049
|
+
|
|
5050
|
5050
|
+func isPrivilegedUser(vac *vmwareAdmissionController, a admission.Attributes) bool {
|
|
5051
|
|
-+ // We need to allow the service accounts inside the privileged namespace to be able to access pods and nodes.
|
|
5052
|
|
-+ // Node-monitor agent, Photon OS update controller and Cluster autoscaler depend on this.
|
|
5053
|
|
-+ user := a.GetUserInfo().GetName()
|
|
5054
|
|
-+ if strings.HasPrefix(user, privilegedServiceAccount) {
|
|
5055
|
|
-+ return true
|
|
5056
|
|
-+ }
|
|
5057
|
|
-+
|
|
5058
|
5051
|
+ // If the request comes from a user belonging to a privileged group, then we allow it. Only calls from Cascade
|
|
5059
|
5052
|
+ // controller will belong to this privileged group.
|
|
5060
|
5053
|
+ groups := a.GetUserInfo().GetGroups()
|
|
...
|
...
|
@@ -5067,17 +4466,20 @@ index 0000000..ce1bd46
|
|
5067
|
5067
|
+ return false
|
|
5068
|
5068
|
+}
|
|
5069
|
5069
|
+
|
|
5070
|
|
-+func isSystemUnsecuredUser(a admission.Attributes) bool {
|
|
5071
|
|
-+ return a.GetUserInfo().GetName() == systemUnsecuredUser
|
|
|
5070
|
++func isCertificateFromMaster(a admission.Attributes) bool {
|
|
|
5071
|
++ groups := a.GetUserInfo().GetGroups()
|
|
|
5072
|
++ for _, group := range groups {
|
|
|
5073
|
++ if group == systemMastersGroup {
|
|
|
5074
|
++ return true
|
|
|
5075
|
++ }
|
|
|
5076
|
++ }
|
|
|
5077
|
++ return false
|
|
5072
|
5078
|
+}
|
|
5073
|
5079
|
+
|
|
5074
|
|
-+func validateSystemUnsecuredUser(vac *vmwareAdmissionController, a admission.Attributes) (err error) {
|
|
5075
|
|
-+ // Currently the insecure port 8080 is exposed to only localhost inside the Kubernetes master VMs. So it can be used
|
|
5076
|
|
-+ // only by kube-controller-manager, kube-scheduler and cloud-init script which creates our pods and other resources.
|
|
5077
|
|
-+ // When a call comes on insecure port 8080, Kubernetes assigns them system:unsecured user name. We need to allow
|
|
5078
|
|
-+ // this so that our master components can be started successfully and kube-controller-manager and kube-scheduler can
|
|
5079
|
|
-+ // work as expected.
|
|
5080
|
|
-+ // But this needs to be allowed only inside our privileged namespace. If the request comes to any other namespace,
|
|
|
5080
|
++
|
|
|
5081
|
++func validateCertificateFromMaster(vac *vmwareAdmissionController, a admission.Attributes) (err error) {
|
|
|
5082
|
++ // kube-controller-manager, kube-scheduler and cloud-init script which creates our pods and other resources can use
|
|
|
5083
|
++ // the master certificate to create pods in privileged namespace. If the request comes to any other namespace,
|
|
5081
|
5084
|
+ // we need to make it go through our pod validation. This is needed because a user can create a deployment or
|
|
5082
|
5085
|
+ // replica set which has a privileged pod. Since our admission controller does not look at deployments or replica
|
|
5083
|
5086
|
+ // sets, we will allow it. The actual pod inside the deployment or replica set will be created by the
|
|
...
|
...
|
@@ -5091,46 +4493,48 @@ index 0000000..ce1bd46
|
|
5091
|
5091
|
+ return nil
|
|
5092
|
5092
|
+}
|
|
5093
|
5093
|
+
|
|
5094
|
|
-+func isCertificateFromNode(a admission.Attributes) bool {
|
|
5095
|
|
-+ // If the request came from a user with group = systemNodesGroup, then we assume that the request comes from a node
|
|
5096
|
|
-+ // which uses a certificate for authentication.
|
|
|
5094
|
++func isCertificateFromWorker(a admission.Attributes) bool {
|
|
5097
|
5095
|
+ groups := a.GetUserInfo().GetGroups()
|
|
5098
|
5096
|
+ for _, group := range groups {
|
|
5099
|
|
-+ if group == systemNodesGroup {
|
|
|
5097
|
++ if group == systemWorkerGroup {
|
|
5100
|
5098
|
+ return true
|
|
5101
|
5099
|
+ }
|
|
5102
|
5100
|
+ }
|
|
5103
|
5101
|
+ return false
|
|
5104
|
5102
|
+}
|
|
5105
|
5103
|
+
|
|
5106
|
|
-+func validateNodeCertificate(vac *vmwareAdmissionController, a admission.Attributes) (err error) {
|
|
5107
|
|
-+ // If the groups have system:cluster:cluster-id as one of the groups, then validate that the cluster ID belongs to
|
|
5108
|
|
-+ // this cluster. If not fail. This prevents cross cluster access using certificates.
|
|
5109
|
|
-+ invalidClusterID := false
|
|
5110
|
|
-+ masterNode := false
|
|
5111
|
|
-+ groups := a.GetUserInfo().GetGroups()
|
|
5112
|
|
-+ for _, group := range groups {
|
|
5113
|
|
-+ if strings.HasPrefix(group, systemClusterPrefix) {
|
|
5114
|
|
-+ groupParts := strings.Split(group, ":")
|
|
5115
|
|
-+ if vac.clusterID != "" && groupParts[len(groupParts)-1] != vac.clusterID {
|
|
5116
|
|
-+ invalidClusterID = true
|
|
5117
|
|
-+ }
|
|
5118
|
|
-+ }
|
|
5119
|
|
-+ if group == systemMasterGroup {
|
|
5120
|
|
-+ masterNode = true
|
|
5121
|
|
-+ }
|
|
|
5104
|
++
|
|
|
5105
|
++func isCreatingPodsThroughControllerManager(resource string) bool {
|
|
|
5106
|
++ // If the resource is one of the following, it means the controller manager will create a pod for them and not the
|
|
|
5107
|
++ // user directly. So, we need to identify these cases and block them in certain scenarios.
|
|
|
5108
|
++ if resource == "deployments" ||
|
|
|
5109
|
++ resource == "replicasets" ||
|
|
|
5110
|
++ resource == "replicationcontrollers" ||
|
|
|
5111
|
++ resource == "statefulsets" ||
|
|
|
5112
|
++ resource == "daemonsets" ||
|
|
|
5113
|
++ resource == "jobs" ||
|
|
|
5114
|
++ resource == "cronjobs" {
|
|
|
5115
|
++ return true
|
|
5122
|
5116
|
+ }
|
|
5123
|
|
-+ if invalidClusterID {
|
|
5124
|
|
-+ return admission.NewForbidden(a, fmt.Errorf("%s validation failed: request is not from this cluster", PluginName))
|
|
|
5117
|
++ return false
|
|
|
5118
|
++}
|
|
|
5119
|
++
|
|
|
5120
|
++func validateCertificateFromWorker(a admission.Attributes) error {
|
|
|
5121
|
++ // Block exec operations into pods for workers. This is needed to block someone from using Kubelet's certificate to
|
|
|
5122
|
++ // exec into privileged pods running on the master. Other operations with the node certificate like modifying master
|
|
|
5123
|
++ // node, creating pods on master node, etc. are blocked by the node restriction admission controller.
|
|
|
5124
|
++ resource := a.GetResource().GroupResource()
|
|
|
5125
|
++ if resource == api.Resource("pods") && a.GetOperation() == admission.Connect {
|
|
|
5126
|
++ return admission.NewForbidden(a,
|
|
|
5127
|
++ fmt.Errorf("%s validation failed: cannot modify pods in namespace %s", PluginName, a.GetNamespace()))
|
|
5125
|
5128
|
+ }
|
|
5126
|
5129
|
+
|
|
5127
|
|
-+ // If a worker node name does not have the node prefix, then fail. This is needed for the request to go through node
|
|
5128
|
|
-+ // restriction admission controller. If it is not set, then a user can bypass node restriction admission controller
|
|
5129
|
|
-+ // and modify the master node.
|
|
5130
|
|
-+ name := a.GetUserInfo().GetName()
|
|
5131
|
|
-+ if !strings.HasPrefix(name, systemNodePrefix) && !masterNode {
|
|
5132
|
|
-+ return admission.NewForbidden(a, fmt.Errorf("%s validation failed: username is invalid", PluginName))
|
|
|
5130
|
++ // Block creation of pods indirectly by going through the controller manager.
|
|
|
5131
|
++ if isCreatingPodsThroughControllerManager(resource.Resource) {
|
|
|
5132
|
++ return admission.NewForbidden(a,
|
|
|
5133
|
++ fmt.Errorf("%s validation failed: cannot modify %s in namespace %s", PluginName, resource.Resource, a.GetNamespace()))
|
|
5133
|
5134
|
+ }
|
|
|
5135
|
++
|
|
5134
|
5136
|
+ return nil
|
|
5135
|
5137
|
+}
|
|
5136
|
5138
|
+
|
|
...
|
...
|
@@ -5154,10 +4558,71 @@ index 0000000..ce1bd46
|
|
5154
|
5154
|
+ return false
|
|
5155
|
5155
|
+}
|
|
5156
|
5156
|
+
|
|
|
5157
|
++func isPrivilegedServiceAccount(a admission.Attributes) bool {
|
|
|
5158
|
++ user := a.GetUserInfo().GetName()
|
|
|
5159
|
++ return strings.HasPrefix(user, privilegedServiceAccount)
|
|
|
5160
|
++}
|
|
|
5161
|
++
|
|
|
5162
|
++func validatePrivilegedServiceAccount(a admission.Attributes) error {
|
|
|
5163
|
++ // If the privileged service account performs any operation on the pods resource like create, update or connect,
|
|
|
5164
|
++ // we block it. This is needed so that we can block exec access into privileged pods running on the master. Also,
|
|
|
5165
|
++ // privileged service account does not need to perform these operations. So, just to be extra cautious we also block
|
|
|
5166
|
++ // off create and update pods.
|
|
|
5167
|
++ resource := a.GetResource().GroupResource()
|
|
|
5168
|
++ if resource == api.Resource("pods") {
|
|
|
5169
|
++ // Allow Delete operation on pods
|
|
|
5170
|
++ if a.GetOperation() == admission.Delete {
|
|
|
5171
|
++ return nil
|
|
|
5172
|
++ }
|
|
|
5173
|
++ // Allow subresources other than exec on pods
|
|
|
5174
|
++ if len(a.GetSubresource()) != 0 && a.GetSubresource() != "exec" {
|
|
|
5175
|
++ return nil
|
|
|
5176
|
++ }
|
|
|
5177
|
++ // Block all other operations
|
|
|
5178
|
++ if a.GetOperation() == admission.Create || a.GetOperation() == admission.Update || a.GetOperation() == admission.Connect {
|
|
|
5179
|
++ return admission.NewForbidden(a,
|
|
|
5180
|
++ fmt.Errorf("%s validation failed: cannot modify pods in namespace %s", PluginName, a.GetNamespace()))
|
|
|
5181
|
++ }
|
|
|
5182
|
++ }
|
|
|
5183
|
++
|
|
|
5184
|
++ // If the privileged service account tries to update taints on the master node, we block. We need to do this so that
|
|
|
5185
|
++ // a user cannot use a privileged service account to untaint the node and run pods on a master.
|
|
|
5186
|
++ if resource == api.Resource("nodes") {
|
|
|
5187
|
++ if a.GetOperation() == admission.Update && strings.HasPrefix(a.GetName(), masterNodePrefix) {
|
|
|
5188
|
++ node, ok := a.GetObject().(*api.Node)
|
|
|
5189
|
++ if !ok {
|
|
|
5190
|
++ return admission.NewForbidden(a,
|
|
|
5191
|
++ fmt.Errorf("%s validation failed: unexpected type %T", PluginName, a.GetObject()))
|
|
|
5192
|
++ }
|
|
|
5193
|
++ oldNode, ok := a.GetOldObject().(*api.Node)
|
|
|
5194
|
++ if !ok {
|
|
|
5195
|
++ return admission.NewForbidden(a,
|
|
|
5196
|
++ fmt.Errorf("%s validation failed: unexpected type %T", PluginName, a.GetOldObject()))
|
|
|
5197
|
++ }
|
|
|
5198
|
++
|
|
|
5199
|
++ if !apiequality.Semantic.DeepEqual(node.Spec.Taints, oldNode.Spec.Taints) {
|
|
|
5200
|
++ return admission.NewForbidden(a,
|
|
|
5201
|
++ fmt.Errorf("%s validation failed: cannot modify taints on a node", PluginName))
|
|
|
5202
|
++ }
|
|
|
5203
|
++ }
|
|
|
5204
|
++ }
|
|
|
5205
|
++
|
|
|
5206
|
++ // Block creation of pods indirectly by going through the controller manager.
|
|
|
5207
|
++ if isCreatingPodsThroughControllerManager(resource.Resource) {
|
|
|
5208
|
++ return admission.NewForbidden(a,
|
|
|
5209
|
++ fmt.Errorf("%s validation failed: cannot modify %s in namespace %s", PluginName, resource.Resource, a.GetNamespace()))
|
|
|
5210
|
++ }
|
|
|
5211
|
++
|
|
|
5212
|
++ return nil
|
|
|
5213
|
++}
|
|
|
5214
|
++
|
|
|
5215
|
++
|
|
5157
|
5216
|
+func validateNodes(a admission.Attributes) error {
|
|
5158
|
5217
|
+ // If it is a connect operation on the sub resource, allow it. Sub resources of nodes are nodes/nodename/proxy and
|
|
5159
|
5218
|
+ // nodes/nodename/status. Prometheus needs read access to nodes/nodename/proxy/metrics. To support that and other
|
|
5160
|
|
-+ // pods which might need read access to node metrics, we need to allow this.
|
|
|
5219
|
++ // pods which might need read access to node metrics, we need to allow this. But the VKE authorizer blocks off any
|
|
|
5220
|
++ // access to perform exec, attach or run on the proxy resource on a master which will prevent the users from getting
|
|
|
5221
|
++ // access to the privileged pods on master.
|
|
5161
|
5222
|
+ if a.GetOperation() == admission.Connect && len(a.GetSubresource()) != 0 {
|
|
5162
|
5223
|
+ return nil
|
|
5163
|
5224
|
+ }
|
|
...
|
...
|
@@ -5384,10 +4849,10 @@ index 0000000..ce1bd46
|
|
5384
|
5384
|
+}
|
|
5385
|
5385
|
diff --git a/plugin/pkg/admission/vke/admission_test.go b/plugin/pkg/admission/vke/admission_test.go
|
|
5386
|
5386
|
new file mode 100644
|
|
5387
|
|
-index 0000000..4ce4a1f
|
|
|
5387
|
+index 0000000..3486f10
|
|
5388
|
5388
|
--- /dev/null
|
|
5389
|
5389
|
+++ b/plugin/pkg/admission/vke/admission_test.go
|
|
5390
|
|
-@@ -0,0 +1,882 @@
|
|
|
5390
|
+@@ -0,0 +1,960 @@
|
|
5391
|
5391
|
+package vke
|
|
5392
|
5392
|
+
|
|
5393
|
5393
|
+import (
|
|
...
|
...
|
@@ -5397,6 +4862,7 @@ index 0000000..4ce4a1f
|
|
5397
|
5397
|
+ "testing"
|
|
5398
|
5398
|
+
|
|
5399
|
5399
|
+ metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
5400
|
++ "k8s.io/apimachinery/pkg/runtime"
|
|
5400
|
5401
|
+ kadmission "k8s.io/apiserver/pkg/admission"
|
|
5401
|
5402
|
+ kapi "k8s.io/kubernetes/pkg/apis/core"
|
|
5402
|
5403
|
+ "k8s.io/kubernetes/pkg/apis/rbac"
|
|
...
|
...
|
@@ -5701,8 +5167,7 @@ index 0000000..4ce4a1f
|
|
5701
|
5701
|
+ },
|
|
5702
|
5702
|
+ "denied: regular lightwave user cannot escalate privilege using service account": {
|
|
5703
|
5703
|
+ operation: kadmission.Create,
|
|
5704
|
|
-+ pod: newTestPodBuilder().withNamespace(privilegedNamespace).withServiceAccount("system:serviceaccount:" + privilegedNamespace + ":default").build(),
|
|
5705
|
|
-+ userInfo: newTestUserBuilder().build(),
|
|
|
5704
|
++ pod: newTestPodBuilder().withNamespace(privilegedNamespace).withServiceAccount(privilegedServiceAccount + "default").build(), userInfo: newTestUserBuilder().build(),
|
|
5706
|
5705
|
+ shouldPassValidate: false,
|
|
5707
|
5706
|
+ },
|
|
5708
|
5707
|
+ "denied: regular service account creates pod in vke-system namespace": {
|
|
...
|
...
|
@@ -5711,34 +5176,46 @@ index 0000000..4ce4a1f
|
|
5711
|
5711
|
+ userInfo: newTestUserBuilder().withName("system:serviceaccount:kube-system:default").build(),
|
|
5712
|
5712
|
+ shouldPassValidate: false,
|
|
5713
|
5713
|
+ },
|
|
5714
|
|
-+ "allowed: regular user creates pod in other namespace": {
|
|
5715
|
|
-+ operation: kadmission.Create,
|
|
5716
|
|
-+ pod: newTestPodBuilder().withNamespace("default").build(),
|
|
5717
|
|
-+ userInfo: newTestUserBuilder().build(),
|
|
|
5714
|
++ "allowed: privileged service account deletes a pod in privileged namespace": {
|
|
|
5715
|
++ operation: kadmission.Delete,
|
|
|
5716
|
++ pod: newTestPodBuilder().withNamespace(privilegedNamespace).build(),
|
|
|
5717
|
++ userInfo: newTestUserBuilder().withName(privilegedServiceAccount + "default").build(),
|
|
5718
|
5718
|
+ shouldPassValidate: true,
|
|
5719
|
5719
|
+ },
|
|
5720
|
|
-+ "allowed: Cascade Controller Service Account creates pod in vke-system namespace": {
|
|
|
5720
|
++ "denied: privileged service account creates a pod in privileged namespace": {
|
|
5721
|
5721
|
+ operation: kadmission.Create,
|
|
5722
|
5722
|
+ pod: newTestPodBuilder().withNamespace(privilegedNamespace).build(),
|
|
5723
|
|
-+ userInfo: newTestUserBuilder().withGroup(testServiceAccountsGroup).build(),
|
|
5724
|
|
-+ shouldPassValidate: true,
|
|
|
5723
|
++ userInfo: newTestUserBuilder().withName(privilegedServiceAccount + "default").build(),
|
|
|
5724
|
++ shouldPassValidate: false,
|
|
5725
|
5725
|
+ },
|
|
5726
|
|
-+ "allowed: systemUnsecuredUser creates pod in vke-system namespace": {
|
|
5727
|
|
-+ operation: kadmission.Create,
|
|
|
5726
|
++ "denied: privileged service account execs into a pod in privileged namespace": {
|
|
|
5727
|
++ operation: kadmission.Connect,
|
|
|
5728
|
++ pod: newTestPodBuilder().withNamespace(privilegedNamespace).build(),
|
|
|
5729
|
++ userInfo: newTestUserBuilder().withName(privilegedServiceAccount + "default").build(),
|
|
|
5730
|
++ shouldPassValidate: false,
|
|
|
5731
|
++ },
|
|
|
5732
|
++ "denied: privileged service account updates a pod in privileged namespace": {
|
|
|
5733
|
++ operation: kadmission.Update,
|
|
5728
|
5734
|
+ pod: newTestPodBuilder().withNamespace(privilegedNamespace).build(),
|
|
5729
|
|
-+ userInfo: newTestUserBuilder().withName(systemUnsecuredUser).build(),
|
|
|
5735
|
++ userInfo: newTestUserBuilder().withName(privilegedServiceAccount + "default").build(),
|
|
|
5736
|
++ shouldPassValidate: false,
|
|
|
5737
|
++ },
|
|
|
5738
|
++ "allowed: regular user creates pod in other namespace": {
|
|
|
5739
|
++ operation: kadmission.Create,
|
|
|
5740
|
++ pod: newTestPodBuilder().withNamespace("default").build(),
|
|
|
5741
|
++ userInfo: newTestUserBuilder().build(),
|
|
5730
|
5742
|
+ shouldPassValidate: true,
|
|
5731
|
5743
|
+ },
|
|
5732
|
|
-+ "allowed: vke-system service account creates pod in vke-system namespace": {
|
|
|
5744
|
++ "allowed: Cascade Controller Service Account creates pod in vke-system namespace": {
|
|
5733
|
5745
|
+ operation: kadmission.Create,
|
|
5734
|
5746
|
+ pod: newTestPodBuilder().withNamespace(privilegedNamespace).build(),
|
|
5735
|
|
-+ userInfo: newTestUserBuilder().withName("system:serviceaccount:" + privilegedNamespace + ":default").build(),
|
|
|
5747
|
++ userInfo: newTestUserBuilder().withGroup(testServiceAccountsGroup).build(),
|
|
5736
|
5748
|
+ shouldPassValidate: true,
|
|
5737
|
5749
|
+ },
|
|
5738
|
|
-+ "allowed: kubelet group creates pod in vke-system namespace": {
|
|
|
5750
|
++ "allowed: systemMasters group creates pod in vke-system namespace": {
|
|
5739
|
5751
|
+ operation: kadmission.Create,
|
|
5740
|
5752
|
+ pod: newTestPodBuilder().withNamespace(privilegedNamespace).build(),
|
|
5741
|
|
-+ userInfo: newTestUserBuilder().withGroup(systemNodesGroup).withName("system:node:worker").build(),
|
|
|
5753
|
++ userInfo: newTestUserBuilder().withGroup(systemMastersGroup).build(),
|
|
5742
|
5754
|
+ shouldPassValidate: true,
|
|
5743
|
5755
|
+ },
|
|
5744
|
5756
|
+ "denied: regular lightwave group does not grant privileged access": {
|
|
...
|
...
|
@@ -5753,27 +5230,12 @@ index 0000000..4ce4a1f
|
|
5753
|
5753
|
+ userInfo: newTestUserBuilder().withGroup("test1\\group1").withGroup(testServiceAccountsGroup).build(),
|
|
5754
|
5754
|
+ shouldPassValidate: true,
|
|
5755
|
5755
|
+ },
|
|
5756
|
|
-+ "denied: cross cluster acccess": {
|
|
5757
|
|
-+ operation: kadmission.Create,
|
|
5758
|
|
-+ pod: newTestPodBuilder().build(),
|
|
5759
|
|
-+ userInfo: newTestUserBuilder().withName("system:node:worker").withGroup("system:clusterID:some-cluster-id").
|
|
5760
|
|
-+ withGroup("system:nodes").withGroup("system:worker").build(),
|
|
5761
|
|
-+ shouldPassValidate: false,
|
|
5762
|
|
-+ },
|
|
5763
|
|
-+ "denied: node restriction admission controller bypass": {
|
|
5764
|
|
-+ operation: kadmission.Create,
|
|
5765
|
|
-+ pod: newTestPodBuilder().build(),
|
|
5766
|
|
-+ userInfo: newTestUserBuilder().withGroup("system:clusterID:cluster-id").withGroup("system:nodes").
|
|
5767
|
|
-+ withGroup("system:worker").build(),
|
|
|
5756
|
++ "denied: worker kubelet exec into pod": {
|
|
|
5757
|
++ operation: kadmission.Connect,
|
|
|
5758
|
++ pod: newTestPodBuilder().build(),
|
|
|
5759
|
++ userInfo: newTestUserBuilder().withGroup("system:worker").build(),
|
|
5768
|
5760
|
+ shouldPassValidate: false,
|
|
5769
|
5761
|
+ },
|
|
5770
|
|
-+ "allowed: master node to bypass node restriction admission controller": {
|
|
5771
|
|
-+ operation: kadmission.Create,
|
|
5772
|
|
-+ pod: newTestPodBuilder().build(),
|
|
5773
|
|
-+ userInfo: newTestUserBuilder().withName("kubernetes-master").withGroup("system:clusterID:cluster-id").
|
|
5774
|
|
-+ withGroup("system:nodes").withGroup("system:master").build(),
|
|
5775
|
|
-+ shouldPassValidate: true,
|
|
5776
|
|
-+ },
|
|
5777
|
5762
|
+ }
|
|
5778
|
5763
|
+ for k, v := range tests {
|
|
5779
|
5764
|
+ testPodValidation(k, v.operation, v.pod, v.name, v.userInfo, v.shouldPassValidate, t)
|
|
...
|
...
|
@@ -5845,6 +5307,8 @@ index 0000000..4ce4a1f
|
|
5845
|
5845
|
+ name string
|
|
5846
|
5846
|
+ namespace string
|
|
5847
|
5847
|
+ userInfo user.Info
|
|
|
5848
|
++ object runtime.Object
|
|
|
5849
|
++ oldObject runtime.Object
|
|
5848
|
5850
|
+ shouldPassValidate bool
|
|
5849
|
5851
|
+ }{
|
|
5850
|
5852
|
+ "denied: regular lightwave user update configmaps in vke-system namespace": {
|
|
...
|
...
|
@@ -5906,12 +5370,12 @@ index 0000000..4ce4a1f
|
|
5906
|
5906
|
+ userInfo: newTestUserBuilder().build(),
|
|
5907
|
5907
|
+ shouldPassValidate: false,
|
|
5908
|
5908
|
+ },
|
|
5909
|
|
-+ "allowed: systemUnsecuredUser update clusterroles with vke: prefix": {
|
|
|
5909
|
++ "allowed: systemMasters group update clusterroles with vke: prefix": {
|
|
5910
|
5910
|
+ operation: kadmission.Update,
|
|
5911
|
5911
|
+ resource: "clusterroles",
|
|
5912
|
5912
|
+ name: "vke:clusterrole",
|
|
5913
|
5913
|
+ namespace: "",
|
|
5914
|
|
-+ userInfo: newTestUserBuilder().withName(systemUnsecuredUser).build(),
|
|
|
5914
|
++ userInfo: newTestUserBuilder().withGroup(systemMastersGroup).build(),
|
|
5915
|
5915
|
+ shouldPassValidate: true,
|
|
5916
|
5916
|
+ },
|
|
5917
|
5917
|
+ "allowed: regular lightwave user create clusterrolebindings": {
|
|
...
|
...
|
@@ -5938,12 +5402,12 @@ index 0000000..4ce4a1f
|
|
5938
|
5938
|
+ userInfo: newTestUserBuilder().build(),
|
|
5939
|
5939
|
+ shouldPassValidate: false,
|
|
5940
|
5940
|
+ },
|
|
5941
|
|
-+ "allowed: systemUnsecuredUser update clusterrolebindings with vke: prefix": {
|
|
|
5941
|
++ "allowed: systemMastersGroup update clusterrolebindings with vke: prefix": {
|
|
5942
|
5942
|
+ operation: kadmission.Update,
|
|
5943
|
5943
|
+ resource: "clusterrolebindings",
|
|
5944
|
5944
|
+ name: "vke:clusterrolebinding",
|
|
5945
|
5945
|
+ namespace: "",
|
|
5946
|
|
-+ userInfo: newTestUserBuilder().withName(systemUnsecuredUser).build(),
|
|
|
5946
|
++ userInfo: newTestUserBuilder().withGroup(systemMastersGroup).build(),
|
|
5947
|
5947
|
+ shouldPassValidate: true,
|
|
5948
|
5948
|
+ },
|
|
5949
|
5949
|
+ "allowed: regular lightwave user update worker nodes": {
|
|
...
|
...
|
@@ -6032,17 +5496,58 @@ index 0000000..4ce4a1f
|
|
6032
|
6032
|
+ userInfo: newTestUserBuilder().build(),
|
|
6033
|
6033
|
+ shouldPassValidate: false,
|
|
6034
|
6034
|
+ },
|
|
6035
|
|
-+ "allowed: systemUnsecuredUser update nodes": {
|
|
|
6035
|
++ "allowed: systemMasters group update nodes": {
|
|
|
6036
|
++ operation: kadmission.Update,
|
|
|
6037
|
++ resource: "nodes",
|
|
|
6038
|
++ namespace: "",
|
|
|
6039
|
++ userInfo: newTestUserBuilder().withGroup(systemMastersGroup).build(),
|
|
|
6040
|
++ shouldPassValidate: true,
|
|
|
6041
|
++ },
|
|
|
6042
|
++ "allowed: kubelet update node": {
|
|
6036
|
6043
|
+ operation: kadmission.Update,
|
|
6037
|
6044
|
+ resource: "nodes",
|
|
6038
|
6045
|
+ namespace: "",
|
|
6039
|
|
-+ userInfo: newTestUserBuilder().withName(systemUnsecuredUser).build(),
|
|
|
6046
|
++ userInfo: newTestUserBuilder().withGroup(systemNodesGroup).build(),
|
|
6040
|
6047
|
+ shouldPassValidate: true,
|
|
6041
|
6048
|
+ },
|
|
|
6049
|
++ "allowed: privileged service account update worker node taint": {
|
|
|
6050
|
++ operation: kadmission.Update,
|
|
|
6051
|
++ resource: "nodes",
|
|
|
6052
|
++ namespace: "",
|
|
|
6053
|
++ name: "worker-guid",
|
|
|
6054
|
++ oldObject: newTestNodeBuilder().build(),
|
|
|
6055
|
++ object: newTestNodeBuilder().withTaint(nil).build(),
|
|
|
6056
|
++ userInfo: newTestUserBuilder().withName(privilegedServiceAccount + "default").build(),
|
|
|
6057
|
++ shouldPassValidate: true,
|
|
|
6058
|
++ },
|
|
|
6059
|
++ "denied: privileged service account update master node taint": {
|
|
|
6060
|
++ operation: kadmission.Update,
|
|
|
6061
|
++ resource: "nodes",
|
|
|
6062
|
++ namespace: "",
|
|
|
6063
|
++ name: "master-guid",
|
|
|
6064
|
++ oldObject: newTestNodeBuilder().build(),
|
|
|
6065
|
++ object: newTestNodeBuilder().withTaint(nil).build(),
|
|
|
6066
|
++ userInfo: newTestUserBuilder().withName(privilegedServiceAccount + "default").build(),
|
|
|
6067
|
++ shouldPassValidate: false,
|
|
|
6068
|
++ },
|
|
|
6069
|
++ "denied: privileged service account create a deployment": {
|
|
|
6070
|
++ operation: kadmission.Create,
|
|
|
6071
|
++ resource: "deployments",
|
|
|
6072
|
++ namespace: "vke-system",
|
|
|
6073
|
++ userInfo: newTestUserBuilder().withName(privilegedServiceAccount + "default").build(),
|
|
|
6074
|
++ shouldPassValidate: false,
|
|
|
6075
|
++ },
|
|
|
6076
|
++ "denied: worker kubelet create a deployment": {
|
|
|
6077
|
++ operation: kadmission.Create,
|
|
|
6078
|
++ resource: "deployments",
|
|
|
6079
|
++ namespace: "vke-system",
|
|
|
6080
|
++ userInfo: newTestUserBuilder().withGroup(systemWorkerGroup).build(),
|
|
|
6081
|
++ shouldPassValidate: false,
|
|
|
6082
|
++ },
|
|
6042
|
6083
|
+ }
|
|
6043
|
6084
|
+ for k, v := range tests {
|
|
6044
|
|
-+ testResourceValidation(k, v.operation, v.resource, v.subresource, v.name, v.namespace, v.userInfo,
|
|
6045
|
|
-+ v.shouldPassValidate, t)
|
|
|
6085
|
++ testResourceValidation(k, v.operation, v.resource, v.subresource, v.name, v.namespace, v.userInfo, v.object,
|
|
|
6086
|
++ v.oldObject, v.shouldPassValidate, t)
|
|
6046
|
6087
|
+ }
|
|
6047
|
6088
|
+}
|
|
6048
|
6089
|
+
|
|
...
|
...
|
@@ -6064,7 +5569,7 @@ index 0000000..4ce4a1f
|
|
6064
|
6064
|
+ attrs := kadmission.NewAttributesRecord(pod, nil, kapi.Kind("Pod").WithVersion("version"),
|
|
6065
|
6065
|
+ namespace, name, kapi.Resource("pods").WithVersion("version"), "", op, userInfo)
|
|
6066
|
6066
|
+
|
|
6067
|
|
-+ err = plugin.Validate(attrs)
|
|
|
6067
|
++ err = plugin.Admit(attrs)
|
|
6068
|
6068
|
+ if shouldPassValidate && err != nil {
|
|
6069
|
6069
|
+ t.Errorf("%s: expected no errors on Validate but received %v", testCaseName, err)
|
|
6070
|
6070
|
+ } else if !shouldPassValidate && err == nil {
|
|
...
|
...
|
@@ -6073,7 +5578,7 @@ index 0000000..4ce4a1f
|
|
6073
|
6073
|
+}
|
|
6074
|
6074
|
+
|
|
6075
|
6075
|
+func testResourceValidation(testCaseName string, op kadmission.Operation, resource, subresource, name, namespace string,
|
|
6076
|
|
-+ userInfo user.Info, shouldPassValidate bool, t *testing.T) {
|
|
|
6076
|
++ userInfo user.Info, object runtime.Object, oldObject runtime.Object, shouldPassValidate bool, t *testing.T) {
|
|
6077
|
6077
|
+
|
|
6078
|
6078
|
+ defaultConfigFile := fmt.Sprintf(defaultConfigFileFormat, testServiceAccountsGroup, pspFileName, clusterID)
|
|
6079
|
6079
|
+ configFile := strings.NewReader(defaultConfigFile)
|
|
...
|
...
|
@@ -6087,10 +5592,10 @@ index 0000000..4ce4a1f
|
|
6087
|
6087
|
+ groupResource = rbac.Resource(resource).WithVersion("version")
|
|
6088
|
6088
|
+ }
|
|
6089
|
6089
|
+
|
|
6090
|
|
-+ attrs := kadmission.NewAttributesRecord(nil, nil, kapi.Kind("kind").WithVersion("version"),
|
|
|
6090
|
++ attrs := kadmission.NewAttributesRecord(object, oldObject, kapi.Kind("kind").WithVersion("version"),
|
|
6091
|
6091
|
+ namespace, name, groupResource, subresource, op, userInfo)
|
|
6092
|
6092
|
+
|
|
6093
|
|
-+ err = plugin.Validate(attrs)
|
|
|
6093
|
++ err = plugin.Admit(attrs)
|
|
6094
|
6094
|
+ if shouldPassValidate && err != nil {
|
|
6095
|
6095
|
+ t.Errorf("%s: expected no errors on Validate but received %v", testCaseName, err)
|
|
6096
|
6096
|
+ } else if !shouldPassValidate && err == nil {
|
|
...
|
...
|
@@ -6270,12 +5775,50 @@ index 0000000..4ce4a1f
|
|
6270
|
6270
|
+ p.user.Groups = append(p.user.Groups, group)
|
|
6271
|
6271
|
+ return p
|
|
6272
|
6272
|
+}
|
|
|
6273
|
++
|
|
|
6274
|
++// testNodeBuilder
|
|
|
6275
|
++type testNodeBuilder struct {
|
|
|
6276
|
++ node kapi.Node
|
|
|
6277
|
++}
|
|
|
6278
|
++
|
|
|
6279
|
++func newTestNodeBuilder() *testNodeBuilder {
|
|
|
6280
|
++ builder := new(testNodeBuilder)
|
|
|
6281
|
++ return builder.init()
|
|
|
6282
|
++}
|
|
|
6283
|
++
|
|
|
6284
|
++func (n *testNodeBuilder) init() *testNodeBuilder {
|
|
|
6285
|
++ n.node = kapi.Node{
|
|
|
6286
|
++ ObjectMeta: metav1.ObjectMeta{
|
|
|
6287
|
++ Name: "node",
|
|
|
6288
|
++ Namespace: "",
|
|
|
6289
|
++ Annotations: nil,
|
|
|
6290
|
++ },
|
|
|
6291
|
++ Spec: kapi.NodeSpec{
|
|
|
6292
|
++ Taints: []kapi.Taint{
|
|
|
6293
|
++ {
|
|
|
6294
|
++ "Dedicated", "Master", "NoSchedule", nil,
|
|
|
6295
|
++ },
|
|
|
6296
|
++ },
|
|
|
6297
|
++ },
|
|
|
6298
|
++ }
|
|
|
6299
|
++ return n
|
|
|
6300
|
++}
|
|
|
6301
|
++
|
|
|
6302
|
++func (n *testNodeBuilder) build() *kapi.Node {
|
|
|
6303
|
++ return &n.node
|
|
|
6304
|
++}
|
|
|
6305
|
++
|
|
|
6306
|
++func (n *testNodeBuilder) withTaint(taints []kapi.Taint) *testNodeBuilder {
|
|
|
6307
|
++ n.node.Spec.Taints = taints
|
|
|
6308
|
++ return n
|
|
|
6309
|
++}
|
|
|
6310
|
++
|
|
6273
|
6311
|
diff --git a/plugin/pkg/auth/authorizer/vke/BUILD b/plugin/pkg/auth/authorizer/vke/BUILD
|
|
6274
|
6312
|
new file mode 100644
|
|
6275
|
|
-index 0000000..e505913
|
|
|
6313
|
+index 0000000..4b984f1
|
|
6276
|
6314
|
--- /dev/null
|
|
6277
|
6315
|
+++ b/plugin/pkg/auth/authorizer/vke/BUILD
|
|
6278
|
|
-@@ -0,0 +1,30 @@
|
|
|
6316
|
+@@ -0,0 +1,40 @@
|
|
6279
|
6317
|
+package(default_visibility = ["//visibility:public"])
|
|
6280
|
6318
|
+
|
|
6281
|
6319
|
+load(
|
|
...
|
...
|
@@ -6283,6 +5826,16 @@ index 0000000..e505913
|
|
6283
|
6283
|
+ "go_library",
|
|
6284
|
6284
|
+)
|
|
6285
|
6285
|
+
|
|
|
6286
|
++go_test(
|
|
|
6287
|
++ name = "go_default_test",
|
|
|
6288
|
++ srcs = ["vke_authorizer_test.go"],
|
|
|
6289
|
++ embed = [":go_default_library"],
|
|
|
6290
|
++ deps = [
|
|
|
6291
|
++ "//vendor/k8s.io/apiserver/pkg/authentication/user:go_default_library",
|
|
|
6292
|
++ "//vendor/k8s.io/apiserver/pkg/authorization/authorizer:go_default_library",
|
|
|
6293
|
++ ],
|
|
|
6294
|
++)
|
|
|
6295
|
++
|
|
6286
|
6296
|
+go_library(
|
|
6287
|
6297
|
+ name = "go_default_library",
|
|
6288
|
6298
|
+ srcs = [
|
|
...
|
...
|
@@ -6316,10 +5869,10 @@ index 0000000..c3a4ed7
|
|
6316
|
6316
|
+- ashokc
|
|
6317
|
6317
|
diff --git a/plugin/pkg/auth/authorizer/vke/vke_authorizer.go b/plugin/pkg/auth/authorizer/vke/vke_authorizer.go
|
|
6318
|
6318
|
new file mode 100644
|
|
6319
|
|
-index 0000000..efa6b3b
|
|
|
6319
|
+index 0000000..6d7f9ae
|
|
6320
|
6320
|
--- /dev/null
|
|
6321
|
6321
|
+++ b/plugin/pkg/auth/authorizer/vke/vke_authorizer.go
|
|
6322
|
|
-@@ -0,0 +1,63 @@
|
|
|
6322
|
+@@ -0,0 +1,125 @@
|
|
6323
|
6323
|
+package vke
|
|
6324
|
6324
|
+
|
|
6325
|
6325
|
+import (
|
|
...
|
...
|
@@ -6332,7 +5885,13 @@ index 0000000..efa6b3b
|
|
6332
|
6332
|
+ "k8s.io/apiserver/pkg/authorization/authorizer"
|
|
6333
|
6333
|
+)
|
|
6334
|
6334
|
+
|
|
6335
|
|
-+const systemClusterPrefix = "system:clusterID:"
|
|
|
6335
|
++const (
|
|
|
6336
|
++ systemClusterPrefix = "system:clusterID:"
|
|
|
6337
|
++ systemNodePrefix = "system:node:"
|
|
|
6338
|
++ systemWorkerGroup = "system:worker"
|
|
|
6339
|
++ masterPrefix = "master-"
|
|
|
6340
|
++)
|
|
|
6341
|
++
|
|
6336
|
6342
|
+
|
|
6337
|
6343
|
+// VKEAuthorizer authorizes requests which comes from nodes using certificates.
|
|
6338
|
6344
|
+// If a request is from a node which is not a part of the cluster, reject.
|
|
...
|
...
|
@@ -6363,13 +5922,37 @@ index 0000000..efa6b3b
|
|
6363
|
6363
|
+
|
|
6364
|
6364
|
+// Authorize authorizes requests based on the VKE authorizer.
|
|
6365
|
6365
|
+func (v *VKEAuthorizer) Authorize(attrs authorizer.Attributes) (authorizer.Decision, string, error) {
|
|
|
6366
|
++ // If the request comes from a non cluster node, then deny.
|
|
6366
|
6367
|
+ if isNonClusterNode(attrs, v.clusterID) {
|
|
6367
|
6368
|
+ glog.V(2).Infof("VKE authorizer: DENY the request because it is from a different cluster")
|
|
6368
|
6369
|
+ return authorizer.DecisionDeny, "", nil
|
|
6369
|
6370
|
+ }
|
|
|
6371
|
++
|
|
|
6372
|
++ // If a worker node name does not have the node prefix, then deny. This is needed for the request to go through node
|
|
|
6373
|
++ // authorizer and node restriction admission controller. If it is not set, then a user can bypass node authorizer
|
|
|
6374
|
++ // and the node restriction admission controller and modify the master node.
|
|
|
6375
|
++ if isWorkerWithoutNodeNameRestriction(attrs) {
|
|
|
6376
|
++ glog.V(2).Infof("VKE authorizer: DENY the request because the node name restriction is not met")
|
|
|
6377
|
++ return authorizer.DecisionDeny, "", nil
|
|
|
6378
|
++ }
|
|
|
6379
|
++
|
|
|
6380
|
++ // If it is a proxy request to the master node to exec, run or attach to a container, then deny.
|
|
|
6381
|
++ if isProxyRequestToMasterNode(attrs) {
|
|
|
6382
|
++ glog.V(2).Infof("VKE authorizer: DENY the request because it tried to execute commands on master pods")
|
|
|
6383
|
++ return authorizer.DecisionDeny, "", nil
|
|
|
6384
|
++ }
|
|
|
6385
|
++
|
|
6370
|
6386
|
+ return authorizer.DecisionNoOpinion, "", nil
|
|
6371
|
6387
|
+}
|
|
6372
|
6388
|
+
|
|
|
6389
|
++// isNonClusterNode verifies that the request is not from a node which does not belong to this cluster. This is needed
|
|
|
6390
|
++// to prevent cross cluster attacks where a user can use the kubelet certificate of one cluster to access the resources
|
|
|
6391
|
++// in another cluster. The reason we have this check is because, when a certificate is presented for authentication,
|
|
|
6392
|
++// Kubernetes just verifies that the certificate is signed by the CA that the cluster trusts. Since, in our case, the CA
|
|
|
6393
|
++// is same for all clusters, authentication with certificate is not enough. So, we make sure that the request is not
|
|
|
6394
|
++// from another cluster. Lightwave will make sure that any certificates generated on a worker will always have the
|
|
|
6395
|
++// "system:clusterID:<id>" group. This way, we can just check the cluster ID in the group and reject if it is not the
|
|
|
6396
|
++// same as this cluster's ID.
|
|
6373
|
6397
|
+func isNonClusterNode(attrs authorizer.Attributes, clusterID string) bool {
|
|
6374
|
6398
|
+ groups := attrs.GetUser().GetGroups()
|
|
6375
|
6399
|
+ for _, group := range groups {
|
|
...
|
...
|
@@ -6383,8 +5966,276 @@ index 0000000..efa6b3b
|
|
6383
|
6383
|
+
|
|
6384
|
6384
|
+ return false
|
|
6385
|
6385
|
+}
|
|
|
6386
|
++
|
|
|
6387
|
++// isWorkerWithoutNodeNameRestriction verifies that the certificate presented by the worker nodes also have the
|
|
|
6388
|
++// appropriate name "system:node:<hostname>". We need to validate this because it is possible for a user to generate
|
|
|
6389
|
++// certificates with CN other than "system:node:<hostname>". This is because lightwave does group validation and that
|
|
|
6390
|
++// the CNs can be one of system:node:<hostname>, kubernetes-master and etcd. When that happens, that certificate will be
|
|
|
6391
|
++// able to bypass the NodeRestriction admission controller which will allow access to modify master node and create pods
|
|
|
6392
|
++// on master. To prevent that from happening, we need to verify that if a request comes from a worker node, then it has
|
|
|
6393
|
++// to have the expected name so that NodeRestriction admission controller is enforced.
|
|
|
6394
|
++func isWorkerWithoutNodeNameRestriction(attrs authorizer.Attributes) bool {
|
|
|
6395
|
++ groups := attrs.GetUser().GetGroups()
|
|
|
6396
|
++ name := attrs.GetUser().GetName()
|
|
|
6397
|
++ for _, group := range groups {
|
|
|
6398
|
++ if group == systemWorkerGroup && !strings.HasPrefix(name, systemNodePrefix) {
|
|
|
6399
|
++ return true
|
|
|
6400
|
++ }
|
|
|
6401
|
++ }
|
|
|
6402
|
++ return false
|
|
|
6403
|
++}
|
|
|
6404
|
++
|
|
|
6405
|
++// isProxyRequestToMasterNode checks if the request is made to exec, run or attach to a container on the master node. We
|
|
|
6406
|
++// need this check because we do not want to allow a user to exec into a privileged pod on the master node.
|
|
|
6407
|
++func isProxyRequestToMasterNode(attrs authorizer.Attributes) bool {
|
|
|
6408
|
++ if attrs.GetResource() == "nodes" && strings.HasPrefix(attrs.GetName(), masterPrefix) {
|
|
|
6409
|
++ if strings.Contains(attrs.GetPath(), "proxy/run") ||
|
|
|
6410
|
++ strings.Contains(attrs.GetPath(), "proxy/exec") ||
|
|
|
6411
|
++ strings.Contains(attrs.GetPath(), "proxy/attach") {
|
|
|
6412
|
++ return true
|
|
|
6413
|
++ }
|
|
|
6414
|
++ }
|
|
|
6415
|
++ return false
|
|
|
6416
|
++}
|
|
|
6417
|
++
|
|
|
6418
|
+diff --git a/plugin/pkg/auth/authorizer/vke/vke_authorizer_test.go b/plugin/pkg/auth/authorizer/vke/vke_authorizer_test.go
|
|
|
6419
|
+new file mode 100644
|
|
|
6420
|
+index 0000000..6aba9ec
|
|
|
6421
|
+--- /dev/null
|
|
|
6422
|
+@@ -0,0 +1,230 @@
|
|
|
6423
|
++package vke
|
|
|
6424
|
++
|
|
|
6425
|
++import (
|
|
|
6426
|
++ "testing"
|
|
|
6427
|
++
|
|
|
6428
|
++ "k8s.io/apiserver/pkg/authentication/user"
|
|
|
6429
|
++ "k8s.io/apiserver/pkg/authorization/authorizer"
|
|
|
6430
|
++)
|
|
|
6431
|
++
|
|
|
6432
|
++const (
|
|
|
6433
|
++ masterProxyAttachPath = "/api/v1/nodes/master-0/proxy/attach/vke-system/pod-name/container-name"
|
|
|
6434
|
++ masterProxyExecPath = "/api/v1/nodes/master-0/proxy/exec/vke-system/pod-name/container-name"
|
|
|
6435
|
++ masterProxyRunPath = "/api/v1/nodes/master-0/proxy/run/vke-system/pod-name/container-name"
|
|
|
6436
|
++ workerProxyAttachPath = "/api/v1/nodes/worker-0/proxy/attach/vke-system/pod-name/container-name"
|
|
|
6437
|
++ workerProxyExecPath = "/api/v1/nodes/worker-0/proxy/exec/vke-system/pod-name/container-name"
|
|
|
6438
|
++ workerProxyRunPath = "/api/v1/nodes/worker-0/proxy/run/vke-system/pod-name/container-name"
|
|
|
6439
|
++)
|
|
|
6440
|
++
|
|
|
6441
|
++func TestAuthorizer(t *testing.T) {
|
|
|
6442
|
++ authz := &VKEAuthorizer{clusterID: "cluster-id"}
|
|
|
6443
|
++
|
|
|
6444
|
++ clusterNode := &user.DefaultInfo{Name: "system:node:worker-0", Groups: []string{"system:nodes", "system:clusterID:cluster-id", "system:worker"}}
|
|
|
6445
|
++ crossClusterNode := &user.DefaultInfo{Name: "system:node:worker-0", Groups: []string{"system:nodes", "system:clusterID:invalid", "system:worker"}}
|
|
|
6446
|
++ invalidWorker := &user.DefaultInfo{Name: "worker-0", Groups: []string{"system:nodes", "system:clusterID:cluster-id", "system:worker"}}
|
|
|
6447
|
++
|
|
|
6448
|
++ tests := []struct {
|
|
|
6449
|
++ name string
|
|
|
6450
|
++ attrs authorizer.AttributesRecord
|
|
|
6451
|
++ expect authorizer.Decision
|
|
|
6452
|
++ }{
|
|
|
6453
|
++ // Do not deny requests from a normal cluster node user.
|
|
|
6454
|
++ {
|
|
|
6455
|
++ name: "allowed: cluster node get pod",
|
|
|
6456
|
++ attrs: authorizer.AttributesRecord{User: clusterNode, ResourceRequest: true, Verb: "get", Resource: "pods", Name: "pod", Namespace: "ns"},
|
|
|
6457
|
++ expect: authorizer.DecisionNoOpinion,
|
|
|
6458
|
++ },
|
|
|
6459
|
++ {
|
|
|
6460
|
++ name: "allowed: cluster node list pod",
|
|
|
6461
|
++ attrs: authorizer.AttributesRecord{User: clusterNode, ResourceRequest: true, Verb: "list", Resource: "pods", Namespace: "ns"},
|
|
|
6462
|
++ expect: authorizer.DecisionNoOpinion,
|
|
|
6463
|
++ },
|
|
|
6464
|
++ {
|
|
|
6465
|
++ name: "allowed: cluster node create pod",
|
|
|
6466
|
++ attrs: authorizer.AttributesRecord{User: clusterNode, ResourceRequest: true, Verb: "create", Resource: "pods", Name: "pod", Namespace: "ns"},
|
|
|
6467
|
++ expect: authorizer.DecisionNoOpinion,
|
|
|
6468
|
++ },
|
|
|
6469
|
++ {
|
|
|
6470
|
++ name: "allowed: cluster node update pod",
|
|
|
6471
|
++ attrs: authorizer.AttributesRecord{User: clusterNode, ResourceRequest: true, Verb: "update", Resource: "pods", Name: "pod", Namespace: "ns"},
|
|
|
6472
|
++ expect: authorizer.DecisionNoOpinion,
|
|
|
6473
|
++ },
|
|
|
6474
|
++ {
|
|
|
6475
|
++ name: "allowed: cluster node delete pod",
|
|
|
6476
|
++ attrs: authorizer.AttributesRecord{User: clusterNode, ResourceRequest: true, Verb: "delete", Resource: "pods", Name: "pod", Namespace: "ns"},
|
|
|
6477
|
++ expect: authorizer.DecisionNoOpinion,
|
|
|
6478
|
++ },
|
|
|
6479
|
++ {
|
|
|
6480
|
++ name: "allowed: cluster node get node",
|
|
|
6481
|
++ attrs: authorizer.AttributesRecord{User: clusterNode, ResourceRequest: true, Verb: "get", Resource: "nodes", Name: "node"},
|
|
|
6482
|
++ expect: authorizer.DecisionNoOpinion,
|
|
|
6483
|
++ },
|
|
|
6484
|
++ {
|
|
|
6485
|
++ name: "allowed: cluster node list nodes",
|
|
|
6486
|
++ attrs: authorizer.AttributesRecord{User: clusterNode, ResourceRequest: true, Verb: "list", Resource: "nodes"},
|
|
|
6487
|
++ expect: authorizer.DecisionNoOpinion,
|
|
|
6488
|
++ },
|
|
|
6489
|
++ {
|
|
|
6490
|
++ name: "allowed: cluster node create nodes",
|
|
|
6491
|
++ attrs: authorizer.AttributesRecord{User: clusterNode, ResourceRequest: true, Verb: "create", Resource: "nodes", Name: "node"},
|
|
|
6492
|
++ expect: authorizer.DecisionNoOpinion,
|
|
|
6493
|
++ },
|
|
|
6494
|
++ {
|
|
|
6495
|
++ name: "allowed: cluster node update nodes",
|
|
|
6496
|
++ attrs: authorizer.AttributesRecord{User: clusterNode, ResourceRequest: true, Verb: "update", Resource: "nodes", Name: "node"},
|
|
|
6497
|
++ expect: authorizer.DecisionNoOpinion,
|
|
|
6498
|
++ },
|
|
|
6499
|
++ {
|
|
|
6500
|
++ name: "allowed: cluster node delete nodes",
|
|
|
6501
|
++ attrs: authorizer.AttributesRecord{User: clusterNode, ResourceRequest: true, Verb: "delete", Resource: "nodes", Name: "node"},
|
|
|
6502
|
++ expect: authorizer.DecisionNoOpinion,
|
|
|
6503
|
++ },
|
|
|
6504
|
++
|
|
|
6505
|
++ // Deny requests from another cluster node.
|
|
|
6506
|
++ {
|
|
|
6507
|
++ name: "denied: cross cluster node get pod",
|
|
|
6508
|
++ attrs: authorizer.AttributesRecord{User: crossClusterNode, ResourceRequest: true, Verb: "get", Resource: "pods", Name: "pod", Namespace: "ns"},
|
|
|
6509
|
++ expect: authorizer.DecisionDeny,
|
|
|
6510
|
++ },
|
|
|
6511
|
++ {
|
|
|
6512
|
++ name: "denied: cross cluster node list pod",
|
|
|
6513
|
++ attrs: authorizer.AttributesRecord{User: crossClusterNode, ResourceRequest: true, Verb: "list", Resource: "pods", Namespace: "ns"},
|
|
|
6514
|
++ expect: authorizer.DecisionDeny,
|
|
|
6515
|
++ },
|
|
|
6516
|
++ {
|
|
|
6517
|
++ name: "denied: cross cluster node create pod",
|
|
|
6518
|
++ attrs: authorizer.AttributesRecord{User: crossClusterNode, ResourceRequest: true, Verb: "create", Resource: "pods", Name: "pod", Namespace: "ns"},
|
|
|
6519
|
++ expect: authorizer.DecisionDeny,
|
|
|
6520
|
++ },
|
|
|
6521
|
++ {
|
|
|
6522
|
++ name: "denied: cross cluster node update pod",
|
|
|
6523
|
++ attrs: authorizer.AttributesRecord{User: crossClusterNode, ResourceRequest: true, Verb: "update", Resource: "pods", Name: "pod", Namespace: "ns"},
|
|
|
6524
|
++ expect: authorizer.DecisionDeny,
|
|
|
6525
|
++ },
|
|
|
6526
|
++ {
|
|
|
6527
|
++ name: "denied: cross cluster node delete pod",
|
|
|
6528
|
++ attrs: authorizer.AttributesRecord{User: crossClusterNode, ResourceRequest: true, Verb: "delete", Resource: "pods", Name: "pod", Namespace: "ns"},
|
|
|
6529
|
++ expect: authorizer.DecisionDeny,
|
|
|
6530
|
++ },
|
|
|
6531
|
++ {
|
|
|
6532
|
++ name: "denied: cross cluster node get node",
|
|
|
6533
|
++ attrs: authorizer.AttributesRecord{User: crossClusterNode, ResourceRequest: true, Verb: "get", Resource: "nodes", Name: "node"},
|
|
|
6534
|
++ expect: authorizer.DecisionDeny,
|
|
|
6535
|
++ },
|
|
|
6536
|
++ {
|
|
|
6537
|
++ name: "denied: cross cluster node list nodes",
|
|
|
6538
|
++ attrs: authorizer.AttributesRecord{User: crossClusterNode, ResourceRequest: true, Verb: "list", Resource: "nodes"},
|
|
|
6539
|
++ expect: authorizer.DecisionDeny,
|
|
|
6540
|
++ },
|
|
|
6541
|
++ {
|
|
|
6542
|
++ name: "denied: cross cluster node create nodes",
|
|
|
6543
|
++ attrs: authorizer.AttributesRecord{User: crossClusterNode, ResourceRequest: true, Verb: "create", Resource: "nodes", Name: "node"},
|
|
|
6544
|
++ expect: authorizer.DecisionDeny,
|
|
|
6545
|
++ },
|
|
|
6546
|
++ {
|
|
|
6547
|
++ name: "denied: cross cluster node update nodes",
|
|
|
6548
|
++ attrs: authorizer.AttributesRecord{User: crossClusterNode, ResourceRequest: true, Verb: "update", Resource: "nodes", Name: "node"},
|
|
|
6549
|
++ expect: authorizer.DecisionDeny,
|
|
|
6550
|
++ },
|
|
|
6551
|
++ {
|
|
|
6552
|
++ name: "denied: cross cluster node delete nodes",
|
|
|
6553
|
++ attrs: authorizer.AttributesRecord{User: crossClusterNode, ResourceRequest: true, Verb: "delete", Resource: "nodes", Name: "node"},
|
|
|
6554
|
++ expect: authorizer.DecisionDeny,
|
|
|
6555
|
++ },
|
|
|
6556
|
++
|
|
|
6557
|
++ // Deny requests from invalid node.
|
|
|
6558
|
++ {
|
|
|
6559
|
++ name: "denied: invalid worker get pod",
|
|
|
6560
|
++ attrs: authorizer.AttributesRecord{User: invalidWorker, ResourceRequest: true, Verb: "get", Resource: "pods", Name: "pod", Namespace: "ns"},
|
|
|
6561
|
++ expect: authorizer.DecisionDeny,
|
|
|
6562
|
++ },
|
|
|
6563
|
++ {
|
|
|
6564
|
++ name: "denied: invalid worker list pod",
|
|
|
6565
|
++ attrs: authorizer.AttributesRecord{User: invalidWorker, ResourceRequest: true, Verb: "list", Resource: "pods", Namespace: "ns"},
|
|
|
6566
|
++ expect: authorizer.DecisionDeny,
|
|
|
6567
|
++ },
|
|
|
6568
|
++ {
|
|
|
6569
|
++ name: "denied: invalid worker create pod",
|
|
|
6570
|
++ attrs: authorizer.AttributesRecord{User: invalidWorker, ResourceRequest: true, Verb: "create", Resource: "pods", Name: "pod", Namespace: "ns"},
|
|
|
6571
|
++ expect: authorizer.DecisionDeny,
|
|
|
6572
|
++ },
|
|
|
6573
|
++ {
|
|
|
6574
|
++ name: "denied: invalid worker update pod",
|
|
|
6575
|
++ attrs: authorizer.AttributesRecord{User: invalidWorker, ResourceRequest: true, Verb: "update", Resource: "pods", Name: "pod", Namespace: "ns"},
|
|
|
6576
|
++ expect: authorizer.DecisionDeny,
|
|
|
6577
|
++ },
|
|
|
6578
|
++ {
|
|
|
6579
|
++ name: "denied: invalid worker delete pod",
|
|
|
6580
|
++ attrs: authorizer.AttributesRecord{User: invalidWorker, ResourceRequest: true, Verb: "delete", Resource: "pods", Name: "pod", Namespace: "ns"},
|
|
|
6581
|
++ expect: authorizer.DecisionDeny,
|
|
|
6582
|
++ },
|
|
|
6583
|
++ {
|
|
|
6584
|
++ name: "denied: invalid worker get node",
|
|
|
6585
|
++ attrs: authorizer.AttributesRecord{User: invalidWorker, ResourceRequest: true, Verb: "get", Resource: "nodes", Name: "node"},
|
|
|
6586
|
++ expect: authorizer.DecisionDeny,
|
|
|
6587
|
++ },
|
|
|
6588
|
++ {
|
|
|
6589
|
++ name: "denied: invalid worker list nodes",
|
|
|
6590
|
++ attrs: authorizer.AttributesRecord{User: invalidWorker, ResourceRequest: true, Verb: "list", Resource: "nodes"},
|
|
|
6591
|
++ expect: authorizer.DecisionDeny,
|
|
|
6592
|
++ },
|
|
|
6593
|
++ {
|
|
|
6594
|
++ name: "denied: invalid worker create nodes",
|
|
|
6595
|
++ attrs: authorizer.AttributesRecord{User: invalidWorker, ResourceRequest: true, Verb: "create", Resource: "nodes", Name: "node"},
|
|
|
6596
|
++ expect: authorizer.DecisionDeny,
|
|
|
6597
|
++ },
|
|
|
6598
|
++ {
|
|
|
6599
|
++ name: "denied: invalid worker update nodes",
|
|
|
6600
|
++ attrs: authorizer.AttributesRecord{User: invalidWorker, ResourceRequest: true, Verb: "update", Resource: "nodes", Name: "node"},
|
|
|
6601
|
++ expect: authorizer.DecisionDeny,
|
|
|
6602
|
++ },
|
|
|
6603
|
++ {
|
|
|
6604
|
++ name: "denied: invalid worker delete nodes",
|
|
|
6605
|
++ attrs: authorizer.AttributesRecord{User: invalidWorker, ResourceRequest: true, Verb: "delete", Resource: "nodes", Name: "node"},
|
|
|
6606
|
++ expect: authorizer.DecisionDeny,
|
|
|
6607
|
++ },
|
|
|
6608
|
++
|
|
|
6609
|
++ // Deny exec, run and attach operation on master nodes using proxy resource.
|
|
|
6610
|
++ {
|
|
|
6611
|
++ name: "denied: attach using proxy resource on master",
|
|
|
6612
|
++ attrs: authorizer.AttributesRecord{User: clusterNode, ResourceRequest: true, Verb: "create", Resource: "nodes", Name: "master-0", Path: masterProxyAttachPath},
|
|
|
6613
|
++ expect: authorizer.DecisionDeny,
|
|
|
6614
|
++ },
|
|
|
6615
|
++ {
|
|
|
6616
|
++ name: "denied: exec using proxy resource on master",
|
|
|
6617
|
++ attrs: authorizer.AttributesRecord{User: clusterNode, ResourceRequest: true, Verb: "create", Resource: "nodes", Name: "master-0", Path: masterProxyExecPath},
|
|
|
6618
|
++ expect: authorizer.DecisionDeny,
|
|
|
6619
|
++ },
|
|
|
6620
|
++ {
|
|
|
6621
|
++ name: "denied: run using proxy resource on master",
|
|
|
6622
|
++ attrs: authorizer.AttributesRecord{User: clusterNode, ResourceRequest: true, Verb: "create", Resource: "nodes", Name: "master-0", Path: masterProxyRunPath},
|
|
|
6623
|
++ expect: authorizer.DecisionDeny,
|
|
|
6624
|
++ },
|
|
|
6625
|
++
|
|
|
6626
|
++ // Do not deny exec, run and attach operation on worker nodes using proxy resource.
|
|
|
6627
|
++ {
|
|
|
6628
|
++ name: "allowed: attach using proxy resource on worker",
|
|
|
6629
|
++ attrs: authorizer.AttributesRecord{User: clusterNode, ResourceRequest: true, Verb: "create", Resource: "nodes", Name: "worker-0", Path: workerProxyAttachPath},
|
|
|
6630
|
++ expect: authorizer.DecisionNoOpinion,
|
|
|
6631
|
++ },
|
|
|
6632
|
++ {
|
|
|
6633
|
++ name: "allowed: exec using proxy resource on worker",
|
|
|
6634
|
++ attrs: authorizer.AttributesRecord{User: clusterNode, ResourceRequest: true, Verb: "create", Resource: "nodes", Name: "worker-0", Path: workerProxyExecPath},
|
|
|
6635
|
++ expect: authorizer.DecisionNoOpinion,
|
|
|
6636
|
++ },
|
|
|
6637
|
++ {
|
|
|
6638
|
++ name: "allowed: run using proxy resource on worker",
|
|
|
6639
|
++ attrs: authorizer.AttributesRecord{User: clusterNode, ResourceRequest: true, Verb: "create", Resource: "nodes", Name: "worker-0", Path: workerProxyRunPath},
|
|
|
6640
|
++ expect: authorizer.DecisionNoOpinion,
|
|
|
6641
|
++ },
|
|
|
6642
|
++ }
|
|
|
6643
|
++
|
|
|
6644
|
++ for _, tc := range tests {
|
|
|
6645
|
++ t.Run(tc.name, func(t *testing.T) {
|
|
|
6646
|
++ decision, _, _ := authz.Authorize(tc.attrs)
|
|
|
6647
|
++ if decision != tc.expect {
|
|
|
6648
|
++ t.Errorf("expected %v, got %v", tc.expect, decision)
|
|
|
6649
|
++ }
|
|
|
6650
|
++ })
|
|
|
6651
|
++ }
|
|
|
6652
|
++}
|
|
6386
|
6653
|
diff --git a/staging/src/k8s.io/api/core/v1/generated.pb.go b/staging/src/k8s.io/api/core/v1/generated.pb.go
|
|
6387
|
|
-index 48b5a3c..f27250e 100644
|
|
|
6654
|
+index a809ceb..f27250e 100644
|
|
6388
|
6655
|
--- a/staging/src/k8s.io/api/core/v1/generated.pb.go
|
|
6389
|
6656
|
+++ b/staging/src/k8s.io/api/core/v1/generated.pb.go
|
|
6390
|
6657
|
@@ -35,6 +35,7 @@ limitations under the License.
|
|
...
|
...
|
@@ -9238,806 +9089,804 @@ index 48b5a3c..f27250e 100644
|
|
9238
|
9238
|
default:
|
|
9239
|
9239
|
iNdEx = preIndex
|
|
9240
|
9240
|
skippy, err := skipGenerated(dAtA[iNdEx:])
|
|
9241
|
|
-@@ -50969,799 +51232,802 @@ func init() {
|
|
|
9241
|
+@@ -50969,797 +51232,802 @@ func init() {
|
|
9242
|
9242
|
}
|
|
9243
|
9243
|
|
|
9244
|
9244
|
var fileDescriptorGenerated = []byte{
|
|
9245
|
|
-- // 12696 bytes of a gzipped FileDescriptorProto
|
|
|
9245
|
+- // 12669 bytes of a gzipped FileDescriptorProto
|
|
9246
|
9246
|
+ // 12751 bytes of a gzipped FileDescriptorProto
|
|
9247
|
9247
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x6b, 0x6c, 0x24, 0x57,
|
|
9248
|
|
-- 0x76, 0x18, 0xbc, 0xd5, 0xdd, 0x7c, 0xf4, 0xe1, 0xfb, 0xce, 0x70, 0xc4, 0xa1, 0x34, 0xd3, 0xa3,
|
|
9249
|
|
-- 0xd2, 0xee, 0x68, 0xb4, 0x92, 0xc8, 0xd5, 0x48, 0x5a, 0xc9, 0xab, 0x5d, 0xd9, 0x24, 0x9b, 0x9c,
|
|
9250
|
|
-- 0xa1, 0x66, 0xc8, 0x69, 0xdd, 0xe6, 0x8c, 0x76, 0x65, 0xed, 0x7a, 0x8b, 0xdd, 0x97, 0x64, 0x89,
|
|
9251
|
|
-- 0xc5, 0xaa, 0x56, 0x55, 0x35, 0x67, 0xa8, 0xcf, 0x06, 0xbe, 0xac, 0x63, 0x27, 0x7e, 0x20, 0x58,
|
|
9252
|
|
-- 0xc4, 0x46, 0x1e, 0xb6, 0xe1, 0x00, 0x8e, 0x03, 0xdb, 0x71, 0x12, 0xc4, 0xb1, 0x63, 0x3b, 0xbb,
|
|
9253
|
|
-- 0x76, 0xe2, 0x38, 0xf9, 0xe1, 0xfc, 0xd9, 0x38, 0x01, 0x82, 0x35, 0x60, 0x84, 0xb1, 0x69, 0x27,
|
|
9254
|
|
-- 0x81, 0x7f, 0xe4, 0x81, 0x38, 0x7f, 0xcc, 0x18, 0x71, 0x70, 0x9f, 0x75, 0x6f, 0x75, 0x55, 0x77,
|
|
9255
|
|
-- 0x73, 0xc4, 0xa1, 0x64, 0x63, 0xff, 0x75, 0xdf, 0x73, 0xee, 0xb9, 0xb7, 0xee, 0xf3, 0x9c, 0x73,
|
|
9256
|
|
-- 0xcf, 0x03, 0x5e, 0xdb, 0x7d, 0x35, 0x9a, 0x73, 0x83, 0xf9, 0xdd, 0xf6, 0x26, 0x09, 0x7d, 0x12,
|
|
9257
|
|
-- 0x93, 0x68, 0x7e, 0x9f, 0xf8, 0xcd, 0x20, 0x9c, 0x17, 0x00, 0xa7, 0xe5, 0xce, 0x37, 0x82, 0x90,
|
|
9258
|
|
-- 0xcc, 0xef, 0xbf, 0x30, 0xbf, 0x4d, 0x7c, 0x12, 0x3a, 0x31, 0x69, 0xce, 0xb5, 0xc2, 0x20, 0x0e,
|
|
9259
|
|
-- 0x10, 0xe2, 0x38, 0x73, 0x4e, 0xcb, 0x9d, 0xa3, 0x38, 0x73, 0xfb, 0x2f, 0xcc, 0x3e, 0xbf, 0xed,
|
|
9260
|
|
-- 0xc6, 0x3b, 0xed, 0xcd, 0xb9, 0x46, 0xb0, 0x37, 0xbf, 0x1d, 0x6c, 0x07, 0xf3, 0x0c, 0x75, 0xb3,
|
|
9261
|
|
-- 0xbd, 0xc5, 0xfe, 0xb1, 0x3f, 0xec, 0x17, 0x27, 0x31, 0xbb, 0x96, 0x34, 0x43, 0x1e, 0xc4, 0xc4,
|
|
9262
|
|
-- 0x8f, 0xdc, 0xc0, 0x8f, 0x9e, 0x77, 0x5a, 0x6e, 0x44, 0xc2, 0x7d, 0x12, 0xce, 0xb7, 0x76, 0xb7,
|
|
9263
|
|
-- 0x29, 0x2c, 0x32, 0x11, 0xe6, 0xf7, 0x5f, 0xd8, 0x24, 0xb1, 0xd3, 0xd1, 0xa3, 0xd9, 0x97, 0x12,
|
|
9264
|
|
-- 0x72, 0x7b, 0x4e, 0x63, 0xc7, 0xf5, 0x49, 0x78, 0x20, 0x69, 0xcc, 0x87, 0x24, 0x0a, 0xda, 0x61,
|
|
9265
|
|
-- 0x83, 0x9c, 0xa8, 0x56, 0x34, 0xbf, 0x47, 0x62, 0x27, 0xe3, 0xeb, 0x67, 0xe7, 0xf3, 0x6a, 0x85,
|
|
9266
|
|
-- 0x6d, 0x3f, 0x76, 0xf7, 0x3a, 0x9b, 0xf9, 0x74, 0xaf, 0x0a, 0x51, 0x63, 0x87, 0xec, 0x39, 0x1d,
|
|
9267
|
|
-- 0xf5, 0x5e, 0xcc, 0xab, 0xd7, 0x8e, 0x5d, 0x6f, 0xde, 0xf5, 0xe3, 0x28, 0x0e, 0xd3, 0x95, 0xec,
|
|
9268
|
|
-- 0x6f, 0x5a, 0x70, 0x65, 0xe1, 0xad, 0xfa, 0xb2, 0xe7, 0x44, 0xb1, 0xdb, 0x58, 0xf4, 0x82, 0xc6,
|
|
9269
|
|
-- 0x6e, 0x3d, 0x0e, 0x42, 0x72, 0x2f, 0xf0, 0xda, 0x7b, 0xa4, 0xce, 0x06, 0x02, 0x3d, 0x07, 0xc3,
|
|
9270
|
|
-- 0xfb, 0xec, 0xff, 0x6a, 0x75, 0xc6, 0xba, 0x62, 0x5d, 0x2b, 0x2f, 0x4e, 0xfe, 0xd6, 0x61, 0xe5,
|
|
9271
|
|
-- 0x63, 0x47, 0x87, 0x95, 0xe1, 0x7b, 0xa2, 0x1c, 0x2b, 0x0c, 0x74, 0x15, 0x06, 0xb7, 0xa2, 0x8d,
|
|
9272
|
|
-- 0x83, 0x16, 0x99, 0x29, 0x30, 0xdc, 0x71, 0x81, 0x3b, 0xb8, 0x52, 0xa7, 0xa5, 0x58, 0x40, 0xd1,
|
|
9273
|
|
-- 0x3c, 0x94, 0x5b, 0x4e, 0x18, 0xbb, 0xb1, 0x1b, 0xf8, 0x33, 0xc5, 0x2b, 0xd6, 0xb5, 0x81, 0xc5,
|
|
9274
|
|
-- 0x29, 0x81, 0x5a, 0xae, 0x49, 0x00, 0x4e, 0x70, 0x68, 0x37, 0x42, 0xe2, 0x34, 0xef, 0xf8, 0xde,
|
|
9275
|
|
-- 0xc1, 0x4c, 0xe9, 0x8a, 0x75, 0x6d, 0x38, 0xe9, 0x06, 0x16, 0xe5, 0x58, 0x61, 0xd8, 0x3f, 0x56,
|
|
9276
|
|
-- 0x80, 0xe1, 0x85, 0xad, 0x2d, 0xd7, 0x77, 0xe3, 0x03, 0x74, 0x0f, 0x46, 0xfd, 0xa0, 0x49, 0xe4,
|
|
9277
|
|
-- 0x7f, 0xf6, 0x15, 0x23, 0xd7, 0xaf, 0xcc, 0x75, 0xae, 0xcc, 0xb9, 0x75, 0x0d, 0x6f, 0x71, 0xf2,
|
|
9278
|
|
-- 0xe8, 0xb0, 0x32, 0xaa, 0x97, 0x60, 0x83, 0x0e, 0xc2, 0x30, 0xd2, 0x0a, 0x9a, 0x8a, 0x6c, 0x81,
|
|
9279
|
|
-- 0x91, 0xad, 0x64, 0x91, 0xad, 0x25, 0x68, 0x8b, 0x13, 0x47, 0x87, 0x95, 0x11, 0xad, 0x00, 0xeb,
|
|
9280
|
|
-- 0x44, 0xd0, 0x26, 0x4c, 0xd0, 0xbf, 0x7e, 0xec, 0x2a, 0xba, 0x45, 0x46, 0xf7, 0xa9, 0x3c, 0xba,
|
|
9281
|
|
-- 0x1a, 0xea, 0xe2, 0xb9, 0xa3, 0xc3, 0xca, 0x44, 0xaa, 0x10, 0xa7, 0x09, 0xda, 0xef, 0xc3, 0xf8,
|
|
9282
|
|
-- 0x42, 0x1c, 0x3b, 0x8d, 0x1d, 0xd2, 0xe4, 0x33, 0x88, 0x5e, 0x82, 0x92, 0xef, 0xec, 0x11, 0x31,
|
|
9283
|
|
-- 0xbf, 0x57, 0xc4, 0xc0, 0x96, 0xd6, 0x9d, 0x3d, 0x72, 0x7c, 0x58, 0x99, 0xbc, 0xeb, 0xbb, 0xef,
|
|
9284
|
|
-- 0xb5, 0xc5, 0xaa, 0xa0, 0x65, 0x98, 0x61, 0xa3, 0xeb, 0x00, 0x4d, 0xb2, 0xef, 0x36, 0x48, 0xcd,
|
|
9285
|
|
-- 0x89, 0x77, 0xc4, 0x7c, 0x23, 0x51, 0x17, 0xaa, 0x0a, 0x82, 0x35, 0x2c, 0xfb, 0x01, 0x94, 0x17,
|
|
9286
|
|
-- 0xf6, 0x03, 0xb7, 0x59, 0x0b, 0x9a, 0x11, 0xda, 0x85, 0x89, 0x56, 0x48, 0xb6, 0x48, 0xa8, 0x8a,
|
|
9287
|
|
-- 0x66, 0xac, 0x2b, 0xc5, 0x6b, 0x23, 0xd7, 0xaf, 0x65, 0x7e, 0xac, 0x89, 0xba, 0xec, 0xc7, 0xe1,
|
|
9288
|
|
-- 0xc1, 0xe2, 0x63, 0xa2, 0xbd, 0x89, 0x14, 0x14, 0xa7, 0x29, 0xdb, 0xff, 0xba, 0x00, 0xd3, 0x0b,
|
|
9289
|
|
-- 0xef, 0xb7, 0x43, 0x52, 0x75, 0xa3, 0xdd, 0xf4, 0x0a, 0x6f, 0xba, 0xd1, 0xee, 0x7a, 0x32, 0x02,
|
|
9290
|
|
-- 0x6a, 0x69, 0x55, 0x45, 0x39, 0x56, 0x18, 0xe8, 0x79, 0x18, 0xa2, 0xbf, 0xef, 0xe2, 0x55, 0xf1,
|
|
9291
|
|
-- 0xc9, 0xe7, 0x04, 0xf2, 0x48, 0xd5, 0x89, 0x9d, 0x2a, 0x07, 0x61, 0x89, 0x83, 0xd6, 0x60, 0xa4,
|
|
9292
|
|
-- 0xc1, 0x36, 0xe4, 0xf6, 0x5a, 0xd0, 0x24, 0x6c, 0x32, 0xcb, 0x8b, 0xcf, 0x52, 0xf4, 0xa5, 0xa4,
|
|
9293
|
|
-- 0xf8, 0xf8, 0xb0, 0x32, 0xc3, 0xfb, 0x26, 0x48, 0x68, 0x30, 0xac, 0xd7, 0x47, 0xb6, 0xda, 0x5f,
|
|
9294
|
|
-- 0x25, 0x46, 0x09, 0x32, 0xf6, 0xd6, 0x35, 0x6d, 0xab, 0x0c, 0xb0, 0xad, 0x32, 0x9a, 0xbd, 0x4d,
|
|
9295
|
|
-- 0xd0, 0x0b, 0x50, 0xda, 0x75, 0xfd, 0xe6, 0xcc, 0x20, 0xa3, 0x75, 0x89, 0xce, 0xf9, 0x2d, 0xd7,
|
|
9296
|
|
-- 0x6f, 0x1e, 0x1f, 0x56, 0xa6, 0x8c, 0xee, 0xd0, 0x42, 0xcc, 0x50, 0xed, 0x3f, 0xb6, 0xa0, 0xc2,
|
|
9297
|
|
-- 0x60, 0x2b, 0xae, 0x47, 0x6a, 0x24, 0x8c, 0xdc, 0x28, 0x26, 0x7e, 0x6c, 0x0c, 0xe8, 0x75, 0x80,
|
|
9298
|
|
-- 0x88, 0x34, 0x42, 0x12, 0x6b, 0x43, 0xaa, 0x16, 0x46, 0x5d, 0x41, 0xb0, 0x86, 0x45, 0x0f, 0x84,
|
|
9299
|
|
-- 0x68, 0xc7, 0x09, 0xd9, 0xfa, 0x12, 0x03, 0xab, 0x0e, 0x84, 0xba, 0x04, 0xe0, 0x04, 0xc7, 0x38,
|
|
9300
|
|
-- 0x10, 0x8a, 0xbd, 0x0e, 0x04, 0xf4, 0x39, 0x98, 0x48, 0x1a, 0x8b, 0x5a, 0x4e, 0x43, 0x0e, 0x20,
|
|
9301
|
|
-- 0xdb, 0x32, 0x75, 0x13, 0x84, 0xd3, 0xb8, 0xf6, 0xdf, 0xb7, 0xc4, 0xe2, 0xa1, 0x5f, 0xfd, 0x11,
|
|
9302
|
|
-- 0xff, 0x56, 0xfb, 0x57, 0x2d, 0x18, 0x5a, 0x74, 0xfd, 0xa6, 0xeb, 0x6f, 0xa3, 0x2f, 0xc3, 0x30,
|
|
9303
|
|
-- 0xbd, 0x9b, 0x9a, 0x4e, 0xec, 0x88, 0x73, 0xef, 0x53, 0xda, 0xde, 0x52, 0x57, 0xc5, 0x5c, 0x6b,
|
|
9304
|
|
-- 0x77, 0x9b, 0x16, 0x44, 0x73, 0x14, 0x9b, 0xee, 0xb6, 0x3b, 0x9b, 0xef, 0x92, 0x46, 0xbc, 0x46,
|
|
9305
|
|
-- 0x62, 0x27, 0xf9, 0x9c, 0xa4, 0x0c, 0x2b, 0xaa, 0xe8, 0x16, 0x0c, 0xc6, 0x4e, 0xb8, 0x4d, 0x62,
|
|
9306
|
|
-- 0x71, 0x00, 0x66, 0x1e, 0x54, 0xbc, 0x26, 0xa6, 0x3b, 0x92, 0xf8, 0x0d, 0x92, 0x5c, 0x0b, 0x1b,
|
|
9307
|
|
-- 0xac, 0x2a, 0x16, 0x24, 0xec, 0x1f, 0x1c, 0x84, 0x8b, 0x4b, 0xf5, 0xd5, 0x9c, 0x75, 0x75, 0x15,
|
|
9308
|
|
-- 0x06, 0x9b, 0xa1, 0xbb, 0x4f, 0x42, 0x31, 0xce, 0x8a, 0x4a, 0x95, 0x95, 0x62, 0x01, 0x45, 0xaf,
|
|
9309
|
|
-- 0xc2, 0x28, 0xbf, 0x90, 0x6e, 0x3a, 0x7e, 0xd3, 0x93, 0x43, 0x7c, 0x5e, 0x60, 0x8f, 0xde, 0xd3,
|
|
9310
|
|
-- 0x60, 0xd8, 0xc0, 0x3c, 0xe1, 0xa2, 0xba, 0x9a, 0xda, 0x8c, 0x79, 0x97, 0xdd, 0x0f, 0x58, 0x30,
|
|
9311
|
|
-- 0xc9, 0x9b, 0x59, 0x88, 0xe3, 0xd0, 0xdd, 0x6c, 0xc7, 0x24, 0x9a, 0x19, 0x60, 0x27, 0xdd, 0x52,
|
|
9312
|
|
-- 0xd6, 0x68, 0xe5, 0x8e, 0xc0, 0xdc, 0xbd, 0x14, 0x15, 0x7e, 0x08, 0xce, 0x88, 0x76, 0x27, 0xd3,
|
|
9313
|
|
-- 0x60, 0xdc, 0xd1, 0x2c, 0xfa, 0x5e, 0x0b, 0x66, 0x1b, 0x81, 0x1f, 0x87, 0x81, 0xe7, 0x91, 0xb0,
|
|
9314
|
|
-- 0xd6, 0xde, 0xf4, 0xdc, 0x68, 0x87, 0xaf, 0x53, 0x4c, 0xb6, 0xd8, 0x49, 0x90, 0x33, 0x87, 0x0a,
|
|
9315
|
|
-- 0x49, 0xcc, 0xe1, 0xe5, 0xa3, 0xc3, 0xca, 0xec, 0x52, 0x2e, 0x29, 0xdc, 0xa5, 0x19, 0xb4, 0x0b,
|
|
9316
|
|
-- 0x88, 0x5e, 0xa5, 0xf5, 0xd8, 0xd9, 0x26, 0x49, 0xe3, 0x43, 0xfd, 0x37, 0x7e, 0xe1, 0xe8, 0xb0,
|
|
9317
|
|
-- 0x82, 0xd6, 0x3b, 0x48, 0xe0, 0x0c, 0xb2, 0xe8, 0x3d, 0x38, 0x4f, 0x4b, 0x3b, 0xbe, 0x75, 0xb8,
|
|
9318
|
|
-- 0xff, 0xe6, 0x66, 0x8e, 0x0e, 0x2b, 0xe7, 0xd7, 0x33, 0x88, 0xe0, 0x4c, 0xd2, 0xb3, 0x4b, 0x30,
|
|
9319
|
|
-- 0x9d, 0x39, 0x55, 0x68, 0x12, 0x8a, 0xbb, 0x84, 0xb3, 0x20, 0x65, 0x4c, 0x7f, 0xa2, 0xf3, 0x30,
|
|
9320
|
|
-- 0xb0, 0xef, 0x78, 0x6d, 0xb1, 0x4a, 0x31, 0xff, 0xf3, 0x99, 0xc2, 0xab, 0x96, 0xdd, 0x80, 0xd1,
|
|
9321
|
|
-- 0x25, 0xa7, 0xe5, 0x6c, 0xba, 0x9e, 0x1b, 0xbb, 0x24, 0x42, 0x4f, 0x43, 0xd1, 0x69, 0x36, 0xd9,
|
|
9322
|
|
-- 0x15, 0x59, 0x5e, 0x9c, 0x3e, 0x3a, 0xac, 0x14, 0x17, 0x9a, 0xf4, 0xac, 0x06, 0x85, 0x75, 0x80,
|
|
9323
|
|
-- 0x29, 0x06, 0xfa, 0x24, 0x94, 0x9a, 0x61, 0xd0, 0x9a, 0x29, 0x30, 0x4c, 0x3a, 0x54, 0xa5, 0x6a,
|
|
9324
|
|
-- 0x18, 0xb4, 0x52, 0xa8, 0x0c, 0xc7, 0xfe, 0x8d, 0x02, 0x3c, 0xb1, 0x44, 0x5a, 0x3b, 0x2b, 0xf5,
|
|
9325
|
|
-- 0x9c, 0x4d, 0x77, 0x0d, 0x86, 0xf7, 0x02, 0xdf, 0x8d, 0x83, 0x30, 0x12, 0x4d, 0xb3, 0xdb, 0x64,
|
|
9326
|
|
-- 0x4d, 0x94, 0x61, 0x05, 0x45, 0x57, 0xa0, 0xd4, 0x4a, 0x38, 0x81, 0x51, 0xc9, 0x45, 0x30, 0x1e,
|
|
9327
|
|
-- 0x80, 0x41, 0x28, 0x46, 0x3b, 0x22, 0xa1, 0xb8, 0x05, 0x15, 0xc6, 0xdd, 0x88, 0x84, 0x98, 0x41,
|
|
9328
|
|
-- 0x92, 0xe3, 0x94, 0x1e, 0xb4, 0x62, 0x5b, 0xa5, 0x8e, 0x53, 0x0a, 0xc1, 0x1a, 0x16, 0xaa, 0x41,
|
|
9329
|
|
-- 0x39, 0x52, 0x93, 0x3a, 0xd0, 0xff, 0xa4, 0x8e, 0xb1, 0xf3, 0x56, 0xcd, 0x64, 0x42, 0xc4, 0x38,
|
|
9330
|
|
-- 0x06, 0x06, 0x7b, 0x9e, 0xb7, 0x5f, 0x2f, 0x00, 0xe2, 0x43, 0xf8, 0xe7, 0x6c, 0xe0, 0xee, 0x76,
|
|
9331
|
|
-- 0x0e, 0x5c, 0x26, 0xe7, 0x75, 0x3b, 0x68, 0x38, 0x5e, 0xfa, 0x08, 0x3f, 0xad, 0xd1, 0xfb, 0xdf,
|
|
9332
|
|
-- 0x16, 0x3c, 0xb1, 0xe4, 0xfa, 0x4d, 0x12, 0xe6, 0x2c, 0xc0, 0x47, 0x23, 0x80, 0x9c, 0xec, 0xa4,
|
|
9333
|
|
-- 0x37, 0x96, 0x58, 0xe9, 0x14, 0x96, 0x98, 0xfd, 0x3f, 0x2c, 0x40, 0xfc, 0xb3, 0x3f, 0x72, 0x1f,
|
|
9334
|
|
-- 0x7b, 0xb7, 0xf3, 0x63, 0x4f, 0x61, 0x59, 0xd8, 0xb7, 0x61, 0x7c, 0xc9, 0x73, 0x89, 0x1f, 0xaf,
|
|
9335
|
|
-- 0xd6, 0x96, 0x02, 0x7f, 0xcb, 0xdd, 0x46, 0x9f, 0x81, 0x71, 0x2a, 0xd3, 0x06, 0xed, 0xb8, 0x4e,
|
|
9336
|
|
-- 0x1a, 0x81, 0xcf, 0xd8, 0x7f, 0x2a, 0x09, 0xa2, 0xa3, 0xc3, 0xca, 0xf8, 0x86, 0x01, 0xc1, 0x29,
|
|
9337
|
|
-- 0x4c, 0xfb, 0x77, 0xe9, 0xf8, 0x05, 0x7b, 0xad, 0xc0, 0x27, 0x7e, 0xbc, 0x14, 0xf8, 0x4d, 0x2e,
|
|
9338
|
|
-- 0x26, 0x7e, 0x06, 0x4a, 0x31, 0x1d, 0x0f, 0x3e, 0x76, 0x57, 0xe5, 0x46, 0xa1, 0xa3, 0x70, 0x7c,
|
|
9339
|
|
-- 0x58, 0xb9, 0xd0, 0x59, 0x83, 0x8d, 0x13, 0xab, 0x83, 0xbe, 0x0d, 0x06, 0xa3, 0xd8, 0x89, 0xdb,
|
|
9340
|
|
-- 0x91, 0x18, 0xcd, 0x27, 0xe5, 0x68, 0xd6, 0x59, 0xe9, 0xf1, 0x61, 0x65, 0x42, 0x55, 0xe3, 0x45,
|
|
9341
|
|
-- 0x58, 0x54, 0x40, 0xcf, 0xc0, 0xd0, 0x1e, 0x89, 0x22, 0x67, 0x5b, 0x72, 0xf8, 0x13, 0xa2, 0xee,
|
|
9342
|
|
-- 0xd0, 0x1a, 0x2f, 0xc6, 0x12, 0x8e, 0x9e, 0x82, 0x01, 0x12, 0x86, 0x41, 0x28, 0xf6, 0xe8, 0x98,
|
|
9343
|
|
-- 0x40, 0x1c, 0x58, 0xa6, 0x85, 0x98, 0xc3, 0xec, 0x7f, 0x6b, 0xc1, 0x84, 0xea, 0x2b, 0x6f, 0xeb,
|
|
9344
|
|
-- 0x0c, 0x58, 0xb9, 0xb7, 0x01, 0x1a, 0xf2, 0x03, 0x23, 0x76, 0x7b, 0x8c, 0x5c, 0xbf, 0x9a, 0xc9,
|
|
9345
|
|
-- 0xa0, 0x74, 0x0c, 0x63, 0x42, 0x59, 0x15, 0x45, 0x58, 0xa3, 0x66, 0xff, 0xba, 0x05, 0xe7, 0x52,
|
|
9346
|
|
-- 0x5f, 0x74, 0xdb, 0x8d, 0x62, 0xf4, 0x4e, 0xc7, 0x57, 0xcd, 0xf5, 0xf7, 0x55, 0xb4, 0x36, 0xfb,
|
|
9347
|
|
-- 0x26, 0xb5, 0x94, 0x65, 0x89, 0xf6, 0x45, 0x37, 0x61, 0xc0, 0x8d, 0xc9, 0x9e, 0xfc, 0x98, 0xa7,
|
|
9348
|
|
-- 0xba, 0x7e, 0x0c, 0xef, 0x55, 0x32, 0x23, 0xab, 0xb4, 0x26, 0xe6, 0x04, 0xec, 0x1f, 0x29, 0x42,
|
|
9349
|
|
-- 0x99, 0x2f, 0xdb, 0x35, 0xa7, 0x75, 0x06, 0x73, 0xb1, 0x0a, 0x25, 0x46, 0x9d, 0x77, 0xfc, 0xe9,
|
|
9350
|
|
-- 0xec, 0x8e, 0x8b, 0xee, 0xcc, 0x51, 0x39, 0x8d, 0xb3, 0x82, 0xea, 0x6a, 0xa0, 0x45, 0x98, 0x91,
|
|
9351
|
|
-- 0x40, 0x0e, 0xc0, 0xa6, 0xeb, 0x3b, 0xe1, 0x01, 0x2d, 0x9b, 0x29, 0x32, 0x82, 0xcf, 0x77, 0x27,
|
|
9352
|
|
-- 0xb8, 0xa8, 0xf0, 0x39, 0x59, 0xd5, 0xd7, 0x04, 0x80, 0x35, 0xa2, 0xb3, 0xaf, 0x40, 0x59, 0x21,
|
|
9353
|
|
-- 0x9f, 0x84, 0xc7, 0x99, 0xfd, 0x1c, 0x4c, 0xa4, 0xda, 0xea, 0x55, 0x7d, 0x54, 0x67, 0x91, 0xbe,
|
|
9354
|
|
-- 0xc6, 0x4e, 0x01, 0xd1, 0xeb, 0x65, 0x7f, 0x5f, 0x9c, 0xa2, 0xef, 0xc3, 0x79, 0x2f, 0xe3, 0x70,
|
|
9355
|
|
-- 0x12, 0x53, 0xd5, 0xff, 0x61, 0xf6, 0x84, 0xf8, 0xec, 0xf3, 0x59, 0x50, 0x9c, 0xd9, 0x06, 0xbd,
|
|
9356
|
|
-- 0xf6, 0x83, 0x16, 0x5d, 0xf3, 0x8e, 0xc7, 0xfa, 0x2b, 0xa4, 0xef, 0x3b, 0xa2, 0x0c, 0x2b, 0x28,
|
|
9357
|
|
-- 0x3d, 0xc2, 0xce, 0xab, 0xce, 0xdf, 0x22, 0x07, 0x75, 0xe2, 0x91, 0x46, 0x1c, 0x84, 0x1f, 0x6a,
|
|
9358
|
|
-- 0xf7, 0x2f, 0xf1, 0xd1, 0xe7, 0x27, 0xe0, 0x88, 0x20, 0x50, 0xbc, 0x45, 0x0e, 0xf8, 0x54, 0xe8,
|
|
9359
|
|
-- 0x5f, 0x57, 0xec, 0xfa, 0x75, 0xbf, 0x60, 0xc1, 0x98, 0xfa, 0xba, 0x33, 0xd8, 0xea, 0x8b, 0xe6,
|
|
9360
|
|
-- 0x56, 0xbf, 0xd4, 0x75, 0x81, 0xe7, 0x6c, 0xf2, 0xaf, 0x17, 0xe0, 0xa2, 0xc2, 0xa1, 0xec, 0x3e,
|
|
9361
|
|
-- 0xff, 0x23, 0x56, 0xd5, 0x3c, 0x94, 0x7d, 0xa5, 0x3d, 0xb0, 0x4c, 0xb1, 0x3d, 0xd1, 0x1d, 0x24,
|
|
9362
|
|
-- 0x38, 0x94, 0x6b, 0xf3, 0x13, 0x11, 0x7f, 0x54, 0x57, 0xab, 0x09, 0x15, 0xda, 0x22, 0x14, 0xdb,
|
|
9363
|
|
-- 0x6e, 0x53, 0xdc, 0x19, 0x9f, 0x92, 0xa3, 0x7d, 0x77, 0xb5, 0x7a, 0x7c, 0x58, 0x79, 0x32, 0x4f,
|
|
9364
|
|
-- 0xa5, 0x4b, 0x2f, 0xab, 0x68, 0xee, 0xee, 0x6a, 0x15, 0xd3, 0xca, 0x68, 0x01, 0x26, 0xa4, 0xd6,
|
|
9365
|
|
-- 0xfa, 0x1e, 0xe5, 0xa0, 0x02, 0x5f, 0x5c, 0x2d, 0x4a, 0x37, 0x86, 0x4d, 0x30, 0x4e, 0xe3, 0xa3,
|
|
9366
|
|
-- 0x2a, 0x4c, 0xee, 0xb6, 0x37, 0x89, 0x47, 0x62, 0xfe, 0xc1, 0xb7, 0x08, 0xd7, 0x1c, 0x95, 0x13,
|
|
9367
|
|
-- 0xd1, 0xf2, 0x56, 0x0a, 0x8e, 0x3b, 0x6a, 0xd8, 0x7f, 0xc6, 0x8e, 0x78, 0x31, 0x7a, 0xb5, 0x30,
|
|
9368
|
|
-- 0xa0, 0x0b, 0x8b, 0x52, 0xff, 0x30, 0x97, 0x73, 0x3f, 0xab, 0xe2, 0x16, 0x39, 0xd8, 0x08, 0x28,
|
|
9369
|
|
-- 0xb3, 0x9d, 0xbd, 0x2a, 0x8c, 0x35, 0x5f, 0xea, 0xba, 0xe6, 0x7f, 0xa9, 0x00, 0xd3, 0x6a, 0x04,
|
|
9370
|
|
-- 0x0c, 0xbe, 0xee, 0xcf, 0xfb, 0x18, 0xbc, 0x00, 0x23, 0x4d, 0xb2, 0xe5, 0xb4, 0xbd, 0x58, 0xa9,
|
|
9371
|
|
-- 0x31, 0x07, 0xb8, 0x2a, 0xbb, 0x9a, 0x14, 0x63, 0x1d, 0xe7, 0x04, 0xc3, 0xf6, 0xd3, 0x23, 0xec,
|
|
9372
|
|
-- 0x6e, 0x8d, 0x1d, 0xba, 0xc6, 0xd5, 0xae, 0xb1, 0x72, 0x77, 0xcd, 0x53, 0x30, 0xe0, 0xee, 0x51,
|
|
9373
|
|
-- 0x5e, 0xab, 0x60, 0xb2, 0x50, 0xab, 0xb4, 0x10, 0x73, 0x18, 0xfa, 0x04, 0x0c, 0x35, 0x82, 0xbd,
|
|
9374
|
|
-- 0x3d, 0xc7, 0x6f, 0xb2, 0x2b, 0xaf, 0xbc, 0x38, 0x42, 0xd9, 0xb1, 0x25, 0x5e, 0x84, 0x25, 0x0c,
|
|
9375
|
|
-- 0x3d, 0x01, 0x25, 0x27, 0xdc, 0x8e, 0x66, 0x4a, 0x0c, 0x67, 0x98, 0xb6, 0xb4, 0x10, 0x6e, 0x47,
|
|
9376
|
|
-- 0x98, 0x95, 0x52, 0xa9, 0xea, 0x7e, 0x10, 0xee, 0xba, 0xfe, 0x76, 0xd5, 0x0d, 0xc5, 0x96, 0x50,
|
|
9377
|
|
-- 0x77, 0xe1, 0x5b, 0x0a, 0x82, 0x35, 0x2c, 0xb4, 0x02, 0x03, 0xad, 0x20, 0x8c, 0xa3, 0x99, 0x41,
|
|
9378
|
|
-- 0x36, 0xdc, 0x4f, 0xe6, 0x1c, 0x44, 0xfc, 0x6b, 0x6b, 0x41, 0x18, 0x27, 0x1f, 0x40, 0xff, 0x45,
|
|
9379
|
|
-- 0x98, 0x57, 0x47, 0xdf, 0x06, 0x45, 0xe2, 0xef, 0xcf, 0x0c, 0x31, 0x2a, 0xb3, 0x59, 0x54, 0x96,
|
|
9380
|
|
-- 0xfd, 0xfd, 0x7b, 0x4e, 0x98, 0x9c, 0xd2, 0xcb, 0xfe, 0x3e, 0xa6, 0x75, 0xd0, 0x17, 0xa0, 0x2c,
|
|
9381
|
|
-- 0xb7, 0x78, 0x24, 0xd4, 0x1c, 0x99, 0x4b, 0x4c, 0x1e, 0x0c, 0x98, 0xbc, 0xd7, 0x76, 0x43, 0xb2,
|
|
9382
|
|
-- 0x47, 0xfc, 0x38, 0x4a, 0xce, 0x34, 0x09, 0x8d, 0x70, 0x42, 0x0d, 0x7d, 0x41, 0xea, 0xd6, 0xd6,
|
|
9383
|
|
-- 0x82, 0xb6, 0x1f, 0x47, 0x33, 0x65, 0xd6, 0xbd, 0xcc, 0x57, 0x8f, 0x7b, 0x09, 0x5e, 0x5a, 0xf9,
|
|
9384
|
|
-- 0xc6, 0x2b, 0x63, 0x83, 0x14, 0xc2, 0x30, 0xe6, 0xb9, 0xfb, 0xc4, 0x27, 0x51, 0x54, 0x0b, 0x83,
|
|
9385
|
|
-- 0x4d, 0x32, 0x03, 0xac, 0xe7, 0x17, 0xb3, 0x1f, 0x03, 0x82, 0x4d, 0xb2, 0x38, 0x75, 0x74, 0x58,
|
|
9386
|
|
-- 0x19, 0xbb, 0xad, 0xd7, 0xc1, 0x26, 0x09, 0x74, 0x17, 0xc6, 0xa9, 0x5c, 0xe3, 0x26, 0x44, 0x47,
|
|
9387
|
|
-- 0x7a, 0x11, 0x65, 0xd2, 0x07, 0x36, 0x2a, 0xe1, 0x14, 0x11, 0xf4, 0x06, 0x94, 0x3d, 0x77, 0x8b,
|
|
9388
|
|
-- 0x34, 0x0e, 0x1a, 0x1e, 0x99, 0x19, 0x65, 0x14, 0x33, 0xb7, 0xd5, 0x6d, 0x89, 0xc4, 0xe5, 0x22,
|
|
9389
|
|
-- 0xf5, 0x17, 0x27, 0xd5, 0xd1, 0x3d, 0xb8, 0x10, 0x93, 0x70, 0xcf, 0xf5, 0x1d, 0xba, 0x1d, 0x84,
|
|
9390
|
|
-- 0xbc, 0xc0, 0x9e, 0x54, 0xc6, 0xd8, 0x7a, 0xbb, 0x2c, 0x86, 0xee, 0xc2, 0x46, 0x26, 0x16, 0xce,
|
|
9391
|
|
-- 0xa9, 0x8d, 0xee, 0xc0, 0x04, 0xdb, 0x09, 0xb5, 0xb6, 0xe7, 0xd5, 0x02, 0xcf, 0x6d, 0x1c, 0xcc,
|
|
9392
|
|
-- 0x8c, 0x33, 0x82, 0x9f, 0x90, 0xf7, 0xc2, 0xaa, 0x09, 0x3e, 0x3e, 0xac, 0x40, 0xf2, 0x0f, 0xa7,
|
|
9393
|
|
-- 0x6b, 0xa3, 0x4d, 0xa6, 0x43, 0x6f, 0x87, 0x6e, 0x7c, 0x40, 0xd7, 0x2f, 0x79, 0x10, 0xcf, 0x4c,
|
|
9394
|
|
-- 0x74, 0x15, 0x85, 0x75, 0x54, 0xa5, 0x68, 0xd7, 0x0b, 0x71, 0x9a, 0x20, 0xdd, 0xda, 0x51, 0xdc,
|
|
9395
|
|
-- 0x74, 0xfd, 0x99, 0x49, 0x76, 0x62, 0xa8, 0x9d, 0x51, 0xa7, 0x85, 0x98, 0xc3, 0x98, 0xfe, 0x9c,
|
|
9396
|
|
-- 0xfe, 0xb8, 0x43, 0x4f, 0xd0, 0x29, 0x86, 0x98, 0xe8, 0xcf, 0x25, 0x00, 0x27, 0x38, 0x94, 0xa9,
|
|
9397
|
|
-- 0x89, 0xe3, 0x83, 0x19, 0xc4, 0x50, 0xd5, 0x76, 0xd9, 0xd8, 0xf8, 0x02, 0xa6, 0xe5, 0xe8, 0x36,
|
|
9398
|
|
-- 0x0c, 0x11, 0x7f, 0x7f, 0x25, 0x0c, 0xf6, 0x66, 0xce, 0xe5, 0xef, 0xd9, 0x65, 0x8e, 0xc2, 0x0f,
|
|
9399
|
|
-- 0xf4, 0x44, 0xc0, 0x13, 0xc5, 0x58, 0x92, 0x40, 0x0f, 0x60, 0x26, 0x63, 0x46, 0xf8, 0x04, 0x9c,
|
|
9400
|
|
-- 0x67, 0x13, 0xf0, 0x59, 0x51, 0x77, 0x66, 0x23, 0x07, 0xef, 0xb8, 0x0b, 0x0c, 0xe7, 0x52, 0x47,
|
|
9401
|
|
-- 0x5f, 0x84, 0x31, 0xbe, 0xa1, 0xf8, 0xe3, 0x5b, 0x34, 0x33, 0xcd, 0xbe, 0xe6, 0x4a, 0xfe, 0xe6,
|
|
9402
|
|
-- 0xe4, 0x88, 0x8b, 0xd3, 0xa2, 0x43, 0x63, 0x7a, 0x69, 0x84, 0x4d, 0x6a, 0xf6, 0x26, 0x8c, 0xab,
|
|
9403
|
|
-- 0x73, 0x8b, 0x2d, 0x1d, 0x54, 0x81, 0x01, 0xc6, 0xed, 0x08, 0xfd, 0x56, 0x99, 0xce, 0x14, 0xe3,
|
|
9404
|
|
-- 0x84, 0x30, 0x2f, 0x67, 0x33, 0xe5, 0xbe, 0x4f, 0x16, 0x0f, 0x62, 0xc2, 0xa5, 0xea, 0xa2, 0x36,
|
|
9405
|
|
-- 0x53, 0x12, 0x80, 0x13, 0x1c, 0xfb, 0xff, 0x72, 0xae, 0x31, 0x39, 0x1c, 0xfb, 0xb8, 0x0e, 0x9e,
|
|
9406
|
|
-- 0x83, 0xe1, 0x9d, 0x20, 0x8a, 0x29, 0x36, 0x6b, 0x63, 0x20, 0xe1, 0x13, 0x6f, 0x8a, 0x72, 0xac,
|
|
9407
|
|
-- 0x30, 0xd0, 0x6b, 0x30, 0xd6, 0xd0, 0x1b, 0x10, 0x77, 0x99, 0x1a, 0x02, 0xa3, 0x75, 0x6c, 0xe2,
|
|
9408
|
|
-- 0xa2, 0x57, 0x61, 0x98, 0x3d, 0x9d, 0x37, 0x02, 0x4f, 0x30, 0x59, 0xf2, 0x42, 0x1e, 0xae, 0x89,
|
|
9409
|
|
-- 0xf2, 0x63, 0xed, 0x37, 0x56, 0xd8, 0xe8, 0x2a, 0x0c, 0xd2, 0x2e, 0xac, 0xd6, 0xc4, 0x2d, 0xa2,
|
|
9410
|
|
-- 0x54, 0x35, 0x37, 0x59, 0x29, 0x16, 0x50, 0xfb, 0xaf, 0x17, 0xb4, 0x51, 0xa6, 0x12, 0x29, 0x41,
|
|
9411
|
|
-- 0x35, 0x18, 0xba, 0xef, 0xb8, 0xb1, 0xeb, 0x6f, 0x0b, 0x76, 0xe1, 0x99, 0xae, 0x57, 0x0a, 0xab,
|
|
9412
|
|
-- 0xf4, 0x16, 0xaf, 0xc0, 0x2f, 0x3d, 0xf1, 0x07, 0x4b, 0x32, 0x94, 0x62, 0xd8, 0xf6, 0x7d, 0x4a,
|
|
9413
|
|
-- 0xb1, 0xd0, 0x2f, 0x45, 0xcc, 0x2b, 0x70, 0x8a, 0xe2, 0x0f, 0x96, 0x64, 0xd0, 0x3b, 0x00, 0x72,
|
|
9414
|
|
-- 0x59, 0x92, 0xa6, 0x78, 0xb2, 0x7e, 0xae, 0x37, 0xd1, 0x0d, 0x55, 0x67, 0x71, 0x9c, 0x5e, 0xa9,
|
|
9415
|
|
-- 0xc9, 0x7f, 0xac, 0xd1, 0xb3, 0x63, 0xc6, 0x56, 0x75, 0x76, 0x06, 0x7d, 0x27, 0x3d, 0x09, 0x9c,
|
|
9416
|
|
-- 0x30, 0x26, 0xcd, 0x85, 0x58, 0x0c, 0xce, 0x27, 0xfb, 0x93, 0x29, 0x36, 0xdc, 0x3d, 0xa2, 0x9f,
|
|
9417
|
|
-- 0x1a, 0x82, 0x08, 0x4e, 0xe8, 0xd9, 0xbf, 0x52, 0x84, 0x99, 0xbc, 0xee, 0xd2, 0x45, 0x47, 0x1e,
|
|
9418
|
|
-- 0xb8, 0xf1, 0x12, 0xe5, 0x86, 0x2c, 0x73, 0xd1, 0x2d, 0x8b, 0x72, 0xac, 0x30, 0xe8, 0xec, 0x47,
|
|
9419
|
|
-- 0xee, 0xb6, 0x14, 0x09, 0x07, 0x92, 0xd9, 0xaf, 0xb3, 0x52, 0x2c, 0xa0, 0x14, 0x2f, 0x24, 0x4e,
|
|
9420
|
|
-- 0x24, 0x6c, 0x22, 0xb4, 0x55, 0x82, 0x59, 0x29, 0x16, 0x50, 0x5d, 0xdf, 0x54, 0xea, 0xa1, 0x6f,
|
|
9421
|
|
-- 0x32, 0x86, 0x68, 0xe0, 0x74, 0x87, 0x08, 0x7d, 0x09, 0x60, 0xcb, 0xf5, 0xdd, 0x68, 0x87, 0x51,
|
|
9422
|
|
-- 0x1f, 0x3c, 0x31, 0x75, 0xc5, 0x4b, 0xad, 0x28, 0x2a, 0x58, 0xa3, 0x88, 0x5e, 0x86, 0x11, 0xb5,
|
|
9423
|
|
-- 0x01, 0x57, 0xab, 0xec, 0x81, 0x48, 0x7b, 0x70, 0x4f, 0x4e, 0xa3, 0x2a, 0xd6, 0xf1, 0xec, 0x77,
|
|
9424
|
|
-- 0xd3, 0xeb, 0x45, 0xec, 0x00, 0x6d, 0x7c, 0xad, 0x7e, 0xc7, 0xb7, 0xd0, 0x7d, 0x7c, 0xed, 0xdf,
|
|
9425
|
|
-- 0x2c, 0xc2, 0x84, 0xd1, 0x58, 0x3b, 0xea, 0xe3, 0xcc, 0xba, 0x41, 0xef, 0x39, 0x27, 0x26, 0x62,
|
|
9426
|
|
-- 0xff, 0xd9, 0xbd, 0xb7, 0x8a, 0x7e, 0x17, 0xd2, 0x1d, 0xc0, 0xeb, 0xa3, 0x2f, 0x41, 0xd9, 0x73,
|
|
9427
|
|
-- 0x22, 0xa6, 0xbb, 0x22, 0x62, 0xdf, 0xf5, 0x43, 0x2c, 0x91, 0x23, 0x9c, 0x28, 0xd6, 0xae, 0x1a,
|
|
9428
|
|
-- 0x4e, 0x3b, 0x21, 0x49, 0x2f, 0x64, 0xca, 0xfb, 0x48, 0xa3, 0x1b, 0xd5, 0x09, 0xca, 0x20, 0x1d,
|
|
9429
|
|
-- 0x60, 0x0e, 0x43, 0xaf, 0xc2, 0x68, 0x48, 0xd8, 0xaa, 0x58, 0xa2, 0xac, 0x1c, 0x5b, 0x66, 0x03,
|
|
9430
|
|
-- 0x09, 0xcf, 0x87, 0x35, 0x18, 0x36, 0x30, 0x13, 0x56, 0x7e, 0xb0, 0x0b, 0x2b, 0xff, 0x0c, 0x0c,
|
|
9431
|
|
-- 0xb1, 0x1f, 0x6a, 0x05, 0xa8, 0xd9, 0x58, 0xe5, 0xc5, 0x58, 0xc2, 0xd3, 0x0b, 0x66, 0xb8, 0xcf,
|
|
9432
|
|
-- 0x05, 0xf3, 0x49, 0x18, 0xaf, 0x3a, 0x64, 0x2f, 0xf0, 0x97, 0xfd, 0x66, 0x2b, 0x70, 0xfd, 0x18,
|
|
9433
|
|
-- 0xcd, 0x40, 0x89, 0xdd, 0x0e, 0x7c, 0x6f, 0x97, 0x28, 0x05, 0x5c, 0xa2, 0x8c, 0xb9, 0xbd, 0x0d,
|
|
9434
|
|
-- 0xd3, 0xd5, 0xe0, 0xbe, 0x7f, 0xdf, 0x09, 0x9b, 0x0b, 0xb5, 0x55, 0x4d, 0xce, 0x5d, 0x97, 0x72,
|
|
9435
|
|
-- 0x16, 0x37, 0x62, 0xc9, 0x3c, 0x53, 0xb5, 0x9a, 0xfc, 0xae, 0x5d, 0x71, 0x3d, 0x92, 0xa3, 0x8d,
|
|
9436
|
|
-- 0xf8, 0x9b, 0x05, 0xa3, 0xa5, 0x04, 0x5f, 0x3d, 0x18, 0x59, 0xb9, 0x0f, 0x46, 0x6f, 0xc2, 0xf0,
|
|
9437
|
|
-- 0x96, 0x4b, 0xbc, 0x26, 0x26, 0x5b, 0x62, 0x89, 0x3d, 0x9d, 0xff, 0x2e, 0xbf, 0x42, 0x31, 0xa5,
|
|
9438
|
|
-- 0xf6, 0x89, 0x4b, 0x69, 0x2b, 0xa2, 0x32, 0x56, 0x64, 0xd0, 0x2e, 0x4c, 0x4a, 0x31, 0x40, 0x42,
|
|
9439
|
|
-- 0xc5, 0x82, 0x7b, 0xa6, 0x9b, 0x6c, 0x61, 0x12, 0x3f, 0x7f, 0x74, 0x58, 0x99, 0xc4, 0x29, 0x32,
|
|
9440
|
|
-- 0xb8, 0x83, 0x30, 0x15, 0xcb, 0xf6, 0xe8, 0xd1, 0x5a, 0x62, 0xc3, 0xcf, 0xc4, 0x32, 0x26, 0x61,
|
|
9441
|
|
-- 0xb2, 0x52, 0xfb, 0x27, 0x2c, 0x78, 0xac, 0x63, 0x64, 0x84, 0xa4, 0x7d, 0xca, 0xb3, 0x90, 0x96,
|
|
9442
|
|
-- 0x7c, 0x0b, 0xbd, 0x25, 0x5f, 0xfb, 0x1f, 0x58, 0x70, 0x7e, 0x79, 0xaf, 0x15, 0x1f, 0x54, 0x5d,
|
|
9443
|
|
-- 0xf3, 0x75, 0xe7, 0x15, 0x18, 0xdc, 0x23, 0x4d, 0xb7, 0xbd, 0x27, 0x66, 0xae, 0x22, 0x8f, 0x9f,
|
|
9444
|
|
-- 0x35, 0x56, 0x7a, 0x7c, 0x58, 0x19, 0xab, 0xc7, 0x41, 0xe8, 0x6c, 0x13, 0x5e, 0x80, 0x05, 0x3a,
|
|
9445
|
|
-- 0x3b, 0xc4, 0xdd, 0xf7, 0xc9, 0x6d, 0x77, 0xcf, 0x95, 0x76, 0x16, 0x5d, 0x75, 0x67, 0x73, 0x72,
|
|
9446
|
|
-- 0x40, 0xe7, 0xde, 0x6c, 0x3b, 0x7e, 0xec, 0xc6, 0x07, 0xe2, 0x61, 0x46, 0x12, 0xc1, 0x09, 0x3d,
|
|
9447
|
|
-- 0xfb, 0x9b, 0x16, 0x4c, 0xc8, 0x75, 0xbf, 0xd0, 0x6c, 0x86, 0x24, 0x8a, 0xd0, 0x2c, 0x14, 0xdc,
|
|
9448
|
|
-- 0x96, 0xe8, 0x25, 0x88, 0x5e, 0x16, 0x56, 0x6b, 0xb8, 0xe0, 0xb6, 0x50, 0x0d, 0xca, 0xdc, 0x5c,
|
|
9449
|
|
-- 0x23, 0x59, 0x5c, 0x7d, 0x19, 0x7d, 0xb0, 0x1e, 0x6c, 0xc8, 0x9a, 0x38, 0x21, 0x22, 0x39, 0x38,
|
|
9450
|
|
-- 0x76, 0x66, 0x16, 0xcd, 0x57, 0xaf, 0x9b, 0xa2, 0x1c, 0x2b, 0x0c, 0x74, 0x0d, 0x86, 0xfd, 0xa0,
|
|
9451
|
|
-- 0xc9, 0xad, 0x67, 0xf8, 0xed, 0xc7, 0x96, 0xec, 0xba, 0x28, 0xc3, 0x0a, 0x6a, 0xff, 0xb0, 0x05,
|
|
9452
|
|
-- 0xa3, 0xf2, 0xcb, 0xfa, 0x64, 0x26, 0xe9, 0xd6, 0x4a, 0x18, 0xc9, 0x64, 0x6b, 0x51, 0x66, 0x90,
|
|
9453
|
|
-- 0x41, 0x0c, 0x1e, 0xb0, 0x78, 0x12, 0x1e, 0xd0, 0xfe, 0xf1, 0x02, 0x8c, 0xcb, 0xee, 0xd4, 0xdb,
|
|
9454
|
|
-- 0x9b, 0x11, 0x89, 0xd1, 0x06, 0x94, 0x1d, 0x3e, 0xe4, 0x44, 0xae, 0xd8, 0xa7, 0xb2, 0x85, 0x0f,
|
|
9455
|
|
-- 0x63, 0x7e, 0x92, 0x6b, 0x79, 0x41, 0xd6, 0xc6, 0x09, 0x21, 0xe4, 0xc1, 0x94, 0x1f, 0xc4, 0xec,
|
|
9456
|
|
-- 0x88, 0x56, 0xf0, 0x6e, 0x4f, 0x20, 0x69, 0xea, 0x17, 0x05, 0xf5, 0xa9, 0xf5, 0x34, 0x15, 0xdc,
|
|
9457
|
|
-- 0x49, 0x18, 0x2d, 0x4b, 0x85, 0x47, 0x31, 0x5f, 0xdc, 0xd0, 0x67, 0x21, 0x5b, 0xdf, 0x61, 0xff,
|
|
9458
|
|
-- 0x9a, 0x05, 0x65, 0x89, 0x76, 0x16, 0xaf, 0x5d, 0x6b, 0x30, 0x14, 0xb1, 0x49, 0x90, 0x43, 0x63,
|
|
9459
|
|
-- 0x77, 0xeb, 0x38, 0x9f, 0xaf, 0xe4, 0xe6, 0xe1, 0xff, 0x23, 0x2c, 0x69, 0x30, 0x7d, 0xb7, 0xea,
|
|
9460
|
|
-- 0xfe, 0x47, 0x44, 0xdf, 0xad, 0xfa, 0x93, 0x73, 0xc3, 0xfc, 0x57, 0xd6, 0x67, 0x4d, 0xac, 0xa5,
|
|
9461
|
|
-- 0x0c, 0x52, 0x2b, 0x24, 0x5b, 0xee, 0x83, 0x34, 0x83, 0x54, 0x63, 0xa5, 0x58, 0x40, 0xd1, 0x3b,
|
|
9462
|
|
-- 0x30, 0xda, 0x90, 0x8a, 0xce, 0xe4, 0x18, 0xb8, 0xda, 0x55, 0xe9, 0xae, 0xde, 0x67, 0xb8, 0x65,
|
|
9463
|
|
-- 0xed, 0x92, 0x56, 0x1f, 0x1b, 0xd4, 0xcc, 0xe7, 0xf6, 0x62, 0xaf, 0xe7, 0xf6, 0x84, 0x6e, 0xfe,
|
|
9464
|
|
-- 0xe3, 0xf3, 0x4f, 0x5a, 0x30, 0xc8, 0xd5, 0x65, 0xfd, 0xe9, 0x17, 0xb5, 0xe7, 0xaa, 0x64, 0xec,
|
|
9465
|
|
-- 0xee, 0xd1, 0x42, 0xf1, 0xfc, 0x84, 0xd6, 0xa0, 0xcc, 0x7e, 0x30, 0xb5, 0x41, 0x31, 0xdf, 0xa4,
|
|
9466
|
|
-- 0x98, 0xb7, 0xaa, 0x77, 0xf0, 0x9e, 0xac, 0x86, 0x13, 0x0a, 0xf6, 0x8f, 0x16, 0xe9, 0x51, 0x95,
|
|
9467
|
|
-- 0xa0, 0x1a, 0x37, 0xb8, 0xf5, 0xe8, 0x6e, 0xf0, 0xc2, 0xa3, 0xba, 0xc1, 0xb7, 0x61, 0xa2, 0xa1,
|
|
9468
|
|
-- 0x3d, 0x6e, 0x25, 0x33, 0x79, 0xad, 0xeb, 0x22, 0xd1, 0xde, 0xc1, 0xb8, 0xca, 0x68, 0xc9, 0x24,
|
|
9469
|
|
-- 0x82, 0xd3, 0x54, 0xd1, 0x77, 0xc2, 0x28, 0x9f, 0x67, 0xd1, 0x0a, 0xb7, 0x58, 0xf8, 0x44, 0xfe,
|
|
9470
|
|
-- 0x7a, 0xd1, 0x9b, 0x60, 0x2b, 0xb1, 0xae, 0x55, 0xc7, 0x06, 0x31, 0xfb, 0x57, 0x86, 0x61, 0x60,
|
|
9471
|
|
-- 0x79, 0x9f, 0xf8, 0xf1, 0x19, 0x1c, 0x48, 0x0d, 0x18, 0x77, 0xfd, 0xfd, 0xc0, 0xdb, 0x27, 0x4d,
|
|
9472
|
|
-- 0x0e, 0x3f, 0xc9, 0xe5, 0x7a, 0x41, 0x90, 0x1e, 0x5f, 0x35, 0x48, 0xe0, 0x14, 0xc9, 0x47, 0x21,
|
|
9473
|
|
-- 0x61, 0xde, 0x80, 0x41, 0x3e, 0xf7, 0x42, 0xbc, 0xcc, 0x54, 0x06, 0xb3, 0x41, 0x14, 0xbb, 0x20,
|
|
9474
|
|
-- 0x91, 0x7e, 0xb9, 0xf6, 0x59, 0x54, 0x47, 0xef, 0xc2, 0xf8, 0x96, 0x1b, 0x46, 0x31, 0x15, 0x0d,
|
|
9475
|
|
-- 0xa3, 0xd8, 0xd9, 0x6b, 0x3d, 0x84, 0x44, 0xa9, 0xc6, 0x61, 0xc5, 0xa0, 0x84, 0x53, 0x94, 0xd1,
|
|
9476
|
|
-- 0x36, 0x8c, 0x51, 0x21, 0x27, 0x69, 0x6a, 0xe8, 0xc4, 0x4d, 0x29, 0x95, 0xd1, 0x6d, 0x9d, 0x10,
|
|
9477
|
|
-- 0x36, 0xe9, 0xd2, 0xc3, 0xa4, 0xc1, 0x84, 0xa2, 0x61, 0xc6, 0x51, 0xa8, 0xc3, 0x84, 0x4b, 0x43,
|
|
9478
|
|
-- 0x1c, 0x46, 0xcf, 0x24, 0x66, 0xb6, 0x52, 0x36, 0xcf, 0x24, 0xcd, 0x38, 0xe5, 0xcb, 0x50, 0x26,
|
|
9479
|
|
-- 0x74, 0x08, 0x29, 0x61, 0xa1, 0x18, 0x9f, 0xef, 0xaf, 0xaf, 0x6b, 0x6e, 0x23, 0x0c, 0x4c, 0x59,
|
|
9480
|
|
-- 0x7e, 0x59, 0x52, 0xc2, 0x09, 0x51, 0xb4, 0x04, 0x83, 0x11, 0x09, 0x5d, 0x12, 0x09, 0x15, 0x79,
|
|
9481
|
|
-- 0x97, 0x69, 0x64, 0x68, 0xdc, 0xf6, 0x9c, 0xff, 0xc6, 0xa2, 0x2a, 0x5d, 0x5e, 0x0e, 0x93, 0x86,
|
|
9482
|
|
-- 0x98, 0x56, 0x5c, 0x5b, 0x5e, 0x0b, 0xac, 0x14, 0x0b, 0x28, 0x7a, 0x03, 0x86, 0x42, 0xe2, 0x31,
|
|
9483
|
|
-- 0x65, 0xd1, 0x58, 0xff, 0x8b, 0x9c, 0xeb, 0x9e, 0x78, 0x3d, 0x2c, 0x09, 0xa0, 0x5b, 0x80, 0x42,
|
|
9484
|
|
-- 0x42, 0x79, 0x08, 0xd7, 0xdf, 0x56, 0xc6, 0x1c, 0x42, 0xd7, 0xfd, 0xb8, 0x68, 0xff, 0x1c, 0x4e,
|
|
9485
|
|
-- 0x30, 0xa4, 0x55, 0x2a, 0xce, 0xa8, 0x86, 0x6e, 0xc0, 0x94, 0x2a, 0x5d, 0xf5, 0xa3, 0xd8, 0xf1,
|
|
9486
|
|
-- 0x1b, 0x84, 0xa9, 0xb9, 0xcb, 0x09, 0x57, 0x84, 0xd3, 0x08, 0xb8, 0xb3, 0x8e, 0xfd, 0x73, 0x94,
|
|
9487
|
|
-- 0x9d, 0xa1, 0xa3, 0x75, 0x06, 0xbc, 0xc0, 0xeb, 0x26, 0x2f, 0x70, 0x31, 0x77, 0xe6, 0x72, 0xf8,
|
|
9488
|
|
-- 0x80, 0x23, 0x0b, 0x46, 0xb4, 0x99, 0x4d, 0xd6, 0xac, 0xd5, 0x65, 0xcd, 0xb6, 0x61, 0x92, 0xae,
|
|
9489
|
|
-- 0xf4, 0x3b, 0x9b, 0xcc, 0x0d, 0xab, 0xc9, 0x16, 0x66, 0xe1, 0xe1, 0x16, 0xa6, 0x7a, 0x65, 0xbe,
|
|
9490
|
|
-- 0x9d, 0x22, 0x88, 0x3b, 0x9a, 0x40, 0xaf, 0x48, 0xcd, 0x49, 0xd1, 0x30, 0xd2, 0xe2, 0x5a, 0x91,
|
|
9491
|
|
-- 0xe3, 0xc3, 0xca, 0xa4, 0xf6, 0x21, 0xba, 0xa6, 0xc4, 0xfe, 0xb2, 0xfc, 0x46, 0xf5, 0x9a, 0xdf,
|
|
9492
|
|
-- 0x50, 0x8b, 0x25, 0xf5, 0x9a, 0xaf, 0x96, 0x03, 0x4e, 0x70, 0xe8, 0x1e, 0xa5, 0x22, 0x48, 0xfa,
|
|
9493
|
|
-- 0x35, 0x9f, 0x0a, 0x28, 0x98, 0x41, 0xec, 0x17, 0x01, 0x96, 0x1f, 0x90, 0x06, 0x5f, 0xea, 0xfa,
|
|
9494
|
|
-- 0x03, 0xa4, 0x95, 0xff, 0x00, 0x69, 0xff, 0x7b, 0x0b, 0xc6, 0x57, 0x96, 0x0c, 0x31, 0x71, 0x0e,
|
|
9495
|
|
-- 0x80, 0xcb, 0x46, 0x6f, 0xbd, 0xb5, 0x2e, 0x75, 0xeb, 0x5c, 0x3d, 0xaa, 0x4a, 0xb1, 0x86, 0x81,
|
|
9496
|
|
-- 0x2e, 0x42, 0xd1, 0x6b, 0xfb, 0x42, 0x64, 0x19, 0x3a, 0x3a, 0xac, 0x14, 0x6f, 0xb7, 0x7d, 0x4c,
|
|
9497
|
|
-- 0xcb, 0x34, 0x0b, 0xc1, 0x62, 0xdf, 0x16, 0x82, 0x3d, 0xdd, 0xab, 0x50, 0x05, 0x06, 0xee, 0xdf,
|
|
9498
|
|
-- 0x77, 0x9b, 0xdc, 0x88, 0x5d, 0xe8, 0xfd, 0xdf, 0x7a, 0x6b, 0xb5, 0x1a, 0x61, 0x5e, 0x6e, 0x7f,
|
|
9499
|
|
-- 0xb5, 0x08, 0xb3, 0x2b, 0x1e, 0x79, 0xf0, 0x01, 0x0d, 0xf9, 0xfb, 0xb5, 0x6f, 0x3c, 0x19, 0xbf,
|
|
9500
|
|
-- 0x78, 0x52, 0x1b, 0xd6, 0xde, 0xe3, 0xb1, 0x05, 0x43, 0xfc, 0x31, 0x5b, 0x9a, 0xf5, 0xbf, 0x96,
|
|
9501
|
|
-- 0xd5, 0x7a, 0xfe, 0x80, 0xcc, 0xf1, 0x47, 0x71, 0x61, 0xce, 0xaf, 0x6e, 0x5a, 0x51, 0x8a, 0x25,
|
|
9502
|
|
-- 0xf1, 0xd9, 0xcf, 0xc0, 0xa8, 0x8e, 0x79, 0x22, 0x6b, 0xf2, 0xbf, 0x54, 0x84, 0x49, 0xda, 0x83,
|
|
9503
|
|
-- 0x47, 0x3a, 0x11, 0x77, 0x3b, 0x27, 0xe2, 0xb4, 0x2d, 0x8a, 0x7b, 0xcf, 0xc6, 0x3b, 0xe9, 0xd9,
|
|
9504
|
|
-- 0x78, 0x21, 0x6f, 0x36, 0xce, 0x7a, 0x0e, 0xbe, 0xd7, 0x82, 0x73, 0x2b, 0x5e, 0xd0, 0xd8, 0x4d,
|
|
9505
|
|
-- 0x59, 0xfd, 0xbe, 0x0c, 0x23, 0xf4, 0x1c, 0x8f, 0x0c, 0x2f, 0x22, 0xc3, 0xaf, 0x4c, 0x80, 0xb0,
|
|
9506
|
|
-- 0x8e, 0xa7, 0x55, 0xbb, 0x7b, 0x77, 0xb5, 0x9a, 0xe5, 0x8e, 0x26, 0x40, 0x58, 0xc7, 0xb3, 0xbf,
|
|
9507
|
|
-- 0x61, 0xc1, 0xa5, 0x1b, 0x4b, 0xcb, 0xc9, 0x52, 0xec, 0xf0, 0x88, 0xa3, 0x52, 0x60, 0x53, 0xeb,
|
|
9508
|
|
-- 0x4a, 0x22, 0x05, 0x56, 0x59, 0x2f, 0x04, 0xf4, 0xa3, 0xe2, 0xed, 0xf9, 0xb3, 0x16, 0x9c, 0xbb,
|
|
9509
|
|
-- 0xe1, 0xc6, 0xf4, 0x5a, 0x4e, 0xfb, 0x66, 0xd1, 0x7b, 0x39, 0x72, 0xe3, 0x20, 0x3c, 0x48, 0xfb,
|
|
9510
|
|
-- 0x66, 0x61, 0x05, 0xc1, 0x1a, 0x16, 0x6f, 0x79, 0xdf, 0x65, 0x66, 0x54, 0x05, 0x53, 0x15, 0x85,
|
|
9511
|
|
-- 0x45, 0x39, 0x56, 0x18, 0xf4, 0xc3, 0x9a, 0x6e, 0xc8, 0x44, 0x89, 0x03, 0x71, 0xc2, 0xaa, 0x0f,
|
|
9512
|
|
-- 0xab, 0x4a, 0x00, 0x4e, 0x70, 0xec, 0x9f, 0xb0, 0x60, 0xfa, 0x86, 0xd7, 0x8e, 0x62, 0x12, 0x6e,
|
|
9513
|
|
-- 0x45, 0x46, 0x67, 0x5f, 0x84, 0x32, 0x91, 0xe2, 0xba, 0xe8, 0xab, 0x62, 0x30, 0x95, 0x1c, 0xcf,
|
|
9514
|
|
-- 0x1d, 0xc3, 0x14, 0x5e, 0x1f, 0x9e, 0x03, 0x27, 0x73, 0x1d, 0xfb, 0xc5, 0x02, 0x8c, 0xdd, 0xdc,
|
|
9515
|
|
-- 0xd8, 0xa8, 0xdd, 0x20, 0xb1, 0xb8, 0xc5, 0x7a, 0xab, 0x9a, 0xb1, 0xa6, 0x31, 0xeb, 0x26, 0x14,
|
|
9516
|
|
-- 0xb5, 0x63, 0xd7, 0x9b, 0xe3, 0x9e, 0xc8, 0x73, 0xab, 0x7e, 0x7c, 0x27, 0xac, 0xc7, 0xa1, 0xeb,
|
|
9517
|
|
-- 0x6f, 0x67, 0xea, 0xd8, 0xe4, 0x5d, 0x5b, 0xcc, 0xbb, 0x6b, 0xd1, 0x8b, 0x30, 0xc8, 0x5c, 0xa1,
|
|
9518
|
|
-- 0xa5, 0x78, 0xf2, 0xb8, 0x92, 0x29, 0x58, 0xe9, 0xf1, 0x61, 0xa5, 0x7c, 0x17, 0xaf, 0xf2, 0x3f,
|
|
9519
|
|
-- 0x58, 0xa0, 0xa2, 0xbb, 0x30, 0xb2, 0x13, 0xc7, 0xad, 0x9b, 0xc4, 0x69, 0x92, 0x50, 0x9e, 0x0e,
|
|
9520
|
|
-- 0x97, 0xb3, 0x4e, 0x07, 0x3a, 0x08, 0x1c, 0x2d, 0xd9, 0x50, 0x49, 0x59, 0x84, 0x75, 0x3a, 0x76,
|
|
9521
|
|
-- 0x1d, 0x20, 0x81, 0x9d, 0x92, 0x7e, 0xc1, 0xfe, 0x03, 0x0b, 0x86, 0xb8, 0x57, 0x5a, 0x88, 0x3e,
|
|
9522
|
|
-- 0x0b, 0x25, 0xf2, 0x80, 0x34, 0x04, 0xe7, 0x98, 0xd9, 0xe1, 0x84, 0xf1, 0xe0, 0xda, 0x72, 0xfa,
|
|
9523
|
|
-- 0x1f, 0xb3, 0x5a, 0xe8, 0x26, 0x0c, 0xd1, 0xde, 0xde, 0x50, 0x2e, 0x7a, 0x4f, 0xe6, 0x7d, 0xb1,
|
|
9524
|
|
-- 0x9a, 0x76, 0xce, 0xab, 0x88, 0x22, 0x2c, 0xab, 0x33, 0xcd, 0x6f, 0xa3, 0x55, 0xa7, 0x07, 0x58,
|
|
9525
|
|
-- 0xdc, 0xed, 0x9e, 0xdd, 0x58, 0xaa, 0x71, 0x24, 0x41, 0x8d, 0x6b, 0x7e, 0x65, 0x21, 0x4e, 0x88,
|
|
9526
|
|
-- 0xd8, 0x1b, 0x50, 0xa6, 0x93, 0xba, 0xe0, 0xb9, 0x4e, 0x77, 0xa5, 0xf3, 0xb3, 0x50, 0x96, 0x0a,
|
|
9527
|
|
-- 0xe0, 0x48, 0x38, 0x36, 0x31, 0xaa, 0x52, 0x3f, 0x1c, 0xe1, 0x04, 0x6e, 0x6f, 0xc1, 0x79, 0xf6,
|
|
9528
|
|
-- 0xf2, 0xef, 0xc4, 0x3b, 0xc6, 0x1e, 0xeb, 0xbd, 0x98, 0x9f, 0x13, 0x82, 0x18, 0x9f, 0x99, 0x19,
|
|
9529
|
|
-- 0xcd, 0x77, 0x60, 0x54, 0x52, 0x4c, 0x84, 0x32, 0xfb, 0x8f, 0x4a, 0xf0, 0xf8, 0x6a, 0x3d, 0xdf,
|
|
9530
|
|
-- 0x61, 0xf1, 0x55, 0x18, 0xe5, 0x6c, 0x1a, 0x5d, 0xda, 0x8e, 0x27, 0xda, 0x55, 0xef, 0x62, 0x1b,
|
|
9531
|
|
-- 0x1a, 0x0c, 0x1b, 0x98, 0xe8, 0x12, 0x14, 0xdd, 0xf7, 0xfc, 0xb4, 0x19, 0xee, 0xea, 0x9b, 0xeb,
|
|
9532
|
|
-- 0x98, 0x96, 0x53, 0x30, 0xe5, 0xf8, 0xf8, 0x51, 0xaa, 0xc0, 0x8a, 0xeb, 0x7b, 0x1d, 0xc6, 0xdd,
|
|
9533
|
|
-- 0xa8, 0x11, 0xb9, 0xab, 0x3e, 0x3d, 0x67, 0x12, 0x67, 0xd7, 0x44, 0x49, 0x40, 0x3b, 0xad, 0xa0,
|
|
9534
|
|
-- 0x38, 0x85, 0xad, 0x9d, 0xeb, 0x03, 0x7d, 0x73, 0x8d, 0x3d, 0x3d, 0x7d, 0x28, 0x43, 0xdc, 0x62,
|
|
9535
|
|
-- 0x5f, 0x17, 0x31, 0xa3, 0x36, 0xc1, 0x10, 0xf3, 0x0f, 0x8e, 0xb0, 0x84, 0x51, 0x09, 0xac, 0xb1,
|
|
9536
|
|
-- 0xe3, 0xb4, 0x16, 0xda, 0xf1, 0x4e, 0xd5, 0x8d, 0x1a, 0xc1, 0x3e, 0x09, 0x0f, 0x98, 0xf0, 0x3c,
|
|
9537
|
|
-- 0x9c, 0x48, 0x60, 0x0a, 0xb0, 0x74, 0x73, 0xa1, 0x46, 0x31, 0x71, 0x67, 0x1d, 0x93, 0x2b, 0x84,
|
|
9538
|
|
-- 0xd3, 0xe0, 0x0a, 0x17, 0x60, 0x42, 0x36, 0x53, 0x27, 0x11, 0xbb, 0x23, 0x46, 0x58, 0xc7, 0x94,
|
|
9539
|
|
-- 0xa9, 0xad, 0x28, 0x56, 0xdd, 0x4a, 0xe3, 0xa3, 0x57, 0x60, 0xcc, 0xf5, 0xdd, 0xd8, 0x75, 0xe2,
|
|
9540
|
|
-- 0x20, 0x64, 0x37, 0x2c, 0x97, 0x93, 0x99, 0x25, 0xdb, 0xaa, 0x0e, 0xc0, 0x26, 0x9e, 0xfd, 0x87,
|
|
9541
|
|
-- 0x25, 0x98, 0x62, 0xd3, 0xf6, 0xad, 0x15, 0xf6, 0x91, 0x59, 0x61, 0x77, 0x3b, 0x57, 0xd8, 0x69,
|
|
9542
|
|
-- 0xb0, 0xbb, 0x1f, 0xe6, 0x32, 0x7b, 0x17, 0xca, 0xca, 0x16, 0x58, 0x3a, 0x03, 0x58, 0x39, 0xce,
|
|
9543
|
|
-- 0x00, 0xbd, 0xb9, 0x0f, 0xf9, 0x8c, 0x5b, 0xcc, 0x7c, 0xc6, 0xfd, 0xdb, 0x16, 0x24, 0x26, 0x91,
|
|
9544
|
|
-- 0xe8, 0x26, 0x94, 0x5b, 0x01, 0x33, 0x3b, 0x08, 0xa5, 0x2d, 0xcf, 0xe3, 0x99, 0x17, 0x15, 0xbf,
|
|
9545
|
|
-- 0x14, 0xf9, 0xf8, 0xd5, 0x64, 0x0d, 0x9c, 0x54, 0x46, 0x8b, 0x30, 0xd4, 0x0a, 0x49, 0x3d, 0x66,
|
|
9546
|
|
-- 0x2e, 0xb0, 0x3d, 0xe9, 0xf0, 0x35, 0xc2, 0xf1, 0xb1, 0xac, 0x68, 0xff, 0x92, 0x05, 0xc0, 0x5f,
|
|
9547
|
|
-- 0x4a, 0x1d, 0x7f, 0x9b, 0x9c, 0x81, 0xf6, 0xb7, 0x0a, 0xa5, 0xa8, 0x45, 0x1a, 0xdd, 0x0c, 0x42,
|
|
9548
|
|
-- 0x92, 0xfe, 0xd4, 0x5b, 0xa4, 0x91, 0x0c, 0x38, 0xfd, 0x87, 0x59, 0x6d, 0xfb, 0xfb, 0x00, 0xc6,
|
|
9549
|
|
-- 0x13, 0xb4, 0xd5, 0x98, 0xec, 0xa1, 0xe7, 0x0d, 0x97, 0xb8, 0x8b, 0x29, 0x97, 0xb8, 0x32, 0xc3,
|
|
9550
|
|
-- 0xd6, 0x14, 0x8d, 0xef, 0x42, 0x71, 0xcf, 0x79, 0x20, 0x34, 0x49, 0xcf, 0x76, 0xef, 0x06, 0xa5,
|
|
9551
|
|
-- 0x3f, 0xb7, 0xe6, 0x3c, 0xe0, 0x32, 0xd3, 0xb3, 0x72, 0x81, 0xac, 0x39, 0x0f, 0x8e, 0xb9, 0xd9,
|
|
9552
|
|
-- 0x07, 0x3b, 0xa4, 0x6e, 0xbb, 0x51, 0xfc, 0x95, 0xff, 0x94, 0xfc, 0x67, 0xcb, 0x8e, 0x36, 0xc2,
|
|
9553
|
|
-- 0xda, 0x72, 0x7d, 0xf1, 0x6e, 0xd8, 0x57, 0x5b, 0xae, 0x9f, 0x6e, 0xcb, 0xf5, 0xfb, 0x68, 0xcb,
|
|
9554
|
|
-- 0xf5, 0xd1, 0xfb, 0x30, 0x24, 0xde, 0xe8, 0x99, 0xad, 0xb7, 0xa9, 0xa5, 0xca, 0x6b, 0x4f, 0x3c,
|
|
9555
|
|
-- 0xf1, 0xf3, 0x36, 0xe7, 0xa5, 0x4c, 0x28, 0x4a, 0x7b, 0xb6, 0x2b, 0x1b, 0x44, 0x7f, 0xc3, 0x82,
|
|
9556
|
|
-- 0x71, 0xf1, 0x1b, 0x93, 0xf7, 0xda, 0x24, 0x8a, 0x05, 0xef, 0xf9, 0xe9, 0xfe, 0xfb, 0x20, 0x2a,
|
|
9557
|
|
-- 0xf2, 0xae, 0x7c, 0x5a, 0x1e, 0xb3, 0x26, 0xb0, 0x67, 0x8f, 0x52, 0xbd, 0x40, 0xff, 0xc8, 0x82,
|
|
9558
|
|
-- 0xf3, 0x7b, 0xce, 0x03, 0xde, 0x22, 0x2f, 0xc3, 0x4e, 0xec, 0x06, 0xc2, 0x76, 0xfd, 0xb3, 0xfd,
|
|
9559
|
|
-- 0x4d, 0x7f, 0x47, 0x75, 0xde, 0x49, 0x69, 0xe6, 0x7a, 0x3e, 0x0b, 0xa5, 0x67, 0x57, 0x33, 0xfb,
|
|
9560
|
|
-- 0x35, 0xbb, 0x05, 0xc3, 0x72, 0xbd, 0x65, 0x48, 0xde, 0x55, 0x9d, 0xb1, 0x3e, 0xb1, 0x89, 0x84,
|
|
9561
|
|
-- 0xee, 0x97, 0x46, 0xdb, 0x11, 0x6b, 0xed, 0x91, 0xb6, 0xf3, 0x2e, 0x8c, 0xea, 0x6b, 0xec, 0x91,
|
|
9562
|
|
-- 0xb6, 0xf5, 0x1e, 0x9c, 0xcb, 0x58, 0x4b, 0x8f, 0xb4, 0xc9, 0xfb, 0x70, 0x31, 0x77, 0x7d, 0x3c,
|
|
9563
|
|
-- 0xca, 0x86, 0xed, 0x5f, 0xb4, 0xf4, 0x73, 0xf0, 0x0c, 0x54, 0xf0, 0x4b, 0xa6, 0x0a, 0xfe, 0x72,
|
|
9564
|
|
-- 0xf7, 0x9d, 0x93, 0xa3, 0x87, 0x7f, 0x47, 0xef, 0x34, 0x3d, 0xd5, 0xd1, 0x1b, 0x30, 0xe8, 0xd1,
|
|
9565
|
|
-- 0x12, 0x69, 0x1c, 0x62, 0xf7, 0xde, 0x91, 0x09, 0x2f, 0xc5, 0xca, 0x23, 0x2c, 0x28, 0xd8, 0xbf,
|
|
9566
|
|
-- 0x6a, 0x41, 0xe9, 0x0c, 0x46, 0x02, 0x9b, 0x23, 0xf1, 0x7c, 0x2e, 0x69, 0x11, 0xd2, 0x6c, 0x0e,
|
|
9567
|
|
-- 0x3b, 0xf7, 0x97, 0x65, 0xd8, 0xb6, 0x9c, 0x81, 0xf9, 0x2e, 0x38, 0x77, 0x3b, 0x70, 0x9a, 0x8b,
|
|
9568
|
|
-- 0x8e, 0xe7, 0xf8, 0x0d, 0x12, 0xae, 0xfa, 0xdb, 0x3d, 0xad, 0x94, 0x74, 0x9b, 0xa2, 0x42, 0x2f,
|
|
9569
|
|
-- 0x9b, 0x22, 0x7b, 0x07, 0x90, 0xde, 0x80, 0xb0, 0xe3, 0xc4, 0x30, 0xe4, 0xf2, 0xa6, 0xc4, 0xf0,
|
|
9570
|
|
-- 0x3f, 0x9d, 0xcd, 0xdd, 0x75, 0xf4, 0x4c, 0xb3, 0x50, 0xe4, 0x05, 0x58, 0x12, 0xb2, 0x5f, 0x85,
|
|
9571
|
|
-- 0x4c, 0xdf, 0xad, 0xde, 0x6a, 0x03, 0xfb, 0x65, 0x98, 0x62, 0x35, 0x4f, 0x26, 0xd2, 0xda, 0x3f,
|
|
9572
|
|
-- 0x60, 0xc1, 0xc4, 0x7a, 0x2a, 0x36, 0xc5, 0x55, 0xf6, 0xd6, 0x97, 0xa1, 0xf7, 0xad, 0xb3, 0x52,
|
|
9573
|
|
-- 0x2c, 0xa0, 0xa7, 0xae, 0x5f, 0xfa, 0x33, 0x0b, 0x12, 0x57, 0xc9, 0x33, 0x60, 0xaa, 0x96, 0x0c,
|
|
9574
|
|
-- 0xa6, 0x2a, 0x53, 0xef, 0xa1, 0xba, 0x93, 0xc7, 0x53, 0xa1, 0x5b, 0x2a, 0x2e, 0x40, 0x17, 0x95,
|
|
9575
|
|
-- 0x47, 0x42, 0x86, 0x7b, 0x91, 0x8f, 0x9b, 0xc1, 0x03, 0x64, 0xa4, 0x00, 0x66, 0x26, 0xa4, 0x70,
|
|
9576
|
|
-- 0x3f, 0x22, 0x66, 0x42, 0xaa, 0x3f, 0x39, 0xbb, 0xaf, 0xa6, 0x75, 0x99, 0x9d, 0x4a, 0xdf, 0xce,
|
|
9577
|
|
-- 0xcc, 0xbe, 0x1d, 0xcf, 0x7d, 0x9f, 0xa8, 0xe0, 0x26, 0x15, 0x61, 0xc6, 0x2d, 0x4a, 0x8f, 0x0f,
|
|
9578
|
|
-- 0x2b, 0x63, 0xea, 0x1f, 0x8f, 0x80, 0x95, 0x54, 0xb1, 0x6f, 0xc2, 0x44, 0x6a, 0xc0, 0xd0, 0xcb,
|
|
9579
|
|
-- 0x30, 0xd0, 0xda, 0x71, 0x22, 0x92, 0x32, 0x8d, 0x1c, 0xa8, 0xd1, 0xc2, 0xe3, 0xc3, 0xca, 0xb8,
|
|
9580
|
|
-- 0xaa, 0xc0, 0x4a, 0x30, 0xc7, 0xb6, 0xff, 0xa7, 0x05, 0xa5, 0xf5, 0xa0, 0x79, 0x16, 0x8b, 0xe9,
|
|
9581
|
|
-- 0x75, 0x63, 0x31, 0x3d, 0x91, 0x17, 0x3f, 0x30, 0x77, 0x1d, 0xad, 0xa4, 0xd6, 0xd1, 0xe5, 0x5c,
|
|
9582
|
|
-- 0x0a, 0xdd, 0x97, 0xd0, 0x1e, 0x8c, 0xb0, 0xa8, 0x84, 0xc2, 0x54, 0xf3, 0x45, 0x83, 0xbf, 0xaf,
|
|
9583
|
|
-- 0xa4, 0xf8, 0xfb, 0x09, 0x0d, 0x55, 0xe3, 0xf2, 0x9f, 0x81, 0x21, 0x61, 0x2e, 0x98, 0x36, 0x70,
|
|
9584
|
|
-- 0x17, 0xb8, 0x58, 0xc2, 0xed, 0x9f, 0x2c, 0x82, 0x11, 0x05, 0x11, 0xfd, 0x9a, 0x05, 0x73, 0x21,
|
|
9585
|
|
-- 0xf7, 0x18, 0x6c, 0x56, 0xdb, 0xa1, 0xeb, 0x6f, 0xd7, 0x1b, 0x3b, 0xa4, 0xd9, 0xf6, 0x5c, 0x7f,
|
|
9586
|
|
-- 0x7b, 0x75, 0xdb, 0x0f, 0x54, 0xf1, 0xf2, 0x03, 0xd2, 0x68, 0x33, 0x9d, 0x7f, 0x8f, 0x90, 0x8b,
|
|
9587
|
|
-- 0xca, 0x1c, 0xe7, 0xfa, 0xd1, 0x61, 0x65, 0x0e, 0x9f, 0x88, 0x36, 0x3e, 0x61, 0x5f, 0xd0, 0x37,
|
|
9588
|
|
-- 0x2c, 0x98, 0xe7, 0xc1, 0x01, 0xfb, 0xef, 0x7f, 0x17, 0x69, 0xa8, 0x26, 0x49, 0x25, 0x44, 0x36,
|
|
9589
|
|
-- 0x48, 0xb8, 0xb7, 0xf8, 0x8a, 0x18, 0xd0, 0xf9, 0xda, 0xc9, 0xda, 0xc2, 0x27, 0xed, 0x9c, 0xfd,
|
|
9590
|
|
-- 0x2f, 0x8b, 0x30, 0x26, 0x9c, 0xd5, 0x45, 0x14, 0x94, 0x97, 0x8d, 0x25, 0xf1, 0x64, 0x6a, 0x49,
|
|
9591
|
|
-- 0x4c, 0x19, 0xc8, 0xa7, 0x13, 0x00, 0x25, 0x82, 0x29, 0xcf, 0x89, 0xe2, 0x9b, 0xc4, 0x09, 0xe3,
|
|
9592
|
|
-- 0x4d, 0xe2, 0x70, 0x33, 0x95, 0xe2, 0x89, 0x4d, 0x6a, 0x94, 0xfa, 0xe5, 0x76, 0x9a, 0x18, 0xee,
|
|
9593
|
|
-- 0xa4, 0x8f, 0xf6, 0x01, 0x31, 0x5b, 0x9b, 0xd0, 0xf1, 0x23, 0xfe, 0x2d, 0xae, 0x78, 0x0f, 0x38,
|
|
9594
|
|
-- 0x59, 0xab, 0xb3, 0xa2, 0x55, 0x74, 0xbb, 0x83, 0x1a, 0xce, 0x68, 0x41, 0xb3, 0xa1, 0x1a, 0xe8,
|
|
9595
|
|
-- 0xd7, 0x86, 0x6a, 0xb0, 0x87, 0x17, 0x89, 0x0f, 0x93, 0x1d, 0xf1, 0x06, 0xde, 0x86, 0xb2, 0xb2,
|
|
9596
|
|
-- 0x75, 0x13, 0x87, 0x4e, 0xf7, 0xb0, 0x1d, 0x69, 0x0a, 0x5c, 0x45, 0x92, 0xd8, 0x59, 0x26, 0xe4,
|
|
9597
|
|
-- 0xec, 0x7f, 0x5c, 0x30, 0x1a, 0xe4, 0x93, 0xb8, 0x0e, 0xc3, 0x4e, 0x14, 0xb9, 0xdb, 0x3e, 0x69,
|
|
9598
|
|
-- 0x8a, 0x1d, 0xfb, 0xf1, 0xbc, 0x1d, 0x6b, 0x34, 0xc3, 0xec, 0x0d, 0x17, 0x44, 0x4d, 0xac, 0x68,
|
|
9599
|
|
-- 0xa0, 0x9b, 0xdc, 0x18, 0x68, 0x5f, 0xf2, 0xf3, 0xfd, 0x51, 0x03, 0x69, 0x2e, 0xb4, 0x4f, 0xb0,
|
|
9600
|
|
-- 0xa8, 0x8f, 0xbe, 0xc8, 0xad, 0xb5, 0x6e, 0xf9, 0xc1, 0x7d, 0xff, 0x46, 0x10, 0x48, 0x0f, 0xb3,
|
|
9601
|
|
-- 0xfe, 0x08, 0x4e, 0x49, 0x1b, 0x2d, 0x55, 0x1d, 0x9b, 0xd4, 0xfa, 0x8b, 0xc9, 0xf3, 0xdd, 0x70,
|
|
9602
|
|
-- 0x8e, 0x92, 0x36, 0xfd, 0x44, 0x22, 0x44, 0x60, 0x42, 0x44, 0x42, 0x90, 0x65, 0x62, 0xec, 0x32,
|
|
9603
|
|
-- 0x59, 0x75, 0xb3, 0x76, 0xa2, 0xd0, 0xbb, 0x65, 0x92, 0xc0, 0x69, 0x9a, 0xf6, 0xcf, 0x58, 0xc0,
|
|
9604
|
|
-- 0x2c, 0xdc, 0xcf, 0x80, 0x65, 0xf8, 0x9c, 0xc9, 0x32, 0xcc, 0xe4, 0x0d, 0x72, 0x0e, 0xb7, 0xf0,
|
|
9605
|
|
-- 0x12, 0x5f, 0x59, 0xb5, 0x30, 0x78, 0x70, 0x20, 0x5e, 0xca, 0xfb, 0xe0, 0x52, 0xff, 0x8f, 0xc5,
|
|
9606
|
|
-- 0x0f, 0x31, 0xe5, 0x74, 0x8e, 0xbe, 0x07, 0x86, 0x1b, 0x4e, 0xcb, 0x69, 0xf0, 0x90, 0xbd, 0xb9,
|
|
9607
|
|
-- 0x1a, 0x1b, 0xa3, 0xd2, 0xdc, 0x92, 0xa8, 0xc1, 0x35, 0x10, 0x32, 0xa2, 0xc6, 0xb0, 0x2c, 0xee,
|
|
9608
|
|
-- 0xa9, 0x75, 0x50, 0x4d, 0xce, 0xee, 0xc2, 0x98, 0x41, 0xec, 0x91, 0x8a, 0xab, 0xdf, 0xc3, 0xaf,
|
|
9609
|
|
-- 0x58, 0x15, 0x01, 0x66, 0x0f, 0xa6, 0x7c, 0xed, 0x3f, 0xbd, 0x50, 0xa4, 0x08, 0xf2, 0xf1, 0x5e,
|
|
9610
|
|
-- 0x97, 0x28, 0xbb, 0x7d, 0x34, 0x0b, 0xfe, 0x14, 0x19, 0xdc, 0x49, 0xd9, 0xfe, 0x29, 0x0b, 0x1e,
|
|
9611
|
|
-- 0xd3, 0x11, 0xb5, 0x78, 0x00, 0xbd, 0x74, 0xc0, 0x55, 0x18, 0x0e, 0x5a, 0x24, 0x74, 0xe2, 0x20,
|
|
9612
|
|
-- 0x14, 0xb7, 0xc6, 0x35, 0x39, 0xe8, 0x77, 0x44, 0xf9, 0xb1, 0x88, 0x9d, 0x28, 0xa9, 0xcb, 0x72,
|
|
9613
|
|
-- 0xac, 0x6a, 0x22, 0x1b, 0x06, 0xd9, 0x60, 0x44, 0x22, 0x56, 0x03, 0x3b, 0x03, 0xd8, 0x73, 0x68,
|
|
9614
|
|
-- 0x84, 0x05, 0xc4, 0xfe, 0x23, 0x8b, 0x2f, 0x2c, 0xbd, 0xeb, 0xe8, 0x3d, 0x98, 0xdc, 0x73, 0xe2,
|
|
9615
|
|
-- 0xc6, 0xce, 0xf2, 0x83, 0x56, 0xc8, 0x55, 0xdf, 0x72, 0x9c, 0x9e, 0xed, 0x35, 0x4e, 0xda, 0x47,
|
|
9616
|
|
-- 0x26, 0x06, 0x68, 0x6b, 0x29, 0x62, 0xb8, 0x83, 0x3c, 0xda, 0x84, 0x11, 0x56, 0xc6, 0x2c, 0x9d,
|
|
9617
|
|
-- 0xa3, 0x6e, 0xac, 0x41, 0x5e, 0x6b, 0xea, 0x45, 0x79, 0x2d, 0xa1, 0x83, 0x75, 0xa2, 0xf6, 0x57,
|
|
9618
|
|
-- 0x8a, 0x7c, 0xb7, 0x33, 0x6e, 0xfb, 0x19, 0x18, 0x6a, 0x05, 0xcd, 0xa5, 0xd5, 0x2a, 0x16, 0xb3,
|
|
9619
|
|
-- 0xa0, 0xae, 0x91, 0x1a, 0x2f, 0xc6, 0x12, 0x8e, 0x5e, 0x03, 0x20, 0x0f, 0x62, 0x12, 0xfa, 0x8e,
|
|
9620
|
|
-- 0xa7, 0x0c, 0x42, 0x94, 0x09, 0x64, 0x35, 0x58, 0x0f, 0xe2, 0xbb, 0x11, 0xf9, 0xae, 0x65, 0x85,
|
|
9621
|
|
-- 0x82, 0x35, 0x74, 0x74, 0x1d, 0xa0, 0x15, 0x06, 0xfb, 0x6e, 0x93, 0xb9, 0xce, 0x15, 0x4d, 0x73,
|
|
9622
|
|
-- 0x89, 0x9a, 0x82, 0x60, 0x0d, 0x0b, 0xbd, 0x06, 0x63, 0x6d, 0x3f, 0xe2, 0x1c, 0x8a, 0xb3, 0x29,
|
|
9623
|
|
-- 0x22, 0x0f, 0x0e, 0x27, 0x96, 0x0b, 0x77, 0x75, 0x20, 0x36, 0x71, 0xd1, 0x02, 0x0c, 0xc6, 0x0e,
|
|
9624
|
|
-- 0xb3, 0x77, 0x18, 0xc8, 0xb7, 0x5b, 0xdc, 0xa0, 0x18, 0x7a, 0xc0, 0x58, 0x5a, 0x01, 0x8b, 0x8a,
|
|
9625
|
|
-- 0xe8, 0x6d, 0xe9, 0x87, 0xc0, 0xcf, 0x7a, 0x61, 0x30, 0xdc, 0xdf, 0xbd, 0xa0, 0x79, 0x21, 0x08,
|
|
9626
|
|
-- 0x43, 0x64, 0x83, 0x96, 0xfd, 0x8d, 0x32, 0x40, 0xc2, 0x8e, 0xa3, 0xf7, 0x3b, 0xce, 0xa3, 0xe7,
|
|
9627
|
|
-- 0xba, 0x33, 0xf0, 0xa7, 0x77, 0x18, 0xa1, 0xef, 0xb7, 0x60, 0xc4, 0xf1, 0xbc, 0xa0, 0xe1, 0xc4,
|
|
9628
|
|
-- 0x6c, 0x94, 0x0b, 0xdd, 0xcf, 0x43, 0xd1, 0xfe, 0x42, 0x52, 0x83, 0x77, 0xe1, 0x45, 0xb9, 0xf0,
|
|
9629
|
|
-- 0x34, 0x48, 0xcf, 0x5e, 0xe8, 0x0d, 0xa3, 0x4f, 0x49, 0x29, 0x8d, 0x2f, 0x8f, 0xd9, 0xb4, 0x94,
|
|
9630
|
|
-- 0x56, 0x66, 0x47, 0xbf, 0x26, 0xa0, 0xa1, 0xbb, 0x46, 0x50, 0xb9, 0x52, 0x7e, 0x7c, 0x05, 0x83,
|
|
9631
|
|
-- 0x2b, 0xed, 0x15, 0x4f, 0x0e, 0xd5, 0x74, 0xc7, 0xa9, 0x81, 0xfc, 0x20, 0x24, 0x9a, 0xf8, 0xd3,
|
|
9632
|
|
-- 0xc3, 0x69, 0xea, 0x5d, 0x98, 0x68, 0x9a, 0x77, 0xbb, 0x58, 0x4d, 0x4f, 0xe7, 0xd1, 0x4d, 0xb1,
|
|
9633
|
|
-- 0x02, 0xc9, 0x6d, 0x9e, 0x02, 0xe0, 0x34, 0x61, 0x54, 0xe3, 0x2e, 0x6c, 0xab, 0xfe, 0x56, 0x20,
|
|
9634
|
|
-- 0x0c, 0xcf, 0xed, 0xdc, 0xb9, 0x3c, 0x88, 0x62, 0xb2, 0x47, 0x31, 0x93, 0x4b, 0x7b, 0x5d, 0xd4,
|
|
9635
|
|
-- 0xc5, 0x8a, 0x0a, 0x7a, 0x03, 0x06, 0x99, 0x0f, 0x6c, 0x34, 0x33, 0x9c, 0xaf, 0x28, 0x34, 0xc3,
|
|
9636
|
|
-- 0x37, 0x24, 0x9b, 0x8a, 0xfd, 0x8d, 0xb0, 0xa0, 0x80, 0x6e, 0xca, 0x18, 0x2f, 0xd1, 0xaa, 0x7f,
|
|
9637
|
|
-- 0x37, 0x22, 0x2c, 0xc6, 0x4b, 0x79, 0xf1, 0xe3, 0x49, 0xf8, 0x16, 0x5e, 0x9e, 0x19, 0x1a, 0xde,
|
|
9638
|
|
-- 0xa8, 0x49, 0x99, 0x23, 0xf1, 0x5f, 0x46, 0x9c, 0x9f, 0x81, 0xfc, 0xee, 0x99, 0x51, 0xe9, 0x93,
|
|
9639
|
|
-- 0xe1, 0xbc, 0x67, 0x92, 0xc0, 0x69, 0x9a, 0x94, 0xd1, 0xe4, 0x3b, 0x57, 0x98, 0xae, 0xf7, 0xda,
|
|
9640
|
|
-- 0xff, 0x5c, 0xbe, 0x66, 0x97, 0x0c, 0x2f, 0xc1, 0xa2, 0xfe, 0x99, 0xde, 0xfa, 0xb3, 0x3e, 0x4c,
|
|
9641
|
|
-- 0xa6, 0xb7, 0xe8, 0x23, 0xe5, 0x32, 0xfe, 0xa0, 0x04, 0xe3, 0xe6, 0x92, 0x42, 0xf3, 0x50, 0x16,
|
|
9642
|
|
-- 0x44, 0x54, 0xc0, 0x51, 0xb5, 0x4b, 0xd6, 0x24, 0x00, 0x27, 0x38, 0x2c, 0xce, 0x2c, 0xab, 0xae,
|
|
9643
|
|
-- 0x99, 0x1c, 0x26, 0x71, 0x66, 0x15, 0x04, 0x6b, 0x58, 0x54, 0x5e, 0xda, 0x0c, 0x82, 0x58, 0x5d,
|
|
9644
|
|
-- 0x2a, 0x6a, 0xdd, 0x2d, 0xb2, 0x52, 0x2c, 0xa0, 0xf4, 0x32, 0xd9, 0x25, 0xa1, 0x4f, 0x3c, 0x33,
|
|
9645
|
|
-- 0x8e, 0x99, 0xba, 0x4c, 0x6e, 0xe9, 0x40, 0x6c, 0xe2, 0xd2, 0x5b, 0x32, 0x88, 0xd8, 0x42, 0x16,
|
|
9646
|
|
-- 0x52, 0x59, 0x62, 0xc2, 0x59, 0xe7, 0xde, 0xe4, 0x12, 0x8e, 0xbe, 0x00, 0x8f, 0x29, 0xe7, 0x6f,
|
|
9647
|
|
-- 0xcc, 0x95, 0xd0, 0xb2, 0xc5, 0x41, 0x43, 0x89, 0xf2, 0xd8, 0x52, 0x36, 0x1a, 0xce, 0xab, 0x8f,
|
|
9648
|
|
-- 0x5e, 0x87, 0x71, 0xc1, 0xb9, 0x4b, 0x8a, 0x43, 0xa6, 0x5d, 0xc4, 0x2d, 0x03, 0x8a, 0x53, 0xd8,
|
|
9649
|
|
-- 0x32, 0x12, 0x1b, 0x63, 0x9e, 0x25, 0x85, 0xe1, 0xce, 0x48, 0x6c, 0x3a, 0x1c, 0x77, 0xd4, 0x40,
|
|
9650
|
|
-- 0x0b, 0x30, 0xc1, 0x59, 0x2b, 0xd7, 0xdf, 0xe6, 0x73, 0x22, 0x3c, 0x4b, 0xd4, 0x96, 0xba, 0x63,
|
|
9651
|
|
-- 0x82, 0x71, 0x1a, 0x1f, 0xbd, 0x0a, 0xa3, 0x4e, 0xd8, 0xd8, 0x71, 0x63, 0xd2, 0x88, 0xdb, 0x21,
|
|
9652
|
|
-- 0x77, 0x39, 0xd1, 0x0c, 0x4b, 0x16, 0x34, 0x18, 0x36, 0x30, 0xed, 0xf7, 0xe1, 0x5c, 0x86, 0x53,
|
|
9653
|
|
-- 0x1a, 0x5d, 0x38, 0x4e, 0xcb, 0x95, 0xdf, 0x94, 0x32, 0xc6, 0x5c, 0xa8, 0xad, 0xca, 0xaf, 0xd1,
|
|
9654
|
|
-- 0xb0, 0xe8, 0xea, 0x64, 0xce, 0x6b, 0x5a, 0x82, 0x09, 0xb5, 0x3a, 0x57, 0x24, 0x00, 0x27, 0x38,
|
|
9655
|
|
-- 0xf6, 0xff, 0x2a, 0xc0, 0x44, 0x86, 0x62, 0x9d, 0x25, 0x39, 0x48, 0xc9, 0x1e, 0x49, 0x4e, 0x03,
|
|
9656
|
|
-- 0x33, 0xb0, 0x5f, 0xe1, 0x04, 0x81, 0xfd, 0x8a, 0xbd, 0x02, 0xfb, 0x95, 0x3e, 0x48, 0x60, 0x3f,
|
|
9657
|
|
-- 0x73, 0xc4, 0x06, 0xfa, 0x1a, 0xb1, 0x8c, 0x60, 0x80, 0x83, 0x27, 0x0c, 0x06, 0x68, 0x0c, 0xfa,
|
|
9658
|
|
-- 0x50, 0x1f, 0x83, 0xfe, 0xa3, 0x05, 0x98, 0x4c, 0x1b, 0xc0, 0x9d, 0x81, 0x3a, 0xf6, 0x0d, 0x43,
|
|
9659
|
|
-- 0x1d, 0x9b, 0x9d, 0x32, 0x24, 0x6d, 0x96, 0x97, 0xa7, 0x9a, 0xc5, 0x29, 0xd5, 0xec, 0x27, 0xfb,
|
|
9660
|
|
-- 0xa2, 0xd6, 0x5d, 0x4d, 0xfb, 0x77, 0x0b, 0x30, 0x9d, 0xae, 0xb2, 0xe4, 0x39, 0xee, 0xde, 0x19,
|
|
9661
|
|
-- 0x8c, 0xcd, 0x1d, 0x63, 0x6c, 0x9e, 0xef, 0xe7, 0x6b, 0x58, 0xd7, 0x72, 0x07, 0xe8, 0xad, 0xd4,
|
|
9662
|
|
-- 0x00, 0xcd, 0xf7, 0x4f, 0xb2, 0xfb, 0x28, 0x7d, 0xb3, 0x08, 0x97, 0x33, 0xeb, 0x25, 0xda, 0xcc,
|
|
9663
|
|
-- 0x15, 0x43, 0x9b, 0x79, 0x3d, 0xa5, 0xcd, 0xb4, 0xbb, 0xd7, 0x3e, 0x1d, 0xf5, 0xa6, 0xf0, 0x16,
|
|
9664
|
|
-- 0x64, 0xc1, 0xdf, 0x1e, 0x52, 0xb5, 0x69, 0x78, 0x0b, 0x2a, 0x42, 0xd8, 0xa4, 0xfb, 0x17, 0x49,
|
|
9665
|
|
-- 0xa5, 0xf9, 0x6f, 0x2c, 0xb8, 0x98, 0x39, 0x37, 0x67, 0xa0, 0xc2, 0x5a, 0x37, 0x55, 0x58, 0xcf,
|
|
9666
|
|
-- 0xf4, 0xbd, 0x5a, 0x73, 0x74, 0x5a, 0x7f, 0x58, 0xcc, 0xf9, 0x16, 0x26, 0xa0, 0xdf, 0x81, 0x11,
|
|
9667
|
|
-- 0xa7, 0xd1, 0x20, 0x51, 0xb4, 0x16, 0x34, 0x55, 0x30, 0xb4, 0xe7, 0x99, 0x9c, 0x95, 0x14, 0x1f,
|
|
9668
|
|
-- 0x1f, 0x56, 0x66, 0xd3, 0x24, 0x12, 0x30, 0xd6, 0x29, 0x98, 0xf1, 0x1b, 0x0b, 0xa7, 0x1a, 0xbf,
|
|
9669
|
|
-- 0xf1, 0x3a, 0xc0, 0xbe, 0xe2, 0xd6, 0xd3, 0x42, 0xbe, 0xc6, 0xc7, 0x6b, 0x58, 0xe8, 0x8b, 0x30,
|
|
9670
|
|
-- 0x1c, 0x89, 0x6b, 0x5c, 0x2c, 0xc5, 0x17, 0xfb, 0x9c, 0x2b, 0x67, 0x93, 0x78, 0xa6, 0x5b, 0xba,
|
|
9671
|
|
-- 0xd2, 0x87, 0x28, 0x92, 0xe8, 0x3b, 0x60, 0x32, 0xe2, 0x51, 0x4f, 0x96, 0x3c, 0x27, 0x62, 0x3e,
|
|
9672
|
|
-- 0x0e, 0x62, 0x15, 0x32, 0x5f, 0xf3, 0x7a, 0x0a, 0x86, 0x3b, 0xb0, 0xd1, 0x8a, 0xfc, 0x28, 0x16,
|
|
9673
|
|
-- 0xa2, 0x85, 0x2f, 0xcc, 0xab, 0xc9, 0x07, 0x89, 0x14, 0x4b, 0xe7, 0xd3, 0xc3, 0xcf, 0x06, 0x5e,
|
|
9674
|
|
-- 0xab, 0x69, 0xff, 0x68, 0x09, 0x1e, 0xef, 0x72, 0x88, 0xa1, 0x05, 0xf3, 0x8d, 0xf2, 0xd9, 0xb4,
|
|
9675
|
|
-- 0xf4, 0x3b, 0x9b, 0x59, 0xd9, 0x10, 0x87, 0x53, 0x6b, 0xa5, 0xf0, 0x81, 0xd7, 0xca, 0x0f, 0x59,
|
|
9676
|
|
-- 0x9a, 0x5e, 0x82, 0x5b, 0xd2, 0x7d, 0xee, 0x84, 0x87, 0xf3, 0x29, 0x2a, 0x2a, 0xb6, 0x32, 0xa4,
|
|
9677
|
|
-- 0xfd, 0xeb, 0x7d, 0x77, 0xa7, 0x6f, 0xf1, 0xff, 0x6c, 0xb5, 0xb3, 0x5f, 0xb1, 0xe0, 0xc9, 0xcc,
|
|
9678
|
|
-- 0xfe, 0x1a, 0x36, 0x15, 0xf3, 0x50, 0x6e, 0xd0, 0x42, 0xcd, 0x6f, 0x2a, 0x71, 0x28, 0x95, 0x00,
|
|
9679
|
|
-- 0x9c, 0xe0, 0x18, 0xa6, 0x13, 0x85, 0x9e, 0xa6, 0x13, 0xff, 0xc2, 0x82, 0x8e, 0x05, 0x7c, 0x06,
|
|
9680
|
|
-- 0x27, 0xe9, 0xaa, 0x79, 0x92, 0x7e, 0xbc, 0x9f, 0xb9, 0xcc, 0x39, 0x44, 0xff, 0xf3, 0x04, 0x5c,
|
|
9681
|
|
-- 0xc8, 0x71, 0x94, 0xd8, 0x87, 0xa9, 0xed, 0x06, 0x31, 0x3d, 0xd2, 0xc4, 0xc7, 0x64, 0x3a, 0xef,
|
|
9682
|
|
-- 0x75, 0x75, 0x5f, 0x63, 0xb9, 0x71, 0xa6, 0x3a, 0x50, 0x70, 0x67, 0x13, 0xe8, 0x2b, 0x16, 0x9c,
|
|
9683
|
|
-- 0x77, 0xee, 0x47, 0x1d, 0x19, 0x10, 0xc5, 0x9a, 0x79, 0x29, 0x53, 0x4b, 0xd1, 0x23, 0x63, 0x22,
|
|
9684
|
|
-- 0x4f, 0x16, 0x94, 0x85, 0x85, 0x33, 0xdb, 0x42, 0x58, 0xc4, 0xaf, 0xa4, 0xfc, 0x76, 0x17, 0x9f,
|
|
9685
|
|
-- 0xc9, 0x2c, 0x8f, 0x16, 0x7e, 0xa6, 0x4a, 0x08, 0x56, 0x74, 0xd0, 0x3d, 0x28, 0x6f, 0x4b, 0x37,
|
|
9686
|
|
-- 0x33, 0x71, 0x66, 0x67, 0x5e, 0x82, 0x99, 0xbe, 0x68, 0xfc, 0xdd, 0x50, 0x81, 0x70, 0x42, 0x0a,
|
|
9687
|
|
-- 0xbd, 0x0e, 0x45, 0x7f, 0x2b, 0xea, 0x96, 0x65, 0x27, 0x65, 0x6a, 0xc4, 0xfd, 0x91, 0xd7, 0x57,
|
|
9688
|
|
-- 0xea, 0x98, 0x56, 0x44, 0x37, 0xa1, 0x18, 0x6e, 0x36, 0x85, 0x62, 0x2d, 0x93, 0x2f, 0xc5, 0x8b,
|
|
9689
|
|
-- 0xd5, 0xec, 0x45, 0xc2, 0x29, 0xe1, 0xc5, 0x2a, 0xa6, 0x24, 0x50, 0x0d, 0x06, 0x98, 0x4f, 0x81,
|
|
9690
|
|
-- 0xd0, 0x9f, 0x65, 0x32, 0xa4, 0x5d, 0x7c, 0x73, 0xb8, 0xd3, 0x32, 0x43, 0xc0, 0x9c, 0x10, 0xda,
|
|
9691
|
|
-- 0x80, 0xc1, 0x06, 0xcb, 0xc8, 0x22, 0x42, 0x26, 0x7f, 0x2a, 0x53, 0x85, 0xd6, 0x25, 0x55, 0x8d,
|
|
9692
|
|
-- 0xd0, 0x28, 0x31, 0x0c, 0x2c, 0x68, 0x31, 0xaa, 0xa4, 0xb5, 0xb3, 0x15, 0x31, 0x11, 0x3c, 0x8f,
|
|
9693
|
|
-- 0x6a, 0x97, 0x0c, 0x4c, 0x82, 0x2a, 0xc3, 0xc0, 0x82, 0x16, 0xfa, 0x0c, 0x14, 0xb6, 0x1a, 0xc2,
|
|
9694
|
|
-- 0xe5, 0x20, 0x53, 0x97, 0x66, 0xba, 0x94, 0x2f, 0x0e, 0x1e, 0x1d, 0x56, 0x0a, 0x2b, 0x4b, 0xb8,
|
|
9695
|
|
-- 0xb0, 0xd5, 0x40, 0xeb, 0x30, 0xb4, 0xc5, 0x9d, 0x50, 0x85, 0xba, 0xec, 0xe9, 0x6c, 0xff, 0xd8,
|
|
9696
|
|
-- 0x0e, 0x3f, 0x55, 0x6e, 0x2a, 0x2f, 0x00, 0x58, 0x12, 0x61, 0x41, 0x20, 0x95, 0x33, 0xad, 0x88,
|
|
9697
|
|
-- 0x86, 0x3c, 0x77, 0x32, 0x07, 0x68, 0xee, 0xde, 0x9e, 0xb8, 0xe4, 0x62, 0x8d, 0x22, 0xfa, 0x32,
|
|
9698
|
|
-- 0x94, 0x1d, 0x99, 0x7b, 0x4f, 0x44, 0x8b, 0x78, 0x31, 0x73, 0x63, 0x76, 0x4f, 0x4b, 0xc8, 0x57,
|
|
9699
|
|
-- 0xb5, 0x42, 0xc2, 0x09, 0x51, 0xb4, 0x0b, 0x63, 0xfb, 0x51, 0x6b, 0x87, 0xc8, 0x8d, 0xcc, 0x82,
|
|
9700
|
|
-- 0x47, 0xe4, 0x5c, 0x5c, 0xf7, 0x04, 0xa2, 0x1b, 0xc6, 0x6d, 0xc7, 0xeb, 0x38, 0x7b, 0xd8, 0x63,
|
|
9701
|
|
-- 0xf3, 0x3d, 0x9d, 0x18, 0x36, 0x69, 0xd3, 0xe1, 0x7f, 0xaf, 0x1d, 0x6c, 0x1e, 0xc4, 0x44, 0x84,
|
|
9702
|
|
-- 0x4f, 0xce, 0x1c, 0xfe, 0x37, 0x39, 0x4a, 0xe7, 0xf0, 0x0b, 0x00, 0x96, 0x44, 0xe8, 0x56, 0x77,
|
|
9703
|
|
-- 0x64, 0x5e, 0x4b, 0x16, 0x36, 0x39, 0x67, 0xab, 0x67, 0x26, 0xbf, 0xd4, 0x06, 0x85, 0x9d, 0x91,
|
|
9704
|
|
-- 0x09, 0x29, 0x76, 0x36, 0xb6, 0x76, 0x82, 0x38, 0xf0, 0x53, 0xe7, 0xf2, 0x54, 0xfe, 0xd9, 0x58,
|
|
9705
|
|
-- 0xcb, 0xc0, 0xef, 0x3c, 0x1b, 0xb3, 0xb0, 0x70, 0x66, 0x5b, 0xa8, 0x09, 0xe3, 0xad, 0x20, 0x8c,
|
|
9706
|
|
-- 0xef, 0x07, 0xa1, 0x5c, 0x5f, 0xa8, 0x8b, 0xb8, 0x6f, 0x60, 0x8a, 0x16, 0x59, 0x38, 0x6f, 0x13,
|
|
9707
|
|
-- 0x82, 0x53, 0x34, 0xd1, 0xe7, 0x61, 0x28, 0x6a, 0x38, 0x1e, 0x59, 0xbd, 0x33, 0x73, 0x2e, 0xff,
|
|
9708
|
|
-- 0xd2, 0xa9, 0x73, 0x94, 0x9c, 0xd5, 0xc5, 0x26, 0x47, 0xa0, 0x60, 0x49, 0x0e, 0xad, 0xc0, 0x00,
|
|
9709
|
|
-- 0x8b, 0xc9, 0xcf, 0x22, 0x3f, 0xe7, 0x44, 0x25, 0xea, 0x30, 0xea, 0xe4, 0x67, 0x13, 0x2b, 0xc6,
|
|
9710
|
|
-- 0xbc, 0x3a, 0xdd, 0x03, 0x82, 0xeb, 0x0d, 0xa2, 0x99, 0xe9, 0xfc, 0x3d, 0x20, 0x98, 0xe5, 0x3b,
|
|
9711
|
|
-- 0xf5, 0x6e, 0x7b, 0x40, 0x21, 0xe1, 0x84, 0x28, 0x3d, 0x99, 0xe9, 0x69, 0x7a, 0xa1, 0x8b, 0x9d,
|
|
9712
|
|
-- 0x49, 0xee, 0x59, 0xca, 0x4e, 0x66, 0x7a, 0x92, 0x52, 0x12, 0xf6, 0xef, 0x0d, 0x75, 0x72, 0x2a,
|
|
9713
|
|
-- 0x4c, 0x4e, 0xfa, 0xcb, 0x56, 0xc7, 0x13, 0xda, 0xa7, 0xfb, 0x55, 0xdb, 0x9c, 0x22, 0x8f, 0xfa,
|
|
9714
|
|
-- 0x15, 0x0b, 0x2e, 0xb4, 0x32, 0x3f, 0x44, 0x5c, 0xfb, 0xfd, 0x69, 0x7f, 0xf8, 0xa7, 0xab, 0xe8,
|
|
9715
|
|
-- 0xec, 0xd9, 0x70, 0x9c, 0xd3, 0x52, 0x5a, 0x0e, 0x28, 0x7e, 0x60, 0x39, 0x60, 0x0d, 0x86, 0x19,
|
|
9716
|
|
-- 0x6b, 0xd9, 0x23, 0x43, 0x59, 0xda, 0x0b, 0x8d, 0x31, 0x10, 0x4b, 0xa2, 0x22, 0x56, 0x24, 0xd0,
|
|
9717
|
|
-- 0x0f, 0x5b, 0x70, 0x29, 0xdd, 0x75, 0x4c, 0x18, 0x58, 0xc4, 0x32, 0xe7, 0x22, 0xda, 0x8a, 0xf8,
|
|
9718
|
|
-- 0xfe, 0x4b, 0xb5, 0x6e, 0xc8, 0xc7, 0xbd, 0x10, 0x70, 0xf7, 0xc6, 0x50, 0x35, 0x43, 0x46, 0x1c,
|
|
9719
|
|
-- 0x34, 0xf5, 0xe2, 0x7d, 0xc8, 0x89, 0x2f, 0xc1, 0xe8, 0x5e, 0xd0, 0xf6, 0x63, 0x61, 0x96, 0x22,
|
|
9720
|
|
-- 0x9c, 0x04, 0xd9, 0x3b, 0xf0, 0x9a, 0x56, 0x8e, 0x0d, 0xac, 0x94, 0x74, 0x39, 0xfc, 0xb0, 0xd2,
|
|
9721
|
|
-- 0x25, 0x7a, 0x27, 0x95, 0x87, 0xba, 0x9c, 0x1f, 0x33, 0x4f, 0x08, 0xe2, 0x27, 0xc8, 0x46, 0x7d,
|
|
9722
|
|
-- 0xb6, 0x12, 0xd1, 0xcf, 0x59, 0x19, 0xac, 0x3c, 0x97, 0x91, 0x3f, 0x6b, 0xca, 0xc8, 0x57, 0xd3,
|
|
9723
|
|
-- 0x32, 0x72, 0x87, 0x4e, 0xd4, 0x10, 0x8f, 0xfb, 0x0f, 0xbc, 0xdc, 0x6f, 0x24, 0x33, 0xdb, 0x83,
|
|
9724
|
|
-- 0x2b, 0xbd, 0xae, 0x25, 0x66, 0x9f, 0xd4, 0x54, 0x2f, 0x60, 0x89, 0x7d, 0x52, 0x73, 0xb5, 0x8a,
|
|
9725
|
|
-- 0x19, 0xa4, 0xdf, 0x50, 0x17, 0xf6, 0x7f, 0xb3, 0xa0, 0x58, 0x0b, 0x9a, 0x67, 0xa0, 0xe3, 0xfd,
|
|
9726
|
|
-- 0x9c, 0xa1, 0xe3, 0x7d, 0x3c, 0x27, 0x3f, 0x78, 0xae, 0x46, 0x77, 0x39, 0xa5, 0xd1, 0xbd, 0x94,
|
|
9727
|
|
-- 0x47, 0xa0, 0xbb, 0xfe, 0xf6, 0xa7, 0x8b, 0xa0, 0x67, 0x33, 0x47, 0xff, 0xea, 0x61, 0x8c, 0x83,
|
|
9728
|
|
-- 0x8b, 0xdd, 0x12, 0x9c, 0x0b, 0xca, 0xcc, 0xac, 0x49, 0xfa, 0xbd, 0xfd, 0x39, 0xb3, 0x11, 0x7e,
|
|
9729
|
|
-- 0x8b, 0xb8, 0xdb, 0x3b, 0x31, 0x69, 0xa6, 0x3f, 0xe7, 0xec, 0x6c, 0x84, 0xff, 0x8b, 0x05, 0x13,
|
|
9730
|
|
-- 0xa9, 0xd6, 0x91, 0x07, 0x63, 0x9e, 0xae, 0xa0, 0x13, 0xeb, 0xf4, 0xa1, 0x74, 0x7b, 0xc2, 0xc6,
|
|
9731
|
|
-- 0x52, 0x2b, 0xc2, 0x26, 0x71, 0x34, 0x07, 0xa0, 0x1e, 0xd0, 0xa4, 0xde, 0x8b, 0x71, 0xfd, 0xea,
|
|
9732
|
|
-- 0x85, 0x2d, 0xc2, 0x1a, 0x06, 0x7a, 0x19, 0x46, 0xe2, 0xa0, 0x15, 0x78, 0xc1, 0xf6, 0xc1, 0x2d,
|
|
9733
|
|
-- 0x22, 0x83, 0xab, 0x28, 0xcb, 0xa9, 0x8d, 0x04, 0x84, 0x75, 0x3c, 0xfb, 0x67, 0x8b, 0x90, 0xce,
|
|
9734
|
|
-- 0x80, 0xff, 0xad, 0x35, 0xf9, 0xd1, 0x5c, 0x93, 0xdf, 0xb4, 0x60, 0x92, 0xb6, 0xce, 0xac, 0x38,
|
|
9735
|
|
-- 0xe4, 0x65, 0xab, 0x12, 0xc0, 0x58, 0x5d, 0x12, 0xc0, 0x5c, 0xa5, 0x67, 0x57, 0x33, 0x68, 0xc7,
|
|
9736
|
|
-- 0x42, 0x6f, 0xa6, 0x1d, 0x4e, 0xb4, 0x14, 0x0b, 0xa8, 0xc0, 0x23, 0x61, 0x28, 0x5c, 0x93, 0x74,
|
|
9737
|
|
-- 0x3c, 0x12, 0x86, 0x58, 0x40, 0x65, 0x7e, 0x98, 0x52, 0x4e, 0x7e, 0x18, 0x16, 0x2a, 0x4e, 0xbc,
|
|
9738
|
|
-- 0xf7, 0x0b, 0xb6, 0x47, 0x0b, 0x15, 0x27, 0x0d, 0x01, 0x12, 0x1c, 0xfb, 0x17, 0x8b, 0x30, 0x5a,
|
|
9739
|
|
-- 0x0b, 0x9a, 0xc9, 0x13, 0xd6, 0x4b, 0xc6, 0x13, 0xd6, 0x95, 0xd4, 0x13, 0xd6, 0xa4, 0x8e, 0xfb,
|
|
9740
|
|
-- 0xad, 0x07, 0xab, 0x0f, 0xeb, 0xc1, 0xea, 0x9f, 0x5b, 0x6c, 0xd6, 0xaa, 0xeb, 0x75, 0x91, 0x9f,
|
|
9741
|
|
-- 0xf6, 0x05, 0x18, 0x61, 0x07, 0x12, 0xf3, 0x85, 0x93, 0xef, 0x3a, 0x2c, 0xf4, 0xfb, 0x7a, 0x52,
|
|
9742
|
|
-- 0x8c, 0x75, 0x1c, 0x74, 0x0d, 0x86, 0x23, 0xe2, 0x84, 0x8d, 0x1d, 0x75, 0xc6, 0x89, 0x57, 0x0f,
|
|
9743
|
|
-- 0x5e, 0x86, 0x15, 0x14, 0xbd, 0x99, 0x44, 0x29, 0x2b, 0xe6, 0x67, 0x5a, 0xd5, 0xfb, 0xc3, 0xb7,
|
|
9744
|
|
-- 0x48, 0x7e, 0x68, 0x32, 0xfb, 0x2d, 0x40, 0x9d, 0xf8, 0x7d, 0xc4, 0x23, 0xaa, 0x98, 0xf1, 0x88,
|
|
9745
|
|
-- 0xca, 0x1d, 0xb1, 0x88, 0xfe, 0xd4, 0x82, 0xf1, 0x5a, 0xd0, 0xa4, 0x5b, 0xf7, 0x2f, 0xd2, 0x3e,
|
|
9746
|
|
-- 0xd5, 0x43, 0x34, 0x0e, 0x76, 0x09, 0xd1, 0xf8, 0xf7, 0x2c, 0x18, 0xaa, 0x05, 0xcd, 0x33, 0xd0,
|
|
9747
|
|
-- 0xb6, 0x7f, 0xd6, 0xd4, 0xb6, 0x3f, 0x96, 0xb3, 0x24, 0x72, 0x14, 0xec, 0xbf, 0x5c, 0x84, 0x31,
|
|
9748
|
|
-- 0xda, 0xcf, 0x60, 0x5b, 0xce, 0x92, 0x31, 0x22, 0x56, 0x1f, 0x23, 0x42, 0xd9, 0xdc, 0xc0, 0xf3,
|
|
9749
|
|
-- 0x82, 0xfb, 0xe9, 0x19, 0x5b, 0x61, 0xa5, 0x58, 0x40, 0xd1, 0x73, 0x30, 0xdc, 0x0a, 0xc9, 0xbe,
|
|
9750
|
|
-- 0x1b, 0x08, 0xfe, 0x51, 0x7b, 0xbb, 0xa8, 0x89, 0x72, 0xac, 0x30, 0xa8, 0xdc, 0x15, 0xb9, 0x7e,
|
|
9751
|
|
-- 0x83, 0xc8, 0x34, 0xcf, 0x25, 0x96, 0x09, 0x8a, 0xc7, 0x5e, 0xd6, 0xca, 0xb1, 0x81, 0x85, 0xde,
|
|
9752
|
|
-- 0x82, 0x32, 0xfb, 0xcf, 0x4e, 0x94, 0x93, 0x67, 0xae, 0x11, 0x09, 0x0f, 0x04, 0x01, 0x9c, 0xd0,
|
|
9753
|
|
-- 0x42, 0xd7, 0x01, 0x62, 0x19, 0x9f, 0x37, 0x12, 0x61, 0x65, 0x14, 0xaf, 0xad, 0x22, 0xf7, 0x46,
|
|
9754
|
|
-- 0x58, 0xc3, 0x42, 0xcf, 0x42, 0x39, 0x76, 0x5c, 0xef, 0xb6, 0xeb, 0x93, 0x88, 0xa9, 0x9c, 0x8b,
|
|
9755
|
|
-- 0x32, 0x9f, 0x81, 0x28, 0xc4, 0x09, 0x9c, 0xf2, 0x3a, 0xcc, 0xe7, 0x9a, 0xe7, 0xbd, 0x1a, 0x66,
|
|
9756
|
|
-- 0xd8, 0x8c, 0xd7, 0xb9, 0xad, 0x4a, 0xb1, 0x86, 0x61, 0xbf, 0x0a, 0xd3, 0xb5, 0xa0, 0x59, 0x0b,
|
|
9757
|
|
-- 0xc2, 0x78, 0x25, 0x08, 0xef, 0x3b, 0x61, 0x53, 0xce, 0x5f, 0x45, 0x86, 0xd6, 0xa7, 0x67, 0xcf,
|
|
9758
|
|
-- 0x00, 0xdf, 0x99, 0x46, 0xd0, 0xfc, 0x17, 0x19, 0xb7, 0x73, 0x42, 0x5f, 0x8b, 0x06, 0xbb, 0x77,
|
|
9759
|
|
-- 0x55, 0x8a, 0xbb, 0x1b, 0x4e, 0x4c, 0xd0, 0x1d, 0x96, 0x16, 0x2b, 0xb9, 0x82, 0x44, 0xf5, 0x67,
|
|
9760
|
|
-- 0xb4, 0xb4, 0x58, 0x09, 0x30, 0xf3, 0xce, 0x32, 0xeb, 0xdb, 0xbf, 0x5e, 0x64, 0xa7, 0x51, 0x2a,
|
|
9761
|
|
-- 0xe3, 0x1b, 0xfa, 0x12, 0x8c, 0x47, 0xe4, 0xb6, 0xeb, 0xb7, 0x1f, 0x48, 0x21, 0xbc, 0x8b, 0xb7,
|
|
9762
|
|
-- 0x4c, 0x7d, 0x59, 0xc7, 0xe4, 0xaa, 0x3c, 0xb3, 0x0c, 0xa7, 0xa8, 0xd1, 0x79, 0x0a, 0xdb, 0xfe,
|
|
9763
|
|
-- 0x42, 0x74, 0x37, 0x22, 0xa1, 0xc8, 0x38, 0xc6, 0xe6, 0x09, 0xcb, 0x42, 0x9c, 0xc0, 0xe9, 0xba,
|
|
9764
|
|
-- 0x64, 0x7f, 0xd6, 0x03, 0x1f, 0x07, 0x41, 0x2c, 0x57, 0x32, 0xcb, 0x59, 0xa3, 0x95, 0x63, 0x03,
|
|
9765
|
|
-- 0x0b, 0xad, 0x00, 0x8a, 0xda, 0xad, 0x96, 0xc7, 0xde, 0xdb, 0x1d, 0xef, 0x46, 0x18, 0xb4, 0x5b,
|
|
9766
|
|
-- 0xfc, 0xad, 0xb3, 0xb8, 0x78, 0x81, 0x5e, 0x61, 0xf5, 0x0e, 0x28, 0xce, 0xa8, 0x41, 0x4f, 0x9f,
|
|
9767
|
|
-- 0xad, 0x88, 0xfd, 0x66, 0xab, 0xbb, 0x28, 0xd4, 0xeb, 0x75, 0x56, 0x84, 0x25, 0x8c, 0x2e, 0x26,
|
|
9768
|
|
-- 0xd6, 0x3c, 0xc7, 0x1c, 0x4c, 0x16, 0x13, 0x56, 0xa5, 0x58, 0xc3, 0x40, 0xcb, 0x30, 0x14, 0x1d,
|
|
9769
|
|
-- 0x44, 0x8d, 0x58, 0x04, 0x41, 0xca, 0xc9, 0x1d, 0x59, 0x67, 0x28, 0x5a, 0x3e, 0x03, 0x5e, 0x05,
|
|
9770
|
|
-- 0xcb, 0xba, 0xf6, 0xf7, 0xb0, 0xcb, 0x90, 0xe5, 0xa7, 0x8a, 0xdb, 0x21, 0x41, 0x7b, 0x30, 0xd6,
|
|
9771
|
|
-- 0x62, 0x53, 0x2e, 0xa2, 0x27, 0x8b, 0x79, 0x7b, 0xa9, 0x4f, 0xa9, 0xf6, 0x3e, 0x3d, 0x68, 0x94,
|
|
9772
|
|
-- 0xd6, 0x89, 0x89, 0x0b, 0x35, 0x9d, 0x1c, 0x36, 0xa9, 0xdb, 0x3f, 0x38, 0xc5, 0xce, 0xdc, 0x3a,
|
|
9773
|
|
-- 0x17, 0x55, 0x87, 0x84, 0xc5, 0xaf, 0xe0, 0xcb, 0x67, 0xf3, 0x75, 0x26, 0xc9, 0x17, 0x09, 0xab,
|
|
9774
|
|
-- 0x61, 0x2c, 0xeb, 0xa2, 0x37, 0xd9, 0xdb, 0x34, 0x3f, 0xe8, 0x7a, 0xa5, 0x09, 0xe6, 0x58, 0xc6,
|
|
9775
|
|
-- 0x33, 0xb4, 0xa8, 0x88, 0x35, 0x22, 0xe8, 0x36, 0x8c, 0x89, 0x74, 0x46, 0x42, 0x29, 0x56, 0x34,
|
|
9776
|
|
-- 0x94, 0x1e, 0x63, 0x58, 0x07, 0x1e, 0xa7, 0x0b, 0xb0, 0x59, 0x19, 0x6d, 0xc3, 0x25, 0x2d, 0xb7,
|
|
9777
|
|
-- 0xdf, 0x8d, 0xd0, 0x61, 0xef, 0x95, 0x2e, 0xdb, 0x44, 0xda, 0xb9, 0xf9, 0xe4, 0xd1, 0x61, 0xe5,
|
|
9778
|
|
-- 0xd2, 0x46, 0x37, 0x44, 0xdc, 0x9d, 0x0e, 0xba, 0x03, 0xd3, 0xdc, 0xb1, 0xae, 0x4a, 0x9c, 0xa6,
|
|
9779
|
|
-- 0xe7, 0xfa, 0xea, 0x60, 0xe6, 0xeb, 0xf0, 0xe2, 0xd1, 0x61, 0x65, 0x7a, 0x21, 0x0b, 0x01, 0x67,
|
|
9780
|
|
-- 0xd7, 0x43, 0x9f, 0x85, 0x72, 0xd3, 0x8f, 0xc4, 0x18, 0x0c, 0x1a, 0x69, 0x2b, 0xcb, 0xd5, 0xf5,
|
|
9781
|
|
-- 0xba, 0xfa, 0xfe, 0xe4, 0x0f, 0x4e, 0x2a, 0xa0, 0x6d, 0xae, 0x18, 0x53, 0x72, 0xe8, 0x50, 0x7e,
|
|
9782
|
|
-- 0x8a, 0x72, 0xb1, 0x24, 0x0c, 0xd7, 0x1a, 0xae, 0x11, 0x56, 0xa6, 0xa9, 0x86, 0xd7, 0x8d, 0x41,
|
|
9783
|
|
-- 0x18, 0xbd, 0x01, 0x88, 0x32, 0x6a, 0x6e, 0x83, 0x2c, 0x34, 0x58, 0x10, 0x6b, 0xa6, 0x47, 0x1c,
|
|
9784
|
|
-- 0x36, 0x5c, 0x19, 0x50, 0xbd, 0x03, 0x03, 0x67, 0xd4, 0x42, 0x37, 0xe9, 0x41, 0xa6, 0x97, 0x0a,
|
|
9785
|
|
-- 0x13, 0x5b, 0xc9, 0xdc, 0xcf, 0x54, 0x49, 0x2b, 0x24, 0x0d, 0x27, 0x26, 0x4d, 0x93, 0x22, 0x4e,
|
|
9786
|
|
-- 0xd5, 0xa3, 0x77, 0xa9, 0xca, 0x67, 0x03, 0x66, 0xa4, 0x8a, 0xce, 0x9c, 0x36, 0x54, 0x2e, 0xde,
|
|
9787
|
|
-- 0x09, 0xa2, 0x78, 0x9d, 0xc4, 0xf7, 0x83, 0x70, 0x57, 0x04, 0x06, 0x4b, 0x62, 0x54, 0x26, 0x20,
|
|
9788
|
|
-- 0xac, 0xe3, 0x51, 0x3e, 0x98, 0x3d, 0x0e, 0xaf, 0x56, 0xd9, 0x0b, 0xdd, 0x70, 0xb2, 0x4f, 0x6e,
|
|
9789
|
|
-- 0xf2, 0x62, 0x2c, 0xe1, 0x12, 0x75, 0xb5, 0xb6, 0xc4, 0x5e, 0xdb, 0x52, 0xa8, 0xab, 0xb5, 0x25,
|
|
9790
|
|
-- 0x2c, 0xe1, 0x88, 0x74, 0xa6, 0x04, 0x1d, 0xcf, 0xd7, 0x6a, 0x76, 0x5e, 0x07, 0x7d, 0x66, 0x05,
|
|
9791
|
|
-- 0xf5, 0x61, 0x52, 0x25, 0x23, 0xe5, 0x11, 0xd3, 0xa2, 0x99, 0x09, 0xb6, 0x48, 0xfa, 0x0f, 0xb7,
|
|
9792
|
|
-- 0xa6, 0xf4, 0xc4, 0xab, 0x29, 0x4a, 0xb8, 0x83, 0xb6, 0x11, 0x3b, 0x64, 0xb2, 0x67, 0x3e, 0xa2,
|
|
9793
|
|
-- 0x79, 0x28, 0x47, 0xed, 0xcd, 0x66, 0xb0, 0xe7, 0xb8, 0x3e, 0x7b, 0x1c, 0xd3, 0x98, 0xac, 0xba,
|
|
9794
|
|
-- 0x04, 0xe0, 0x04, 0x07, 0xad, 0xc0, 0xb0, 0x23, 0x95, 0xc0, 0x28, 0x3f, 0x98, 0x80, 0x52, 0xfd,
|
|
9795
|
|
-- 0x72, 0xff, 0x5a, 0xa9, 0xf6, 0x55, 0x75, 0xd1, 0x6b, 0x30, 0x26, 0xdc, 0xa9, 0x78, 0x88, 0x05,
|
|
9796
|
|
-- 0xf6, 0x78, 0xa5, 0xd9, 0xcb, 0xd7, 0x75, 0x20, 0x36, 0x71, 0xd1, 0x17, 0x61, 0x9c, 0x52, 0x49,
|
|
9797
|
|
-- 0x0e, 0xb6, 0x99, 0xf3, 0xfd, 0x9c, 0x88, 0x5a, 0x9e, 0x09, 0xbd, 0x32, 0x4e, 0x11, 0x43, 0x4d,
|
|
9798
|
|
-- 0x78, 0xc2, 0x69, 0xc7, 0x01, 0x53, 0xa4, 0x9b, 0xeb, 0x7f, 0x23, 0xd8, 0x25, 0x3e, 0x7b, 0xc3,
|
|
9799
|
|
-- 0x1a, 0x5e, 0xbc, 0x72, 0x74, 0x58, 0x79, 0x62, 0xa1, 0x0b, 0x1e, 0xee, 0x4a, 0x05, 0xdd, 0x85,
|
|
9800
|
|
-- 0x91, 0x38, 0xf0, 0x98, 0xe5, 0x3a, 0x65, 0x25, 0x2e, 0xe4, 0xc7, 0xde, 0xd9, 0x50, 0x68, 0xba,
|
|
9801
|
|
-- 0x12, 0x49, 0x55, 0xc5, 0x3a, 0x1d, 0xb4, 0xc1, 0xf7, 0x18, 0x8b, 0x4a, 0x4a, 0xa2, 0x99, 0xc7,
|
|
9802
|
|
-- 0xf2, 0x07, 0x46, 0x05, 0x2f, 0x35, 0xb7, 0xa0, 0xa8, 0x89, 0x75, 0x32, 0xe8, 0x06, 0x4c, 0xb5,
|
|
9803
|
|
-- 0x42, 0x37, 0x60, 0x0b, 0x5b, 0x3d, 0x62, 0xcc, 0x98, 0xa9, 0x05, 0x6a, 0x69, 0x04, 0xdc, 0x59,
|
|
9804
|
|
-- 0x87, 0x0a, 0x99, 0xb2, 0x70, 0xe6, 0x22, 0xcf, 0x53, 0xc5, 0x19, 0x6f, 0x5e, 0x86, 0x15, 0x14,
|
|
9805
|
|
-- 0xad, 0xb1, 0x73, 0x99, 0x8b, 0x83, 0x33, 0xb3, 0xf9, 0x41, 0x18, 0x74, 0xb1, 0x91, 0xf3, 0x4b,
|
|
9806
|
|
-- 0xea, 0x2f, 0x4e, 0x28, 0xd0, 0x7b, 0x23, 0xda, 0x71, 0x42, 0x52, 0x0b, 0x83, 0x06, 0xe1, 0x9d,
|
|
9807
|
|
-- 0xe1, 0x46, 0xf3, 0x8f, 0xf3, 0xe0, 0x89, 0xf4, 0xde, 0xa8, 0x67, 0x21, 0xe0, 0xec, 0x7a, 0xa8,
|
|
9808
|
|
-- 0xa9, 0xa5, 0x67, 0xa6, 0x6c, 0x68, 0x34, 0xf3, 0x44, 0x17, 0x33, 0xa3, 0x14, 0xcf, 0x9a, 0xac,
|
|
9809
|
|
-- 0x45, 0xa3, 0x38, 0xc2, 0x29, 0x9a, 0xb3, 0xdf, 0x0e, 0x53, 0x1d, 0xf7, 0xc5, 0x89, 0xe2, 0x76,
|
|
9810
|
|
-- 0xff, 0xc9, 0x00, 0x94, 0x95, 0x2a, 0x1c, 0xcd, 0x9b, 0x2f, 0x1c, 0x17, 0xd3, 0x2f, 0x1c, 0xc3,
|
|
9811
|
|
-- 0x94, 0x23, 0xd7, 0x1f, 0x35, 0x36, 0x0c, 0xa3, 0xb8, 0x42, 0x7e, 0x96, 0x2c, 0x9d, 0xa7, 0xee,
|
|
9812
|
|
-- 0xe9, 0x01, 0xa7, 0x69, 0x36, 0x8a, 0x7d, 0x3f, 0x95, 0x94, 0xba, 0x2a, 0x4b, 0xfa, 0x4c, 0x52,
|
|
9813
|
|
-- 0x4b, 0x85, 0xff, 0x56, 0xd0, 0x5c, 0xad, 0xa5, 0xb3, 0x36, 0xd6, 0x68, 0x21, 0xe6, 0x30, 0x26,
|
|
9814
|
|
-- 0xbe, 0x51, 0xe6, 0x86, 0x89, 0x6f, 0x43, 0x0f, 0x29, 0xbe, 0x49, 0x02, 0x38, 0xa1, 0x85, 0x3c,
|
|
9815
|
|
-- 0x98, 0x6a, 0x98, 0x09, 0x37, 0x95, 0xd7, 0xdb, 0x53, 0x3d, 0x53, 0x5f, 0xb6, 0xb5, 0xec, 0x66,
|
|
9816
|
|
-- 0x4b, 0x69, 0x2a, 0xb8, 0x93, 0x30, 0x7a, 0x0d, 0x86, 0xdf, 0x0b, 0x22, 0xb6, 0xf9, 0xc4, 0x0d,
|
|
9817
|
|
-- 0x2f, 0xbd, 0x83, 0x86, 0xdf, 0xbc, 0x53, 0x67, 0xe5, 0xc7, 0x87, 0x95, 0x91, 0x5a, 0xd0, 0x94,
|
|
9818
|
|
-- 0x7f, 0xb1, 0xaa, 0x80, 0x1e, 0xc0, 0xb4, 0x71, 0x2e, 0xaa, 0xee, 0x42, 0xff, 0xdd, 0xbd, 0x24,
|
|
9819
|
|
-- 0x9a, 0x9b, 0x5e, 0xcd, 0xa2, 0x84, 0xb3, 0x1b, 0xa0, 0x87, 0x8d, 0x1f, 0x88, 0x64, 0xb5, 0x92,
|
|
9820
|
|
-- 0x8b, 0x60, 0xcc, 0x42, 0x59, 0xf7, 0x0d, 0x4f, 0x21, 0xe0, 0xce, 0x3a, 0xf6, 0xd7, 0xf8, 0xcb,
|
|
9821
|
|
-- 0x81, 0xd0, 0x2f, 0x92, 0xa8, 0xed, 0x9d, 0x45, 0x2e, 0xa4, 0x65, 0x43, 0xf5, 0xf9, 0xd0, 0xaf,
|
|
9822
|
|
-- 0x53, 0xbf, 0x69, 0xb1, 0xd7, 0xa9, 0x0d, 0xb2, 0xd7, 0xf2, 0xa8, 0x94, 0xfb, 0xe8, 0x3b, 0xfe,
|
|
9823
|
|
-- 0x26, 0x0c, 0xc7, 0xa2, 0xb5, 0x6e, 0xe9, 0x9b, 0xb4, 0x4e, 0xb1, 0x17, 0x3a, 0xc5, 0x5f, 0xc8,
|
|
9824
|
|
-- 0x52, 0xac, 0xc8, 0xd8, 0xff, 0x94, 0xcf, 0x80, 0x84, 0x9c, 0x81, 0x1a, 0xaa, 0x6a, 0xaa, 0xa1,
|
|
9825
|
|
-- 0x2a, 0x3d, 0xbe, 0x20, 0x47, 0x1d, 0xf5, 0x4f, 0xcc, 0x7e, 0x33, 0x51, 0xee, 0xa3, 0xfe, 0x2c,
|
|
9826
|
|
-- 0x6a, 0xff, 0x98, 0x05, 0xe7, 0xb3, 0xec, 0x88, 0x28, 0x4f, 0xc8, 0x05, 0x49, 0xf5, 0x4c, 0xac,
|
|
9827
|
|
-- 0x46, 0xf0, 0x9e, 0x28, 0xc7, 0x0a, 0xa3, 0xef, 0xcc, 0x08, 0x27, 0x0b, 0x9f, 0x76, 0x07, 0xc6,
|
|
9828
|
|
-- 0x6a, 0x21, 0xd1, 0xee, 0x80, 0xd7, 0xb9, 0x9b, 0x19, 0xef, 0xcf, 0x73, 0x27, 0x76, 0x31, 0xb3,
|
|
9829
|
|
-- 0x7f, 0xbe, 0x00, 0xe7, 0xf9, 0x3b, 0xcf, 0xc2, 0x7e, 0xe0, 0x36, 0x6b, 0x41, 0x53, 0x64, 0xb5,
|
|
9830
|
|
-- 0x78, 0x1b, 0x46, 0x5b, 0x9a, 0xf4, 0xdf, 0x2d, 0x80, 0x93, 0xae, 0x25, 0x48, 0xa4, 0x30, 0xbd,
|
|
9831
|
|
-- 0x14, 0x1b, 0xb4, 0x50, 0x13, 0x46, 0xc9, 0xbe, 0xdb, 0x50, 0x8f, 0x05, 0x85, 0x13, 0xdf, 0x0d,
|
|
9832
|
|
-- 0xaa, 0x95, 0x65, 0x8d, 0x0e, 0x36, 0xa8, 0x3e, 0x82, 0x44, 0x67, 0xf6, 0x8f, 0x5b, 0xf0, 0x58,
|
|
9833
|
|
-- 0x4e, 0xb8, 0x27, 0xda, 0xdc, 0x7d, 0xf6, 0xa2, 0x26, 0x72, 0x26, 0xa9, 0xe6, 0xf8, 0x3b, 0x1b,
|
|
9834
|
|
-- 0x16, 0x50, 0xf4, 0x79, 0x00, 0xfe, 0x4e, 0x46, 0x85, 0x92, 0x5e, 0x71, 0x71, 0x8c, 0x90, 0x1e,
|
|
9835
|
|
-- 0x5a, 0x28, 0x06, 0x59, 0x1f, 0x6b, 0xb4, 0xec, 0x9f, 0x29, 0xc2, 0x00, 0x7b, 0x97, 0x41, 0x2b,
|
|
9836
|
|
-- 0x30, 0xb4, 0xc3, 0x83, 0x1b, 0xf7, 0x13, 0x47, 0x39, 0x91, 0xee, 0x78, 0x01, 0x96, 0x95, 0xd1,
|
|
9837
|
|
-- 0x1a, 0x9c, 0xe3, 0xc1, 0xa1, 0xbd, 0x2a, 0xf1, 0x9c, 0x03, 0xa9, 0x24, 0xe0, 0x79, 0x86, 0x54,
|
|
9838
|
|
-- 0x58, 0x89, 0xd5, 0x4e, 0x14, 0x9c, 0x55, 0x0f, 0xbd, 0x0e, 0xe3, 0xb1, 0xbb, 0x47, 0x82, 0x76,
|
|
9839
|
|
-- 0x2c, 0x29, 0xf1, 0xb0, 0xd0, 0x8a, 0x8d, 0xdb, 0x30, 0xa0, 0x38, 0x85, 0x4d, 0xc5, 0x9d, 0x56,
|
|
9840
|
|
-- 0x87, 0x3a, 0x44, 0xcb, 0xdc, 0x6f, 0xaa, 0x40, 0x4c, 0x5c, 0x66, 0x40, 0xd4, 0x66, 0xe6, 0x52,
|
|
9841
|
|
-- 0x1b, 0x3b, 0x21, 0x89, 0x76, 0x02, 0xaf, 0x29, 0xd2, 0x54, 0x27, 0x06, 0x44, 0x29, 0x38, 0xee,
|
|
9842
|
|
-- 0xa8, 0x41, 0xa9, 0x6c, 0x39, 0xae, 0xd7, 0x0e, 0x49, 0x42, 0x65, 0xd0, 0xa4, 0xb2, 0x92, 0x82,
|
|
9843
|
|
-- 0xe3, 0x8e, 0x1a, 0x74, 0x1d, 0x4d, 0x8b, 0xbc, 0xd1, 0xd2, 0xd9, 0x5d, 0x59, 0x85, 0x0d, 0x49,
|
|
9844
|
|
-- 0xb7, 0x9f, 0x2e, 0xd1, 0x5e, 0x84, 0xdd, 0x8c, 0xca, 0x3c, 0xad, 0x69, 0xf1, 0x84, 0xc3, 0x8f,
|
|
9845
|
|
-- 0xa4, 0xf2, 0x30, 0xd9, 0x8b, 0x7f, 0xcf, 0x82, 0x73, 0x19, 0xd6, 0xa7, 0xfc, 0xa8, 0xda, 0x76,
|
|
9846
|
|
-- 0xa3, 0x58, 0xe5, 0x52, 0xd1, 0x8e, 0x2a, 0x5e, 0x8e, 0x15, 0x06, 0xdd, 0x0f, 0xfc, 0x30, 0x4c,
|
|
9847
|
|
-- 0x1f, 0x80, 0xc2, 0xba, 0x4b, 0x40, 0x4f, 0x76, 0x00, 0xa2, 0x2b, 0x50, 0x6a, 0x47, 0x44, 0xc6,
|
|
9848
|
|
-- 0x69, 0x52, 0xe7, 0x37, 0xd3, 0xeb, 0x32, 0x08, 0x65, 0x4d, 0xb7, 0x95, 0x4a, 0x55, 0x63, 0x4d,
|
|
9849
|
|
-- 0xb9, 0x9e, 0x94, 0xc3, 0xec, 0xaf, 0x16, 0xe1, 0x62, 0xae, 0x9d, 0x39, 0xed, 0xd2, 0x5e, 0xe0,
|
|
9850
|
|
-- 0xbb, 0x71, 0xa0, 0xde, 0xfc, 0x78, 0xa4, 0x10, 0xd2, 0xda, 0x59, 0x13, 0xe5, 0x58, 0x61, 0xa0,
|
|
9851
|
|
-- 0xab, 0x32, 0x83, 0x79, 0x3a, 0x5b, 0xcc, 0x62, 0xd5, 0x48, 0x62, 0xde, 0x6f, 0x26, 0xae, 0xa7,
|
|
9852
|
|
-- 0xa0, 0xd4, 0x0a, 0x02, 0x2f, 0x7d, 0x18, 0xd1, 0xee, 0x06, 0x81, 0x87, 0x19, 0x10, 0x7d, 0x42,
|
|
9853
|
|
-- 0x8c, 0x43, 0xea, 0x91, 0x0b, 0x3b, 0xcd, 0x20, 0xd2, 0x06, 0xe3, 0x19, 0x18, 0xda, 0x25, 0x07,
|
|
9854
|
|
-- 0xa1, 0xeb, 0x6f, 0xa7, 0x1f, 0x3f, 0x6f, 0xf1, 0x62, 0x2c, 0xe1, 0x66, 0xb2, 0x84, 0xa1, 0xd3,
|
|
9855
|
|
-- 0x4e, 0xa1, 0x35, 0xdc, 0xf3, 0x6a, 0xfb, 0xa1, 0x22, 0x4c, 0xe0, 0xc5, 0xea, 0xb7, 0x26, 0xe2,
|
|
9856
|
|
-- 0x6e, 0xe7, 0x44, 0x9c, 0x76, 0x0a, 0xad, 0xde, 0xb3, 0xf1, 0xcb, 0x16, 0x4c, 0xb0, 0x80, 0xc2,
|
|
9857
|
|
-- 0x22, 0x3e, 0x85, 0x1b, 0xf8, 0x67, 0xc0, 0xba, 0x3d, 0x05, 0x03, 0x21, 0x6d, 0x34, 0x9d, 0x17,
|
|
9858
|
|
-- 0x87, 0xf5, 0x04, 0x73, 0x18, 0x7a, 0x02, 0x4a, 0xac, 0x0b, 0x74, 0xf2, 0x46, 0x79, 0x4a, 0x81,
|
|
9859
|
|
-- 0xaa, 0x13, 0x3b, 0x98, 0x95, 0x32, 0xa7, 0x6b, 0x4c, 0x5a, 0x9e, 0xcb, 0x3b, 0x9d, 0x3c, 0x28,
|
|
9860
|
|
-- 0x7c, 0x34, 0x9c, 0xae, 0x33, 0xbb, 0xf6, 0xc1, 0x9c, 0xae, 0xb3, 0x49, 0x76, 0x17, 0x8b, 0xfe,
|
|
9861
|
|
-- 0x7b, 0x01, 0x2e, 0x67, 0xd6, 0xeb, 0xdb, 0xe9, 0xba, 0x7b, 0xed, 0xd3, 0xb1, 0x61, 0xc9, 0x36,
|
|
9862
|
|
-- 0x2d, 0x29, 0x9e, 0xa1, 0x69, 0x49, 0xa9, 0x5f, 0xce, 0x71, 0xa0, 0x0f, 0x5f, 0xe8, 0xcc, 0x21,
|
|
9863
|
|
-- 0xfb, 0x88, 0xf8, 0x42, 0x67, 0xf6, 0x2d, 0x47, 0xac, 0xfb, 0xb3, 0x42, 0xce, 0xb7, 0x30, 0x01,
|
|
9864
|
|
-- 0xef, 0x1a, 0x3d, 0x67, 0x18, 0x30, 0x12, 0x9c, 0xf0, 0x28, 0x3f, 0x63, 0x78, 0x19, 0x56, 0x50,
|
|
9865
|
|
-- 0xe4, 0x6a, 0x5e, 0xc5, 0x85, 0xfc, 0xac, 0x89, 0xb9, 0x4d, 0xcd, 0x99, 0xef, 0x3f, 0x6a, 0x08,
|
|
9866
|
|
-- 0x32, 0x3c, 0x8c, 0xd7, 0x34, 0xa1, 0xbc, 0xd8, 0xbf, 0x50, 0x3e, 0x9a, 0x2d, 0x90, 0xa3, 0x05,
|
|
9867
|
|
-- 0x98, 0xd8, 0x73, 0x7d, 0x96, 0x05, 0xdf, 0x64, 0x45, 0x55, 0x90, 0x8d, 0x35, 0x13, 0x8c, 0xd3,
|
|
9868
|
|
-- 0xf8, 0xb3, 0xaf, 0xc1, 0xd8, 0xc3, 0xab, 0x23, 0xbf, 0x59, 0x84, 0xc7, 0xbb, 0x6c, 0x7b, 0x7e,
|
|
9869
|
|
-- 0xd6, 0x1b, 0x73, 0xa0, 0x9d, 0xf5, 0x1d, 0xf3, 0x50, 0x83, 0xf3, 0x5b, 0x6d, 0xcf, 0x3b, 0x60,
|
|
9870
|
|
-- 0xd6, 0x9b, 0xa4, 0x29, 0x31, 0x04, 0xaf, 0xf8, 0x84, 0x4c, 0xe2, 0xb0, 0x92, 0x81, 0x83, 0x33,
|
|
9871
|
|
-- 0x6b, 0xa2, 0x37, 0x00, 0x05, 0x22, 0x65, 0xeb, 0x0d, 0xe2, 0x0b, 0xad, 0x3a, 0x1b, 0xf8, 0x62,
|
|
9872
|
|
-- 0xb2, 0x19, 0xef, 0x74, 0x60, 0xe0, 0x8c, 0x5a, 0x94, 0xe9, 0xa7, 0xb7, 0xd2, 0x81, 0xea, 0x56,
|
|
9873
|
|
-- 0x8a, 0xe9, 0xc7, 0x3a, 0x10, 0x9b, 0xb8, 0xe8, 0x06, 0x4c, 0x39, 0xfb, 0x8e, 0xcb, 0x83, 0xcf,
|
|
9874
|
|
-- 0x49, 0x02, 0x9c, 0xeb, 0x57, 0x4a, 0xb0, 0x85, 0x34, 0x02, 0xee, 0xac, 0x93, 0x72, 0x6b, 0x1e,
|
|
9875
|
|
-- 0xcc, 0x77, 0x6b, 0xee, 0x7e, 0x2e, 0xf6, 0xd2, 0xe9, 0xda, 0xff, 0xd1, 0xa2, 0xd7, 0x57, 0x46,
|
|
9876
|
|
-- 0xda, 0x75, 0x3a, 0x0e, 0x4a, 0x37, 0xa9, 0x79, 0x18, 0x4f, 0x6b, 0xf6, 0x19, 0x09, 0x10, 0x9b,
|
|
9877
|
|
-- 0xb8, 0x7c, 0x41, 0x44, 0x89, 0x8b, 0x8b, 0xc1, 0xba, 0x8b, 0x10, 0x02, 0x0a, 0x03, 0x7d, 0x01,
|
|
9878
|
|
-- 0x86, 0x9a, 0xee, 0xbe, 0x1b, 0x05, 0xa1, 0xd8, 0x2c, 0x27, 0x74, 0x14, 0x48, 0xce, 0xc1, 0x2a,
|
|
9879
|
|
-- 0x27, 0x83, 0x25, 0x3d, 0xfb, 0x87, 0x0a, 0x30, 0x26, 0x5b, 0x7c, 0xb3, 0x1d, 0xc4, 0xce, 0x19,
|
|
9880
|
|
-- 0x5c, 0xcb, 0x37, 0x8c, 0x6b, 0xf9, 0x13, 0xdd, 0xe2, 0x28, 0xb0, 0x2e, 0xe5, 0x5e, 0xc7, 0x77,
|
|
9881
|
|
-- 0x52, 0xd7, 0xf1, 0xd3, 0xbd, 0x49, 0x75, 0xbf, 0x86, 0xff, 0x99, 0x05, 0x53, 0x06, 0xfe, 0x19,
|
|
9882
|
|
-- 0xdc, 0x06, 0x2b, 0xe6, 0x6d, 0xf0, 0x64, 0xcf, 0x6f, 0xc8, 0xb9, 0x05, 0xbe, 0xaf, 0x98, 0xea,
|
|
9883
|
|
-- 0x3b, 0x3b, 0xfd, 0xdf, 0x83, 0xd2, 0x8e, 0x13, 0x36, 0xbb, 0xc5, 0x6b, 0xed, 0xa8, 0x34, 0x77,
|
|
9884
|
|
-- 0xd3, 0x09, 0x9b, 0xfc, 0x0c, 0x7f, 0x4e, 0x25, 0x7a, 0x74, 0xc2, 0x66, 0x4f, 0x8f, 0x2e, 0xd6,
|
|
9885
|
|
-- 0x14, 0x7a, 0x15, 0x06, 0xa3, 0x46, 0xd0, 0x52, 0xf6, 0x96, 0x57, 0x78, 0x12, 0x48, 0x5a, 0x72,
|
|
9886
|
|
-- 0x7c, 0x58, 0x41, 0x66, 0x73, 0xb4, 0x18, 0x0b, 0x7c, 0xf4, 0x36, 0x8c, 0xb1, 0x5f, 0xca, 0xee,
|
|
9887
|
|
-- 0xa0, 0x98, 0x9f, 0x25, 0xa0, 0xae, 0x23, 0x72, 0xf3, 0x15, 0xa3, 0x08, 0x9b, 0xa4, 0x66, 0xb7,
|
|
9888
|
|
-- 0xa1, 0xac, 0x3e, 0xeb, 0x91, 0x7a, 0xe2, 0xfc, 0xbb, 0x22, 0x9c, 0xcb, 0x58, 0x73, 0x28, 0x32,
|
|
9889
|
|
-- 0x66, 0xe2, 0x85, 0x3e, 0x97, 0xea, 0x07, 0x9c, 0x8b, 0x88, 0x49, 0x43, 0x4d, 0xb1, 0xb6, 0xfa,
|
|
9890
|
|
-- 0x6e, 0xf4, 0x6e, 0x44, 0xd2, 0x8d, 0xd2, 0xa2, 0xde, 0x8d, 0xd2, 0xc6, 0xce, 0x6c, 0xa8, 0x69,
|
|
9891
|
|
-- 0x43, 0xaa, 0xa7, 0x8f, 0x74, 0x4e, 0xff, 0xb8, 0x08, 0xe7, 0xb3, 0x42, 0xbb, 0xa0, 0xef, 0x4e,
|
|
9892
|
|
-- 0x65, 0x83, 0x79, 0xa9, 0xdf, 0xa0, 0x30, 0x3c, 0x45, 0x8c, 0xc8, 0x6d, 0x3c, 0x67, 0xe6, 0x87,
|
|
9893
|
|
-- 0xe9, 0x39, 0xcc, 0xa2, 0x4d, 0xe6, 0xbe, 0x19, 0xf2, 0x2c, 0x3e, 0xf2, 0xf8, 0xf8, 0x74, 0xdf,
|
|
9894
|
|
-- 0x1d, 0x10, 0xe9, 0x7f, 0xa2, 0x94, 0xfb, 0xa6, 0x2c, 0xee, 0xed, 0xbe, 0x29, 0x5b, 0x9e, 0x75,
|
|
9895
|
|
-- 0x61, 0x44, 0xfb, 0x9a, 0x47, 0x3a, 0xe3, 0xbb, 0xf4, 0xb6, 0xd2, 0xfa, 0xfd, 0x48, 0x67, 0xfd,
|
|
9896
|
|
-- 0xc7, 0x2d, 0x48, 0x19, 0x37, 0x2a, 0x75, 0x97, 0x95, 0xab, 0xee, 0xba, 0x02, 0xa5, 0x30, 0xf0,
|
|
9897
|
|
-- 0x48, 0x3a, 0x41, 0x0b, 0x0e, 0x3c, 0x82, 0x19, 0x84, 0x62, 0xc4, 0x89, 0xb2, 0x63, 0x54, 0x17,
|
|
9898
|
|
-- 0xe4, 0x84, 0x88, 0xf6, 0x14, 0x0c, 0x78, 0x64, 0x9f, 0x78, 0xe9, 0xe8, 0xe7, 0xb7, 0x69, 0x21,
|
|
9899
|
|
-- 0xe6, 0x30, 0xfb, 0x97, 0x4b, 0x70, 0xa9, 0xab, 0x03, 0x34, 0x15, 0x87, 0xb6, 0x9d, 0x98, 0xdc,
|
|
9900
|
|
-- 0x77, 0x0e, 0xd2, 0x61, 0x8a, 0x6f, 0xf0, 0x62, 0x2c, 0xe1, 0xcc, 0xde, 0x9b, 0x87, 0x25, 0x4c,
|
|
9901
|
|
-- 0x29, 0x07, 0x45, 0x34, 0x42, 0x01, 0x7d, 0x04, 0x79, 0xdd, 0xaf, 0x03, 0x44, 0x91, 0xb7, 0xec,
|
|
9902
|
|
-- 0x53, 0xee, 0xae, 0x29, 0x0c, 0xc9, 0x93, 0xf0, 0x95, 0xf5, 0xdb, 0x02, 0x82, 0x35, 0x2c, 0x54,
|
|
9903
|
|
-- 0x85, 0xc9, 0x56, 0x18, 0xc4, 0x5c, 0xd7, 0x5a, 0xe5, 0x66, 0x3e, 0x03, 0xa6, 0xef, 0x69, 0x2d,
|
|
9904
|
|
-- 0x05, 0xc7, 0x1d, 0x35, 0xd0, 0xcb, 0x30, 0x22, 0xfc, 0x51, 0x6b, 0x41, 0xe0, 0x09, 0x35, 0x90,
|
|
9905
|
|
-- 0x32, 0x1a, 0xa9, 0x27, 0x20, 0xac, 0xe3, 0x69, 0xd5, 0x98, 0x02, 0x77, 0x28, 0xb3, 0x1a, 0x57,
|
|
9906
|
|
-- 0xe2, 0x6a, 0x78, 0xa9, 0x30, 0x4f, 0xc3, 0x7d, 0x85, 0x79, 0x4a, 0x14, 0x63, 0xe5, 0xbe, 0xdf,
|
|
9907
|
|
-- 0xac, 0xa0, 0xa7, 0x2a, 0xe9, 0x17, 0x4a, 0x70, 0x4e, 0x2c, 0x9c, 0x47, 0xbd, 0x5c, 0x1e, 0x51,
|
|
9908
|
|
-- 0xf6, 0xf9, 0x6f, 0xad, 0x99, 0xb3, 0x5e, 0x33, 0x3f, 0x6c, 0x81, 0xc9, 0x5e, 0xa1, 0xff, 0x2f,
|
|
9909
|
|
-- 0x37, 0xce, 0xfb, 0xcb, 0xb9, 0xec, 0x5a, 0x53, 0x5e, 0x20, 0x1f, 0x30, 0xe2, 0xbb, 0xfd, 0x1f,
|
|
9910
|
|
-- 0x2c, 0x78, 0xb2, 0x27, 0x45, 0xb4, 0x0c, 0x65, 0xc6, 0x03, 0x6a, 0xd2, 0xd9, 0xd3, 0xca, 0x0c,
|
|
9911
|
|
-- 0x50, 0x02, 0x72, 0x58, 0xd2, 0xa4, 0x26, 0x5a, 0xee, 0x08, 0xa8, 0xff, 0x4c, 0x46, 0x40, 0xfd,
|
|
9912
|
|
-- 0x69, 0x63, 0x78, 0x1e, 0x32, 0xa2, 0xfe, 0xd7, 0x8a, 0x30, 0xc8, 0x57, 0xfc, 0x19, 0x88, 0x61,
|
|
9913
|
|
-- 0x2b, 0x42, 0x6f, 0xdb, 0x25, 0x8e, 0x14, 0xef, 0xcb, 0x5c, 0xd5, 0x89, 0x1d, 0xce, 0x26, 0xa8,
|
|
9914
|
|
-- 0xdb, 0x2a, 0xd1, 0xf0, 0xa2, 0x39, 0xe3, 0x3e, 0x9b, 0x4d, 0x29, 0x26, 0x81, 0xd3, 0xd0, 0x6e,
|
|
9915
|
|
-- 0xb7, 0x2f, 0x01, 0x44, 0x2c, 0xd1, 0x3c, 0xa5, 0x21, 0x22, 0x92, 0x7d, 0xb2, 0x4b, 0xeb, 0x75,
|
|
9916
|
|
-- 0x85, 0xcc, 0xfb, 0x90, 0xec, 0x74, 0x05, 0xc0, 0x1a, 0xc5, 0xd9, 0x57, 0xa0, 0xac, 0x90, 0x7b,
|
|
9917
|
|
-- 0x69, 0x71, 0x46, 0x75, 0xe6, 0xe2, 0x73, 0x30, 0x91, 0x6a, 0xeb, 0x44, 0x4a, 0xa0, 0x5f, 0xb1,
|
|
9918
|
|
-- 0x60, 0x82, 0x77, 0x79, 0xd9, 0xdf, 0x17, 0x67, 0xea, 0xfb, 0x70, 0xde, 0xcb, 0x38, 0xdb, 0xc4,
|
|
9919
|
|
-- 0x8c, 0xf6, 0x7f, 0x16, 0x2a, 0xa5, 0x4f, 0x16, 0x14, 0x67, 0xb6, 0x81, 0xae, 0xd1, 0x75, 0x4b,
|
|
9920
|
|
-- 0xcf, 0x2e, 0xc7, 0x13, 0xbe, 0x43, 0xa3, 0x7c, 0xcd, 0xf2, 0x32, 0xac, 0xa0, 0xf6, 0xef, 0x58,
|
|
9921
|
|
-- 0x30, 0xc5, 0x7b, 0x7e, 0x8b, 0x1c, 0xa8, 0x1d, 0xfe, 0x61, 0xf6, 0x5d, 0xe4, 0xb8, 0x28, 0xe4,
|
|
9922
|
|
-- 0xe4, 0xb8, 0xd0, 0x3f, 0xad, 0xd8, 0xf5, 0xd3, 0x7e, 0xde, 0x02, 0xb1, 0x02, 0xcf, 0x40, 0x94,
|
|
9923
|
|
-- 0xff, 0x76, 0x53, 0x94, 0x9f, 0xcd, 0x5f, 0xd4, 0x39, 0x32, 0xfc, 0x9f, 0x5a, 0x30, 0xc9, 0x11,
|
|
9924
|
|
-- 0x92, 0xb7, 0xe4, 0x0f, 0x75, 0x1e, 0xfa, 0x49, 0x56, 0xa7, 0xb2, 0x53, 0x67, 0x7f, 0x94, 0x31,
|
|
9925
|
|
-- 0x59, 0xa5, 0xae, 0x93, 0xd5, 0x94, 0x1b, 0xe8, 0x04, 0x49, 0x18, 0x4f, 0x1c, 0x2b, 0xda, 0xfe,
|
|
9926
|
|
-- 0x23, 0x0b, 0x10, 0x6f, 0xc6, 0x60, 0x7f, 0x28, 0x53, 0xc1, 0x4a, 0xb5, 0xeb, 0x22, 0x39, 0x6a,
|
|
9927
|
|
-- 0x14, 0x04, 0x6b, 0x58, 0xa7, 0x32, 0x3c, 0x29, 0x83, 0x80, 0x62, 0x6f, 0x83, 0x80, 0x13, 0x8c,
|
|
9928
|
|
-- 0xe8, 0xd7, 0x4a, 0x90, 0x36, 0xe6, 0x47, 0xf7, 0x60, 0xb4, 0xe1, 0xb4, 0x9c, 0x4d, 0xd7, 0x73,
|
|
9929
|
|
-- 0x63, 0x97, 0x44, 0xdd, 0x2c, 0x89, 0x96, 0x34, 0x3c, 0xf1, 0xd4, 0xab, 0x95, 0x60, 0x83, 0x0e,
|
|
9930
|
|
-- 0x9a, 0x03, 0x68, 0x85, 0xee, 0xbe, 0xeb, 0x91, 0x6d, 0xa6, 0x71, 0x60, 0xde, 0x8a, 0xdc, 0x3c,
|
|
9931
|
|
-- 0x46, 0x96, 0x62, 0x0d, 0x23, 0xc3, 0xf1, 0xac, 0xf8, 0xe8, 0x1c, 0xcf, 0x4a, 0x27, 0x74, 0x3c,
|
|
9932
|
|
-- 0x1b, 0xe8, 0xcb, 0xf1, 0x0c, 0xc3, 0x05, 0xc9, 0x22, 0xd1, 0xff, 0x2b, 0xae, 0x47, 0x04, 0x5f,
|
|
9933
|
|
-- 0xcc, 0x7d, 0x18, 0x67, 0x8f, 0x0e, 0x2b, 0x17, 0x70, 0x26, 0x06, 0xce, 0xa9, 0x89, 0x3e, 0x0f,
|
|
9934
|
|
-- 0x33, 0x8e, 0xe7, 0x05, 0xf7, 0xd5, 0xa8, 0x2d, 0x47, 0x0d, 0xc7, 0xe3, 0x1a, 0xfb, 0x21, 0x46,
|
|
9935
|
|
-- 0xf5, 0x89, 0xa3, 0xc3, 0xca, 0xcc, 0x42, 0x0e, 0x0e, 0xce, 0xad, 0x9d, 0xf2, 0x5b, 0x1b, 0xee,
|
|
9936
|
|
-- 0xe5, 0xb7, 0x66, 0xef, 0xc2, 0xb9, 0x3a, 0x09, 0x5d, 0x96, 0x22, 0xb2, 0x99, 0x6c, 0xc9, 0x0d,
|
|
9937
|
|
-- 0x28, 0x87, 0xa9, 0x43, 0xa8, 0xaf, 0xc0, 0x46, 0x5a, 0x18, 0x5c, 0x79, 0xe8, 0x24, 0x84, 0xec,
|
|
9938
|
|
-- 0x3f, 0xb1, 0x60, 0x48, 0x38, 0x14, 0x9c, 0x01, 0xef, 0xb3, 0x60, 0xa8, 0xa0, 0x2b, 0xd9, 0x07,
|
|
9939
|
|
-- 0x35, 0xeb, 0x4c, 0xae, 0xf2, 0x79, 0x35, 0xa5, 0x7c, 0x7e, 0xb2, 0x1b, 0x91, 0xee, 0x6a, 0xe7,
|
|
9940
|
|
-- 0xbf, 0x55, 0x84, 0x71, 0xd3, 0x99, 0xe2, 0x0c, 0x86, 0x60, 0x1d, 0x86, 0x22, 0xe1, 0xb9, 0x53,
|
|
9941
|
|
-- 0xc8, 0xb7, 0x7d, 0x4e, 0x4f, 0x62, 0x62, 0xd8, 0x24, 0x7c, 0x75, 0x24, 0x91, 0x4c, 0x97, 0xa0,
|
|
9942
|
|
-- 0xe2, 0x23, 0x74, 0x09, 0xea, 0xe5, 0xcf, 0x52, 0x3a, 0x0d, 0x7f, 0x16, 0xfb, 0xeb, 0xec, 0xb2,
|
|
9943
|
|
-- 0xd0, 0xcb, 0xcf, 0x80, 0x8f, 0xb8, 0x61, 0x5e, 0x2b, 0x76, 0x97, 0x95, 0x25, 0x3a, 0x95, 0xc3,
|
|
9944
|
|
-- 0x4f, 0xfc, 0x92, 0x05, 0x97, 0x32, 0xbe, 0x4a, 0x63, 0x2e, 0x9e, 0x83, 0x61, 0xa7, 0xdd, 0x74,
|
|
9945
|
|
-- 0xd5, 0x5e, 0xd6, 0x1e, 0xa2, 0x16, 0x44, 0x39, 0x56, 0x18, 0x68, 0x09, 0xa6, 0xc8, 0x83, 0x96,
|
|
9946
|
|
-- 0xcb, 0x5f, 0x02, 0x75, 0xeb, 0xc3, 0x22, 0x0f, 0xf1, 0xba, 0x9c, 0x06, 0xe2, 0x4e, 0x7c, 0xe5,
|
|
9947
|
|
-- 0x0e, 0x5d, 0xcc, 0x75, 0x87, 0xfe, 0x87, 0x16, 0x8c, 0x88, 0x6e, 0x9f, 0xc1, 0x68, 0x7f, 0x87,
|
|
9948
|
|
-- 0x39, 0xda, 0x8f, 0x77, 0x19, 0xed, 0x9c, 0x61, 0xfe, 0x3b, 0x05, 0xd5, 0xdf, 0x5a, 0x10, 0xc6,
|
|
9949
|
|
-- 0x7d, 0x30, 0x2d, 0xaf, 0xc2, 0x70, 0x2b, 0x0c, 0xe2, 0xa0, 0x11, 0x78, 0x82, 0x67, 0x79, 0x22,
|
|
9950
|
|
-- 0xf1, 0xd6, 0xe7, 0xe5, 0xc7, 0xda, 0x6f, 0xac, 0xb0, 0xd9, 0xe8, 0x05, 0x61, 0x2c, 0xf8, 0x84,
|
|
9951
|
|
-- 0x64, 0xf4, 0x82, 0x30, 0xc6, 0x0c, 0x82, 0x9a, 0x00, 0xb1, 0x13, 0x6e, 0x93, 0x98, 0x96, 0x89,
|
|
9952
|
|
-- 0xc0, 0x1f, 0xf9, 0x87, 0x47, 0x3b, 0x76, 0xbd, 0x39, 0xd7, 0x8f, 0xa3, 0x38, 0x9c, 0x5b, 0xf5,
|
|
9953
|
|
-- 0xe3, 0x3b, 0x21, 0x17, 0x81, 0x34, 0xf7, 0x7b, 0x45, 0x0b, 0x6b, 0x74, 0xa5, 0x8f, 0x24, 0x6b,
|
|
9954
|
|
-- 0x63, 0xc0, 0x7c, 0xd2, 0x5e, 0x17, 0xe5, 0x58, 0x61, 0xd8, 0xaf, 0xb0, 0xab, 0x84, 0x0d, 0xd0,
|
|
9955
|
|
-- 0xc9, 0x3c, 0xe3, 0xbf, 0x31, 0xac, 0x86, 0x96, 0xbd, 0x67, 0x55, 0x75, 0xff, 0xfb, 0xee, 0x27,
|
|
9956
|
|
-- 0x37, 0x6d, 0x58, 0xf7, 0x84, 0x49, 0x9c, 0xf4, 0xd1, 0x77, 0x76, 0x58, 0x3a, 0x3c, 0xdf, 0xe3,
|
|
9957
|
|
-- 0x0a, 0x38, 0x81, 0x6d, 0x03, 0x0b, 0x3b, 0xcd, 0xc2, 0xf3, 0xae, 0xd6, 0xc4, 0x22, 0xd7, 0xc2,
|
|
9958
|
|
-- 0x4e, 0x0b, 0x00, 0x4e, 0x70, 0xd0, 0xbc, 0x10, 0xa0, 0x4b, 0x46, 0x76, 0x38, 0x29, 0x40, 0xcb,
|
|
9959
|
|
-- 0xcf, 0xd7, 0x24, 0xe8, 0x17, 0x60, 0x44, 0x65, 0x89, 0xab, 0xf1, 0x64, 0x5b, 0x22, 0x0c, 0xca,
|
|
9960
|
|
-- 0x72, 0x52, 0x8c, 0x75, 0x1c, 0xb4, 0x01, 0x13, 0x11, 0xd7, 0x9e, 0xa8, 0x68, 0x77, 0x5c, 0x0b,
|
|
9961
|
|
-- 0xf5, 0x49, 0x69, 0x21, 0x51, 0x37, 0xc1, 0xc7, 0xac, 0x88, 0x1f, 0x1d, 0xd2, 0xd1, 0x31, 0x4d,
|
|
9962
|
|
-- 0x02, 0xbd, 0x0e, 0xe3, 0x9e, 0x9e, 0x6b, 0xbd, 0x26, 0x94, 0x54, 0xca, 0x80, 0xd8, 0xc8, 0xc4,
|
|
9963
|
|
-- 0x5e, 0xc3, 0x29, 0x6c, 0xca, 0xeb, 0xe8, 0x25, 0x22, 0x42, 0xa3, 0xe3, 0x6f, 0x93, 0x48, 0xe4,
|
|
9964
|
|
-- 0xb8, 0x62, 0xbc, 0xce, 0xed, 0x1c, 0x1c, 0x9c, 0x5b, 0x1b, 0xbd, 0x0a, 0xa3, 0xf2, 0xf3, 0x35,
|
|
9965
|
|
-- 0x37, 0xde, 0xc4, 0x4c, 0x5d, 0x83, 0x61, 0x03, 0x13, 0xdd, 0x87, 0x69, 0xf9, 0x7f, 0x23, 0x74,
|
|
9966
|
|
-- 0xb6, 0xb6, 0xdc, 0x86, 0xf0, 0xa2, 0xe6, 0xbe, 0x3a, 0x0b, 0xd2, 0xf9, 0x67, 0x39, 0x0b, 0xe9,
|
|
9967
|
|
-- 0xf8, 0xb0, 0x72, 0x45, 0x8c, 0x5a, 0x26, 0x9c, 0x4d, 0x62, 0x36, 0x7d, 0xb4, 0x06, 0xe7, 0x76,
|
|
9968
|
|
-- 0x88, 0xe3, 0xc5, 0x3b, 0x4b, 0x3b, 0xa4, 0xb1, 0x2b, 0x37, 0x11, 0x73, 0x0e, 0xd6, 0x8c, 0xbb,
|
|
9969
|
|
-- 0x6f, 0x76, 0xa2, 0xe0, 0xac, 0x7a, 0xe8, 0x1d, 0x98, 0x69, 0xb5, 0x37, 0x3d, 0x37, 0xda, 0x59,
|
|
9970
|
|
-- 0x0f, 0x62, 0x66, 0x94, 0xa1, 0x92, 0xac, 0x09, 0x2f, 0x62, 0xe5, 0x18, 0x5d, 0xcb, 0xc1, 0xc3,
|
|
9971
|
|
-- 0xb9, 0x14, 0xd0, 0xfb, 0x30, 0x9d, 0x5a, 0x0c, 0xc2, 0xa7, 0x71, 0x3c, 0x3f, 0xde, 0x6d, 0x3d,
|
|
9972
|
|
-- 0xab, 0x82, 0xf0, 0x51, 0xcc, 0x02, 0xe1, 0xec, 0x26, 0x3e, 0x98, 0xa9, 0xce, 0x7b, 0xb4, 0xb2,
|
|
9973
|
|
-- 0xc6, 0x94, 0xa1, 0x2f, 0xc3, 0xa8, 0xbe, 0x8a, 0xc4, 0x05, 0x73, 0x35, 0x9b, 0x67, 0xd1, 0x56,
|
|
9974
|
|
-- 0x1b, 0x67, 0xe9, 0xd4, 0x8a, 0xd2, 0x61, 0xd8, 0xa0, 0x68, 0x13, 0xc8, 0xfe, 0x3e, 0x74, 0x1b,
|
|
9975
|
|
-- 0x86, 0x1b, 0x9e, 0x4b, 0xfc, 0x78, 0xb5, 0xd6, 0x2d, 0xe8, 0xc6, 0x92, 0xc0, 0x11, 0x03, 0x26,
|
|
9976
|
|
-- 0x02, 0x84, 0xf2, 0x32, 0xac, 0x28, 0xd8, 0xbf, 0x51, 0x80, 0x4a, 0x8f, 0x68, 0xb3, 0x29, 0x8d,
|
|
9977
|
|
-- 0xb2, 0xd5, 0x97, 0x46, 0x79, 0x41, 0xa6, 0x8c, 0x5b, 0x4f, 0x89, 0xd9, 0xa9, 0x74, 0x70, 0x89,
|
|
9978
|
|
-- 0xb0, 0x9d, 0xc6, 0xef, 0xdb, 0xc2, 0x57, 0x57, 0x4a, 0x97, 0x7a, 0xda, 0x9e, 0x1b, 0x8f, 0x51,
|
|
9979
|
|
-- 0x03, 0xfd, 0x0b, 0x22, 0xb9, 0x0f, 0x0b, 0xf6, 0xd7, 0x0b, 0x30, 0xad, 0x86, 0xf0, 0x2f, 0xee,
|
|
9980
|
|
-- 0xc0, 0xdd, 0xed, 0x1c, 0xb8, 0x53, 0x78, 0x96, 0xb1, 0xef, 0xc0, 0x20, 0x0f, 0x5a, 0xd2, 0x07,
|
|
9981
|
|
-- 0x03, 0xf4, 0x94, 0x19, 0xe1, 0x4a, 0x5d, 0xd3, 0x46, 0x94, 0xab, 0xbf, 0x62, 0xc1, 0xc4, 0xc6,
|
|
9982
|
|
-- 0x52, 0xad, 0x1e, 0x34, 0x76, 0x49, 0xbc, 0xc0, 0x19, 0x56, 0x2c, 0xf8, 0x1f, 0xeb, 0x21, 0xf9,
|
|
9983
|
|
-- 0x9a, 0x2c, 0x8e, 0xe9, 0x0a, 0x94, 0x76, 0x82, 0x28, 0x4e, 0xbf, 0xd9, 0xde, 0x0c, 0xa2, 0x18,
|
|
9984
|
|
-- 0x33, 0x88, 0xfd, 0xbb, 0x16, 0x0c, 0xb0, 0x44, 0xa7, 0xbd, 0xb2, 0xef, 0xf6, 0xf3, 0x5d, 0xe8,
|
|
9985
|
|
-- 0x65, 0x18, 0x24, 0x5b, 0x5b, 0xa4, 0x11, 0x8b, 0x59, 0x95, 0x0e, 0xa5, 0x83, 0xcb, 0xac, 0x94,
|
|
9986
|
|
-- 0x5e, 0xfa, 0xac, 0x31, 0xfe, 0x17, 0x0b, 0x64, 0xf4, 0x16, 0x94, 0x63, 0x77, 0x8f, 0x2c, 0x34,
|
|
9987
|
|
-- 0x9b, 0xe2, 0xd5, 0xeb, 0x21, 0xfc, 0x77, 0x37, 0x24, 0x01, 0x9c, 0xd0, 0xb2, 0xbf, 0x5a, 0x00,
|
|
9988
|
|
-- 0x48, 0x5c, 0xef, 0x7b, 0x7d, 0xe2, 0x62, 0xc7, 0x7b, 0xc8, 0xd5, 0x8c, 0xf7, 0x10, 0x94, 0x10,
|
|
9989
|
|
-- 0xcc, 0x78, 0x0c, 0x51, 0xc3, 0x54, 0xec, 0x6b, 0x98, 0x4a, 0x27, 0x19, 0xa6, 0x25, 0x98, 0x4a,
|
|
9990
|
|
-- 0x42, 0x07, 0x98, 0x71, 0x54, 0x98, 0x90, 0xb2, 0x91, 0x06, 0xe2, 0x4e, 0x7c, 0x9b, 0xc0, 0x15,
|
|
9991
|
|
-- 0x19, 0xd1, 0x52, 0xde, 0x35, 0xcc, 0xa8, 0xf2, 0x04, 0x89, 0x98, 0x93, 0x07, 0x9f, 0x42, 0xee,
|
|
9992
|
|
-- 0x83, 0xcf, 0x4f, 0x59, 0x70, 0x3e, 0xdd, 0x0e, 0xf3, 0x5e, 0xfb, 0x01, 0x0b, 0xa6, 0xd9, 0xb3,
|
|
9993
|
|
-- 0x17, 0x6b, 0xb5, 0xf3, 0x91, 0xed, 0xa5, 0xec, 0x90, 0x0a, 0xdd, 0x7b, 0x9c, 0x78, 0x2e, 0xaf,
|
|
9994
|
|
-- 0x65, 0x91, 0xc6, 0xd9, 0x2d, 0xda, 0xdf, 0x6f, 0x81, 0x70, 0x12, 0xea, 0x63, 0x63, 0xbf, 0x2d,
|
|
9995
|
|
-- 0x53, 0x95, 0x1a, 0x01, 0xbc, 0xaf, 0xe4, 0x7b, 0x4d, 0x89, 0xb0, 0xdd, 0xea, 0x22, 0x35, 0x82,
|
|
9996
|
|
-- 0x75, 0x1b, 0xb4, 0xec, 0x26, 0x08, 0x68, 0x95, 0x30, 0x3d, 0x51, 0xef, 0xde, 0x5c, 0x07, 0x68,
|
|
9997
|
|
-- 0x32, 0x5c, 0x2d, 0x61, 0xa1, 0x3a, 0xb6, 0xab, 0x0a, 0x82, 0x35, 0x2c, 0xfb, 0x47, 0x0a, 0x30,
|
|
9998
|
|
-- 0x22, 0x03, 0x46, 0xb7, 0xfd, 0x7e, 0xa4, 0xb9, 0x13, 0xe5, 0x8d, 0x61, 0x19, 0x3e, 0x29, 0xe1,
|
|
9999
|
|
-- 0x5a, 0x22, 0x04, 0x27, 0x19, 0x3e, 0x25, 0x00, 0x27, 0x38, 0xe8, 0x19, 0x18, 0x8a, 0xda, 0x9b,
|
|
10000
|
|
-- 0x0c, 0x3d, 0xe5, 0xfa, 0x52, 0xe7, 0xc5, 0x58, 0xc2, 0xd1, 0xe7, 0x61, 0x92, 0xd7, 0x0b, 0x83,
|
|
10001
|
|
-- 0x96, 0xb3, 0xcd, 0x95, 0x86, 0x03, 0xca, 0x17, 0x75, 0x72, 0x2d, 0x05, 0x3b, 0x3e, 0xac, 0x9c,
|
|
10002
|
|
-- 0x4f, 0x97, 0x31, 0x75, 0x73, 0x07, 0x15, 0xfb, 0xcb, 0x80, 0x3a, 0x63, 0x60, 0xa3, 0x37, 0xb8,
|
|
10003
|
|
-- 0x01, 0x92, 0x1b, 0x92, 0x66, 0x37, 0x3d, 0xb2, 0xee, 0x3a, 0x29, 0xcd, 0xcf, 0x79, 0x2d, 0xac,
|
|
10004
|
|
-- 0xea, 0xdb, 0x7f, 0xad, 0x08, 0x93, 0x69, 0x47, 0x3a, 0x74, 0x13, 0x06, 0xf9, 0x05, 0x23, 0xc8,
|
|
10005
|
|
-- 0x77, 0x79, 0xa6, 0xd4, 0xdc, 0xef, 0xd8, 0x56, 0x13, 0x77, 0x94, 0xa8, 0x8f, 0xde, 0x81, 0x91,
|
|
10006
|
|
-- 0x66, 0x70, 0xdf, 0xbf, 0xef, 0x84, 0xcd, 0x85, 0xda, 0xaa, 0x58, 0x97, 0x99, 0x7c, 0x6a, 0x35,
|
|
10007
|
|
-- 0x41, 0xd3, 0x5d, 0xfa, 0x98, 0x4a, 0x3e, 0x01, 0x61, 0x9d, 0x1c, 0xda, 0x60, 0x71, 0xfd, 0xb6,
|
|
10008
|
|
-- 0xdc, 0xed, 0x35, 0xa7, 0xd5, 0xcd, 0x1a, 0x75, 0x49, 0x22, 0x69, 0x94, 0xc7, 0x44, 0xf0, 0x3f,
|
|
10009
|
|
-- 0x0e, 0xc0, 0x09, 0x21, 0xf4, 0xdd, 0x70, 0x2e, 0xca, 0x51, 0x6d, 0xe5, 0xa5, 0x44, 0xe8, 0xa6,
|
|
10010
|
|
-- 0xed, 0x59, 0x7c, 0x8c, 0x4a, 0x10, 0x59, 0x4a, 0xb0, 0xac, 0x66, 0xec, 0xaf, 0x9c, 0x03, 0x63,
|
|
10011
|
|
-- 0x37, 0x1a, 0x79, 0x71, 0xac, 0x53, 0xca, 0x8b, 0x83, 0x61, 0x98, 0xec, 0xb5, 0xe2, 0x83, 0xaa,
|
|
10012
|
|
-- 0x1b, 0x76, 0x4b, 0xac, 0xb6, 0x2c, 0x70, 0x3a, 0x69, 0x4a, 0x08, 0x56, 0x74, 0xb2, 0x93, 0x17,
|
|
10013
|
|
-- 0x15, 0x3f, 0xc4, 0xe4, 0x45, 0xa5, 0x33, 0x4c, 0x5e, 0xb4, 0x0e, 0x43, 0xdb, 0x6e, 0x8c, 0x49,
|
|
10014
|
|
-- 0x2b, 0x10, 0xac, 0x5d, 0xe6, 0x3a, 0xbc, 0xc1, 0x51, 0x3a, 0x13, 0x66, 0x08, 0x00, 0x96, 0x44,
|
|
10015
|
|
-- 0xd0, 0x1b, 0x6a, 0x07, 0x0e, 0xe6, 0x4b, 0x46, 0x9d, 0xef, 0x69, 0x99, 0x7b, 0x50, 0x24, 0x2b,
|
|
10016
|
|
-- 0x1a, 0x7a, 0xd8, 0x64, 0x45, 0x2b, 0x32, 0xc5, 0xd0, 0x70, 0xbe, 0xe9, 0x38, 0xcb, 0x20, 0xd4,
|
|
10017
|
|
-- 0x23, 0xb1, 0x90, 0x91, 0x8c, 0xa9, 0x7c, 0x7a, 0xc9, 0x98, 0xbe, 0xdf, 0x82, 0xe9, 0x56, 0x56,
|
|
10018
|
|
-- 0x5e, 0x32, 0x91, 0x18, 0xe8, 0xe5, 0xbe, 0x13, 0xaf, 0x19, 0x0d, 0x32, 0x11, 0x39, 0x13, 0x0d,
|
|
10019
|
|
-- 0x67, 0x37, 0x47, 0x07, 0x3a, 0xdc, 0x6c, 0x8a, 0x6c, 0x42, 0x4f, 0xe5, 0x64, 0x75, 0xea, 0x92,
|
|
10020
|
|
-- 0xcb, 0x69, 0x23, 0x23, 0x83, 0xd0, 0xc7, 0xf3, 0x32, 0x08, 0xf5, 0x9d, 0x37, 0xe8, 0x0d, 0x95,
|
|
10021
|
|
-- 0xcf, 0x69, 0x2c, 0x7f, 0x29, 0xf1, 0x6c, 0x4d, 0x3d, 0xb3, 0x38, 0xbd, 0xa1, 0xb2, 0x38, 0x75,
|
|
10022
|
|
-- 0x89, 0x6f, 0xc6, 0x73, 0x34, 0xf5, 0xcc, 0xdd, 0xa4, 0xe5, 0x5f, 0x9a, 0x38, 0x9d, 0xfc, 0x4b,
|
|
10023
|
|
-- 0xc6, 0x55, 0xc3, 0x53, 0x00, 0x3d, 0xdb, 0xe3, 0xaa, 0x31, 0xe8, 0x76, 0xbf, 0x6c, 0x78, 0xae,
|
|
10024
|
|
-- 0xa9, 0xa9, 0x87, 0xca, 0x35, 0x75, 0x4f, 0xcf, 0xdd, 0x84, 0x7a, 0x24, 0x27, 0xa2, 0x48, 0x7d,
|
|
10025
|
|
-- 0x66, 0x6c, 0xba, 0xa7, 0x5f, 0x80, 0xe7, 0xf2, 0xe9, 0xaa, 0x7b, 0xae, 0x93, 0x6e, 0xe6, 0x15,
|
|
10026
|
|
-- 0xd8, 0x91, 0x09, 0xea, 0xfc, 0xd9, 0x64, 0x82, 0x9a, 0x3e, 0xf5, 0x4c, 0x50, 0x17, 0xce, 0x20,
|
|
10027
|
|
-- 0x13, 0xd4, 0x63, 0x1f, 0x6a, 0x26, 0xa8, 0x99, 0x47, 0x90, 0x09, 0x6a, 0x3d, 0xc9, 0x04, 0x75,
|
|
10028
|
|
-- 0x31, 0x7f, 0x4a, 0x32, 0xec, 0x59, 0x73, 0xf2, 0x3f, 0xdd, 0x83, 0x72, 0x4b, 0x46, 0x7a, 0x10,
|
|
10029
|
|
-- 0x01, 0xd8, 0xb2, 0x93, 0xd1, 0x66, 0x85, 0x83, 0xe0, 0x53, 0xa2, 0x40, 0x38, 0x21, 0x45, 0xe9,
|
|
10030
|
|
-- 0x26, 0xf9, 0xa0, 0x1e, 0xef, 0xa2, 0x04, 0xcd, 0x52, 0x2f, 0xe5, 0x67, 0x81, 0xb2, 0xff, 0x6a,
|
|
10031
|
|
-- 0x01, 0x2e, 0x77, 0x5f, 0xd7, 0x89, 0x6e, 0xaa, 0x96, 0xbc, 0xa5, 0xa4, 0x74, 0x53, 0x5c, 0xc8,
|
|
10032
|
|
-- 0x49, 0xb0, 0xfa, 0x0e, 0x87, 0x73, 0x03, 0xa6, 0x94, 0x21, 0xab, 0xe7, 0x36, 0x0e, 0xb4, 0x24,
|
|
10033
|
|
-- 0xb5, 0xca, 0x61, 0xaf, 0x9e, 0x46, 0xc0, 0x9d, 0x75, 0xd0, 0x02, 0x4c, 0x18, 0x85, 0xab, 0x55,
|
|
10034
|
|
-- 0x21, 0xcc, 0x28, 0x65, 0x58, 0xdd, 0x04, 0xe3, 0x34, 0xbe, 0xfd, 0x73, 0x16, 0x3c, 0x96, 0x93,
|
|
10035
|
|
-- 0x24, 0xa1, 0xef, 0x68, 0x2f, 0x5b, 0x30, 0xd1, 0x32, 0xab, 0xf6, 0x08, 0x0a, 0x65, 0xa4, 0x62,
|
|
10036
|
|
-- 0x50, 0x7d, 0x4d, 0x01, 0x70, 0x9a, 0xe8, 0xe2, 0xb5, 0xdf, 0xfa, 0xfd, 0xcb, 0x1f, 0xfb, 0xed,
|
|
10037
|
|
-- 0xdf, 0xbf, 0xfc, 0xb1, 0xdf, 0xf9, 0xfd, 0xcb, 0x1f, 0xfb, 0xff, 0x8f, 0x2e, 0x5b, 0xbf, 0x75,
|
|
10038
|
|
-- 0x74, 0xd9, 0xfa, 0xed, 0xa3, 0xcb, 0xd6, 0xef, 0x1c, 0x5d, 0xb6, 0x7e, 0xef, 0xe8, 0xb2, 0xf5,
|
|
10039
|
|
-- 0xd5, 0x3f, 0xb8, 0xfc, 0xb1, 0xb7, 0x0b, 0xfb, 0x2f, 0xfc, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff,
|
|
10040
|
|
-- 0x67, 0xe8, 0x47, 0xf4, 0xcd, 0xe5, 0x00, 0x00,
|
|
|
9248
|
+- 0x76, 0x18, 0xbc, 0xd5, 0xdd, 0x7c, 0xf4, 0xe1, 0xfb, 0xce, 0x43, 0x1c, 0x4a, 0x33, 0x3d, 0x2a,
|
|
|
9249
|
+- 0xed, 0x8e, 0x46, 0x2b, 0x89, 0xb3, 0x1a, 0x49, 0x2b, 0x79, 0xb5, 0x2b, 0x9b, 0x64, 0x93, 0x33,
|
|
|
9250
|
+- 0xd4, 0x0c, 0x39, 0xad, 0xdb, 0x9c, 0xd1, 0xae, 0xac, 0x5d, 0x6f, 0xb1, 0xfb, 0xb2, 0x59, 0x62,
|
|
|
9251
|
+- 0xb1, 0xaa, 0x55, 0x55, 0xcd, 0x19, 0xea, 0xb3, 0x81, 0x2f, 0xeb, 0xd8, 0x89, 0x1f, 0x08, 0x16,
|
|
|
9252
|
+- 0xb1, 0x91, 0x87, 0x6d, 0x38, 0x80, 0xe3, 0xc0, 0x76, 0x9c, 0x04, 0x71, 0xec, 0xd8, 0xce, 0xae,
|
|
|
9253
|
+- 0x9d, 0x38, 0x4e, 0x7e, 0x38, 0x7f, 0x36, 0x4e, 0x80, 0x60, 0x0d, 0x18, 0x61, 0x6c, 0xda, 0x49,
|
|
|
9254
|
+- 0xe0, 0x1f, 0x79, 0x20, 0xce, 0x1f, 0x33, 0x46, 0x1c, 0xdc, 0x67, 0xdd, 0x5b, 0x5d, 0xd5, 0xdd,
|
|
|
9255
|
+- 0x1c, 0x71, 0x28, 0xd9, 0xd8, 0x7f, 0xdd, 0xf7, 0x9c, 0x7b, 0xee, 0xad, 0xfb, 0x3c, 0xe7, 0xdc,
|
|
|
9256
|
+- 0xf3, 0x80, 0xd7, 0x76, 0x5e, 0x8d, 0xe6, 0xdd, 0xe0, 0xda, 0x4e, 0x67, 0x93, 0x84, 0x3e, 0x89,
|
|
|
9257
|
+- 0x49, 0x74, 0x6d, 0x8f, 0xf8, 0xcd, 0x20, 0xbc, 0x26, 0x00, 0x4e, 0xdb, 0xbd, 0xd6, 0x08, 0x42,
|
|
|
9258
|
+- 0x72, 0x6d, 0xef, 0x85, 0x6b, 0x2d, 0xe2, 0x93, 0xd0, 0x89, 0x49, 0x73, 0xbe, 0x1d, 0x06, 0x71,
|
|
|
9259
|
+- 0x80, 0x10, 0xc7, 0x99, 0x77, 0xda, 0xee, 0x3c, 0xc5, 0x99, 0xdf, 0x7b, 0x61, 0xee, 0xf9, 0x96,
|
|
|
9260
|
+- 0x1b, 0x6f, 0x77, 0x36, 0xe7, 0x1b, 0xc1, 0xee, 0xb5, 0x56, 0xd0, 0x0a, 0xae, 0x31, 0xd4, 0xcd,
|
|
|
9261
|
+- 0xce, 0x16, 0xfb, 0xc7, 0xfe, 0xb0, 0x5f, 0x9c, 0xc4, 0xdc, 0x4b, 0x49, 0x33, 0xbb, 0x4e, 0x63,
|
|
|
9262
|
+- 0xdb, 0xf5, 0x49, 0xb8, 0x7f, 0xad, 0xbd, 0xd3, 0x62, 0xed, 0x86, 0x24, 0x0a, 0x3a, 0x61, 0x83,
|
|
|
9263
|
+- 0xa4, 0x1b, 0xee, 0x59, 0x2b, 0xba, 0xb6, 0x4b, 0x62, 0x27, 0xa3, 0xbb, 0x73, 0xd7, 0xf2, 0x6a,
|
|
|
9264
|
+- 0x85, 0x1d, 0x3f, 0x76, 0x77, 0xbb, 0x9b, 0xf9, 0x74, 0xbf, 0x0a, 0x51, 0x63, 0x9b, 0xec, 0x3a,
|
|
|
9265
|
+- 0x5d, 0xf5, 0x5e, 0xcc, 0xab, 0xd7, 0x89, 0x5d, 0xef, 0x9a, 0xeb, 0xc7, 0x51, 0x1c, 0xa6, 0x2b,
|
|
|
9266
|
+- 0xd9, 0xdf, 0xb4, 0xe0, 0xf2, 0xc2, 0x5b, 0xf5, 0x65, 0xcf, 0x89, 0x62, 0xb7, 0xb1, 0xe8, 0x05,
|
|
|
9267
|
+- 0x8d, 0x9d, 0x7a, 0x1c, 0x84, 0xe4, 0x5e, 0xe0, 0x75, 0x76, 0x49, 0x9d, 0x0d, 0x04, 0x7a, 0x0e,
|
|
|
9268
|
+- 0x46, 0xf7, 0xd8, 0xff, 0xd5, 0xea, 0xac, 0x75, 0xd9, 0xba, 0x5a, 0x5e, 0x9c, 0xfe, 0xad, 0x83,
|
|
|
9269
|
+- 0xca, 0xc7, 0x0e, 0x0f, 0x2a, 0xa3, 0xf7, 0x44, 0x39, 0x56, 0x18, 0xe8, 0x0a, 0x0c, 0x6f, 0x45,
|
|
|
9270
|
+- 0x1b, 0xfb, 0x6d, 0x32, 0x5b, 0x60, 0xb8, 0x93, 0x02, 0x77, 0x78, 0xa5, 0x4e, 0x4b, 0xb1, 0x80,
|
|
|
9271
|
+- 0xa2, 0x6b, 0x50, 0x6e, 0x3b, 0x61, 0xec, 0xc6, 0x6e, 0xe0, 0xcf, 0x16, 0x2f, 0x5b, 0x57, 0x87,
|
|
|
9272
|
+- 0x16, 0x67, 0x04, 0x6a, 0xb9, 0x26, 0x01, 0x38, 0xc1, 0xa1, 0xdd, 0x08, 0x89, 0xd3, 0xbc, 0xe3,
|
|
|
9273
|
+- 0x7b, 0xfb, 0xb3, 0xa5, 0xcb, 0xd6, 0xd5, 0xd1, 0xa4, 0x1b, 0x58, 0x94, 0x63, 0x85, 0x61, 0xff,
|
|
|
9274
|
+- 0x58, 0x01, 0x46, 0x17, 0xb6, 0xb6, 0x5c, 0xdf, 0x8d, 0xf7, 0xd1, 0x3d, 0x18, 0xf7, 0x83, 0x26,
|
|
|
9275
|
+- 0x91, 0xff, 0xd9, 0x57, 0x8c, 0x5d, 0xbf, 0x3c, 0xdf, 0xbd, 0x94, 0xe6, 0xd7, 0x35, 0xbc, 0xc5,
|
|
|
9276
|
+- 0xe9, 0xc3, 0x83, 0xca, 0xb8, 0x5e, 0x82, 0x0d, 0x3a, 0x08, 0xc3, 0x58, 0x3b, 0x68, 0x2a, 0xb2,
|
|
|
9277
|
+- 0x05, 0x46, 0xb6, 0x92, 0x45, 0xb6, 0x96, 0xa0, 0x2d, 0x4e, 0x1d, 0x1e, 0x54, 0xc6, 0xb4, 0x02,
|
|
|
9278
|
+- 0xac, 0x13, 0x41, 0x9b, 0x30, 0x45, 0xff, 0xfa, 0xb1, 0xab, 0xe8, 0x16, 0x19, 0xdd, 0xa7, 0xf2,
|
|
|
9279
|
+- 0xe8, 0x6a, 0xa8, 0x8b, 0x67, 0x0e, 0x0f, 0x2a, 0x53, 0xa9, 0x42, 0x9c, 0x26, 0x68, 0xbf, 0x0f,
|
|
|
9280
|
+- 0x93, 0x0b, 0x71, 0xec, 0x34, 0xb6, 0x49, 0x93, 0xcf, 0x20, 0x7a, 0x09, 0x4a, 0xbe, 0xb3, 0x4b,
|
|
|
9281
|
+- 0xc4, 0xfc, 0x5e, 0x16, 0x03, 0x5b, 0x5a, 0x77, 0x76, 0xc9, 0xd1, 0x41, 0x65, 0xfa, 0xae, 0xef,
|
|
|
9282
|
+- 0xbe, 0xd7, 0x11, 0xab, 0x82, 0x96, 0x61, 0x86, 0x8d, 0xae, 0x03, 0x34, 0xc9, 0x9e, 0xdb, 0x20,
|
|
|
9283
|
+- 0x35, 0x27, 0xde, 0x16, 0xf3, 0x8d, 0x44, 0x5d, 0xa8, 0x2a, 0x08, 0xd6, 0xb0, 0xec, 0x07, 0x50,
|
|
|
9284
|
+- 0x5e, 0xd8, 0x0b, 0xdc, 0x66, 0x2d, 0x68, 0x46, 0x68, 0x07, 0xa6, 0xda, 0x21, 0xd9, 0x22, 0xa1,
|
|
|
9285
|
+- 0x2a, 0x9a, 0xb5, 0x2e, 0x17, 0xaf, 0x8e, 0x5d, 0xbf, 0x9a, 0xf9, 0xb1, 0x26, 0xea, 0xb2, 0x1f,
|
|
|
9286
|
+- 0x87, 0xfb, 0x8b, 0x8f, 0x89, 0xf6, 0xa6, 0x52, 0x50, 0x9c, 0xa6, 0x6c, 0xff, 0xeb, 0x02, 0x9c,
|
|
|
9287
|
+- 0x5b, 0x78, 0xbf, 0x13, 0x92, 0xaa, 0x1b, 0xed, 0xa4, 0x57, 0x78, 0xd3, 0x8d, 0x76, 0xd6, 0x93,
|
|
|
9288
|
+- 0x11, 0x50, 0x4b, 0xab, 0x2a, 0xca, 0xb1, 0xc2, 0x40, 0xcf, 0xc3, 0x08, 0xfd, 0x7d, 0x17, 0xaf,
|
|
|
9289
|
+- 0x8a, 0x4f, 0x3e, 0x23, 0x90, 0xc7, 0xaa, 0x4e, 0xec, 0x54, 0x39, 0x08, 0x4b, 0x1c, 0xb4, 0x06,
|
|
|
9290
|
+- 0x63, 0x0d, 0xb6, 0x21, 0x5b, 0x6b, 0x41, 0x93, 0xb0, 0xc9, 0x2c, 0x2f, 0x3e, 0x4b, 0xd1, 0x97,
|
|
|
9291
|
+- 0x92, 0xe2, 0xa3, 0x83, 0xca, 0x2c, 0xef, 0x9b, 0x20, 0xa1, 0xc1, 0xb0, 0x5e, 0x1f, 0xd9, 0x6a,
|
|
|
9292
|
+- 0x7f, 0x95, 0x18, 0x25, 0xc8, 0xd8, 0x5b, 0x57, 0xb5, 0xad, 0x32, 0xc4, 0xb6, 0xca, 0x78, 0xf6,
|
|
|
9293
|
+- 0x36, 0x41, 0x2f, 0x40, 0x69, 0xc7, 0xf5, 0x9b, 0xb3, 0xc3, 0x8c, 0xd6, 0x45, 0x3a, 0xe7, 0xb7,
|
|
|
9294
|
+- 0x5c, 0xbf, 0x79, 0x74, 0x50, 0x99, 0x31, 0xba, 0x43, 0x0b, 0x31, 0x43, 0xb5, 0xff, 0xd8, 0x82,
|
|
|
9295
|
+- 0x0a, 0x83, 0xad, 0xb8, 0x1e, 0xa9, 0x91, 0x30, 0x72, 0xa3, 0x98, 0xf8, 0xb1, 0x31, 0xa0, 0xd7,
|
|
|
9296
|
+- 0x01, 0x22, 0xd2, 0x08, 0x49, 0xac, 0x0d, 0xa9, 0x5a, 0x18, 0x75, 0x05, 0xc1, 0x1a, 0x16, 0x3d,
|
|
|
9297
|
+- 0x10, 0xa2, 0x6d, 0x27, 0x64, 0xeb, 0x4b, 0x0c, 0xac, 0x3a, 0x10, 0xea, 0x12, 0x80, 0x13, 0x1c,
|
|
|
9298
|
+- 0xe3, 0x40, 0x28, 0xf6, 0x3b, 0x10, 0xd0, 0xe7, 0x60, 0x2a, 0x69, 0x2c, 0x6a, 0x3b, 0x0d, 0x39,
|
|
|
9299
|
+- 0x80, 0x6c, 0xcb, 0xd4, 0x4d, 0x10, 0x4e, 0xe3, 0xda, 0x7f, 0xdf, 0x12, 0x8b, 0x87, 0x7e, 0xf5,
|
|
|
9300
|
+- 0x47, 0xfc, 0x5b, 0xed, 0x5f, 0xb5, 0x60, 0x64, 0xd1, 0xf5, 0x9b, 0xae, 0xdf, 0x42, 0x5f, 0x86,
|
|
|
9301
|
+- 0x51, 0x7a, 0x37, 0x35, 0x9d, 0xd8, 0x11, 0xe7, 0xde, 0xa7, 0xb4, 0xbd, 0xa5, 0xae, 0x8a, 0xf9,
|
|
|
9302
|
+- 0xf6, 0x4e, 0x8b, 0x16, 0x44, 0xf3, 0x14, 0x9b, 0xee, 0xb6, 0x3b, 0x9b, 0xef, 0x92, 0x46, 0xbc,
|
|
|
9303
|
+- 0x46, 0x62, 0x27, 0xf9, 0x9c, 0xa4, 0x0c, 0x2b, 0xaa, 0xe8, 0x16, 0x0c, 0xc7, 0x4e, 0xd8, 0x22,
|
|
|
9304
|
+- 0xb1, 0x38, 0x00, 0x33, 0x0f, 0x2a, 0x5e, 0x13, 0xd3, 0x1d, 0x49, 0xfc, 0x06, 0x49, 0xae, 0x85,
|
|
|
9305
|
+- 0x0d, 0x56, 0x15, 0x0b, 0x12, 0xf6, 0x0f, 0x0e, 0xc3, 0x85, 0xa5, 0xfa, 0x6a, 0xce, 0xba, 0xba,
|
|
|
9306
|
+- 0x02, 0xc3, 0xcd, 0xd0, 0xdd, 0x23, 0xa1, 0x18, 0x67, 0x45, 0xa5, 0xca, 0x4a, 0xb1, 0x80, 0xa2,
|
|
|
9307
|
+- 0x57, 0x61, 0x9c, 0x5f, 0x48, 0x37, 0x1d, 0xbf, 0xe9, 0xc9, 0x21, 0x3e, 0x2b, 0xb0, 0xc7, 0xef,
|
|
|
9308
|
+- 0x69, 0x30, 0x6c, 0x60, 0x1e, 0x73, 0x51, 0x5d, 0x49, 0x6d, 0xc6, 0xbc, 0xcb, 0xee, 0x07, 0x2c,
|
|
|
9309
|
+- 0x98, 0xe6, 0xcd, 0x2c, 0xc4, 0x71, 0xe8, 0x6e, 0x76, 0x62, 0x12, 0xcd, 0x0e, 0xb1, 0x93, 0x6e,
|
|
|
9310
|
+- 0x29, 0x6b, 0xb4, 0x72, 0x47, 0x60, 0xfe, 0x5e, 0x8a, 0x0a, 0x3f, 0x04, 0x67, 0x45, 0xbb, 0xd3,
|
|
|
9311
|
+- 0x69, 0x30, 0xee, 0x6a, 0x16, 0x7d, 0xaf, 0x05, 0x73, 0x8d, 0xc0, 0x8f, 0xc3, 0xc0, 0xf3, 0x48,
|
|
|
9312
|
+- 0x58, 0xeb, 0x6c, 0x7a, 0x6e, 0xb4, 0xcd, 0xd7, 0x29, 0x26, 0x5b, 0xec, 0x24, 0xc8, 0x99, 0x43,
|
|
|
9313
|
+- 0x85, 0x24, 0xe6, 0xf0, 0xd2, 0xe1, 0x41, 0x65, 0x6e, 0x29, 0x97, 0x14, 0xee, 0xd1, 0x0c, 0xda,
|
|
|
9314
|
+- 0x01, 0x44, 0xaf, 0xd2, 0x7a, 0xec, 0xb4, 0x48, 0xd2, 0xf8, 0xc8, 0xe0, 0x8d, 0x9f, 0x3f, 0x3c,
|
|
|
9315
|
+- 0xa8, 0xa0, 0xf5, 0x2e, 0x12, 0x38, 0x83, 0x2c, 0x7a, 0x0f, 0xce, 0xd2, 0xd2, 0xae, 0x6f, 0x1d,
|
|
|
9316
|
+- 0x1d, 0xbc, 0xb9, 0xd9, 0xc3, 0x83, 0xca, 0xd9, 0xf5, 0x0c, 0x22, 0x38, 0x93, 0xf4, 0xdc, 0x12,
|
|
|
9317
|
+- 0x9c, 0xcb, 0x9c, 0x2a, 0x34, 0x0d, 0xc5, 0x1d, 0xc2, 0x59, 0x90, 0x32, 0xa6, 0x3f, 0xd1, 0x59,
|
|
|
9318
|
+- 0x18, 0xda, 0x73, 0xbc, 0x8e, 0x58, 0xa5, 0x98, 0xff, 0xf9, 0x4c, 0xe1, 0x55, 0xcb, 0x6e, 0xc0,
|
|
|
9319
|
+- 0xf8, 0x92, 0xd3, 0x76, 0x36, 0x5d, 0xcf, 0x8d, 0x5d, 0x12, 0xa1, 0xa7, 0xa1, 0xe8, 0x34, 0x9b,
|
|
|
9320
|
+- 0xec, 0x8a, 0x2c, 0x2f, 0x9e, 0x3b, 0x3c, 0xa8, 0x14, 0x17, 0x9a, 0xf4, 0xac, 0x06, 0x85, 0xb5,
|
|
|
9321
|
+- 0x8f, 0x29, 0x06, 0xfa, 0x24, 0x94, 0x9a, 0x61, 0xd0, 0x9e, 0x2d, 0x30, 0x4c, 0x3a, 0x54, 0xa5,
|
|
|
9322
|
+- 0x6a, 0x18, 0xb4, 0x53, 0xa8, 0x0c, 0xc7, 0xfe, 0x8d, 0x02, 0x3c, 0xb1, 0x44, 0xda, 0xdb, 0x2b,
|
|
|
9323
|
+- 0xf5, 0x9c, 0x4d, 0x77, 0x15, 0x46, 0x77, 0x03, 0xdf, 0x8d, 0x83, 0x30, 0x12, 0x4d, 0xb3, 0xdb,
|
|
|
9324
|
+- 0x64, 0x4d, 0x94, 0x61, 0x05, 0x45, 0x97, 0xa1, 0xd4, 0x4e, 0x38, 0x81, 0x71, 0xc9, 0x45, 0x30,
|
|
|
9325
|
+- 0x1e, 0x80, 0x41, 0x28, 0x46, 0x27, 0x22, 0xa1, 0xb8, 0x05, 0x15, 0xc6, 0xdd, 0x88, 0x84, 0x98,
|
|
|
9326
|
+- 0x41, 0x92, 0xe3, 0x94, 0x1e, 0xb4, 0x62, 0x5b, 0xa5, 0x8e, 0x53, 0x0a, 0xc1, 0x1a, 0x16, 0xaa,
|
|
|
9327
|
+- 0x41, 0x39, 0x52, 0x93, 0x3a, 0x34, 0xf8, 0xa4, 0x4e, 0xb0, 0xf3, 0x56, 0xcd, 0x64, 0x42, 0xc4,
|
|
|
9328
|
+- 0x38, 0x06, 0x86, 0xfb, 0x9e, 0xb7, 0x5f, 0x2f, 0x00, 0xe2, 0x43, 0xf8, 0xe7, 0x6c, 0xe0, 0xee,
|
|
|
9329
|
+- 0x76, 0x0f, 0x5c, 0x26, 0xe7, 0x75, 0x3b, 0x68, 0x38, 0x5e, 0xfa, 0x08, 0x3f, 0xa9, 0xd1, 0xfb,
|
|
|
9330
|
+- 0xdf, 0x16, 0x3c, 0xb1, 0xe4, 0xfa, 0x4d, 0x12, 0xe6, 0x2c, 0xc0, 0x47, 0x23, 0x80, 0x1c, 0xef,
|
|
|
9331
|
+- 0xa4, 0x37, 0x96, 0x58, 0xe9, 0x04, 0x96, 0x98, 0xfd, 0x3f, 0x2c, 0x40, 0xfc, 0xb3, 0x3f, 0x72,
|
|
|
9332
|
+- 0x1f, 0x7b, 0xb7, 0xfb, 0x63, 0x4f, 0x60, 0x59, 0xd8, 0xb7, 0x61, 0x72, 0xc9, 0x73, 0x89, 0x1f,
|
|
|
9333
|
+- 0xaf, 0xd6, 0x96, 0x02, 0x7f, 0xcb, 0x6d, 0xa1, 0xcf, 0xc0, 0x24, 0x95, 0x69, 0x83, 0x4e, 0x5c,
|
|
|
9334
|
+- 0x27, 0x8d, 0xc0, 0x67, 0xec, 0x3f, 0x95, 0x04, 0xd1, 0xe1, 0x41, 0x65, 0x72, 0xc3, 0x80, 0xe0,
|
|
|
9335
|
+- 0x14, 0xa6, 0xfd, 0xbb, 0x74, 0xfc, 0x82, 0xdd, 0x76, 0xe0, 0x13, 0x3f, 0x5e, 0x0a, 0xfc, 0x26,
|
|
|
9336
|
+- 0x17, 0x13, 0x3f, 0x03, 0xa5, 0x98, 0x8e, 0x07, 0x1f, 0xbb, 0x2b, 0x72, 0xa3, 0xd0, 0x51, 0x38,
|
|
|
9337
|
+- 0x3a, 0xa8, 0x9c, 0xef, 0xae, 0xc1, 0xc6, 0x89, 0xd5, 0x41, 0xdf, 0x06, 0xc3, 0x51, 0xec, 0xc4,
|
|
|
9338
|
+- 0x9d, 0x48, 0x8c, 0xe6, 0x93, 0x72, 0x34, 0xeb, 0xac, 0xf4, 0xe8, 0xa0, 0x32, 0xa5, 0xaa, 0xf1,
|
|
|
9339
|
+- 0x22, 0x2c, 0x2a, 0xa0, 0x67, 0x60, 0x64, 0x97, 0x44, 0x91, 0xd3, 0x92, 0x1c, 0xfe, 0x94, 0xa8,
|
|
|
9340
|
+- 0x3b, 0xb2, 0xc6, 0x8b, 0xb1, 0x84, 0xa3, 0xa7, 0x60, 0x88, 0x84, 0x61, 0x10, 0x8a, 0x3d, 0x3a,
|
|
|
9341
|
+- 0x21, 0x10, 0x87, 0x96, 0x69, 0x21, 0xe6, 0x30, 0xfb, 0xdf, 0x5a, 0x30, 0xa5, 0xfa, 0xca, 0xdb,
|
|
|
9342
|
+- 0x3a, 0x05, 0x56, 0xee, 0x6d, 0x80, 0x86, 0xfc, 0xc0, 0x88, 0xdd, 0x1e, 0x63, 0xd7, 0xaf, 0x64,
|
|
|
9343
|
+- 0x32, 0x28, 0x5d, 0xc3, 0x98, 0x50, 0x56, 0x45, 0x11, 0xd6, 0xa8, 0xd9, 0xbf, 0x6e, 0xc1, 0x99,
|
|
|
9344
|
+- 0xd4, 0x17, 0xdd, 0x76, 0xa3, 0x18, 0xbd, 0xd3, 0xf5, 0x55, 0xf3, 0x83, 0x7d, 0x15, 0xad, 0xcd,
|
|
|
9345
|
+- 0xbe, 0x49, 0x2d, 0x65, 0x59, 0xa2, 0x7d, 0xd1, 0x4d, 0x18, 0x72, 0x63, 0xb2, 0x2b, 0x3f, 0xe6,
|
|
|
9346
|
+- 0xa9, 0x9e, 0x1f, 0xc3, 0x7b, 0x95, 0xcc, 0xc8, 0x2a, 0xad, 0x89, 0x39, 0x01, 0xfb, 0x47, 0x8a,
|
|
|
9347
|
+- 0x50, 0xe6, 0xcb, 0x76, 0xcd, 0x69, 0x9f, 0xc2, 0x5c, 0xac, 0x42, 0x89, 0x51, 0xe7, 0x1d, 0x7f,
|
|
|
9348
|
+- 0x3a, 0xbb, 0xe3, 0xa2, 0x3b, 0xf3, 0x54, 0x4e, 0xe3, 0xac, 0xa0, 0xba, 0x1a, 0x68, 0x11, 0x66,
|
|
|
9349
|
+- 0x24, 0x90, 0x03, 0xb0, 0xe9, 0xfa, 0x4e, 0xb8, 0x4f, 0xcb, 0x66, 0x8b, 0x8c, 0xe0, 0xf3, 0xbd,
|
|
|
9350
|
+- 0x09, 0x2e, 0x2a, 0x7c, 0x4e, 0x56, 0xf5, 0x35, 0x01, 0x60, 0x8d, 0xe8, 0xdc, 0x2b, 0x50, 0x56,
|
|
|
9351
|
+- 0xc8, 0xc7, 0xe1, 0x71, 0xe6, 0x3e, 0x07, 0x53, 0xa9, 0xb6, 0xfa, 0x55, 0x1f, 0xd7, 0x59, 0xa4,
|
|
|
9352
|
+- 0xaf, 0xb1, 0x53, 0x40, 0xf4, 0x7a, 0xd9, 0xdf, 0x13, 0xa7, 0xe8, 0xfb, 0x70, 0xd6, 0xcb, 0x38,
|
|
|
9353
|
+- 0x9c, 0xc4, 0x54, 0x0d, 0x7e, 0x98, 0x3d, 0x21, 0x3e, 0xfb, 0x6c, 0x16, 0x14, 0x67, 0xb6, 0x41,
|
|
|
9354
|
+- 0xaf, 0xfd, 0xa0, 0x4d, 0xd7, 0xbc, 0xe3, 0xb1, 0xfe, 0x0a, 0xe9, 0xfb, 0x8e, 0x28, 0xc3, 0x0a,
|
|
|
9355
|
+- 0x4a, 0x8f, 0xb0, 0xb3, 0xaa, 0xf3, 0xb7, 0xc8, 0x7e, 0x9d, 0x78, 0xa4, 0x11, 0x07, 0xe1, 0x87,
|
|
|
9356
|
+- 0xda, 0xfd, 0x8b, 0x7c, 0xf4, 0xf9, 0x09, 0x38, 0x26, 0x08, 0x14, 0x6f, 0x91, 0x7d, 0x3e, 0x15,
|
|
|
9357
|
+- 0xfa, 0xd7, 0x15, 0x7b, 0x7e, 0xdd, 0x2f, 0x58, 0x30, 0xa1, 0xbe, 0xee, 0x14, 0xb6, 0xfa, 0xa2,
|
|
|
9358
|
+- 0xb9, 0xd5, 0x2f, 0xf6, 0x5c, 0xe0, 0x39, 0x9b, 0xfc, 0xeb, 0x05, 0xb8, 0xa0, 0x70, 0x28, 0xbb,
|
|
|
9359
|
+- 0xcf, 0xff, 0x88, 0x55, 0x75, 0x0d, 0xca, 0xbe, 0xd2, 0x1e, 0x58, 0xa6, 0xd8, 0x9e, 0xe8, 0x0e,
|
|
|
9360
|
+- 0x12, 0x1c, 0xca, 0xb5, 0xf9, 0x89, 0x88, 0x3f, 0xae, 0xab, 0xd5, 0x84, 0x0a, 0x6d, 0x11, 0x8a,
|
|
|
9361
|
+- 0x1d, 0xb7, 0x29, 0xee, 0x8c, 0x4f, 0xc9, 0xd1, 0xbe, 0xbb, 0x5a, 0x3d, 0x3a, 0xa8, 0x3c, 0x99,
|
|
|
9362
|
+- 0xa7, 0xd2, 0xa5, 0x97, 0x55, 0x34, 0x7f, 0x77, 0xb5, 0x8a, 0x69, 0x65, 0xb4, 0x00, 0x53, 0x52,
|
|
|
9363
|
+- 0x6b, 0x7d, 0x8f, 0x72, 0x50, 0x81, 0x2f, 0xae, 0x16, 0xa5, 0x1b, 0xc3, 0x26, 0x18, 0xa7, 0xf1,
|
|
|
9364
|
+- 0x51, 0x15, 0xa6, 0x77, 0x3a, 0x9b, 0xc4, 0x23, 0x31, 0xff, 0xe0, 0x5b, 0x84, 0x6b, 0x8e, 0xca,
|
|
|
9365
|
+- 0x89, 0x68, 0x79, 0x2b, 0x05, 0xc7, 0x5d, 0x35, 0xec, 0x3f, 0x63, 0x47, 0xbc, 0x18, 0xbd, 0x5a,
|
|
|
9366
|
+- 0x18, 0xd0, 0x85, 0x45, 0xa9, 0x7f, 0x98, 0xcb, 0x79, 0x90, 0x55, 0x71, 0x8b, 0xec, 0x6f, 0x04,
|
|
|
9367
|
+- 0x94, 0xd9, 0xce, 0x5e, 0x15, 0xc6, 0x9a, 0x2f, 0xf5, 0x5c, 0xf3, 0xbf, 0x54, 0x80, 0x73, 0x6a,
|
|
|
9368
|
+- 0x04, 0x0c, 0xbe, 0xee, 0xcf, 0xfb, 0x18, 0xbc, 0x00, 0x63, 0x4d, 0xb2, 0xe5, 0x74, 0xbc, 0x58,
|
|
|
9369
|
+- 0xa9, 0x31, 0x87, 0xb8, 0x2a, 0xbb, 0x9a, 0x14, 0x63, 0x1d, 0xe7, 0x18, 0xc3, 0xf6, 0xd3, 0x63,
|
|
|
9370
|
+- 0xec, 0x6e, 0x8d, 0x1d, 0xba, 0xc6, 0xd5, 0xae, 0xb1, 0x72, 0x77, 0xcd, 0x53, 0x30, 0xe4, 0xee,
|
|
|
9371
|
+- 0x52, 0x5e, 0xab, 0x60, 0xb2, 0x50, 0xab, 0xb4, 0x10, 0x73, 0x18, 0xfa, 0x04, 0x8c, 0x34, 0x82,
|
|
|
9372
|
+- 0xdd, 0x5d, 0xc7, 0x6f, 0xb2, 0x2b, 0xaf, 0xbc, 0x38, 0x46, 0xd9, 0xb1, 0x25, 0x5e, 0x84, 0x25,
|
|
|
9373
|
+- 0x0c, 0x3d, 0x01, 0x25, 0x27, 0x6c, 0x45, 0xb3, 0x25, 0x86, 0x33, 0x4a, 0x5b, 0x5a, 0x08, 0x5b,
|
|
|
9374
|
+- 0x11, 0x66, 0xa5, 0x54, 0xaa, 0xba, 0x1f, 0x84, 0x3b, 0xae, 0xdf, 0xaa, 0xba, 0xa1, 0xd8, 0x12,
|
|
|
9375
|
+- 0xea, 0x2e, 0x7c, 0x4b, 0x41, 0xb0, 0x86, 0x85, 0x56, 0x60, 0xa8, 0x1d, 0x84, 0x71, 0x34, 0x3b,
|
|
|
9376
|
+- 0xcc, 0x86, 0xfb, 0xc9, 0x9c, 0x83, 0x88, 0x7f, 0x6d, 0x2d, 0x08, 0xe3, 0xe4, 0x03, 0xe8, 0xbf,
|
|
|
9377
|
+- 0x08, 0xf3, 0xea, 0xe8, 0xdb, 0xa0, 0x48, 0xfc, 0xbd, 0xd9, 0x11, 0x46, 0x65, 0x2e, 0x8b, 0xca,
|
|
|
9378
|
+- 0xb2, 0xbf, 0x77, 0xcf, 0x09, 0x93, 0x53, 0x7a, 0xd9, 0xdf, 0xc3, 0xb4, 0x0e, 0xfa, 0x02, 0x94,
|
|
|
9379
|
+- 0xe5, 0x16, 0x8f, 0x84, 0x9a, 0x23, 0x73, 0x89, 0xc9, 0x83, 0x01, 0x93, 0xf7, 0x3a, 0x6e, 0x48,
|
|
|
9380
|
+- 0x76, 0x89, 0x1f, 0x47, 0xc9, 0x99, 0x26, 0xa1, 0x11, 0x4e, 0xa8, 0xa1, 0x2f, 0x48, 0xdd, 0xda,
|
|
|
9381
|
+- 0x5a, 0xd0, 0xf1, 0xe3, 0x68, 0xb6, 0xcc, 0xba, 0x97, 0xf9, 0xea, 0x71, 0x2f, 0xc1, 0x4b, 0x2b,
|
|
|
9382
|
+- 0xdf, 0x78, 0x65, 0x6c, 0x90, 0x42, 0x18, 0x26, 0x3c, 0x77, 0x8f, 0xf8, 0x24, 0x8a, 0x6a, 0x61,
|
|
|
9383
|
+- 0xb0, 0x49, 0x66, 0x81, 0xf5, 0xfc, 0x42, 0xf6, 0x63, 0x40, 0xb0, 0x49, 0x16, 0x67, 0x0e, 0x0f,
|
|
|
9384
|
+- 0x2a, 0x13, 0xb7, 0xf5, 0x3a, 0xd8, 0x24, 0x81, 0xee, 0xc2, 0x24, 0x95, 0x6b, 0xdc, 0x84, 0xe8,
|
|
|
9385
|
+- 0x58, 0x3f, 0xa2, 0x4c, 0xfa, 0xc0, 0x46, 0x25, 0x9c, 0x22, 0x82, 0xde, 0x80, 0xb2, 0xe7, 0x6e,
|
|
|
9386
|
+- 0x91, 0xc6, 0x7e, 0xc3, 0x23, 0xb3, 0xe3, 0x8c, 0x62, 0xe6, 0xb6, 0xba, 0x2d, 0x91, 0xb8, 0x5c,
|
|
|
9387
|
+- 0xa4, 0xfe, 0xe2, 0xa4, 0x3a, 0xba, 0x07, 0xe7, 0x63, 0x12, 0xee, 0xba, 0xbe, 0x43, 0xb7, 0x83,
|
|
|
9388
|
+- 0x90, 0x17, 0xd8, 0x93, 0xca, 0x04, 0x5b, 0x6f, 0x97, 0xc4, 0xd0, 0x9d, 0xdf, 0xc8, 0xc4, 0xc2,
|
|
|
9389
|
+- 0x39, 0xb5, 0xd1, 0x1d, 0x98, 0x62, 0x3b, 0xa1, 0xd6, 0xf1, 0xbc, 0x5a, 0xe0, 0xb9, 0x8d, 0xfd,
|
|
|
9390
|
+- 0xd9, 0x49, 0x46, 0xf0, 0x13, 0xf2, 0x5e, 0x58, 0x35, 0xc1, 0x47, 0x07, 0x15, 0x48, 0xfe, 0xe1,
|
|
|
9391
|
+- 0x74, 0x6d, 0xb4, 0xc9, 0x74, 0xe8, 0x9d, 0xd0, 0x8d, 0xf7, 0xe9, 0xfa, 0x25, 0x0f, 0xe2, 0xd9,
|
|
|
9392
|
+- 0xa9, 0x9e, 0xa2, 0xb0, 0x8e, 0xaa, 0x14, 0xed, 0x7a, 0x21, 0x4e, 0x13, 0xa4, 0x5b, 0x3b, 0x8a,
|
|
|
9393
|
+- 0x9b, 0xae, 0x3f, 0x3b, 0xcd, 0x4e, 0x0c, 0xb5, 0x33, 0xea, 0xb4, 0x10, 0x73, 0x18, 0xd3, 0x9f,
|
|
|
9394
|
+- 0xd3, 0x1f, 0x77, 0xe8, 0x09, 0x3a, 0xc3, 0x10, 0x13, 0xfd, 0xb9, 0x04, 0xe0, 0x04, 0x87, 0x32,
|
|
|
9395
|
+- 0x35, 0x71, 0xbc, 0x3f, 0x8b, 0x18, 0xaa, 0xda, 0x2e, 0x1b, 0x1b, 0x5f, 0xc0, 0xb4, 0x1c, 0xdd,
|
|
|
9396
|
+- 0x86, 0x11, 0xe2, 0xef, 0xad, 0x84, 0xc1, 0xee, 0xec, 0x99, 0xfc, 0x3d, 0xbb, 0xcc, 0x51, 0xf8,
|
|
|
9397
|
+- 0x81, 0x9e, 0x08, 0x78, 0xa2, 0x18, 0x4b, 0x12, 0xe8, 0x01, 0xcc, 0x66, 0xcc, 0x08, 0x9f, 0x80,
|
|
|
9398
|
+- 0xb3, 0x6c, 0x02, 0x3e, 0x2b, 0xea, 0xce, 0x6e, 0xe4, 0xe0, 0x1d, 0xf5, 0x80, 0xe1, 0x5c, 0xea,
|
|
|
9399
|
+- 0xe8, 0x8b, 0x30, 0xc1, 0x37, 0x14, 0x7f, 0x7c, 0x8b, 0x66, 0xcf, 0xb1, 0xaf, 0xb9, 0x9c, 0xbf,
|
|
|
9400
|
+- 0x39, 0x39, 0xe2, 0xe2, 0x39, 0xd1, 0xa1, 0x09, 0xbd, 0x34, 0xc2, 0x26, 0x35, 0x7b, 0x13, 0x26,
|
|
|
9401
|
+- 0xd5, 0xb9, 0xc5, 0x96, 0x0e, 0xaa, 0xc0, 0x10, 0xe3, 0x76, 0x84, 0x7e, 0xab, 0x4c, 0x67, 0x8a,
|
|
|
9402
|
+- 0x71, 0x42, 0x98, 0x97, 0xb3, 0x99, 0x72, 0xdf, 0x27, 0x8b, 0xfb, 0x31, 0xe1, 0x52, 0x75, 0x51,
|
|
|
9403
|
+- 0x9b, 0x29, 0x09, 0xc0, 0x09, 0x8e, 0xfd, 0x7f, 0x39, 0xd7, 0x98, 0x1c, 0x8e, 0x03, 0x5c, 0x07,
|
|
|
9404
|
+- 0xcf, 0xc1, 0xe8, 0x76, 0x10, 0xc5, 0x14, 0x9b, 0xb5, 0x31, 0x94, 0xf0, 0x89, 0x37, 0x45, 0x39,
|
|
|
9405
|
+- 0x56, 0x18, 0xe8, 0x35, 0x98, 0x68, 0xe8, 0x0d, 0x88, 0xbb, 0x4c, 0x0d, 0x81, 0xd1, 0x3a, 0x36,
|
|
|
9406
|
+- 0x71, 0xd1, 0xab, 0x30, 0xca, 0x9e, 0xce, 0x1b, 0x81, 0x27, 0x98, 0x2c, 0x79, 0x21, 0x8f, 0xd6,
|
|
|
9407
|
+- 0x44, 0xf9, 0x91, 0xf6, 0x1b, 0x2b, 0x6c, 0x74, 0x05, 0x86, 0x69, 0x17, 0x56, 0x6b, 0xe2, 0x16,
|
|
|
9408
|
+- 0x51, 0xaa, 0x9a, 0x9b, 0xac, 0x14, 0x0b, 0xa8, 0xfd, 0xd7, 0x0b, 0xda, 0x28, 0x53, 0x89, 0x94,
|
|
|
9409
|
+- 0xa0, 0x1a, 0x8c, 0xdc, 0x77, 0xdc, 0xd8, 0xf5, 0x5b, 0x82, 0x5d, 0x78, 0xa6, 0xe7, 0x95, 0xc2,
|
|
|
9410
|
+- 0x2a, 0xbd, 0xc5, 0x2b, 0xf0, 0x4b, 0x4f, 0xfc, 0xc1, 0x92, 0x0c, 0xa5, 0x18, 0x76, 0x7c, 0x9f,
|
|
|
9411
|
+- 0x52, 0x2c, 0x0c, 0x4a, 0x11, 0xf3, 0x0a, 0x9c, 0xa2, 0xf8, 0x83, 0x25, 0x19, 0xf4, 0x0e, 0x80,
|
|
|
9412
|
+- 0x5c, 0x96, 0xa4, 0x29, 0x9e, 0xac, 0x9f, 0xeb, 0x4f, 0x74, 0x43, 0xd5, 0x59, 0x9c, 0xa4, 0x57,
|
|
|
9413
|
+- 0x6a, 0xf2, 0x1f, 0x6b, 0xf4, 0xec, 0x98, 0xb1, 0x55, 0xdd, 0x9d, 0x41, 0xdf, 0x49, 0x4f, 0x02,
|
|
|
9414
|
+- 0x27, 0x8c, 0x49, 0x73, 0x21, 0x16, 0x83, 0xf3, 0xc9, 0xc1, 0x64, 0x8a, 0x0d, 0x77, 0x97, 0xe8,
|
|
|
9415
|
+- 0xa7, 0x86, 0x20, 0x82, 0x13, 0x7a, 0xf6, 0xaf, 0x14, 0x61, 0x36, 0xaf, 0xbb, 0x74, 0xd1, 0x91,
|
|
|
9416
|
+- 0x07, 0x6e, 0xbc, 0x44, 0xb9, 0x21, 0xcb, 0x5c, 0x74, 0xcb, 0xa2, 0x1c, 0x2b, 0x0c, 0x3a, 0xfb,
|
|
|
9417
|
+- 0x91, 0xdb, 0x92, 0x22, 0xe1, 0x50, 0x32, 0xfb, 0x75, 0x56, 0x8a, 0x05, 0x94, 0xe2, 0x85, 0xc4,
|
|
|
9418
|
+- 0x89, 0x84, 0x4d, 0x84, 0xb6, 0x4a, 0x30, 0x2b, 0xc5, 0x02, 0xaa, 0xeb, 0x9b, 0x4a, 0x7d, 0xf4,
|
|
|
9419
|
+- 0x4d, 0xc6, 0x10, 0x0d, 0x9d, 0xec, 0x10, 0xa1, 0x2f, 0x01, 0x6c, 0xb9, 0xbe, 0x1b, 0x6d, 0x33,
|
|
|
9420
|
+- 0xea, 0xc3, 0xc7, 0xa6, 0xae, 0x78, 0xa9, 0x15, 0x45, 0x05, 0x6b, 0x14, 0xd1, 0xcb, 0x30, 0xa6,
|
|
|
9421
|
+- 0x36, 0xe0, 0x6a, 0x95, 0x3d, 0x10, 0x69, 0x0f, 0xee, 0xc9, 0x69, 0x54, 0xc5, 0x3a, 0x9e, 0xfd,
|
|
|
9422
|
+- 0x6e, 0x7a, 0xbd, 0x88, 0x1d, 0xa0, 0x8d, 0xaf, 0x35, 0xe8, 0xf8, 0x16, 0x7a, 0x8f, 0xaf, 0xfd,
|
|
|
9423
|
+- 0x9b, 0x45, 0x98, 0x32, 0x1a, 0xeb, 0x44, 0x03, 0x9c, 0x59, 0x37, 0xe8, 0x3d, 0xe7, 0xc4, 0x44,
|
|
|
9424
|
+- 0xec, 0x3f, 0xbb, 0xff, 0x56, 0xd1, 0xef, 0x42, 0xba, 0x03, 0x78, 0x7d, 0xf4, 0x25, 0x28, 0x7b,
|
|
|
9425
|
+- 0x4e, 0xc4, 0x74, 0x57, 0x44, 0xec, 0xbb, 0x41, 0x88, 0x25, 0x72, 0x84, 0x13, 0xc5, 0xda, 0x55,
|
|
|
9426
|
+- 0xc3, 0x69, 0x27, 0x24, 0xe9, 0x85, 0x4c, 0x79, 0x1f, 0x69, 0x74, 0xa3, 0x3a, 0x41, 0x19, 0xa4,
|
|
|
9427
|
+- 0x7d, 0xcc, 0x61, 0xe8, 0x55, 0x18, 0x0f, 0x09, 0x5b, 0x15, 0x4b, 0x94, 0x95, 0x63, 0xcb, 0x6c,
|
|
|
9428
|
+- 0x28, 0xe1, 0xf9, 0xb0, 0x06, 0xc3, 0x06, 0x66, 0xc2, 0xca, 0x0f, 0xf7, 0x60, 0xe5, 0x9f, 0x81,
|
|
|
9429
|
+- 0x11, 0xf6, 0x43, 0xad, 0x00, 0x35, 0x1b, 0xab, 0xbc, 0x18, 0x4b, 0x78, 0x7a, 0xc1, 0x8c, 0x0e,
|
|
|
9430
|
+- 0xb8, 0x60, 0x3e, 0x09, 0x93, 0x55, 0x87, 0xec, 0x06, 0xfe, 0xb2, 0xdf, 0x6c, 0x07, 0xae, 0x1f,
|
|
|
9431
|
+- 0xa3, 0x59, 0x28, 0xb1, 0xdb, 0x81, 0xef, 0xed, 0x12, 0xa5, 0x80, 0x4b, 0x94, 0x31, 0xb7, 0x5b,
|
|
|
9432
|
+- 0x70, 0xae, 0x1a, 0xdc, 0xf7, 0xef, 0x3b, 0x61, 0x73, 0xa1, 0xb6, 0xaa, 0xc9, 0xb9, 0xeb, 0x52,
|
|
|
9433
|
+- 0xce, 0xe2, 0x46, 0x2c, 0x99, 0x67, 0xaa, 0x56, 0x93, 0xdf, 0xb5, 0x2b, 0xae, 0x47, 0x72, 0xb4,
|
|
|
9434
|
+- 0x11, 0x7f, 0xb3, 0x60, 0xb4, 0x94, 0xe0, 0xab, 0x07, 0x23, 0x2b, 0xf7, 0xc1, 0xe8, 0x4d, 0x18,
|
|
|
9435
|
+- 0xdd, 0x72, 0x89, 0xd7, 0xc4, 0x64, 0x4b, 0x2c, 0xb1, 0xa7, 0xf3, 0xdf, 0xe5, 0x57, 0x28, 0xa6,
|
|
|
9436
|
+- 0xd4, 0x3e, 0x71, 0x29, 0x6d, 0x45, 0x54, 0xc6, 0x8a, 0x0c, 0xda, 0x81, 0x69, 0x29, 0x06, 0x48,
|
|
|
9437
|
+- 0xa8, 0x58, 0x70, 0xcf, 0xf4, 0x92, 0x2d, 0x4c, 0xe2, 0x67, 0x0f, 0x0f, 0x2a, 0xd3, 0x38, 0x45,
|
|
|
9438
|
+- 0x06, 0x77, 0x11, 0xa6, 0x62, 0xd9, 0x2e, 0x3d, 0x5a, 0x4b, 0x6c, 0xf8, 0x99, 0x58, 0xc6, 0x24,
|
|
|
9439
|
+- 0x4c, 0x56, 0x6a, 0xff, 0x84, 0x05, 0x8f, 0x75, 0x8d, 0x8c, 0x90, 0xb4, 0x4f, 0x78, 0x16, 0xd2,
|
|
|
9440
|
+- 0x92, 0x6f, 0xa1, 0xbf, 0xe4, 0x6b, 0xff, 0x03, 0x0b, 0xce, 0x2e, 0xef, 0xb6, 0xe3, 0xfd, 0xaa,
|
|
|
9441
|
+- 0x6b, 0xbe, 0xee, 0xbc, 0x02, 0xc3, 0xbb, 0xa4, 0xe9, 0x76, 0x76, 0xc5, 0xcc, 0x55, 0xe4, 0xf1,
|
|
|
9442
|
+- 0xb3, 0xc6, 0x4a, 0x8f, 0x0e, 0x2a, 0x13, 0xf5, 0x38, 0x08, 0x9d, 0x16, 0xe1, 0x05, 0x58, 0xa0,
|
|
|
9443
|
+- 0xb3, 0x43, 0xdc, 0x7d, 0x9f, 0xdc, 0x76, 0x77, 0x5d, 0x69, 0x67, 0xd1, 0x53, 0x77, 0x36, 0x2f,
|
|
|
9444
|
+- 0x07, 0x74, 0xfe, 0xcd, 0x8e, 0xe3, 0xc7, 0x6e, 0xbc, 0x2f, 0x1e, 0x66, 0x24, 0x11, 0x9c, 0xd0,
|
|
|
9445
|
+- 0xb3, 0xbf, 0x69, 0xc1, 0x94, 0x5c, 0xf7, 0x0b, 0xcd, 0x66, 0x48, 0xa2, 0x08, 0xcd, 0x41, 0xc1,
|
|
|
9446
|
+- 0x6d, 0x8b, 0x5e, 0x82, 0xe8, 0x65, 0x61, 0xb5, 0x86, 0x0b, 0x6e, 0x1b, 0xd5, 0xa0, 0xcc, 0xcd,
|
|
|
9447
|
+- 0x35, 0x92, 0xc5, 0x35, 0x90, 0xd1, 0x07, 0xeb, 0xc1, 0x86, 0xac, 0x89, 0x13, 0x22, 0x92, 0x83,
|
|
|
9448
|
+- 0x63, 0x67, 0x66, 0xd1, 0x7c, 0xf5, 0xba, 0x29, 0xca, 0xb1, 0xc2, 0x40, 0x57, 0x61, 0xd4, 0x0f,
|
|
|
9449
|
+- 0x9a, 0xdc, 0x7a, 0x86, 0xdf, 0x7e, 0x6c, 0xc9, 0xae, 0x8b, 0x32, 0xac, 0xa0, 0xf6, 0x0f, 0x5b,
|
|
|
9450
|
+- 0x30, 0x2e, 0xbf, 0x6c, 0x40, 0x66, 0x92, 0x6e, 0xad, 0x84, 0x91, 0x4c, 0xb6, 0x16, 0x65, 0x06,
|
|
|
9451
|
+- 0x19, 0xc4, 0xe0, 0x01, 0x8b, 0xc7, 0xe1, 0x01, 0xed, 0x1f, 0x2f, 0xc0, 0xa4, 0xec, 0x4e, 0xbd,
|
|
|
9452
|
+- 0xb3, 0x19, 0x91, 0x18, 0x6d, 0x40, 0xd9, 0xe1, 0x43, 0x4e, 0xe4, 0x8a, 0x7d, 0x2a, 0x5b, 0xf8,
|
|
|
9453
|
+- 0x30, 0xe6, 0x27, 0xb9, 0x96, 0x17, 0x64, 0x6d, 0x9c, 0x10, 0x42, 0x1e, 0xcc, 0xf8, 0x41, 0xcc,
|
|
|
9454
|
+- 0x8e, 0x68, 0x05, 0xef, 0xf5, 0x04, 0x92, 0xa6, 0x7e, 0x41, 0x50, 0x9f, 0x59, 0x4f, 0x53, 0xc1,
|
|
|
9455
|
+- 0xdd, 0x84, 0xd1, 0xb2, 0x54, 0x78, 0x14, 0xf3, 0xc5, 0x0d, 0x7d, 0x16, 0xb2, 0xf5, 0x1d, 0xf6,
|
|
|
9456
|
+- 0xaf, 0x59, 0x50, 0x96, 0x68, 0xa7, 0xf1, 0xda, 0xb5, 0x06, 0x23, 0x11, 0x9b, 0x04, 0x39, 0x34,
|
|
|
9457
|
+- 0x76, 0xaf, 0x8e, 0xf3, 0xf9, 0x4a, 0x6e, 0x1e, 0xfe, 0x3f, 0xc2, 0x92, 0x06, 0xd3, 0x77, 0xab,
|
|
|
9458
|
+- 0xee, 0x7f, 0x44, 0xf4, 0xdd, 0xaa, 0x3f, 0x39, 0x37, 0xcc, 0x7f, 0x65, 0x7d, 0xd6, 0xc4, 0x5a,
|
|
|
9459
|
+- 0xca, 0x20, 0xb5, 0x43, 0xb2, 0xe5, 0x3e, 0x48, 0x33, 0x48, 0x35, 0x56, 0x8a, 0x05, 0x14, 0xbd,
|
|
|
9460
|
+- 0x03, 0xe3, 0x0d, 0xa9, 0xe8, 0x4c, 0x8e, 0x81, 0x2b, 0x3d, 0x95, 0xee, 0xea, 0x7d, 0x86, 0x5b,
|
|
|
9461
|
+- 0xd6, 0x2e, 0x69, 0xf5, 0xb1, 0x41, 0xcd, 0x7c, 0x6e, 0x2f, 0xf6, 0x7b, 0x6e, 0x4f, 0xe8, 0xe6,
|
|
|
9462
|
+- 0x3f, 0x3e, 0xff, 0xa4, 0x05, 0xc3, 0x5c, 0x5d, 0x36, 0x98, 0x7e, 0x51, 0x7b, 0xae, 0x4a, 0xc6,
|
|
|
9463
|
+- 0xee, 0x1e, 0x2d, 0x14, 0xcf, 0x4f, 0x68, 0x0d, 0xca, 0xec, 0x07, 0x53, 0x1b, 0x14, 0xf3, 0x4d,
|
|
|
9464
|
+- 0x8a, 0x79, 0xab, 0x7a, 0x07, 0xef, 0xc9, 0x6a, 0x38, 0xa1, 0x60, 0xff, 0x68, 0x91, 0x1e, 0x55,
|
|
|
9465
|
+- 0x09, 0xaa, 0x71, 0x83, 0x5b, 0x8f, 0xee, 0x06, 0x2f, 0x3c, 0xaa, 0x1b, 0xbc, 0x05, 0x53, 0x0d,
|
|
|
9466
|
+- 0xed, 0x71, 0x2b, 0x99, 0xc9, 0xab, 0x3d, 0x17, 0x89, 0xf6, 0x0e, 0xc6, 0x55, 0x46, 0x4b, 0x26,
|
|
|
9467
|
+- 0x11, 0x9c, 0xa6, 0x8a, 0xbe, 0x13, 0xc6, 0xf9, 0x3c, 0x8b, 0x56, 0xb8, 0xc5, 0xc2, 0x27, 0xf2,
|
|
|
9468
|
+- 0xd7, 0x8b, 0xde, 0x04, 0x5b, 0x89, 0x75, 0xad, 0x3a, 0x36, 0x88, 0xd9, 0xbf, 0x32, 0x0a, 0x43,
|
|
|
9469
|
+- 0xcb, 0x7b, 0xc4, 0x8f, 0x4f, 0xe1, 0x40, 0x6a, 0xc0, 0xa4, 0xeb, 0xef, 0x05, 0xde, 0x1e, 0x69,
|
|
|
9470
|
+- 0x72, 0xf8, 0x71, 0x2e, 0xd7, 0xf3, 0x82, 0xf4, 0xe4, 0xaa, 0x41, 0x02, 0xa7, 0x48, 0x3e, 0x0a,
|
|
|
9471
|
+- 0x09, 0xf3, 0x06, 0x0c, 0xf3, 0xb9, 0x17, 0xe2, 0x65, 0xa6, 0x32, 0x98, 0x0d, 0xa2, 0xd8, 0x05,
|
|
|
9472
|
+- 0x89, 0xf4, 0xcb, 0xb5, 0xcf, 0xa2, 0x3a, 0x7a, 0x17, 0x26, 0xb7, 0xdc, 0x30, 0x8a, 0xa9, 0x68,
|
|
|
9473
|
+- 0x18, 0xc5, 0xce, 0x6e, 0xfb, 0x21, 0x24, 0x4a, 0x35, 0x0e, 0x2b, 0x06, 0x25, 0x9c, 0xa2, 0x8c,
|
|
|
9474
|
+- 0x5a, 0x30, 0x41, 0x85, 0x9c, 0xa4, 0xa9, 0x91, 0x63, 0x37, 0xa5, 0x54, 0x46, 0xb7, 0x75, 0x42,
|
|
|
9475
|
+- 0xd8, 0xa4, 0x4b, 0x0f, 0x93, 0x06, 0x13, 0x8a, 0x46, 0x19, 0x47, 0xa1, 0x0e, 0x13, 0x2e, 0x0d,
|
|
|
9476
|
+- 0x71, 0x18, 0x3d, 0x93, 0x98, 0xd9, 0x4a, 0xd9, 0x3c, 0x93, 0x34, 0xe3, 0x94, 0x2f, 0x43, 0x99,
|
|
|
9477
|
+- 0xd0, 0x21, 0xa4, 0x84, 0x85, 0x62, 0xfc, 0xda, 0x60, 0x7d, 0x5d, 0x73, 0x1b, 0x61, 0x60, 0xca,
|
|
|
9478
|
+- 0xf2, 0xcb, 0x92, 0x12, 0x4e, 0x88, 0xa2, 0x25, 0x18, 0x8e, 0x48, 0xe8, 0x92, 0x48, 0xa8, 0xc8,
|
|
|
9479
|
+- 0x7b, 0x4c, 0x23, 0x43, 0xe3, 0xb6, 0xe7, 0xfc, 0x37, 0x16, 0x55, 0xe9, 0xf2, 0x72, 0x98, 0x34,
|
|
|
9480
|
+- 0xc4, 0xb4, 0xe2, 0xda, 0xf2, 0x5a, 0x60, 0xa5, 0x58, 0x40, 0xd1, 0x1b, 0x30, 0x12, 0x12, 0x8f,
|
|
|
9481
|
+- 0x29, 0x8b, 0x26, 0x06, 0x5f, 0xe4, 0x5c, 0xf7, 0xc4, 0xeb, 0x61, 0x49, 0x00, 0xdd, 0x02, 0x14,
|
|
|
9482
|
+- 0x12, 0xca, 0x43, 0xb8, 0x7e, 0x4b, 0x19, 0x73, 0x08, 0x5d, 0xf7, 0xe3, 0xa2, 0xfd, 0x33, 0x38,
|
|
|
9483
|
+- 0xc1, 0x90, 0x56, 0xa9, 0x38, 0xa3, 0x1a, 0xba, 0x01, 0x33, 0xaa, 0x74, 0xd5, 0x8f, 0x62, 0xc7,
|
|
|
9484
|
+- 0x6f, 0x10, 0xa6, 0xe6, 0x2e, 0x27, 0x5c, 0x11, 0x4e, 0x23, 0xe0, 0xee, 0x3a, 0xf6, 0xcf, 0x51,
|
|
|
9485
|
+- 0x76, 0x86, 0x8e, 0xd6, 0x29, 0xf0, 0x02, 0xaf, 0x9b, 0xbc, 0xc0, 0x85, 0xdc, 0x99, 0xcb, 0xe1,
|
|
|
9486
|
+- 0x03, 0x0e, 0x2d, 0x18, 0xd3, 0x66, 0x36, 0x59, 0xb3, 0x56, 0x8f, 0x35, 0xdb, 0x81, 0x69, 0xba,
|
|
|
9487
|
+- 0xd2, 0xef, 0x6c, 0x46, 0x24, 0xdc, 0x23, 0x4d, 0xb6, 0x30, 0x0b, 0x0f, 0xb7, 0x30, 0xd5, 0x2b,
|
|
|
9488
|
+- 0xf3, 0xed, 0x14, 0x41, 0xdc, 0xd5, 0x04, 0x7a, 0x45, 0x6a, 0x4e, 0x8a, 0x86, 0x91, 0x16, 0xd7,
|
|
|
9489
|
+- 0x8a, 0x1c, 0x1d, 0x54, 0xa6, 0xb5, 0x0f, 0xd1, 0x35, 0x25, 0xf6, 0x97, 0xe5, 0x37, 0xaa, 0xd7,
|
|
|
9490
|
+- 0xfc, 0x86, 0x5a, 0x2c, 0xa9, 0xd7, 0x7c, 0xb5, 0x1c, 0x70, 0x82, 0x43, 0xf7, 0x28, 0x15, 0x41,
|
|
|
9491
|
+- 0xd2, 0xaf, 0xf9, 0x54, 0x40, 0xc1, 0x0c, 0x62, 0xbf, 0x08, 0xb0, 0xfc, 0x80, 0x34, 0xf8, 0x52,
|
|
|
9492
|
+- 0xd7, 0x1f, 0x20, 0xad, 0xfc, 0x07, 0x48, 0xfb, 0xdf, 0x5b, 0x30, 0xb9, 0xb2, 0x64, 0x88, 0x89,
|
|
|
9493
|
+- 0xf3, 0x00, 0x5c, 0x36, 0x7a, 0xeb, 0xad, 0x75, 0xa9, 0x5b, 0xe7, 0xea, 0x51, 0x55, 0x8a, 0x35,
|
|
|
9494
|
+- 0x0c, 0x74, 0x01, 0x8a, 0x5e, 0xc7, 0x17, 0x22, 0xcb, 0xc8, 0xe1, 0x41, 0xa5, 0x78, 0xbb, 0xe3,
|
|
|
9495
|
+- 0x63, 0x5a, 0xa6, 0x59, 0x08, 0x16, 0x07, 0xb6, 0x10, 0xec, 0xeb, 0x5e, 0x85, 0x2a, 0x30, 0x74,
|
|
|
9496
|
+- 0xff, 0xbe, 0xdb, 0xe4, 0x46, 0xec, 0x42, 0xef, 0xff, 0xd6, 0x5b, 0xab, 0xd5, 0x08, 0xf3, 0x72,
|
|
|
9497
|
+- 0xfb, 0xab, 0x45, 0x98, 0x5b, 0xf1, 0xc8, 0x83, 0x0f, 0x68, 0xc8, 0x3f, 0xa8, 0x7d, 0xe3, 0xf1,
|
|
|
9498
|
+- 0xf8, 0xc5, 0xe3, 0xda, 0xb0, 0xf6, 0x1f, 0x8f, 0x2d, 0x18, 0xe1, 0x8f, 0xd9, 0xd2, 0xac, 0xff,
|
|
|
9499
|
+- 0xb5, 0xac, 0xd6, 0xf3, 0x07, 0x64, 0x9e, 0x3f, 0x8a, 0x0b, 0x73, 0x7e, 0x75, 0xd3, 0x8a, 0x52,
|
|
|
9500
|
+- 0x2c, 0x89, 0xcf, 0x7d, 0x06, 0xc6, 0x75, 0xcc, 0x63, 0x59, 0x93, 0xff, 0xa5, 0x22, 0x4c, 0xd3,
|
|
|
9501
|
+- 0x1e, 0x3c, 0xd2, 0x89, 0xb8, 0xdb, 0x3d, 0x11, 0x27, 0x6d, 0x51, 0xdc, 0x7f, 0x36, 0xde, 0x49,
|
|
|
9502
|
+- 0xcf, 0xc6, 0x0b, 0x79, 0xb3, 0x71, 0xda, 0x73, 0xf0, 0xbd, 0x16, 0x9c, 0x59, 0xf1, 0x82, 0xc6,
|
|
|
9503
|
+- 0x4e, 0xca, 0xea, 0xf7, 0x65, 0x18, 0xa3, 0xe7, 0x78, 0x64, 0x78, 0x11, 0x19, 0x7e, 0x65, 0x02,
|
|
|
9504
|
+- 0x84, 0x75, 0x3c, 0xad, 0xda, 0xdd, 0xbb, 0xab, 0xd5, 0x2c, 0x77, 0x34, 0x01, 0xc2, 0x3a, 0x9e,
|
|
|
9505
|
+- 0xfd, 0x0d, 0x0b, 0x2e, 0xde, 0x58, 0x5a, 0x4e, 0x96, 0x62, 0x97, 0x47, 0x1c, 0x95, 0x02, 0x9b,
|
|
|
9506
|
+- 0x5a, 0x57, 0x12, 0x29, 0xb0, 0xca, 0x7a, 0x21, 0xa0, 0x1f, 0x15, 0x6f, 0xcf, 0x9f, 0xb5, 0xe0,
|
|
|
9507
|
+- 0xcc, 0x0d, 0x37, 0xa6, 0xd7, 0x72, 0xda, 0x37, 0x8b, 0xde, 0xcb, 0x91, 0x1b, 0x07, 0xe1, 0x7e,
|
|
|
9508
|
+- 0xda, 0x37, 0x0b, 0x2b, 0x08, 0xd6, 0xb0, 0x78, 0xcb, 0x7b, 0x2e, 0x33, 0xa3, 0x2a, 0x98, 0xaa,
|
|
|
9509
|
+- 0x28, 0x2c, 0xca, 0xb1, 0xc2, 0xa0, 0x1f, 0xd6, 0x74, 0x43, 0x26, 0x4a, 0xec, 0x8b, 0x13, 0x56,
|
|
|
9510
|
+- 0x7d, 0x58, 0x55, 0x02, 0x70, 0x82, 0x63, 0xff, 0x84, 0x05, 0xe7, 0x6e, 0x78, 0x9d, 0x28, 0x26,
|
|
|
9511
|
+- 0xe1, 0x56, 0x64, 0x74, 0xf6, 0x45, 0x28, 0x13, 0x29, 0xae, 0x8b, 0xbe, 0x2a, 0x06, 0x53, 0xc9,
|
|
|
9512
|
+- 0xf1, 0xdc, 0x31, 0x4c, 0xe1, 0x0d, 0xe0, 0x39, 0x70, 0x3c, 0xd7, 0xb1, 0x5f, 0x2c, 0xc0, 0xc4,
|
|
|
9513
|
+- 0xcd, 0x8d, 0x8d, 0xda, 0x0d, 0x12, 0x8b, 0x5b, 0xac, 0xbf, 0xaa, 0x19, 0x6b, 0x1a, 0xb3, 0x5e,
|
|
|
9514
|
+- 0x42, 0x51, 0x27, 0x76, 0xbd, 0x79, 0xee, 0x89, 0x3c, 0xbf, 0xea, 0xc7, 0x77, 0xc2, 0x7a, 0x1c,
|
|
|
9515
|
+- 0xba, 0x7e, 0x2b, 0x53, 0xc7, 0x26, 0xef, 0xda, 0x62, 0xde, 0x5d, 0x8b, 0x5e, 0x84, 0x61, 0xe6,
|
|
|
9516
|
+- 0x0a, 0x2d, 0xc5, 0x93, 0xc7, 0x95, 0x4c, 0xc1, 0x4a, 0x8f, 0x0e, 0x2a, 0xe5, 0xbb, 0x78, 0x95,
|
|
|
9517
|
+- 0xff, 0xc1, 0x02, 0x15, 0xdd, 0x85, 0xb1, 0xed, 0x38, 0x6e, 0xdf, 0x24, 0x4e, 0x93, 0x84, 0xf2,
|
|
|
9518
|
+- 0x74, 0xb8, 0x94, 0x75, 0x3a, 0xd0, 0x41, 0xe0, 0x68, 0xc9, 0x86, 0x4a, 0xca, 0x22, 0xac, 0xd3,
|
|
|
9519
|
+- 0xb1, 0xeb, 0x00, 0x09, 0xec, 0x84, 0xf4, 0x0b, 0xf6, 0x1f, 0x58, 0x30, 0xc2, 0xbd, 0xd2, 0x42,
|
|
|
9520
|
+- 0xf4, 0x59, 0x28, 0x91, 0x07, 0xa4, 0x21, 0x38, 0xc7, 0xcc, 0x0e, 0x27, 0x8c, 0x07, 0xd7, 0x96,
|
|
|
9521
|
+- 0xd3, 0xff, 0x98, 0xd5, 0x42, 0x37, 0x61, 0x84, 0xf6, 0xf6, 0x86, 0x72, 0xd1, 0x7b, 0x32, 0xef,
|
|
|
9522
|
+- 0x8b, 0xd5, 0xb4, 0x73, 0x5e, 0x45, 0x14, 0x61, 0x59, 0x9d, 0x69, 0x7e, 0x1b, 0xed, 0x3a, 0x3d,
|
|
|
9523
|
+- 0xc0, 0xe2, 0x5e, 0xf7, 0xec, 0xc6, 0x52, 0x8d, 0x23, 0x09, 0x6a, 0x5c, 0xf3, 0x2b, 0x0b, 0x71,
|
|
|
9524
|
+- 0x42, 0xc4, 0xde, 0x80, 0x32, 0x9d, 0xd4, 0x05, 0xcf, 0x75, 0x7a, 0x2b, 0x9d, 0x9f, 0x85, 0xb2,
|
|
|
9525
|
+- 0x54, 0x00, 0x47, 0xc2, 0xb1, 0x89, 0x51, 0x95, 0xfa, 0xe1, 0x08, 0x27, 0x70, 0x7b, 0x0b, 0xce,
|
|
|
9526
|
+- 0xb2, 0x97, 0x7f, 0x27, 0xde, 0x36, 0xf6, 0x58, 0xff, 0xc5, 0xfc, 0x9c, 0x10, 0xc4, 0xf8, 0xcc,
|
|
|
9527
|
+- 0xcc, 0x6a, 0xbe, 0x03, 0xe3, 0x92, 0x62, 0x22, 0x94, 0xd9, 0x7f, 0x54, 0x82, 0xc7, 0x57, 0xeb,
|
|
|
9528
|
+- 0xf9, 0x0e, 0x8b, 0xaf, 0xc2, 0x38, 0x67, 0xd3, 0xe8, 0xd2, 0x76, 0x3c, 0xd1, 0xae, 0x7a, 0x17,
|
|
|
9529
|
+- 0xdb, 0xd0, 0x60, 0xd8, 0xc0, 0x44, 0x17, 0xa1, 0xe8, 0xbe, 0xe7, 0xa7, 0xcd, 0x70, 0x57, 0xdf,
|
|
|
9530
|
+- 0x5c, 0xc7, 0xb4, 0x9c, 0x82, 0x29, 0xc7, 0xc7, 0x8f, 0x52, 0x05, 0x56, 0x5c, 0xdf, 0xeb, 0x30,
|
|
|
9531
|
+- 0xe9, 0x46, 0x8d, 0xc8, 0x5d, 0xf5, 0xe9, 0x39, 0x93, 0x38, 0xbb, 0x26, 0x4a, 0x02, 0xda, 0x69,
|
|
|
9532
|
+- 0x05, 0xc5, 0x29, 0x6c, 0xed, 0x5c, 0x1f, 0x1a, 0x98, 0x6b, 0xec, 0xeb, 0xe9, 0x43, 0x19, 0xe2,
|
|
|
9533
|
+- 0x36, 0xfb, 0xba, 0x88, 0x19, 0xb5, 0x09, 0x86, 0x98, 0x7f, 0x70, 0x84, 0x25, 0x8c, 0x4a, 0x60,
|
|
|
9534
|
+- 0x8d, 0x6d, 0xa7, 0xbd, 0xd0, 0x89, 0xb7, 0xab, 0x6e, 0xd4, 0x08, 0xf6, 0x48, 0xb8, 0xcf, 0x84,
|
|
|
9535
|
+- 0xe7, 0xd1, 0x44, 0x02, 0x53, 0x80, 0xa5, 0x9b, 0x0b, 0x35, 0x8a, 0x89, 0xbb, 0xeb, 0x98, 0x5c,
|
|
|
9536
|
+- 0x21, 0x9c, 0x04, 0x57, 0xb8, 0x00, 0x53, 0xb2, 0x99, 0x3a, 0x89, 0xd8, 0x1d, 0x31, 0xc6, 0x3a,
|
|
|
9537
|
+- 0xa6, 0x4c, 0x6d, 0x45, 0xb1, 0xea, 0x56, 0x1a, 0x1f, 0xbd, 0x02, 0x13, 0xae, 0xef, 0xc6, 0xae,
|
|
|
9538
|
+- 0x13, 0x07, 0x21, 0xbb, 0x61, 0xb9, 0x9c, 0xcc, 0x2c, 0xd9, 0x56, 0x75, 0x00, 0x36, 0xf1, 0xec,
|
|
|
9539
|
+- 0x3f, 0x2c, 0xc1, 0x0c, 0x9b, 0xb6, 0x6f, 0xad, 0xb0, 0x8f, 0xcc, 0x0a, 0xbb, 0xdb, 0xbd, 0xc2,
|
|
|
9540
|
+- 0x4e, 0x82, 0xdd, 0xfd, 0x30, 0x97, 0xd9, 0xbb, 0x50, 0x56, 0xb6, 0xc0, 0xd2, 0x19, 0xc0, 0xca,
|
|
|
9541
|
+- 0x71, 0x06, 0xe8, 0xcf, 0x7d, 0xc8, 0x67, 0xdc, 0x62, 0xe6, 0x33, 0xee, 0xdf, 0xb6, 0x20, 0x31,
|
|
|
9542
|
+- 0x89, 0x44, 0x37, 0xa1, 0xdc, 0x0e, 0x98, 0xd9, 0x41, 0x28, 0x6d, 0x79, 0x1e, 0xcf, 0xbc, 0xa8,
|
|
|
9543
|
+- 0xf8, 0xa5, 0xc8, 0xc7, 0xaf, 0x26, 0x6b, 0xe0, 0xa4, 0x32, 0x5a, 0x84, 0x91, 0x76, 0x48, 0xea,
|
|
|
9544
|
+- 0x31, 0x73, 0x81, 0xed, 0x4b, 0x87, 0xaf, 0x11, 0x8e, 0x8f, 0x65, 0x45, 0xfb, 0x97, 0x2c, 0x00,
|
|
|
9545
|
+- 0xfe, 0x52, 0xea, 0xf8, 0x2d, 0x72, 0x0a, 0xda, 0xdf, 0x2a, 0x94, 0xa2, 0x36, 0x69, 0xf4, 0x32,
|
|
|
9546
|
+- 0x08, 0x49, 0xfa, 0x53, 0x6f, 0x93, 0x46, 0x32, 0xe0, 0xf4, 0x1f, 0x66, 0xb5, 0xed, 0xef, 0x03,
|
|
|
9547
|
+- 0x98, 0x4c, 0xd0, 0x56, 0x63, 0xb2, 0x8b, 0x9e, 0x37, 0x5c, 0xe2, 0x2e, 0xa4, 0x5c, 0xe2, 0xca,
|
|
|
9548
|
+- 0x0c, 0x5b, 0x53, 0x34, 0xbe, 0x0b, 0xc5, 0x5d, 0xe7, 0x81, 0xd0, 0x24, 0x3d, 0xdb, 0xbb, 0x1b,
|
|
|
9549
|
+- 0x94, 0xfe, 0xfc, 0x9a, 0xf3, 0x80, 0xcb, 0x4c, 0xcf, 0xca, 0x05, 0xb2, 0xe6, 0x3c, 0x38, 0xe2,
|
|
|
9550
|
+- 0x66, 0x1f, 0xec, 0x90, 0xba, 0xed, 0x46, 0xf1, 0x57, 0xfe, 0x53, 0xf2, 0x9f, 0x2d, 0x3b, 0xda,
|
|
|
9551
|
+- 0x08, 0x6b, 0xcb, 0xf5, 0xc5, 0xbb, 0xe1, 0x40, 0x6d, 0xb9, 0x7e, 0xba, 0x2d, 0xd7, 0x1f, 0xa0,
|
|
|
9552
|
+- 0x2d, 0xd7, 0x47, 0xef, 0xc3, 0x88, 0x78, 0xa3, 0x67, 0xb6, 0xde, 0xa6, 0x96, 0x2a, 0xaf, 0x3d,
|
|
|
9553
|
+- 0xf1, 0xc4, 0xcf, 0xdb, 0xbc, 0x26, 0x65, 0x42, 0x51, 0xda, 0xb7, 0x5d, 0xd9, 0x20, 0xfa, 0x1b,
|
|
|
9554
|
+- 0x16, 0x4c, 0x8a, 0xdf, 0x98, 0xbc, 0xd7, 0x21, 0x51, 0x2c, 0x78, 0xcf, 0x4f, 0x0f, 0xde, 0x07,
|
|
|
9555
|
+- 0x51, 0x91, 0x77, 0xe5, 0xd3, 0xf2, 0x98, 0x35, 0x81, 0x7d, 0x7b, 0x94, 0xea, 0x05, 0xfa, 0x47,
|
|
|
9556
|
+- 0x16, 0x9c, 0xdd, 0x75, 0x1e, 0xf0, 0x16, 0x79, 0x19, 0x76, 0x62, 0x37, 0x10, 0xb6, 0xeb, 0x9f,
|
|
|
9557
|
+- 0x1d, 0x6c, 0xfa, 0xbb, 0xaa, 0xf3, 0x4e, 0x4a, 0x33, 0xd7, 0xb3, 0x59, 0x28, 0x7d, 0xbb, 0x9a,
|
|
|
9558
|
+- 0xd9, 0xaf, 0xb9, 0x2d, 0x18, 0x95, 0xeb, 0x2d, 0x43, 0xf2, 0xae, 0xea, 0x8c, 0xf5, 0xb1, 0x4d,
|
|
|
9559
|
+- 0x24, 0x74, 0xbf, 0x34, 0xda, 0x8e, 0x58, 0x6b, 0x8f, 0xb4, 0x9d, 0x77, 0x61, 0x5c, 0x5f, 0x63,
|
|
|
9560
|
+- 0x8f, 0xb4, 0xad, 0xf7, 0xe0, 0x4c, 0xc6, 0x5a, 0x7a, 0xa4, 0x4d, 0xde, 0x87, 0x0b, 0xb9, 0xeb,
|
|
|
9561
|
+- 0xe3, 0x51, 0x36, 0x6c, 0xff, 0xa2, 0xa5, 0x9f, 0x83, 0xa7, 0xa0, 0x82, 0x5f, 0x32, 0x55, 0xf0,
|
|
|
9562
|
+- 0x97, 0x7a, 0xef, 0x9c, 0x1c, 0x3d, 0xfc, 0x3b, 0x7a, 0xa7, 0xe9, 0xa9, 0x8e, 0xde, 0x80, 0x61,
|
|
|
9563
|
+- 0x8f, 0x96, 0x48, 0xe3, 0x10, 0xbb, 0xff, 0x8e, 0x4c, 0x78, 0x29, 0x56, 0x1e, 0x61, 0x41, 0xc1,
|
|
|
9564
|
+- 0xfe, 0x55, 0x0b, 0x4a, 0xa7, 0x30, 0x12, 0xd8, 0x1c, 0x89, 0xe7, 0x73, 0x49, 0x8b, 0x90, 0x66,
|
|
|
9565
|
+- 0xf3, 0xd8, 0xb9, 0xbf, 0xfc, 0x20, 0x26, 0x7e, 0xc4, 0x44, 0xc5, 0xcc, 0x81, 0xf9, 0x2e, 0x38,
|
|
|
9566
|
+- 0x73, 0x3b, 0x70, 0x9a, 0x8b, 0x8e, 0xe7, 0xf8, 0x0d, 0x12, 0xae, 0xfa, 0xad, 0xbe, 0x56, 0x4a,
|
|
|
9567
|
+- 0xba, 0x4d, 0x51, 0xa1, 0x9f, 0x4d, 0x91, 0xbd, 0x0d, 0x48, 0x6f, 0x40, 0xd8, 0x71, 0x62, 0x18,
|
|
|
9568
|
+- 0x71, 0x79, 0x53, 0x62, 0xf8, 0x9f, 0xce, 0xe6, 0xee, 0xba, 0x7a, 0xa6, 0x59, 0x28, 0xf2, 0x02,
|
|
|
9569
|
+- 0x2c, 0x09, 0xd9, 0xaf, 0x42, 0xa6, 0xef, 0x56, 0x7f, 0xb5, 0x81, 0xfd, 0x32, 0xcc, 0xb0, 0x9a,
|
|
|
9570
|
+- 0xc7, 0x13, 0x69, 0xed, 0x1f, 0xb0, 0x60, 0x6a, 0x3d, 0x15, 0x9b, 0xe2, 0x0a, 0x7b, 0xeb, 0xcb,
|
|
|
9571
|
+- 0xd0, 0xfb, 0xd6, 0x59, 0x29, 0x16, 0xd0, 0x13, 0xd7, 0x2f, 0xfd, 0x99, 0x05, 0x89, 0xab, 0xe4,
|
|
|
9572
|
+- 0x29, 0x30, 0x55, 0x4b, 0x06, 0x53, 0x95, 0xa9, 0xf7, 0x50, 0xdd, 0xc9, 0xe3, 0xa9, 0xd0, 0x2d,
|
|
|
9573
|
+- 0x15, 0x17, 0xa0, 0x87, 0xca, 0x23, 0x21, 0xc3, 0xbd, 0xc8, 0x27, 0xcd, 0xe0, 0x01, 0x32, 0x52,
|
|
|
9574
|
+- 0x00, 0x33, 0x13, 0x52, 0xb8, 0x1f, 0x11, 0x33, 0x21, 0xd5, 0x9f, 0x9c, 0xdd, 0x57, 0xd3, 0xba,
|
|
|
9575
|
+- 0xcc, 0x4e, 0xa5, 0x6f, 0x67, 0x66, 0xdf, 0x8e, 0xe7, 0xbe, 0x4f, 0x54, 0x70, 0x93, 0x8a, 0x30,
|
|
|
9576
|
+- 0xe3, 0x16, 0xa5, 0x47, 0x07, 0x95, 0x09, 0xf5, 0x8f, 0x47, 0xc0, 0x4a, 0xaa, 0xd8, 0x37, 0x61,
|
|
|
9577
|
+- 0x2a, 0x35, 0x60, 0xe8, 0x65, 0x18, 0x6a, 0x6f, 0x3b, 0x11, 0x49, 0x99, 0x46, 0x0e, 0xd5, 0x68,
|
|
|
9578
|
+- 0xe1, 0xd1, 0x41, 0x65, 0x52, 0x55, 0x60, 0x25, 0x98, 0x63, 0xdb, 0xff, 0xd3, 0x82, 0xd2, 0x7a,
|
|
|
9579
|
+- 0xd0, 0x3c, 0x8d, 0xc5, 0xf4, 0xba, 0xb1, 0x98, 0x9e, 0xc8, 0x8b, 0x1f, 0x98, 0xbb, 0x8e, 0x56,
|
|
|
9580
|
+- 0x52, 0xeb, 0xe8, 0x52, 0x2e, 0x85, 0xde, 0x4b, 0x68, 0x17, 0xc6, 0x58, 0x54, 0x42, 0x61, 0xaa,
|
|
|
9581
|
+- 0xf9, 0xa2, 0xc1, 0xdf, 0x57, 0x52, 0xfc, 0xfd, 0x94, 0x86, 0xaa, 0x71, 0xf9, 0xcf, 0xc0, 0x88,
|
|
|
9582
|
+- 0x30, 0x17, 0x4c, 0x1b, 0xb8, 0x0b, 0x5c, 0x2c, 0xe1, 0xf6, 0x4f, 0x16, 0xc1, 0x88, 0x82, 0x88,
|
|
|
9583
|
+- 0x7e, 0xcd, 0x82, 0xf9, 0x90, 0x7b, 0x0c, 0x36, 0xab, 0x9d, 0xd0, 0xf5, 0x5b, 0xf5, 0xc6, 0x36,
|
|
|
9584
|
+- 0x69, 0x76, 0x3c, 0xd7, 0x6f, 0xad, 0xb6, 0xfc, 0x40, 0x15, 0x2f, 0x3f, 0x20, 0x8d, 0x0e, 0xd3,
|
|
|
9585
|
+- 0xf9, 0xf7, 0x09, 0xb9, 0xa8, 0xcc, 0x71, 0xae, 0x1f, 0x1e, 0x54, 0xe6, 0xf1, 0xb1, 0x68, 0xe3,
|
|
|
9586
|
+- 0x63, 0xf6, 0x05, 0x7d, 0xc3, 0x82, 0x6b, 0x3c, 0x38, 0xe0, 0xe0, 0xfd, 0xef, 0x21, 0x0d, 0xd5,
|
|
|
9587
|
+- 0x24, 0xa9, 0x84, 0xc8, 0x06, 0x09, 0x77, 0x17, 0x5f, 0x11, 0x03, 0x7a, 0xad, 0x76, 0xbc, 0xb6,
|
|
|
9588
|
+- 0xf0, 0x71, 0x3b, 0x67, 0xff, 0xcb, 0x22, 0x4c, 0x08, 0x67, 0x75, 0x11, 0x05, 0xe5, 0x65, 0x63,
|
|
|
9589
|
+- 0x49, 0x3c, 0x99, 0x5a, 0x12, 0x33, 0x06, 0xf2, 0xc9, 0x04, 0x40, 0x89, 0x60, 0xc6, 0x73, 0xa2,
|
|
|
9590
|
+- 0xf8, 0x26, 0x71, 0xc2, 0x78, 0x93, 0x38, 0xdc, 0x4c, 0xa5, 0x78, 0x6c, 0x93, 0x1a, 0xa5, 0x7e,
|
|
|
9591
|
+- 0xb9, 0x9d, 0x26, 0x86, 0xbb, 0xe9, 0xa3, 0x3d, 0x40, 0xcc, 0xd6, 0x26, 0x74, 0xfc, 0x88, 0x7f,
|
|
|
9592
|
+- 0x8b, 0x2b, 0xde, 0x03, 0x8e, 0xd7, 0xea, 0x9c, 0x68, 0x15, 0xdd, 0xee, 0xa2, 0x86, 0x33, 0x5a,
|
|
|
9593
|
+- 0xd0, 0x6c, 0xa8, 0x86, 0x06, 0xb5, 0xa1, 0x1a, 0xee, 0xe3, 0x45, 0xe2, 0xc3, 0x74, 0x57, 0xbc,
|
|
|
9594
|
+- 0x81, 0xb7, 0xa1, 0xac, 0x6c, 0xdd, 0xc4, 0xa1, 0xd3, 0x3b, 0x6c, 0x47, 0x9a, 0x02, 0x57, 0x91,
|
|
|
9595
|
+- 0x24, 0x76, 0x96, 0x09, 0x39, 0xfb, 0x1f, 0x17, 0x8c, 0x06, 0xf9, 0x24, 0xae, 0xc3, 0xa8, 0x13,
|
|
|
9596
|
+- 0x45, 0x6e, 0xcb, 0x27, 0x4d, 0xb1, 0x63, 0x3f, 0x9e, 0xb7, 0x63, 0x8d, 0x66, 0x98, 0xbd, 0xe1,
|
|
|
9597
|
+- 0x82, 0xa8, 0x89, 0x15, 0x0d, 0x74, 0x93, 0x1b, 0x03, 0xed, 0x49, 0x7e, 0x7e, 0x30, 0x6a, 0x20,
|
|
|
9598
|
+- 0xcd, 0x85, 0xf6, 0x08, 0x16, 0xf5, 0xd1, 0x17, 0xb9, 0xb5, 0xd6, 0x2d, 0x3f, 0xb8, 0xef, 0xdf,
|
|
|
9599
|
+- 0x08, 0x02, 0xe9, 0x61, 0x36, 0x18, 0xc1, 0x19, 0x69, 0xa3, 0xa5, 0xaa, 0x63, 0x93, 0xda, 0x60,
|
|
|
9600
|
+- 0x31, 0x79, 0xbe, 0x1b, 0xce, 0x50, 0xd2, 0xa6, 0x9f, 0x48, 0x84, 0x08, 0x4c, 0x89, 0x48, 0x08,
|
|
|
9601
|
+- 0xb2, 0x4c, 0x8c, 0x5d, 0x26, 0xab, 0x6e, 0xd6, 0x4e, 0x14, 0x7a, 0xb7, 0x4c, 0x12, 0x38, 0x4d,
|
|
|
9602
|
+- 0xd3, 0xfe, 0x19, 0x0b, 0x98, 0x85, 0xfb, 0x29, 0xb0, 0x0c, 0x9f, 0x33, 0x59, 0x86, 0xd9, 0xbc,
|
|
|
9603
|
+- 0x41, 0xce, 0xe1, 0x16, 0x5e, 0xe2, 0x2b, 0xab, 0x16, 0x06, 0x0f, 0xf6, 0xc5, 0x4b, 0xf9, 0x00,
|
|
|
9604
|
+- 0x5c, 0xea, 0xff, 0xb1, 0xf8, 0x21, 0xa6, 0x9c, 0xce, 0xd1, 0xf7, 0xc0, 0x68, 0xc3, 0x69, 0x3b,
|
|
|
9605
|
+- 0x0d, 0x1e, 0xb2, 0x37, 0x57, 0x63, 0x63, 0x54, 0x9a, 0x5f, 0x12, 0x35, 0xb8, 0x06, 0x42, 0x46,
|
|
|
9606
|
+- 0xd4, 0x18, 0x95, 0xc5, 0x7d, 0xb5, 0x0e, 0xaa, 0xc9, 0xb9, 0x1d, 0x98, 0x30, 0x88, 0x3d, 0x52,
|
|
|
9607
|
+- 0x71, 0xf5, 0x7b, 0xf8, 0x15, 0xab, 0x22, 0xc0, 0xec, 0xc2, 0x8c, 0xaf, 0xfd, 0xa7, 0x17, 0x8a,
|
|
|
9608
|
+- 0x14, 0x41, 0x3e, 0xde, 0xef, 0x12, 0x65, 0xb7, 0x8f, 0x66, 0xc1, 0x9f, 0x22, 0x83, 0xbb, 0x29,
|
|
|
9609
|
+- 0xdb, 0x3f, 0x65, 0xc1, 0x63, 0x3a, 0xa2, 0x16, 0x0f, 0xa0, 0x9f, 0x0e, 0xb8, 0x0a, 0xa3, 0x41,
|
|
|
9610
|
+- 0x9b, 0x84, 0x4e, 0x1c, 0x84, 0xe2, 0xd6, 0xb8, 0x2a, 0x07, 0xfd, 0x8e, 0x28, 0x3f, 0x12, 0xb1,
|
|
|
9611
|
+- 0x13, 0x25, 0x75, 0x59, 0x8e, 0x55, 0x4d, 0x64, 0xc3, 0x30, 0x1b, 0x8c, 0x48, 0xc4, 0x6a, 0x60,
|
|
|
9612
|
+- 0x67, 0x00, 0x7b, 0x0e, 0x8d, 0xb0, 0x80, 0xd8, 0x7f, 0x64, 0xf1, 0x85, 0xa5, 0x77, 0x1d, 0xbd,
|
|
|
9613
|
+- 0x07, 0xd3, 0xbb, 0x4e, 0xdc, 0xd8, 0x5e, 0x7e, 0xd0, 0x0e, 0xb9, 0xea, 0x5b, 0x8e, 0xd3, 0xb3,
|
|
|
9614
|
+- 0xfd, 0xc6, 0x49, 0xfb, 0xc8, 0xc4, 0x00, 0x6d, 0x2d, 0x45, 0x0c, 0x77, 0x91, 0x47, 0x9b, 0x30,
|
|
|
9615
|
+- 0xc6, 0xca, 0x98, 0xa5, 0x73, 0xd4, 0x8b, 0x35, 0xc8, 0x6b, 0x4d, 0xbd, 0x28, 0xaf, 0x25, 0x74,
|
|
|
9616
|
+- 0xb0, 0x4e, 0xd4, 0xfe, 0x4a, 0x91, 0xef, 0x76, 0xc6, 0x6d, 0x3f, 0x03, 0x23, 0xed, 0xa0, 0xb9,
|
|
|
9617
|
+- 0xb4, 0x5a, 0xc5, 0x62, 0x16, 0xd4, 0x35, 0x52, 0xe3, 0xc5, 0x58, 0xc2, 0xd1, 0x6b, 0x00, 0xe4,
|
|
|
9618
|
+- 0x41, 0x4c, 0x42, 0xdf, 0xf1, 0x94, 0x41, 0x88, 0x32, 0x81, 0xac, 0x06, 0xeb, 0x41, 0x7c, 0x37,
|
|
|
9619
|
+- 0x22, 0xdf, 0xb5, 0xac, 0x50, 0xb0, 0x86, 0x8e, 0xae, 0x03, 0xb4, 0xc3, 0x60, 0xcf, 0x6d, 0x32,
|
|
|
9620
|
+- 0xd7, 0xb9, 0xa2, 0x69, 0x2e, 0x51, 0x53, 0x10, 0xac, 0x61, 0xa1, 0xd7, 0x60, 0xa2, 0xe3, 0x47,
|
|
|
9621
|
+- 0x9c, 0x43, 0x71, 0x36, 0x45, 0xe4, 0xc1, 0xd1, 0xc4, 0x72, 0xe1, 0xae, 0x0e, 0xc4, 0x26, 0x2e,
|
|
|
9622
|
+- 0x5a, 0x80, 0xe1, 0xd8, 0x61, 0xf6, 0x0e, 0x43, 0xf9, 0x76, 0x8b, 0x1b, 0x14, 0x43, 0x0f, 0x18,
|
|
|
9623
|
+- 0x4b, 0x2b, 0x60, 0x51, 0x11, 0xbd, 0x2d, 0xfd, 0x10, 0xf8, 0x59, 0x2f, 0x0c, 0x86, 0x07, 0xbb,
|
|
|
9624
|
+- 0x17, 0x34, 0x2f, 0x04, 0x61, 0x88, 0x6c, 0xd0, 0xb2, 0xbf, 0x51, 0x06, 0x48, 0xd8, 0x71, 0xf4,
|
|
|
9625
|
+- 0x7e, 0xd7, 0x79, 0xf4, 0x5c, 0x6f, 0x06, 0xfe, 0xe4, 0x0e, 0x23, 0xf4, 0xfd, 0x16, 0x8c, 0x39,
|
|
|
9626
|
+- 0x9e, 0x17, 0x34, 0x9c, 0x98, 0x8d, 0x72, 0xa1, 0xf7, 0x79, 0x28, 0xda, 0x5f, 0x48, 0x6a, 0xf0,
|
|
|
9627
|
+- 0x2e, 0xbc, 0x28, 0x17, 0x9e, 0x06, 0xe9, 0xdb, 0x0b, 0xbd, 0x61, 0xf4, 0x29, 0x29, 0xa5, 0xf1,
|
|
|
9628
|
+- 0xe5, 0x31, 0x97, 0x96, 0xd2, 0xca, 0xec, 0xe8, 0xd7, 0x04, 0x34, 0x74, 0xd7, 0x08, 0x2a, 0x57,
|
|
|
9629
|
+- 0xca, 0x8f, 0xaf, 0x60, 0x70, 0xa5, 0xfd, 0xe2, 0xc9, 0xa1, 0x9a, 0xee, 0x38, 0x35, 0x94, 0x1f,
|
|
|
9630
|
+- 0x84, 0x44, 0x13, 0x7f, 0xfa, 0x38, 0x4d, 0xbd, 0x0b, 0x53, 0x4d, 0xf3, 0x6e, 0x17, 0xab, 0xe9,
|
|
|
9631
|
+- 0xe9, 0x3c, 0xba, 0x29, 0x56, 0x20, 0xb9, 0xcd, 0x53, 0x00, 0x9c, 0x26, 0x8c, 0x6a, 0xdc, 0x85,
|
|
|
9632
|
+- 0x6d, 0xd5, 0xdf, 0x0a, 0x84, 0xe1, 0xb9, 0x9d, 0x3b, 0x97, 0xfb, 0x51, 0x4c, 0x76, 0x29, 0x66,
|
|
|
9633
|
+- 0x72, 0x69, 0xaf, 0x8b, 0xba, 0x58, 0x51, 0x41, 0x6f, 0xc0, 0x30, 0xf3, 0x81, 0x8d, 0x66, 0x47,
|
|
|
9634
|
+- 0xf3, 0x15, 0x85, 0x66, 0xf8, 0x86, 0x64, 0x53, 0xb1, 0xbf, 0x11, 0x16, 0x14, 0xd0, 0x4d, 0x19,
|
|
|
9635
|
+- 0xe3, 0x25, 0x5a, 0xf5, 0xef, 0x46, 0x84, 0xc5, 0x78, 0x29, 0x2f, 0x7e, 0x3c, 0x09, 0xdf, 0xc2,
|
|
|
9636
|
+- 0xcb, 0x33, 0x43, 0xc3, 0x1b, 0x35, 0x29, 0x73, 0x24, 0xfe, 0xcb, 0x88, 0xf3, 0xb3, 0x90, 0xdf,
|
|
|
9637
|
+- 0x3d, 0x33, 0x2a, 0x7d, 0x32, 0x9c, 0xf7, 0x4c, 0x12, 0x38, 0x4d, 0x93, 0x32, 0x9a, 0x7c, 0xe7,
|
|
|
9638
|
+- 0x0a, 0xd3, 0xf5, 0x7e, 0xfb, 0x9f, 0xcb, 0xd7, 0xec, 0x92, 0xe1, 0x25, 0x58, 0xd4, 0x3f, 0xd5,
|
|
|
9639
|
+- 0x5b, 0x7f, 0xce, 0x87, 0xe9, 0xf4, 0x16, 0x7d, 0xa4, 0x5c, 0xc6, 0x1f, 0x94, 0x60, 0xd2, 0x5c,
|
|
|
9640
|
+- 0x52, 0xe8, 0x1a, 0x94, 0x05, 0x11, 0x15, 0x70, 0x54, 0xed, 0x92, 0x35, 0x09, 0xc0, 0x09, 0x0e,
|
|
|
9641
|
+- 0x8b, 0x33, 0xcb, 0xaa, 0x6b, 0x26, 0x87, 0x49, 0x9c, 0x59, 0x05, 0xc1, 0x1a, 0x16, 0x95, 0x97,
|
|
|
9642
|
+- 0x36, 0x83, 0x20, 0x56, 0x97, 0x8a, 0x5a, 0x77, 0x8b, 0xac, 0x14, 0x0b, 0x28, 0xbd, 0x4c, 0x76,
|
|
|
9643
|
+- 0x48, 0xe8, 0x13, 0xcf, 0x8c, 0x63, 0xa6, 0x2e, 0x93, 0x5b, 0x3a, 0x10, 0x9b, 0xb8, 0xf4, 0x96,
|
|
|
9644
|
+- 0x0c, 0x22, 0xb6, 0x90, 0x85, 0x54, 0x96, 0x98, 0x70, 0xd6, 0xb9, 0x37, 0xb9, 0x84, 0xa3, 0x2f,
|
|
|
9645
|
+- 0xc0, 0x63, 0xca, 0xf9, 0x1b, 0x73, 0x25, 0xb4, 0x6c, 0x71, 0xd8, 0x50, 0xa2, 0x3c, 0xb6, 0x94,
|
|
|
9646
|
+- 0x8d, 0x86, 0xf3, 0xea, 0xa3, 0xd7, 0x61, 0x52, 0x70, 0xee, 0x92, 0xe2, 0x88, 0x69, 0x17, 0x71,
|
|
|
9647
|
+- 0xcb, 0x80, 0xe2, 0x14, 0xb6, 0x8c, 0xc4, 0xc6, 0x98, 0x67, 0x49, 0x61, 0xb4, 0x3b, 0x12, 0x9b,
|
|
|
9648
|
+- 0x0e, 0xc7, 0x5d, 0x35, 0xd0, 0x02, 0x4c, 0x71, 0xd6, 0xca, 0xf5, 0x5b, 0x7c, 0x4e, 0x84, 0x67,
|
|
|
9649
|
+- 0x89, 0xda, 0x52, 0x77, 0x4c, 0x30, 0x4e, 0xe3, 0xa3, 0x57, 0x61, 0xdc, 0x09, 0x1b, 0xdb, 0x6e,
|
|
|
9650
|
+- 0x4c, 0x1a, 0x71, 0x27, 0xe4, 0x2e, 0x27, 0x9a, 0x61, 0xc9, 0x82, 0x06, 0xc3, 0x06, 0xa6, 0xfd,
|
|
|
9651
|
+- 0x3e, 0x9c, 0xc9, 0x70, 0x4a, 0xa3, 0x0b, 0xc7, 0x69, 0xbb, 0xf2, 0x9b, 0x52, 0xc6, 0x98, 0x0b,
|
|
|
9652
|
+- 0xb5, 0x55, 0xf9, 0x35, 0x1a, 0x16, 0x5d, 0x9d, 0xcc, 0x79, 0x4d, 0x4b, 0x30, 0xa1, 0x56, 0xe7,
|
|
|
9653
|
+- 0x8a, 0x04, 0xe0, 0x04, 0xc7, 0xfe, 0x5f, 0x05, 0x98, 0xca, 0x50, 0xac, 0xb3, 0x24, 0x07, 0x29,
|
|
|
9654
|
+- 0xd9, 0x23, 0xc9, 0x69, 0x60, 0x06, 0xf6, 0x2b, 0x1c, 0x23, 0xb0, 0x5f, 0xb1, 0x5f, 0x60, 0xbf,
|
|
|
9655
|
+- 0xd2, 0x07, 0x09, 0xec, 0x67, 0x8e, 0xd8, 0xd0, 0x40, 0x23, 0x96, 0x11, 0x0c, 0x70, 0xf8, 0x98,
|
|
|
9656
|
+- 0xc1, 0x00, 0x8d, 0x41, 0x1f, 0x19, 0x60, 0xd0, 0x7f, 0xb4, 0x00, 0xd3, 0x69, 0x03, 0xb8, 0x53,
|
|
|
9657
|
+- 0x50, 0xc7, 0xbe, 0x61, 0xa8, 0x63, 0xb3, 0x53, 0x86, 0xa4, 0xcd, 0xf2, 0xf2, 0x54, 0xb3, 0x38,
|
|
|
9658
|
+- 0xa5, 0x9a, 0xfd, 0xe4, 0x40, 0xd4, 0x7a, 0xab, 0x69, 0xff, 0x6e, 0x01, 0xce, 0xa5, 0xab, 0x2c,
|
|
|
9659
|
+- 0x79, 0x8e, 0xbb, 0x7b, 0x0a, 0x63, 0x73, 0xc7, 0x18, 0x9b, 0xe7, 0x07, 0xf9, 0x1a, 0xd6, 0xb5,
|
|
|
9660
|
+- 0xdc, 0x01, 0x7a, 0x2b, 0x35, 0x40, 0xd7, 0x06, 0x27, 0xd9, 0x7b, 0x94, 0xbe, 0x59, 0x84, 0x4b,
|
|
|
9661
|
+- 0x99, 0xf5, 0x12, 0x6d, 0xe6, 0x8a, 0xa1, 0xcd, 0xbc, 0x9e, 0xd2, 0x66, 0xda, 0xbd, 0x6b, 0x9f,
|
|
|
9662
|
+- 0x8c, 0x7a, 0x53, 0x78, 0x0b, 0xb2, 0xe0, 0x6f, 0x0f, 0xa9, 0xda, 0x34, 0xbc, 0x05, 0x15, 0x21,
|
|
|
9663
|
+- 0x6c, 0xd2, 0xfd, 0x8b, 0xa4, 0xd2, 0xfc, 0x37, 0x16, 0x5c, 0xc8, 0x9c, 0x9b, 0x53, 0x50, 0x61,
|
|
|
9664
|
+- 0xad, 0x9b, 0x2a, 0xac, 0x67, 0x06, 0x5e, 0xad, 0x39, 0x3a, 0xad, 0x3f, 0x2c, 0xe6, 0x7c, 0x0b,
|
|
|
9665
|
+- 0x13, 0xd0, 0xef, 0xc0, 0x98, 0xd3, 0x68, 0x90, 0x28, 0x5a, 0x0b, 0x9a, 0x2a, 0x18, 0xda, 0xf3,
|
|
|
9666
|
+- 0x4c, 0xce, 0x4a, 0x8a, 0x8f, 0x0e, 0x2a, 0x73, 0x69, 0x12, 0x09, 0x18, 0xeb, 0x14, 0xcc, 0xf8,
|
|
|
9667
|
+- 0x8d, 0x85, 0x13, 0x8d, 0xdf, 0x78, 0x1d, 0x60, 0x4f, 0x71, 0xeb, 0x69, 0x21, 0x5f, 0xe3, 0xe3,
|
|
|
9668
|
+- 0x35, 0x2c, 0xf4, 0x45, 0x18, 0x8d, 0xc4, 0x35, 0x2e, 0x96, 0xe2, 0x8b, 0x03, 0xce, 0x95, 0xb3,
|
|
|
9669
|
+- 0x49, 0x3c, 0xd3, 0x2d, 0x5d, 0xe9, 0x43, 0x14, 0x49, 0xf4, 0x1d, 0x30, 0x1d, 0xf1, 0xa8, 0x27,
|
|
|
9670
|
+- 0x4b, 0x9e, 0x13, 0x31, 0x1f, 0x07, 0xb1, 0x0a, 0x99, 0xaf, 0x79, 0x3d, 0x05, 0xc3, 0x5d, 0xd8,
|
|
|
9671
|
+- 0x68, 0x45, 0x7e, 0x14, 0x0b, 0xd1, 0xc2, 0x17, 0xe6, 0x95, 0xe4, 0x83, 0x44, 0x8a, 0xa5, 0xb3,
|
|
|
9672
|
+- 0xe9, 0xe1, 0x67, 0x03, 0xaf, 0xd5, 0xb4, 0x7f, 0xb4, 0x04, 0x8f, 0xf7, 0x38, 0xc4, 0xd0, 0x82,
|
|
|
9673
|
+- 0xf9, 0x46, 0xf9, 0x6c, 0x5a, 0xfa, 0x9d, 0xcb, 0xac, 0x6c, 0x88, 0xc3, 0xa9, 0xb5, 0x52, 0xf8,
|
|
|
9674
|
+- 0xc0, 0x6b, 0xe5, 0x87, 0x2c, 0x4d, 0x2f, 0xc1, 0x2d, 0xe9, 0x3e, 0x77, 0xcc, 0xc3, 0xf9, 0x04,
|
|
|
9675
|
+- 0x15, 0x15, 0x5b, 0x19, 0xd2, 0xfe, 0xf5, 0x81, 0xbb, 0x33, 0xb0, 0xf8, 0x7f, 0xba, 0xda, 0xd9,
|
|
|
9676
|
+- 0xaf, 0x58, 0xf0, 0x64, 0x66, 0x7f, 0x0d, 0x9b, 0x8a, 0x6b, 0x50, 0x6e, 0xd0, 0x42, 0xcd, 0x6f,
|
|
|
9677
|
+- 0x2a, 0x71, 0x28, 0x95, 0x00, 0x9c, 0xe0, 0x18, 0xa6, 0x13, 0x85, 0xbe, 0xa6, 0x13, 0xff, 0xc2,
|
|
|
9678
|
+- 0x82, 0xae, 0x05, 0x7c, 0x0a, 0x27, 0xe9, 0xaa, 0x79, 0x92, 0x7e, 0x7c, 0x90, 0xb9, 0xcc, 0x39,
|
|
|
9679
|
+- 0x44, 0xff, 0xf3, 0x14, 0x9c, 0xcf, 0x71, 0x94, 0xd8, 0x83, 0x99, 0x56, 0x83, 0x98, 0x1e, 0x69,
|
|
|
9680
|
+- 0xe2, 0x63, 0x32, 0x9d, 0xf7, 0x7a, 0xba, 0xaf, 0xb1, 0xdc, 0x38, 0x33, 0x5d, 0x28, 0xb8, 0xbb,
|
|
|
9681
|
+- 0x09, 0xf4, 0x15, 0x0b, 0xce, 0x3a, 0xf7, 0xa3, 0xae, 0x0c, 0x88, 0x62, 0xcd, 0xbc, 0x94, 0xa9,
|
|
|
9682
|
+- 0xa5, 0xe8, 0x93, 0x31, 0x91, 0x27, 0x0b, 0xca, 0xc2, 0xc2, 0x99, 0x6d, 0x21, 0x2c, 0xe2, 0x57,
|
|
|
9683
|
+- 0x52, 0x7e, 0xbb, 0x87, 0xcf, 0x64, 0x96, 0x47, 0x0b, 0x3f, 0x53, 0x25, 0x04, 0x2b, 0x3a, 0xe8,
|
|
|
9684
|
+- 0x1e, 0x94, 0x5b, 0xd2, 0xcd, 0x4c, 0x9c, 0xd9, 0x99, 0x97, 0x60, 0xa6, 0x2f, 0x1a, 0x7f, 0x37,
|
|
|
9685
|
+- 0x54, 0x20, 0x9c, 0x90, 0x42, 0xaf, 0x43, 0xd1, 0xdf, 0x8a, 0x7a, 0x65, 0xd9, 0x49, 0x99, 0x1a,
|
|
|
9686
|
+- 0x71, 0x7f, 0xe4, 0xf5, 0x95, 0x3a, 0xa6, 0x15, 0xd1, 0x4d, 0x28, 0x86, 0x9b, 0x4d, 0xa1, 0x58,
|
|
|
9687
|
+- 0xcb, 0xe4, 0x4b, 0xf1, 0x62, 0x35, 0x7b, 0x91, 0x70, 0x4a, 0x78, 0xb1, 0x8a, 0x29, 0x09, 0x54,
|
|
|
9688
|
+- 0x83, 0x21, 0xe6, 0x53, 0x20, 0xf4, 0x67, 0x99, 0x0c, 0x69, 0x0f, 0xdf, 0x1c, 0xee, 0xb4, 0xcc,
|
|
|
9689
|
+- 0x10, 0x30, 0x27, 0x84, 0x36, 0x60, 0xb8, 0xc1, 0x32, 0xb2, 0x88, 0x90, 0xc9, 0x9f, 0xca, 0x54,
|
|
|
9690
|
+- 0xa1, 0xf5, 0x48, 0x55, 0x23, 0x34, 0x4a, 0x0c, 0x03, 0x0b, 0x5a, 0x8c, 0x2a, 0x69, 0x6f, 0x6f,
|
|
|
9691
|
+- 0x45, 0x4c, 0x04, 0xcf, 0xa3, 0xda, 0x23, 0x03, 0x93, 0xa0, 0xca, 0x30, 0xb0, 0xa0, 0x85, 0x3e,
|
|
|
9692
|
+- 0x03, 0x85, 0xad, 0x86, 0x70, 0x39, 0xc8, 0xd4, 0xa5, 0x99, 0x2e, 0xe5, 0x8b, 0xc3, 0x87, 0x07,
|
|
|
9693
|
+- 0x95, 0xc2, 0xca, 0x12, 0x2e, 0x6c, 0x35, 0xd0, 0x3a, 0x8c, 0x6c, 0x71, 0x27, 0x54, 0xa1, 0x2e,
|
|
|
9694
|
+- 0x7b, 0x3a, 0xdb, 0x3f, 0xb6, 0xcb, 0x4f, 0x95, 0x9b, 0xca, 0x0b, 0x00, 0x96, 0x44, 0x58, 0x10,
|
|
|
9695
|
+- 0x48, 0xe5, 0x4c, 0x2b, 0xa2, 0x21, 0xcf, 0x1f, 0xcf, 0x01, 0x9a, 0xbb, 0xb7, 0x27, 0x2e, 0xb9,
|
|
|
9696
|
+- 0x58, 0xa3, 0x88, 0xbe, 0x0c, 0x65, 0x47, 0xe6, 0xde, 0x13, 0xd1, 0x22, 0x5e, 0xcc, 0xdc, 0x98,
|
|
|
9697
|
+- 0xbd, 0xd3, 0x12, 0xf2, 0x55, 0xad, 0x90, 0x70, 0x42, 0x14, 0xed, 0xc0, 0xc4, 0x5e, 0xd4, 0xde,
|
|
|
9698
|
+- 0x26, 0x72, 0x23, 0xb3, 0xe0, 0x11, 0x39, 0x17, 0xd7, 0x3d, 0x81, 0xe8, 0x86, 0x71, 0xc7, 0xf1,
|
|
|
9699
|
+- 0xba, 0xce, 0x1e, 0xf6, 0xd8, 0x7c, 0x4f, 0x27, 0x86, 0x4d, 0xda, 0x74, 0xf8, 0xdf, 0xeb, 0x04,
|
|
|
9700
|
+- 0x9b, 0xfb, 0x31, 0x11, 0xe1, 0x93, 0x33, 0x87, 0xff, 0x4d, 0x8e, 0xd2, 0x3d, 0xfc, 0x02, 0x80,
|
|
|
9701
|
+- 0x25, 0x11, 0xba, 0xd5, 0x1d, 0x99, 0xd7, 0x92, 0x85, 0x4d, 0xce, 0xd9, 0xea, 0x99, 0xc9, 0x2f,
|
|
|
9702
|
+- 0xb5, 0x41, 0x61, 0x67, 0x64, 0x42, 0x8a, 0x9d, 0x8d, 0xed, 0xed, 0x20, 0x0e, 0xfc, 0xd4, 0xb9,
|
|
|
9703
|
+- 0x3c, 0x93, 0x7f, 0x36, 0xd6, 0x32, 0xf0, 0xbb, 0xcf, 0xc6, 0x2c, 0x2c, 0x9c, 0xd9, 0x16, 0x6a,
|
|
|
9704
|
+- 0xc2, 0x64, 0x3b, 0x08, 0xe3, 0xfb, 0x41, 0x28, 0xd7, 0x17, 0xea, 0x21, 0xee, 0x1b, 0x98, 0xa2,
|
|
|
9705
|
+- 0x45, 0x16, 0xce, 0xdb, 0x84, 0xe0, 0x14, 0x4d, 0xf4, 0x79, 0x18, 0x89, 0x1a, 0x8e, 0x47, 0x56,
|
|
|
9706
|
+- 0xef, 0xcc, 0x9e, 0xc9, 0xbf, 0x74, 0xea, 0x1c, 0x25, 0x67, 0x75, 0xb1, 0xc9, 0x11, 0x28, 0x58,
|
|
|
9707
|
+- 0x92, 0x43, 0x2b, 0x30, 0xc4, 0x62, 0xf2, 0xb3, 0xc8, 0xcf, 0x39, 0x51, 0x89, 0xba, 0x8c, 0x3a,
|
|
|
9708
|
+- 0xf9, 0xd9, 0xc4, 0x8a, 0x31, 0xaf, 0x4e, 0xf7, 0x80, 0xe0, 0x7a, 0x83, 0x68, 0xf6, 0x5c, 0xfe,
|
|
|
9709
|
+- 0x1e, 0x10, 0xcc, 0xf2, 0x9d, 0x7a, 0xaf, 0x3d, 0xa0, 0x90, 0x70, 0x42, 0x94, 0x9e, 0xcc, 0xf4,
|
|
|
9710
|
+- 0x34, 0x3d, 0xdf, 0xc3, 0xce, 0x24, 0xf7, 0x2c, 0x65, 0x27, 0x33, 0x3d, 0x49, 0x29, 0x09, 0xfb,
|
|
|
9711
|
+- 0xf7, 0x46, 0xba, 0x39, 0x15, 0x26, 0x27, 0xfd, 0x65, 0xab, 0xeb, 0x09, 0xed, 0xd3, 0x83, 0xaa,
|
|
|
9712
|
+- 0x6d, 0x4e, 0x90, 0x47, 0xfd, 0x8a, 0x05, 0xe7, 0xdb, 0x99, 0x1f, 0x22, 0xae, 0xfd, 0xc1, 0xb4,
|
|
|
9713
|
+- 0x3f, 0xfc, 0xd3, 0x55, 0x74, 0xf6, 0x6c, 0x38, 0xce, 0x69, 0x29, 0x2d, 0x07, 0x14, 0x3f, 0xb0,
|
|
|
9714
|
+- 0x1c, 0xb0, 0x06, 0xa3, 0x8c, 0xb5, 0xec, 0x93, 0xa1, 0x2c, 0xed, 0x85, 0xc6, 0x18, 0x88, 0x25,
|
|
|
9715
|
+- 0x51, 0x11, 0x2b, 0x12, 0xe8, 0x87, 0x2d, 0xb8, 0x98, 0xee, 0x3a, 0x26, 0x0c, 0x2c, 0x62, 0x99,
|
|
|
9716
|
+- 0x73, 0x11, 0x6d, 0x45, 0x7c, 0xff, 0xc5, 0x5a, 0x2f, 0xe4, 0xa3, 0x7e, 0x08, 0xb8, 0x77, 0x63,
|
|
|
9717
|
+- 0xa8, 0x9a, 0x21, 0x23, 0x0e, 0x9b, 0x7a, 0xf1, 0x01, 0xe4, 0xc4, 0x97, 0x60, 0x7c, 0x37, 0xe8,
|
|
|
9718
|
+- 0xf8, 0xb1, 0x30, 0x4b, 0x11, 0x4e, 0x82, 0xec, 0x1d, 0x78, 0x4d, 0x2b, 0xc7, 0x06, 0x56, 0x4a,
|
|
|
9719
|
+- 0xba, 0x1c, 0x7d, 0x58, 0xe9, 0x12, 0xbd, 0x93, 0xca, 0x43, 0x5d, 0xce, 0x8f, 0x99, 0x27, 0x04,
|
|
|
9720
|
+- 0xf1, 0x63, 0x64, 0xa3, 0x3e, 0x5d, 0x89, 0xe8, 0xe7, 0xac, 0x0c, 0x56, 0x9e, 0xcb, 0xc8, 0x9f,
|
|
|
9721
|
+- 0x35, 0x65, 0xe4, 0x2b, 0x69, 0x19, 0xb9, 0x4b, 0x27, 0x6a, 0x88, 0xc7, 0x83, 0x07, 0x5e, 0x1e,
|
|
|
9722
|
+- 0x34, 0x92, 0x99, 0xed, 0xc1, 0xe5, 0x7e, 0xd7, 0x12, 0xb3, 0x4f, 0x6a, 0xaa, 0x17, 0xb0, 0xc4,
|
|
|
9723
|
+- 0x3e, 0xa9, 0xb9, 0x5a, 0xc5, 0x0c, 0x32, 0x68, 0xa8, 0x0b, 0xfb, 0xbf, 0x59, 0x50, 0xac, 0x05,
|
|
|
9724
|
+- 0xcd, 0x53, 0xd0, 0xf1, 0x7e, 0xce, 0xd0, 0xf1, 0x3e, 0x9e, 0x93, 0x1f, 0x3c, 0x57, 0xa3, 0xbb,
|
|
|
9725
|
+- 0x9c, 0xd2, 0xe8, 0x5e, 0xcc, 0x23, 0xd0, 0x5b, 0x7f, 0xfb, 0xd3, 0x45, 0xd0, 0xb3, 0x99, 0xa3,
|
|
|
9726
|
+- 0x7f, 0xf5, 0x30, 0xc6, 0xc1, 0xc5, 0x5e, 0x09, 0xce, 0x05, 0x65, 0x66, 0xd6, 0x24, 0xfd, 0xde,
|
|
|
9727
|
+- 0xfe, 0x9c, 0xd9, 0x08, 0xbf, 0x45, 0xdc, 0xd6, 0x76, 0x4c, 0x9a, 0xe9, 0xcf, 0x39, 0x3d, 0x1b,
|
|
|
9728
|
+- 0xe1, 0xff, 0x62, 0xc1, 0x54, 0xaa, 0x75, 0xe4, 0xc1, 0x84, 0xa7, 0x2b, 0xe8, 0xc4, 0x3a, 0x7d,
|
|
|
9729
|
+- 0x28, 0xdd, 0x9e, 0xb0, 0xb1, 0xd4, 0x8a, 0xb0, 0x49, 0x1c, 0xcd, 0x03, 0xa8, 0x07, 0x34, 0xa9,
|
|
|
9730
|
+- 0xf7, 0x62, 0x5c, 0xbf, 0x7a, 0x61, 0x8b, 0xb0, 0x86, 0x81, 0x5e, 0x86, 0xb1, 0x38, 0x68, 0x07,
|
|
|
9731
|
+- 0x5e, 0xd0, 0xda, 0xbf, 0x45, 0x64, 0x70, 0x15, 0x65, 0x39, 0xb5, 0x91, 0x80, 0xb0, 0x8e, 0x67,
|
|
|
9732
|
+- 0xff, 0x6c, 0x11, 0xd2, 0x19, 0xf0, 0xbf, 0xb5, 0x26, 0x3f, 0x9a, 0x6b, 0xf2, 0x9b, 0x16, 0x4c,
|
|
|
9733
|
+- 0xd3, 0xd6, 0x99, 0x15, 0x87, 0xbc, 0x6c, 0x55, 0x02, 0x18, 0xab, 0x47, 0x02, 0x98, 0x2b, 0xf4,
|
|
|
9734
|
+- 0xec, 0x6a, 0x06, 0x9d, 0x58, 0xe8, 0xcd, 0xb4, 0xc3, 0x89, 0x96, 0x62, 0x01, 0x15, 0x78, 0x24,
|
|
|
9735
|
+- 0x0c, 0x85, 0x6b, 0x92, 0x8e, 0x47, 0xc2, 0x10, 0x0b, 0xa8, 0xcc, 0x0f, 0x53, 0xca, 0xc9, 0x0f,
|
|
|
9736
|
+- 0xc3, 0x42, 0xc5, 0x89, 0xf7, 0x7e, 0xc1, 0xf6, 0x68, 0xa1, 0xe2, 0xa4, 0x21, 0x40, 0x82, 0x63,
|
|
|
9737
|
+- 0xff, 0x62, 0x11, 0xc6, 0x6b, 0x41, 0x33, 0x79, 0xc2, 0x7a, 0xc9, 0x78, 0xc2, 0xba, 0x9c, 0x7a,
|
|
|
9738
|
+- 0xc2, 0x9a, 0xd6, 0x71, 0xbf, 0xf5, 0x60, 0xf5, 0x61, 0x3d, 0x58, 0xfd, 0x73, 0x8b, 0xcd, 0x5a,
|
|
|
9739
|
+- 0x75, 0xbd, 0x2e, 0xf2, 0xd3, 0xbe, 0x00, 0x63, 0xec, 0x40, 0x62, 0xbe, 0x70, 0xf2, 0x5d, 0x87,
|
|
|
9740
|
+- 0x85, 0x7e, 0x5f, 0x4f, 0x8a, 0xb1, 0x8e, 0x83, 0xae, 0xc2, 0x68, 0x44, 0x9c, 0xb0, 0xb1, 0xad,
|
|
|
9741
|
+- 0xce, 0x38, 0xf1, 0xea, 0xc1, 0xcb, 0xb0, 0x82, 0xa2, 0x37, 0x93, 0x28, 0x65, 0xc5, 0xfc, 0x4c,
|
|
|
9742
|
+- 0xab, 0x7a, 0x7f, 0xf8, 0x16, 0xc9, 0x0f, 0x4d, 0x66, 0xbf, 0x05, 0xa8, 0x1b, 0x7f, 0x80, 0x78,
|
|
|
9743
|
+- 0x44, 0x15, 0x33, 0x1e, 0x51, 0xb9, 0x2b, 0x16, 0xd1, 0x9f, 0x5a, 0x30, 0x59, 0x0b, 0x9a, 0x74,
|
|
|
9744
|
+- 0xeb, 0xfe, 0x45, 0xda, 0xa7, 0x7a, 0x88, 0xc6, 0xe1, 0x1e, 0x21, 0x1a, 0xff, 0x9e, 0x05, 0x23,
|
|
|
9745
|
+- 0xb5, 0xa0, 0x79, 0x0a, 0xda, 0xf6, 0xcf, 0x9a, 0xda, 0xf6, 0xc7, 0x72, 0x96, 0x44, 0x8e, 0x82,
|
|
|
9746
|
+- 0xfd, 0x97, 0x8b, 0x30, 0x41, 0xfb, 0x19, 0xb4, 0xe4, 0x2c, 0x19, 0x23, 0x62, 0x0d, 0x30, 0x22,
|
|
|
9747
|
+- 0x94, 0xcd, 0x0d, 0x3c, 0x2f, 0xb8, 0x9f, 0x9e, 0xb1, 0x15, 0x56, 0x8a, 0x05, 0x14, 0x3d, 0x07,
|
|
|
9748
|
+- 0xa3, 0xed, 0x90, 0xec, 0xb9, 0x81, 0xe0, 0x1f, 0xb5, 0xb7, 0x8b, 0x9a, 0x28, 0xc7, 0x0a, 0x83,
|
|
|
9749
|
+- 0xca, 0x5d, 0x91, 0xeb, 0x37, 0x88, 0x4c, 0xf3, 0x5c, 0x62, 0x99, 0xa0, 0x78, 0xec, 0x65, 0xad,
|
|
|
9750
|
+- 0x1c, 0x1b, 0x58, 0xe8, 0x2d, 0x28, 0xb3, 0xff, 0xec, 0x44, 0x39, 0x7e, 0xe6, 0x1a, 0x91, 0xf0,
|
|
|
9751
|
+- 0x40, 0x10, 0xc0, 0x09, 0x2d, 0x74, 0x1d, 0x20, 0x96, 0xf1, 0x79, 0x23, 0x11, 0x56, 0x46, 0xf1,
|
|
|
9752
|
+- 0xda, 0x2a, 0x72, 0x6f, 0x84, 0x35, 0x2c, 0xf4, 0x2c, 0x94, 0x63, 0xc7, 0xf5, 0x6e, 0xbb, 0x3e,
|
|
|
9753
|
+- 0x89, 0x98, 0xca, 0xb9, 0x28, 0xf3, 0x19, 0x88, 0x42, 0x9c, 0xc0, 0x29, 0xaf, 0xc3, 0x7c, 0xae,
|
|
|
9754
|
+- 0x79, 0xde, 0xab, 0x51, 0x86, 0xcd, 0x78, 0x9d, 0xdb, 0xaa, 0x14, 0x6b, 0x18, 0xf6, 0xab, 0x70,
|
|
|
9755
|
+- 0xae, 0x16, 0x34, 0x6b, 0x41, 0x18, 0xaf, 0x04, 0xe1, 0x7d, 0x27, 0x6c, 0xca, 0xf9, 0xab, 0xc8,
|
|
|
9756
|
+- 0xd0, 0xfa, 0xf4, 0xec, 0x19, 0xe2, 0x3b, 0xd3, 0x08, 0x9a, 0xff, 0x22, 0xe3, 0x76, 0x8e, 0xe9,
|
|
|
9757
|
+- 0x6b, 0xd1, 0x60, 0xf7, 0xae, 0x4a, 0x71, 0x77, 0xc3, 0x89, 0x09, 0xba, 0xc3, 0xd2, 0x62, 0x25,
|
|
|
9758
|
+- 0x57, 0x90, 0xa8, 0xfe, 0x8c, 0x96, 0x16, 0x2b, 0x01, 0x66, 0xde, 0x59, 0x66, 0x7d, 0xfb, 0xd7,
|
|
|
9759
|
+- 0x8b, 0xec, 0x34, 0x4a, 0x65, 0x7c, 0x43, 0x5f, 0x82, 0xc9, 0x88, 0xdc, 0x76, 0xfd, 0xce, 0x03,
|
|
|
9760
|
+- 0x29, 0x84, 0xf7, 0xf0, 0x96, 0xa9, 0x2f, 0xeb, 0x98, 0x5c, 0x95, 0x67, 0x96, 0xe1, 0x14, 0x35,
|
|
|
9761
|
+- 0x3a, 0x4f, 0x61, 0xc7, 0x5f, 0x88, 0xee, 0x46, 0x24, 0x14, 0x19, 0xc7, 0xd8, 0x3c, 0x61, 0x59,
|
|
|
9762
|
+- 0x88, 0x13, 0x38, 0x5d, 0x97, 0xec, 0xcf, 0x7a, 0xe0, 0xe3, 0x20, 0x88, 0xe5, 0x4a, 0x66, 0x39,
|
|
|
9763
|
+- 0x6b, 0xb4, 0x72, 0x6c, 0x60, 0xa1, 0x15, 0x40, 0x51, 0xa7, 0xdd, 0xf6, 0xd8, 0x7b, 0xbb, 0xe3,
|
|
|
9764
|
+- 0xdd, 0x08, 0x83, 0x4e, 0x9b, 0xbf, 0x75, 0x16, 0x17, 0xcf, 0xd3, 0x2b, 0xac, 0xde, 0x05, 0xc5,
|
|
|
9765
|
+- 0x19, 0x35, 0xe8, 0xe9, 0xb3, 0x15, 0xb1, 0xdf, 0x6c, 0x75, 0x17, 0x85, 0x7a, 0xbd, 0xce, 0x8a,
|
|
|
9766
|
+- 0xb0, 0x84, 0xd1, 0xc5, 0xc4, 0x9a, 0xe7, 0x98, 0xc3, 0xc9, 0x62, 0xc2, 0xaa, 0x14, 0x6b, 0x18,
|
|
|
9767
|
+- 0x68, 0x19, 0x46, 0xa2, 0xfd, 0xa8, 0x11, 0x8b, 0x20, 0x48, 0x39, 0xb9, 0x23, 0xeb, 0x0c, 0x45,
|
|
|
9768
|
+- 0xcb, 0x67, 0xc0, 0xab, 0x60, 0x59, 0xd7, 0xfe, 0x1e, 0x76, 0x19, 0xb2, 0xfc, 0x54, 0x71, 0x27,
|
|
|
9769
|
+- 0x24, 0x68, 0x17, 0x26, 0xda, 0x6c, 0xca, 0x45, 0xf4, 0x64, 0x31, 0x6f, 0x2f, 0x0d, 0x28, 0xd5,
|
|
|
9770
|
+- 0xde, 0xa7, 0x07, 0x8d, 0xd2, 0x3a, 0x31, 0x71, 0xa1, 0xa6, 0x93, 0xc3, 0x26, 0x75, 0xfb, 0x07,
|
|
|
9771
|
+- 0x67, 0xd8, 0x99, 0x5b, 0xe7, 0xa2, 0xea, 0x88, 0xb0, 0xf8, 0x15, 0x7c, 0xf9, 0x5c, 0xbe, 0xce,
|
|
|
9772
|
+- 0x24, 0xf9, 0x22, 0x61, 0x35, 0x8c, 0x65, 0x5d, 0xf4, 0x26, 0x7b, 0x9b, 0xe6, 0x07, 0x5d, 0xbf,
|
|
|
9773
|
+- 0x34, 0xc1, 0x1c, 0xcb, 0x78, 0x86, 0x16, 0x15, 0xb1, 0x46, 0x04, 0xdd, 0x86, 0x09, 0x91, 0xce,
|
|
|
9774
|
+- 0x48, 0x28, 0xc5, 0x8a, 0x86, 0xd2, 0x63, 0x02, 0xeb, 0xc0, 0xa3, 0x74, 0x01, 0x36, 0x2b, 0xa3,
|
|
|
9775
|
+- 0x16, 0x5c, 0xd4, 0x72, 0xfb, 0xdd, 0x08, 0x1d, 0xf6, 0x5e, 0xe9, 0xb2, 0x4d, 0xa4, 0x9d, 0x9b,
|
|
|
9776
|
+- 0x4f, 0x1e, 0x1e, 0x54, 0x2e, 0x6e, 0xf4, 0x42, 0xc4, 0xbd, 0xe9, 0xa0, 0x3b, 0x70, 0x8e, 0x3b,
|
|
|
9777
|
+- 0xd6, 0x55, 0x89, 0xd3, 0xf4, 0x5c, 0x5f, 0x1d, 0xcc, 0x7c, 0x1d, 0x5e, 0x38, 0x3c, 0xa8, 0x9c,
|
|
|
9778
|
+- 0x5b, 0xc8, 0x42, 0xc0, 0xd9, 0xf5, 0xd0, 0x67, 0xa1, 0xdc, 0xf4, 0x23, 0x31, 0x06, 0xc3, 0x46,
|
|
|
9779
|
+- 0xda, 0xca, 0x72, 0x75, 0xbd, 0xae, 0xbe, 0x3f, 0xf9, 0x83, 0x93, 0x0a, 0xa8, 0xc5, 0x15, 0x63,
|
|
|
9780
|
+- 0x4a, 0x0e, 0x1d, 0xc9, 0x4f, 0x51, 0x2e, 0x96, 0x84, 0xe1, 0x5a, 0xc3, 0x35, 0xc2, 0xca, 0x34,
|
|
|
9781
|
+- 0xd5, 0xf0, 0xba, 0x31, 0x08, 0xa3, 0x37, 0x00, 0x51, 0x46, 0xcd, 0x6d, 0x90, 0x85, 0x06, 0x0b,
|
|
|
9782
|
+- 0x62, 0xcd, 0xf4, 0x88, 0xa3, 0x86, 0x2b, 0x03, 0xaa, 0x77, 0x61, 0xe0, 0x8c, 0x5a, 0xe8, 0x26,
|
|
|
9783
|
+- 0x3d, 0xc8, 0xf4, 0x52, 0x61, 0x62, 0x2b, 0x99, 0xfb, 0xd9, 0x2a, 0x69, 0x87, 0xa4, 0xe1, 0xc4,
|
|
|
9784
|
+- 0xa4, 0x69, 0x52, 0xc4, 0xa9, 0x7a, 0xf4, 0x2e, 0x55, 0xf9, 0x6c, 0xc0, 0x8c, 0x54, 0xd1, 0x9d,
|
|
|
9785
|
+- 0xd3, 0x86, 0xca, 0xc5, 0xdb, 0x41, 0x14, 0xaf, 0x93, 0xf8, 0x7e, 0x10, 0xee, 0x88, 0xc0, 0x60,
|
|
|
9786
|
+- 0x49, 0x8c, 0xca, 0x04, 0x84, 0x75, 0x3c, 0xca, 0x07, 0xb3, 0xc7, 0xe1, 0xd5, 0x2a, 0x7b, 0xa1,
|
|
|
9787
|
+- 0x1b, 0x4d, 0xf6, 0xc9, 0x4d, 0x5e, 0x8c, 0x25, 0x5c, 0xa2, 0xae, 0xd6, 0x96, 0xd8, 0x6b, 0x5b,
|
|
|
9788
|
+- 0x0a, 0x75, 0xb5, 0xb6, 0x84, 0x25, 0x1c, 0x91, 0xee, 0x94, 0xa0, 0x93, 0xf9, 0x5a, 0xcd, 0xee,
|
|
|
9789
|
+- 0xeb, 0x60, 0xc0, 0xac, 0xa0, 0x3e, 0x4c, 0xab, 0x64, 0xa4, 0x3c, 0x62, 0x5a, 0x34, 0x3b, 0xc5,
|
|
|
9790
|
+- 0x16, 0xc9, 0xe0, 0xe1, 0xd6, 0x94, 0x9e, 0x78, 0x35, 0x45, 0x09, 0x77, 0xd1, 0x36, 0x62, 0x87,
|
|
|
9791
|
+- 0x4c, 0xf7, 0xcd, 0x47, 0x74, 0x0d, 0xca, 0x51, 0x67, 0xb3, 0x19, 0xec, 0x3a, 0xae, 0xcf, 0x1e,
|
|
|
9792
|
+- 0xc7, 0x34, 0x26, 0xab, 0x2e, 0x01, 0x38, 0xc1, 0x41, 0x2b, 0x30, 0xea, 0x48, 0x25, 0x30, 0xca,
|
|
|
9793
|
+- 0x0f, 0x26, 0xa0, 0x54, 0xbf, 0xdc, 0xbf, 0x56, 0xaa, 0x7d, 0x55, 0x5d, 0xf4, 0x1a, 0x4c, 0x08,
|
|
|
9794
|
+- 0x77, 0x2a, 0x1e, 0x62, 0x81, 0x3d, 0x5e, 0x69, 0xf6, 0xf2, 0x75, 0x1d, 0x88, 0x4d, 0x5c, 0xf4,
|
|
|
9795
|
+- 0x45, 0x98, 0xa4, 0x54, 0x92, 0x83, 0x6d, 0xf6, 0xec, 0x20, 0x27, 0xa2, 0x96, 0x67, 0x42, 0xaf,
|
|
|
9796
|
+- 0x8c, 0x53, 0xc4, 0x50, 0x13, 0x9e, 0x70, 0x3a, 0x71, 0xc0, 0x14, 0xe9, 0xe6, 0xfa, 0xdf, 0x08,
|
|
|
9797
|
+- 0x76, 0x88, 0xcf, 0xde, 0xb0, 0x46, 0x17, 0x2f, 0x1f, 0x1e, 0x54, 0x9e, 0x58, 0xe8, 0x81, 0x87,
|
|
|
9798
|
+- 0x7b, 0x52, 0x41, 0x77, 0x61, 0x2c, 0x0e, 0x3c, 0x66, 0xb9, 0x4e, 0x59, 0x89, 0xf3, 0xf9, 0xb1,
|
|
|
9799
|
+- 0x77, 0x36, 0x14, 0x9a, 0xae, 0x44, 0x52, 0x55, 0xb1, 0x4e, 0x07, 0x6d, 0xf0, 0x3d, 0xc6, 0xa2,
|
|
|
9800
|
+- 0x92, 0x92, 0x68, 0xf6, 0xb1, 0xfc, 0x81, 0x51, 0xc1, 0x4b, 0xcd, 0x2d, 0x28, 0x6a, 0x62, 0x9d,
|
|
|
9801
|
+- 0x0c, 0xba, 0x01, 0x33, 0xed, 0xd0, 0x0d, 0xd8, 0xc2, 0x56, 0x8f, 0x18, 0xb3, 0x66, 0x6a, 0x81,
|
|
|
9802
|
+- 0x5a, 0x1a, 0x01, 0x77, 0xd7, 0xa1, 0x42, 0xa6, 0x2c, 0x9c, 0xbd, 0xc0, 0xf3, 0x54, 0x71, 0xc6,
|
|
|
9803
|
+- 0x9b, 0x97, 0x61, 0x05, 0x45, 0x6b, 0xec, 0x5c, 0xe6, 0xe2, 0xe0, 0xec, 0x5c, 0x7e, 0x10, 0x06,
|
|
|
9804
|
+- 0x5d, 0x6c, 0xe4, 0xfc, 0x92, 0xfa, 0x8b, 0x13, 0x0a, 0xf4, 0xde, 0x88, 0xb6, 0x9d, 0x90, 0xd4,
|
|
|
9805
|
+- 0xc2, 0xa0, 0x41, 0x78, 0x67, 0xb8, 0xd1, 0xfc, 0xe3, 0x3c, 0x78, 0x22, 0xbd, 0x37, 0xea, 0x59,
|
|
|
9806
|
+- 0x08, 0x38, 0xbb, 0x1e, 0x6a, 0x6a, 0xe9, 0x99, 0x29, 0x1b, 0x1a, 0xcd, 0x3e, 0xd1, 0xc3, 0xcc,
|
|
|
9807
|
+- 0x28, 0xc5, 0xb3, 0x26, 0x6b, 0xd1, 0x28, 0x8e, 0x70, 0x8a, 0xe6, 0xdc, 0xb7, 0xc3, 0x4c, 0xd7,
|
|
|
9808
|
+- 0x7d, 0x71, 0xac, 0xb8, 0xdd, 0x7f, 0x32, 0x04, 0x65, 0xa5, 0x0a, 0x47, 0xd7, 0xcc, 0x17, 0x8e,
|
|
|
9809
|
+- 0x0b, 0xe9, 0x17, 0x8e, 0x51, 0xca, 0x91, 0xeb, 0x8f, 0x1a, 0x1b, 0x86, 0x51, 0x5c, 0x21, 0x3f,
|
|
|
9810
|
+- 0x4b, 0x96, 0xce, 0x53, 0xf7, 0xf5, 0x80, 0xd3, 0x34, 0x1b, 0xc5, 0x81, 0x9f, 0x4a, 0x4a, 0x3d,
|
|
|
9811
|
+- 0x95, 0x25, 0x03, 0x26, 0xa9, 0xa5, 0xc2, 0x7f, 0x3b, 0x68, 0xae, 0xd6, 0xd2, 0x59, 0x1b, 0x6b,
|
|
|
9812
|
+- 0xb4, 0x10, 0x73, 0x18, 0x13, 0xdf, 0x28, 0x73, 0xc3, 0xc4, 0xb7, 0x91, 0x87, 0x14, 0xdf, 0x24,
|
|
|
9813
|
+- 0x01, 0x9c, 0xd0, 0x42, 0x1e, 0xcc, 0x34, 0xcc, 0x84, 0x9b, 0xca, 0xeb, 0xed, 0xa9, 0xbe, 0xa9,
|
|
|
9814
|
+- 0x2f, 0x3b, 0x5a, 0x76, 0xb3, 0xa5, 0x34, 0x15, 0xdc, 0x4d, 0x18, 0xbd, 0x06, 0xa3, 0xef, 0x05,
|
|
|
9815
|
+- 0x11, 0xdb, 0x7c, 0xe2, 0x86, 0x97, 0xde, 0x41, 0xa3, 0x6f, 0xde, 0xa9, 0xb3, 0xf2, 0xa3, 0x83,
|
|
|
9816
|
+- 0xca, 0x58, 0x2d, 0x68, 0xca, 0xbf, 0x58, 0x55, 0x40, 0x0f, 0xe0, 0x9c, 0x71, 0x2e, 0xaa, 0xee,
|
|
|
9817
|
+- 0xc2, 0xe0, 0xdd, 0xbd, 0x28, 0x9a, 0x3b, 0xb7, 0x9a, 0x45, 0x09, 0x67, 0x37, 0x40, 0x0f, 0x1b,
|
|
|
9818
|
+- 0x3f, 0x10, 0xc9, 0x6a, 0x25, 0x17, 0xc1, 0x98, 0x85, 0xb2, 0xee, 0x1b, 0x9e, 0x42, 0xc0, 0xdd,
|
|
|
9819
|
+- 0x75, 0xec, 0xaf, 0xf1, 0x97, 0x03, 0xa1, 0x5f, 0x24, 0x51, 0xc7, 0x3b, 0x8d, 0x5c, 0x48, 0xcb,
|
|
|
9820
|
+- 0x86, 0xea, 0xf3, 0xa1, 0x5f, 0xa7, 0x7e, 0xd3, 0x62, 0xaf, 0x53, 0x1b, 0x64, 0xb7, 0xed, 0x51,
|
|
|
9821
|
+- 0x29, 0xf7, 0xd1, 0x77, 0xfc, 0x4d, 0x18, 0x8d, 0x45, 0x6b, 0xbd, 0xd2, 0x37, 0x69, 0x9d, 0x62,
|
|
|
9822
|
+- 0x2f, 0x74, 0x8a, 0xbf, 0x90, 0xa5, 0x58, 0x91, 0xb1, 0xff, 0x29, 0x9f, 0x01, 0x09, 0x39, 0x05,
|
|
|
9823
|
+- 0x35, 0x54, 0xd5, 0x54, 0x43, 0x55, 0xfa, 0x7c, 0x41, 0x8e, 0x3a, 0xea, 0x9f, 0x98, 0xfd, 0x66,
|
|
|
9824
|
+- 0xa2, 0xdc, 0x47, 0xfd, 0x59, 0xd4, 0xfe, 0x31, 0x0b, 0xce, 0x66, 0xd9, 0x11, 0x51, 0x9e, 0x90,
|
|
|
9825
|
+- 0x0b, 0x92, 0xea, 0x99, 0x58, 0x8d, 0xe0, 0x3d, 0x51, 0x8e, 0x15, 0xc6, 0xc0, 0x99, 0x11, 0x8e,
|
|
|
9826
|
+- 0x17, 0x3e, 0xed, 0x0e, 0x4c, 0xd4, 0x42, 0xa2, 0xdd, 0x01, 0xaf, 0x73, 0x37, 0x33, 0xde, 0x9f,
|
|
|
9827
|
+- 0xe7, 0x8e, 0xed, 0x62, 0x66, 0xff, 0x7c, 0x01, 0xce, 0xf2, 0x77, 0x9e, 0x85, 0xbd, 0xc0, 0x6d,
|
|
|
9828
|
+- 0xd6, 0x82, 0xa6, 0xc8, 0x6a, 0xf1, 0x36, 0x8c, 0xb7, 0x35, 0xe9, 0xbf, 0x57, 0x00, 0x27, 0x5d,
|
|
|
9829
|
+- 0x4b, 0x90, 0x48, 0x61, 0x7a, 0x29, 0x36, 0x68, 0xa1, 0x26, 0x8c, 0x93, 0x3d, 0xb7, 0xa1, 0x1e,
|
|
|
9830
|
+- 0x0b, 0x0a, 0xc7, 0xbe, 0x1b, 0x54, 0x2b, 0xcb, 0x1a, 0x1d, 0x6c, 0x50, 0x7d, 0x04, 0x89, 0xce,
|
|
|
9831
|
+- 0xec, 0x1f, 0xb7, 0xe0, 0xb1, 0x9c, 0x70, 0x4f, 0xb4, 0xb9, 0xfb, 0xec, 0x45, 0x4d, 0xe4, 0x4c,
|
|
|
9832
|
+- 0x52, 0xcd, 0xf1, 0x77, 0x36, 0x2c, 0xa0, 0xe8, 0xf3, 0x00, 0xfc, 0x9d, 0x8c, 0x0a, 0x25, 0xfd,
|
|
|
9833
|
+- 0xe2, 0xe2, 0x18, 0x21, 0x3d, 0xb4, 0x50, 0x0c, 0xb2, 0x3e, 0xd6, 0x68, 0xd9, 0x3f, 0x53, 0x84,
|
|
|
9834
|
+- 0x21, 0xf6, 0x2e, 0x83, 0x56, 0x60, 0x64, 0x9b, 0x07, 0x37, 0x1e, 0x24, 0x8e, 0x72, 0x22, 0xdd,
|
|
|
9835
|
+- 0xf1, 0x02, 0x2c, 0x2b, 0xa3, 0x35, 0x38, 0xc3, 0x83, 0x43, 0x7b, 0x55, 0xe2, 0x39, 0xfb, 0x52,
|
|
|
9836
|
+- 0x49, 0xc0, 0xf3, 0x0c, 0xa9, 0xb0, 0x12, 0xab, 0xdd, 0x28, 0x38, 0xab, 0x1e, 0x7a, 0x1d, 0x26,
|
|
|
9837
|
+- 0x63, 0x77, 0x97, 0x04, 0x9d, 0x58, 0x52, 0xe2, 0x61, 0xa1, 0x15, 0x1b, 0xb7, 0x61, 0x40, 0x71,
|
|
|
9838
|
+- 0x0a, 0x9b, 0x8a, 0x3b, 0xed, 0x2e, 0x75, 0x88, 0x96, 0xb9, 0xdf, 0x54, 0x81, 0x98, 0xb8, 0xcc,
|
|
|
9839
|
+- 0x80, 0xa8, 0xc3, 0xcc, 0xa5, 0x36, 0xb6, 0x43, 0x12, 0x6d, 0x07, 0x5e, 0x53, 0xa4, 0xa9, 0x4e,
|
|
|
9840
|
+- 0x0c, 0x88, 0x52, 0x70, 0xdc, 0x55, 0x83, 0x52, 0xd9, 0x72, 0x5c, 0xaf, 0x13, 0x92, 0x84, 0xca,
|
|
|
9841
|
+- 0xb0, 0x49, 0x65, 0x25, 0x05, 0xc7, 0x5d, 0x35, 0xe8, 0x3a, 0x3a, 0x27, 0xf2, 0x46, 0x4b, 0x67,
|
|
|
9842
|
+- 0x77, 0x65, 0x15, 0x36, 0x22, 0xdd, 0x7e, 0x7a, 0x44, 0x7b, 0x11, 0x76, 0x33, 0x2a, 0xf3, 0xb4,
|
|
|
9843
|
+- 0xa6, 0xc5, 0x13, 0x0e, 0x3f, 0x92, 0xca, 0xc3, 0x64, 0x2f, 0xfe, 0x3d, 0x0b, 0xce, 0x64, 0x58,
|
|
|
9844
|
+- 0x9f, 0xf2, 0xa3, 0xaa, 0xe5, 0x46, 0xb1, 0xca, 0xa5, 0xa2, 0x1d, 0x55, 0xbc, 0x1c, 0x2b, 0x0c,
|
|
|
9845
|
+- 0xba, 0x1f, 0xf8, 0x61, 0x98, 0x3e, 0x00, 0x85, 0x75, 0x97, 0x80, 0x1e, 0xef, 0x00, 0x44, 0x97,
|
|
|
9846
|
+- 0xa1, 0xd4, 0x89, 0x88, 0x8c, 0xd3, 0xa4, 0xce, 0x6f, 0xa6, 0xd7, 0x65, 0x10, 0xca, 0x9a, 0xb6,
|
|
|
9847
|
+- 0x94, 0x4a, 0x55, 0x63, 0x4d, 0xb9, 0x9e, 0x94, 0xc3, 0xec, 0xaf, 0x16, 0xe1, 0x42, 0xae, 0x9d,
|
|
|
9848
|
+- 0x39, 0xed, 0xd2, 0x6e, 0xe0, 0xbb, 0x71, 0xa0, 0xde, 0xfc, 0x78, 0xa4, 0x10, 0xd2, 0xde, 0x5e,
|
|
|
9849
|
+- 0x13, 0xe5, 0x58, 0x61, 0xa0, 0x2b, 0x32, 0x83, 0x79, 0x3a, 0x5b, 0xcc, 0x62, 0xd5, 0x48, 0x62,
|
|
|
9850
|
+- 0x3e, 0x68, 0x26, 0xae, 0xa7, 0xa0, 0xd4, 0x0e, 0x02, 0x2f, 0x7d, 0x18, 0xd1, 0xee, 0x06, 0x81,
|
|
|
9851
|
+- 0x87, 0x19, 0x10, 0x7d, 0x42, 0x8c, 0x43, 0xea, 0x91, 0x0b, 0x3b, 0xcd, 0x20, 0xd2, 0x06, 0xe3,
|
|
|
9852
|
+- 0x19, 0x18, 0xd9, 0x21, 0xfb, 0xa1, 0xeb, 0xb7, 0xd2, 0x8f, 0x9f, 0xb7, 0x78, 0x31, 0x96, 0x70,
|
|
|
9853
|
+- 0x33, 0x59, 0xc2, 0xc8, 0x49, 0xa7, 0xd0, 0x1a, 0xed, 0x7b, 0xb5, 0xfd, 0x50, 0x11, 0xa6, 0xf0,
|
|
|
9854
|
+- 0x62, 0xf5, 0x5b, 0x13, 0x71, 0xb7, 0x7b, 0x22, 0x4e, 0x3a, 0x85, 0x56, 0xff, 0xd9, 0xf8, 0x65,
|
|
|
9855
|
+- 0x0b, 0xa6, 0x58, 0x40, 0x61, 0x11, 0x9f, 0xc2, 0x0d, 0xfc, 0x53, 0x60, 0xdd, 0x9e, 0x82, 0xa1,
|
|
|
9856
|
+- 0x90, 0x36, 0x9a, 0xce, 0x8b, 0xc3, 0x7a, 0x82, 0x39, 0x0c, 0x3d, 0x01, 0x25, 0xd6, 0x05, 0x3a,
|
|
|
9857
|
+- 0x79, 0xe3, 0x3c, 0xa5, 0x40, 0xd5, 0x89, 0x1d, 0xcc, 0x4a, 0x99, 0xd3, 0x35, 0x26, 0x6d, 0xcf,
|
|
|
9858
|
+- 0xe5, 0x9d, 0x4e, 0x1e, 0x14, 0x3e, 0x1a, 0x4e, 0xd7, 0x99, 0x5d, 0xfb, 0x60, 0x4e, 0xd7, 0xd9,
|
|
|
9859
|
+- 0x24, 0x7b, 0x8b, 0x45, 0xff, 0xbd, 0x00, 0x97, 0x32, 0xeb, 0x0d, 0xec, 0x74, 0xdd, 0xbb, 0xf6,
|
|
|
9860
|
+- 0xc9, 0xd8, 0xb0, 0x64, 0x9b, 0x96, 0x14, 0x4f, 0xd1, 0xb4, 0xa4, 0x34, 0x28, 0xe7, 0x38, 0x34,
|
|
|
9861
|
+- 0x80, 0x2f, 0x74, 0xe6, 0x90, 0x7d, 0x44, 0x7c, 0xa1, 0x33, 0xfb, 0x96, 0x23, 0xd6, 0xfd, 0x59,
|
|
|
9862
|
+- 0x21, 0xe7, 0x5b, 0x98, 0x80, 0x77, 0x95, 0x9e, 0x33, 0x0c, 0x18, 0x09, 0x4e, 0x78, 0x9c, 0x9f,
|
|
|
9863
|
+- 0x31, 0xbc, 0x0c, 0x2b, 0x28, 0x72, 0x35, 0xaf, 0xe2, 0x42, 0x7e, 0xd6, 0xc4, 0xdc, 0xa6, 0xe6,
|
|
|
9864
|
+- 0xcd, 0xf7, 0x1f, 0x35, 0x04, 0x19, 0x1e, 0xc6, 0x6b, 0x9a, 0x50, 0x5e, 0x1c, 0x5c, 0x28, 0x1f,
|
|
|
9865
|
+- 0xcf, 0x16, 0xc8, 0xd1, 0x02, 0x4c, 0xed, 0xba, 0x3e, 0xcb, 0x82, 0x6f, 0xb2, 0xa2, 0x2a, 0xc8,
|
|
|
9866
|
+- 0xc6, 0x9a, 0x09, 0xc6, 0x69, 0xfc, 0xb9, 0xd7, 0x60, 0xe2, 0xe1, 0xd5, 0x91, 0xdf, 0x2c, 0xc2,
|
|
|
9867
|
+- 0xe3, 0x3d, 0xb6, 0x3d, 0x3f, 0xeb, 0x8d, 0x39, 0xd0, 0xce, 0xfa, 0xae, 0x79, 0xa8, 0xc1, 0xd9,
|
|
|
9868
|
+- 0xad, 0x8e, 0xe7, 0xed, 0x33, 0xeb, 0x4d, 0xd2, 0x94, 0x18, 0x82, 0x57, 0x7c, 0x42, 0x26, 0x71,
|
|
|
9869
|
+- 0x58, 0xc9, 0xc0, 0xc1, 0x99, 0x35, 0xd1, 0x1b, 0x80, 0x02, 0x91, 0xb2, 0xf5, 0x06, 0xf1, 0x85,
|
|
|
9870
|
+- 0x56, 0x9d, 0x0d, 0x7c, 0x31, 0xd9, 0x8c, 0x77, 0xba, 0x30, 0x70, 0x46, 0x2d, 0xca, 0xf4, 0xd3,
|
|
|
9871
|
+- 0x5b, 0x69, 0x5f, 0x75, 0x2b, 0xc5, 0xf4, 0x63, 0x1d, 0x88, 0x4d, 0x5c, 0x74, 0x03, 0x66, 0x9c,
|
|
|
9872
|
+- 0x3d, 0xc7, 0xe5, 0xc1, 0xe7, 0x24, 0x01, 0xce, 0xf5, 0x2b, 0x25, 0xd8, 0x42, 0x1a, 0x01, 0x77,
|
|
|
9873
|
+- 0xd7, 0x49, 0xb9, 0x35, 0x0f, 0xe7, 0xbb, 0x35, 0xf7, 0x3e, 0x17, 0xfb, 0xe9, 0x74, 0xed, 0xff,
|
|
|
9874
|
+- 0x68, 0xd1, 0xeb, 0x2b, 0x23, 0xed, 0x3a, 0x1d, 0x07, 0xa5, 0x9b, 0xd4, 0x3c, 0x8c, 0xcf, 0x69,
|
|
|
9875
|
+- 0xf6, 0x19, 0x09, 0x10, 0x9b, 0xb8, 0x7c, 0x41, 0x44, 0x89, 0x8b, 0x8b, 0xc1, 0xba, 0x8b, 0x10,
|
|
|
9876
|
+- 0x02, 0x0a, 0x03, 0x7d, 0x01, 0x46, 0x9a, 0xee, 0x9e, 0x1b, 0x05, 0xa1, 0xd8, 0x2c, 0xc7, 0x74,
|
|
|
9877
|
+- 0x14, 0x48, 0xce, 0xc1, 0x2a, 0x27, 0x83, 0x25, 0x3d, 0xfb, 0x87, 0x0a, 0x30, 0x21, 0x5b, 0x7c,
|
|
|
9878
|
+- 0xb3, 0x13, 0xc4, 0xce, 0x29, 0x5c, 0xcb, 0x37, 0x8c, 0x6b, 0xf9, 0x13, 0xbd, 0xe2, 0x28, 0xb0,
|
|
|
9879
|
+- 0x2e, 0xe5, 0x5e, 0xc7, 0x77, 0x52, 0xd7, 0xf1, 0xd3, 0xfd, 0x49, 0xf5, 0xbe, 0x86, 0xff, 0x99,
|
|
|
9880
|
+- 0x05, 0x33, 0x06, 0xfe, 0x29, 0xdc, 0x06, 0x2b, 0xe6, 0x6d, 0xf0, 0x64, 0xdf, 0x6f, 0xc8, 0xb9,
|
|
|
9881
|
+- 0x05, 0xbe, 0xaf, 0x98, 0xea, 0x3b, 0x3b, 0xfd, 0xdf, 0x83, 0xd2, 0xb6, 0x13, 0x36, 0x7b, 0xc5,
|
|
|
9882
|
+- 0x6b, 0xed, 0xaa, 0x34, 0x7f, 0xd3, 0x09, 0x9b, 0xfc, 0x0c, 0x7f, 0x4e, 0x25, 0x7a, 0x74, 0xc2,
|
|
|
9883
|
+- 0x66, 0x5f, 0x8f, 0x2e, 0xd6, 0x14, 0x7a, 0x15, 0x86, 0xa3, 0x46, 0xd0, 0x56, 0xf6, 0x96, 0x97,
|
|
|
9884
|
+- 0x79, 0x12, 0x48, 0x5a, 0x72, 0x74, 0x50, 0x41, 0x66, 0x73, 0xb4, 0x18, 0x0b, 0x7c, 0xf4, 0x36,
|
|
|
9885
|
+- 0x4c, 0xb0, 0x5f, 0xca, 0xee, 0xa0, 0x98, 0x9f, 0x25, 0xa0, 0xae, 0x23, 0x72, 0xf3, 0x15, 0xa3,
|
|
|
9886
|
+- 0x08, 0x9b, 0xa4, 0xe6, 0x5a, 0x50, 0x56, 0x9f, 0xf5, 0x48, 0x3d, 0x71, 0xfe, 0x5d, 0x11, 0xce,
|
|
|
9887
|
+- 0x64, 0xac, 0x39, 0x14, 0x19, 0x33, 0xf1, 0xc2, 0x80, 0x4b, 0xf5, 0x03, 0xce, 0x45, 0xc4, 0xa4,
|
|
|
9888
|
+- 0xa1, 0xa6, 0x58, 0x5b, 0x03, 0x37, 0x7a, 0x37, 0x22, 0xe9, 0x46, 0x69, 0x51, 0xff, 0x46, 0x69,
|
|
|
9889
|
+- 0x63, 0xa7, 0x36, 0xd4, 0xb4, 0x21, 0xd5, 0xd3, 0x47, 0x3a, 0xa7, 0x7f, 0x5c, 0x84, 0xb3, 0x59,
|
|
|
9890
|
+- 0xa1, 0x5d, 0xd0, 0x77, 0xa7, 0xb2, 0xc1, 0xbc, 0x34, 0x68, 0x50, 0x18, 0x9e, 0x22, 0x46, 0xe4,
|
|
|
9891
|
+- 0x36, 0x9e, 0x37, 0xf3, 0xc3, 0xf4, 0x1d, 0x66, 0xd1, 0x26, 0x73, 0xdf, 0x0c, 0x79, 0x16, 0x1f,
|
|
|
9892
|
+- 0x79, 0x7c, 0x7c, 0x7a, 0xe0, 0x0e, 0x88, 0xf4, 0x3f, 0x51, 0xca, 0x7d, 0x53, 0x16, 0xf7, 0x77,
|
|
|
9893
|
+- 0xdf, 0x94, 0x2d, 0xcf, 0xb9, 0x30, 0xa6, 0x7d, 0xcd, 0x23, 0x9d, 0xf1, 0x1d, 0x7a, 0x5b, 0x69,
|
|
|
9894
|
+- 0xfd, 0x7e, 0xa4, 0xb3, 0xfe, 0xe3, 0x16, 0xa4, 0x8c, 0x1b, 0x95, 0xba, 0xcb, 0xca, 0x55, 0x77,
|
|
|
9895
|
+- 0x5d, 0x86, 0x52, 0x18, 0x78, 0x24, 0x9d, 0xa0, 0x05, 0x07, 0x1e, 0xc1, 0x0c, 0x42, 0x31, 0xe2,
|
|
|
9896
|
+- 0x44, 0xd9, 0x31, 0xae, 0x0b, 0x72, 0x42, 0x44, 0x7b, 0x0a, 0x86, 0x3c, 0xb2, 0x47, 0xbc, 0x74,
|
|
|
9897
|
+- 0xf4, 0xf3, 0xdb, 0xb4, 0x10, 0x73, 0x98, 0xfd, 0xcb, 0x25, 0xb8, 0xd8, 0xd3, 0x01, 0x9a, 0x8a,
|
|
|
9898
|
+- 0x43, 0x2d, 0x27, 0x26, 0xf7, 0x9d, 0xfd, 0x74, 0x98, 0xe2, 0x1b, 0xbc, 0x18, 0x4b, 0x38, 0xb3,
|
|
|
9899
|
+- 0xf7, 0xe6, 0x61, 0x09, 0x53, 0xca, 0x41, 0x11, 0x8d, 0x50, 0x40, 0x1f, 0x41, 0x5e, 0xf7, 0xeb,
|
|
|
9900
|
+- 0x00, 0x51, 0xe4, 0x2d, 0xfb, 0x94, 0xbb, 0x6b, 0x0a, 0x43, 0xf2, 0x24, 0x7c, 0x65, 0xfd, 0xb6,
|
|
|
9901
|
+- 0x80, 0x60, 0x0d, 0x0b, 0x55, 0x61, 0xba, 0x1d, 0x06, 0x31, 0xd7, 0xb5, 0x56, 0xb9, 0x99, 0xcf,
|
|
|
9902
|
+- 0x90, 0xe9, 0x7b, 0x5a, 0x4b, 0xc1, 0x71, 0x57, 0x0d, 0xf4, 0x32, 0x8c, 0x09, 0x7f, 0xd4, 0x5a,
|
|
|
9903
|
+- 0x10, 0x78, 0x42, 0x0d, 0xa4, 0x8c, 0x46, 0xea, 0x09, 0x08, 0xeb, 0x78, 0x5a, 0x35, 0xa6, 0xc0,
|
|
|
9904
|
+- 0x1d, 0xc9, 0xac, 0xc6, 0x95, 0xb8, 0x1a, 0x5e, 0x2a, 0xcc, 0xd3, 0xe8, 0x40, 0x61, 0x9e, 0x12,
|
|
|
9905
|
+- 0xc5, 0x58, 0x79, 0xe0, 0x37, 0x2b, 0xe8, 0xab, 0x4a, 0xfa, 0x85, 0x12, 0x9c, 0x11, 0x0b, 0xe7,
|
|
|
9906
|
+- 0x51, 0x2f, 0x97, 0x47, 0x94, 0x7d, 0xfe, 0x5b, 0x6b, 0xe6, 0xb4, 0xd7, 0xcc, 0x0f, 0x5b, 0x60,
|
|
|
9907
|
+- 0xb2, 0x57, 0xe8, 0xff, 0xcb, 0x8d, 0xf3, 0xfe, 0x72, 0x2e, 0xbb, 0xd6, 0x94, 0x17, 0xc8, 0x07,
|
|
|
9908
|
+- 0x8c, 0xf8, 0x6e, 0xff, 0x07, 0x0b, 0x9e, 0xec, 0x4b, 0x11, 0x2d, 0x43, 0x99, 0xf1, 0x80, 0x9a,
|
|
|
9909
|
+- 0x74, 0xf6, 0xb4, 0x32, 0x03, 0x94, 0x80, 0x1c, 0x96, 0x34, 0xa9, 0x89, 0x96, 0xbb, 0x02, 0xea,
|
|
|
9910
|
+- 0x3f, 0x93, 0x11, 0x50, 0xff, 0x9c, 0x31, 0x3c, 0x0f, 0x19, 0x51, 0xff, 0x6b, 0x45, 0x18, 0xe6,
|
|
|
9911
|
+- 0x2b, 0xfe, 0x14, 0xc4, 0xb0, 0x15, 0xa1, 0xb7, 0xed, 0x11, 0x47, 0x8a, 0xf7, 0x65, 0xbe, 0xea,
|
|
|
9912
|
+- 0xc4, 0x0e, 0x67, 0x13, 0xd4, 0x6d, 0x95, 0x68, 0x78, 0xd1, 0xbc, 0x71, 0x9f, 0xcd, 0xa5, 0x14,
|
|
|
9913
|
+- 0x93, 0xc0, 0x69, 0x68, 0xb7, 0xdb, 0x97, 0x00, 0x22, 0x96, 0x68, 0x9e, 0xd2, 0x10, 0x11, 0xc9,
|
|
|
9914
|
+- 0x3e, 0xd9, 0xa3, 0xf5, 0xba, 0x42, 0xe6, 0x7d, 0x48, 0x76, 0xba, 0x02, 0x60, 0x8d, 0xe2, 0xdc,
|
|
|
9915
|
+- 0x2b, 0x50, 0x56, 0xc8, 0xfd, 0xb4, 0x38, 0xe3, 0x3a, 0x73, 0xf1, 0x39, 0x98, 0x4a, 0xb5, 0x75,
|
|
|
9916
|
+- 0x2c, 0x25, 0xd0, 0xaf, 0x58, 0x30, 0xc5, 0xbb, 0xbc, 0xec, 0xef, 0x89, 0x33, 0xf5, 0x7d, 0x38,
|
|
|
9917
|
+- 0xeb, 0x65, 0x9c, 0x6d, 0x62, 0x46, 0x07, 0x3f, 0x0b, 0x95, 0xd2, 0x27, 0x0b, 0x8a, 0x33, 0xdb,
|
|
|
9918
|
+- 0x40, 0x57, 0xe9, 0xba, 0xa5, 0x67, 0x97, 0xe3, 0x09, 0xdf, 0xa1, 0x71, 0xbe, 0x66, 0x79, 0x19,
|
|
|
9919
|
+- 0x56, 0x50, 0xfb, 0x77, 0x2c, 0x98, 0xe1, 0x3d, 0xbf, 0x45, 0xf6, 0xd5, 0x0e, 0xff, 0x30, 0xfb,
|
|
|
9920
|
+- 0x2e, 0x72, 0x5c, 0x14, 0x72, 0x72, 0x5c, 0xe8, 0x9f, 0x56, 0xec, 0xf9, 0x69, 0x3f, 0x6f, 0x81,
|
|
|
9921
|
+- 0x58, 0x81, 0xa7, 0x20, 0xca, 0x7f, 0xbb, 0x29, 0xca, 0xcf, 0xe5, 0x2f, 0xea, 0x1c, 0x19, 0xfe,
|
|
|
9922
|
+- 0x4f, 0x2d, 0x98, 0xe6, 0x08, 0xc9, 0x5b, 0xf2, 0x87, 0x3a, 0x0f, 0x83, 0x24, 0xab, 0x53, 0xd9,
|
|
|
9923
|
+- 0xa9, 0xb3, 0x3f, 0xca, 0x98, 0xac, 0x52, 0xcf, 0xc9, 0x6a, 0xca, 0x0d, 0x74, 0x8c, 0x24, 0x8c,
|
|
|
9924
|
+- 0xc7, 0x8e, 0x15, 0x6d, 0xff, 0x91, 0x05, 0x88, 0x37, 0x63, 0xb0, 0x3f, 0x94, 0xa9, 0x60, 0xa5,
|
|
|
9925
|
+- 0xda, 0x75, 0x91, 0x1c, 0x35, 0x0a, 0x82, 0x35, 0xac, 0x13, 0x19, 0x9e, 0x94, 0x41, 0x40, 0xb1,
|
|
|
9926
|
+- 0xbf, 0x41, 0xc0, 0x31, 0x46, 0xf4, 0x6b, 0x25, 0x48, 0x1b, 0xf3, 0xa3, 0x7b, 0x30, 0xde, 0x70,
|
|
|
9927
|
+- 0xda, 0xce, 0xa6, 0xeb, 0xb9, 0xb1, 0x4b, 0xa2, 0x5e, 0x96, 0x44, 0x4b, 0x1a, 0x9e, 0x78, 0xea,
|
|
|
9928
|
+- 0xd5, 0x4a, 0xb0, 0x41, 0x07, 0xcd, 0x03, 0xb4, 0x43, 0x77, 0xcf, 0xf5, 0x48, 0x8b, 0x69, 0x1c,
|
|
|
9929
|
+- 0x98, 0xb7, 0x22, 0x37, 0x8f, 0x91, 0xa5, 0x58, 0xc3, 0xc8, 0x70, 0x3c, 0x2b, 0x3e, 0x3a, 0xc7,
|
|
|
9930
|
+- 0xb3, 0xd2, 0x31, 0x1d, 0xcf, 0x86, 0x06, 0x72, 0x3c, 0xc3, 0x70, 0x5e, 0xb2, 0x48, 0xf4, 0xff,
|
|
|
9931
|
+- 0x8a, 0xeb, 0x11, 0xc1, 0x17, 0x73, 0x1f, 0xc6, 0xb9, 0xc3, 0x83, 0xca, 0x79, 0x9c, 0x89, 0x81,
|
|
|
9932
|
+- 0x73, 0x6a, 0xa2, 0xcf, 0xc3, 0xac, 0xe3, 0x79, 0xc1, 0x7d, 0x35, 0x6a, 0xcb, 0x51, 0xc3, 0xf1,
|
|
|
9933
|
+- 0xb8, 0xc6, 0x7e, 0x84, 0x51, 0x7d, 0xe2, 0xf0, 0xa0, 0x32, 0xbb, 0x90, 0x83, 0x83, 0x73, 0x6b,
|
|
|
9934
|
+- 0xa7, 0xfc, 0xd6, 0x46, 0xfb, 0xf9, 0xad, 0xd9, 0x3b, 0x70, 0xa6, 0x4e, 0x42, 0x97, 0xa5, 0x88,
|
|
|
9935
|
+- 0x6c, 0x26, 0x5b, 0x72, 0x03, 0xca, 0x61, 0xea, 0x10, 0x1a, 0x28, 0xb0, 0x91, 0x16, 0x06, 0x57,
|
|
|
9936
|
+- 0x1e, 0x3a, 0x09, 0x21, 0xfb, 0x4f, 0x2c, 0x18, 0x11, 0x0e, 0x05, 0xa7, 0xc0, 0xfb, 0x2c, 0x18,
|
|
|
9937
|
+- 0x2a, 0xe8, 0x4a, 0xf6, 0x41, 0xcd, 0x3a, 0x93, 0xab, 0x7c, 0x5e, 0x4d, 0x29, 0x9f, 0x9f, 0xec,
|
|
|
9938
|
+- 0x45, 0xa4, 0xb7, 0xda, 0xf9, 0x6f, 0x15, 0x61, 0xd2, 0x74, 0xa6, 0x38, 0x85, 0x21, 0x58, 0x87,
|
|
|
9939
|
+- 0x91, 0x48, 0x78, 0xee, 0x14, 0xf2, 0x6d, 0x9f, 0xd3, 0x93, 0x98, 0x18, 0x36, 0x09, 0x5f, 0x1d,
|
|
|
9940
|
+- 0x49, 0x24, 0xd3, 0x25, 0xa8, 0xf8, 0x08, 0x5d, 0x82, 0xfa, 0xf9, 0xb3, 0x94, 0x4e, 0xc2, 0x9f,
|
|
|
9941
|
+- 0xc5, 0xfe, 0x3a, 0xbb, 0x2c, 0xf4, 0xf2, 0x53, 0xe0, 0x23, 0x6e, 0x98, 0xd7, 0x8a, 0xdd, 0x63,
|
|
|
9942
|
+- 0x65, 0x89, 0x4e, 0xe5, 0xf0, 0x13, 0xbf, 0x64, 0xc1, 0xc5, 0x8c, 0xaf, 0xd2, 0x98, 0x8b, 0xe7,
|
|
|
9943
|
+- 0x60, 0xd4, 0xe9, 0x34, 0x5d, 0xb5, 0x97, 0xb5, 0x87, 0xa8, 0x05, 0x51, 0x8e, 0x15, 0x06, 0x5a,
|
|
|
9944
|
+- 0x82, 0x19, 0xf2, 0xa0, 0xed, 0xf2, 0x97, 0x40, 0xdd, 0xfa, 0xb0, 0xc8, 0x43, 0xbc, 0x2e, 0xa7,
|
|
|
9945
|
+- 0x81, 0xb8, 0x1b, 0x5f, 0xb9, 0x43, 0x17, 0x73, 0xdd, 0xa1, 0xff, 0xa1, 0x05, 0x63, 0xa2, 0xdb,
|
|
|
9946
|
+- 0xa7, 0x30, 0xda, 0xdf, 0x61, 0x8e, 0xf6, 0xe3, 0x3d, 0x46, 0x3b, 0x67, 0x98, 0xff, 0x4e, 0x41,
|
|
|
9947
|
+- 0xf5, 0xb7, 0x16, 0x84, 0xf1, 0x00, 0x4c, 0xcb, 0xab, 0x30, 0xda, 0x0e, 0x83, 0x38, 0x68, 0x04,
|
|
|
9948
|
+- 0x9e, 0xe0, 0x59, 0x9e, 0x48, 0xbc, 0xf5, 0x79, 0xf9, 0x91, 0xf6, 0x1b, 0x2b, 0x6c, 0x36, 0x7a,
|
|
|
9949
|
+- 0x41, 0x18, 0x0b, 0x3e, 0x21, 0x19, 0xbd, 0x20, 0x8c, 0x31, 0x83, 0xa0, 0x26, 0x40, 0xec, 0x84,
|
|
|
9950
|
+- 0x2d, 0x12, 0xd3, 0x32, 0x11, 0xf8, 0x23, 0xff, 0xf0, 0xe8, 0xc4, 0xae, 0x37, 0xef, 0xfa, 0x71,
|
|
|
9951
|
+- 0x14, 0x87, 0xf3, 0xab, 0x7e, 0x7c, 0x27, 0xe4, 0x22, 0x90, 0xe6, 0x7e, 0xaf, 0x68, 0x61, 0x8d,
|
|
|
9952
|
+- 0xae, 0xf4, 0x91, 0x64, 0x6d, 0x0c, 0x99, 0x4f, 0xda, 0xeb, 0xa2, 0x1c, 0x2b, 0x0c, 0xfb, 0x15,
|
|
|
9953
|
+- 0x76, 0x95, 0xb0, 0x01, 0x3a, 0x9e, 0x67, 0xfc, 0x37, 0x46, 0xd5, 0xd0, 0xb2, 0xf7, 0xac, 0xaa,
|
|
|
9954
|
+- 0xee, 0x7f, 0xdf, 0xfb, 0xe4, 0xa6, 0x0d, 0xeb, 0x9e, 0x30, 0x89, 0x93, 0x3e, 0xfa, 0xce, 0x2e,
|
|
|
9955
|
+- 0x4b, 0x87, 0xe7, 0xfb, 0x5c, 0x01, 0xc7, 0xb0, 0x6d, 0x60, 0x61, 0xa7, 0x59, 0x78, 0xde, 0xd5,
|
|
|
9956
|
+- 0x9a, 0x58, 0xe4, 0x5a, 0xd8, 0x69, 0x01, 0xc0, 0x09, 0x0e, 0xba, 0x26, 0x04, 0xe8, 0x92, 0x91,
|
|
|
9957
|
+- 0x1d, 0x4e, 0x0a, 0xd0, 0xf2, 0xf3, 0x35, 0x09, 0xfa, 0x05, 0x18, 0x53, 0x59, 0xe2, 0x6a, 0x3c,
|
|
|
9958
|
+- 0xd9, 0x96, 0x08, 0x83, 0xb2, 0x9c, 0x14, 0x63, 0x1d, 0x07, 0x6d, 0xc0, 0x54, 0xc4, 0xb5, 0x27,
|
|
|
9959
|
+- 0x2a, 0xda, 0x1d, 0xd7, 0x42, 0x7d, 0x52, 0x5a, 0x48, 0xd4, 0x4d, 0xf0, 0x11, 0x2b, 0xe2, 0x47,
|
|
|
9960
|
+- 0x87, 0x74, 0x74, 0x4c, 0x93, 0x40, 0xaf, 0xc3, 0xa4, 0xa7, 0xe7, 0x5a, 0xaf, 0x09, 0x25, 0x95,
|
|
|
9961
|
+- 0x32, 0x20, 0x36, 0x32, 0xb1, 0xd7, 0x70, 0x0a, 0x9b, 0xf2, 0x3a, 0x7a, 0x89, 0x88, 0xd0, 0xe8,
|
|
|
9962
|
+- 0xf8, 0x2d, 0x12, 0x89, 0x1c, 0x57, 0x8c, 0xd7, 0xb9, 0x9d, 0x83, 0x83, 0x73, 0x6b, 0xa3, 0x57,
|
|
|
9963
|
+- 0x61, 0x5c, 0x7e, 0xbe, 0xe6, 0xc6, 0x9b, 0x98, 0xa9, 0x6b, 0x30, 0x6c, 0x60, 0xa2, 0xfb, 0x70,
|
|
|
9964
|
+- 0x4e, 0xfe, 0xdf, 0x08, 0x9d, 0xad, 0x2d, 0xb7, 0x21, 0xbc, 0xa8, 0xb9, 0xaf, 0xce, 0x82, 0x74,
|
|
|
9965
|
+- 0xfe, 0x59, 0xce, 0x42, 0x3a, 0x3a, 0xa8, 0x5c, 0x16, 0xa3, 0x96, 0x09, 0x67, 0x93, 0x98, 0x4d,
|
|
|
9966
|
+- 0x1f, 0xad, 0xc1, 0x99, 0x6d, 0xe2, 0x78, 0xf1, 0xf6, 0xd2, 0x36, 0x69, 0xec, 0xc8, 0x4d, 0xc4,
|
|
|
9967
|
+- 0x9c, 0x83, 0x35, 0xe3, 0xee, 0x9b, 0xdd, 0x28, 0x38, 0xab, 0x1e, 0x7a, 0x07, 0x66, 0xdb, 0x9d,
|
|
|
9968
|
+- 0x4d, 0xcf, 0x8d, 0xb6, 0xd7, 0x83, 0x98, 0x19, 0x65, 0xa8, 0x24, 0x6b, 0xc2, 0x8b, 0x58, 0x39,
|
|
|
9969
|
+- 0x46, 0xd7, 0x72, 0xf0, 0x70, 0x2e, 0x05, 0xf4, 0x3e, 0x9c, 0x4b, 0x2d, 0x06, 0xe1, 0xd3, 0x38,
|
|
|
9970
|
+- 0x99, 0x1f, 0xef, 0xb6, 0x9e, 0x55, 0x41, 0xf8, 0x28, 0x66, 0x81, 0x70, 0x76, 0x13, 0x1f, 0xcc,
|
|
|
9971
|
+- 0x54, 0xe7, 0x3d, 0x5a, 0x59, 0x63, 0xca, 0xd0, 0x97, 0x61, 0x5c, 0x5f, 0x45, 0xe2, 0x82, 0xb9,
|
|
|
9972
|
+- 0x92, 0xcd, 0xb3, 0x68, 0xab, 0x8d, 0xb3, 0x74, 0x6a, 0x45, 0xe9, 0x30, 0x6c, 0x50, 0xb4, 0x09,
|
|
|
9973
|
+- 0x64, 0x7f, 0x1f, 0xba, 0x0d, 0xa3, 0x0d, 0xcf, 0x25, 0x7e, 0xbc, 0x5a, 0xeb, 0x15, 0x74, 0x63,
|
|
|
9974
|
+- 0x49, 0xe0, 0x88, 0x01, 0x13, 0x01, 0x42, 0x79, 0x19, 0x56, 0x14, 0xec, 0xdf, 0x28, 0x40, 0xa5,
|
|
|
9975
|
+- 0x4f, 0xb4, 0xd9, 0x94, 0x46, 0xd9, 0x1a, 0x48, 0xa3, 0xbc, 0x20, 0x53, 0xc6, 0xad, 0xa7, 0xc4,
|
|
|
9976
|
+- 0xec, 0x54, 0x3a, 0xb8, 0x44, 0xd8, 0x4e, 0xe3, 0x0f, 0x6c, 0xe1, 0xab, 0x2b, 0xa5, 0x4b, 0x7d,
|
|
|
9977
|
+- 0x6d, 0xcf, 0x8d, 0xc7, 0xa8, 0xa1, 0xc1, 0x05, 0x91, 0xdc, 0x87, 0x05, 0xfb, 0xeb, 0x05, 0x38,
|
|
|
9978
|
+- 0xa7, 0x86, 0xf0, 0x2f, 0xee, 0xc0, 0xdd, 0xed, 0x1e, 0xb8, 0x13, 0x78, 0x96, 0xb1, 0xef, 0xc0,
|
|
|
9979
|
+- 0x30, 0x0f, 0x5a, 0x32, 0x00, 0x03, 0xf4, 0x94, 0x19, 0xe1, 0x4a, 0x5d, 0xd3, 0x46, 0x94, 0xab,
|
|
|
9980
|
+- 0xbf, 0x62, 0xc1, 0xd4, 0xc6, 0x52, 0xad, 0x1e, 0x34, 0x76, 0x48, 0xbc, 0xc0, 0x19, 0x56, 0x2c,
|
|
|
9981
|
+- 0xf8, 0x1f, 0xeb, 0x21, 0xf9, 0x9a, 0x2c, 0x8e, 0xe9, 0x32, 0x94, 0xb6, 0x83, 0x28, 0x4e, 0xbf,
|
|
|
9982
|
+- 0xd9, 0xde, 0x0c, 0xa2, 0x18, 0x33, 0x88, 0xfd, 0xbb, 0x16, 0x0c, 0xb1, 0x44, 0xa7, 0xfd, 0xb2,
|
|
|
9983
|
+- 0xef, 0x0e, 0xf2, 0x5d, 0xe8, 0x65, 0x18, 0x26, 0x5b, 0x5b, 0xa4, 0x11, 0x8b, 0x59, 0x95, 0x0e,
|
|
|
9984
|
+- 0xa5, 0xc3, 0xcb, 0xac, 0x94, 0x5e, 0xfa, 0xac, 0x31, 0xfe, 0x17, 0x0b, 0x64, 0xf4, 0x16, 0x94,
|
|
|
9985
|
+- 0x63, 0x77, 0x97, 0x2c, 0x34, 0x9b, 0xe2, 0xd5, 0xeb, 0x21, 0xfc, 0x77, 0x37, 0x24, 0x01, 0x9c,
|
|
|
9986
|
+- 0xd0, 0xb2, 0xbf, 0x5a, 0x00, 0x48, 0x5c, 0xef, 0xfb, 0x7d, 0xe2, 0x62, 0xd7, 0x7b, 0xc8, 0x95,
|
|
|
9987
|
+- 0x8c, 0xf7, 0x10, 0x94, 0x10, 0xcc, 0x78, 0x0c, 0x51, 0xc3, 0x54, 0x1c, 0x68, 0x98, 0x4a, 0xc7,
|
|
|
9988
|
+- 0x19, 0xa6, 0x25, 0x98, 0x49, 0x42, 0x07, 0x98, 0x71, 0x54, 0x98, 0x90, 0xb2, 0x91, 0x06, 0xe2,
|
|
|
9989
|
+- 0x6e, 0x7c, 0x9b, 0xc0, 0x65, 0x19, 0xd1, 0x52, 0xde, 0x35, 0xcc, 0xa8, 0xf2, 0x18, 0x89, 0x98,
|
|
|
9990
|
+- 0x93, 0x07, 0x9f, 0x42, 0xee, 0x83, 0xcf, 0x4f, 0x59, 0x70, 0x36, 0xdd, 0x0e, 0xf3, 0x5e, 0xfb,
|
|
|
9991
|
+- 0x01, 0x0b, 0xce, 0xb1, 0x67, 0x2f, 0xd6, 0x6a, 0xf7, 0x23, 0xdb, 0x4b, 0xd9, 0x21, 0x15, 0x7a,
|
|
|
9992
|
+- 0xf7, 0x38, 0xf1, 0x5c, 0x5e, 0xcb, 0x22, 0x8d, 0xb3, 0x5b, 0xb4, 0xbf, 0xdf, 0x02, 0xe1, 0x24,
|
|
|
9993
|
+- 0x34, 0xc0, 0xc6, 0x7e, 0x5b, 0xa6, 0x2a, 0x35, 0x02, 0x78, 0x5f, 0xce, 0xf7, 0x9a, 0x12, 0x61,
|
|
|
9994
|
+- 0xbb, 0xd5, 0x45, 0x6a, 0x04, 0xeb, 0x36, 0x68, 0xd9, 0x4d, 0x10, 0xd0, 0x2a, 0x61, 0x7a, 0xa2,
|
|
|
9995
|
+- 0xfe, 0xbd, 0xb9, 0x0e, 0xd0, 0x64, 0xb8, 0x5a, 0xc2, 0x42, 0x75, 0x6c, 0x57, 0x15, 0x04, 0x6b,
|
|
|
9996
|
+- 0x58, 0xf6, 0x8f, 0x14, 0x60, 0x4c, 0x06, 0x8c, 0xee, 0xf8, 0x83, 0x48, 0x73, 0xc7, 0xca, 0x1b,
|
|
|
9997
|
+- 0xc3, 0x32, 0x7c, 0x52, 0xc2, 0xb5, 0x44, 0x08, 0x4e, 0x32, 0x7c, 0x4a, 0x00, 0x4e, 0x70, 0xd0,
|
|
|
9998
|
+- 0x33, 0x30, 0x12, 0x75, 0x36, 0x19, 0x7a, 0xca, 0xf5, 0xa5, 0xce, 0x8b, 0xb1, 0x84, 0xa3, 0xcf,
|
|
|
9999
|
+- 0xc3, 0x34, 0xaf, 0x17, 0x06, 0x6d, 0xa7, 0xc5, 0x95, 0x86, 0x43, 0xca, 0x17, 0x75, 0x7a, 0x2d,
|
|
|
10000
|
+- 0x05, 0x3b, 0x3a, 0xa8, 0x9c, 0x4d, 0x97, 0x31, 0x75, 0x73, 0x17, 0x15, 0xfb, 0xcb, 0x80, 0xba,
|
|
|
10001
|
+- 0x63, 0x60, 0xa3, 0x37, 0xb8, 0x01, 0x92, 0x1b, 0x92, 0x66, 0x2f, 0x3d, 0xb2, 0xee, 0x3a, 0x29,
|
|
|
10002
|
+- 0xcd, 0xcf, 0x79, 0x2d, 0xac, 0xea, 0xdb, 0x7f, 0xad, 0x08, 0xd3, 0x69, 0x47, 0x3a, 0x74, 0x13,
|
|
|
10003
|
+- 0x86, 0xf9, 0x05, 0x23, 0xc8, 0xf7, 0x78, 0xa6, 0xd4, 0xdc, 0xef, 0xd8, 0x56, 0x13, 0x77, 0x94,
|
|
|
10004
|
+- 0xa8, 0x8f, 0xde, 0x81, 0xb1, 0x66, 0x70, 0xdf, 0xbf, 0xef, 0x84, 0xcd, 0x85, 0xda, 0xaa, 0x58,
|
|
|
10005
|
+- 0x97, 0x99, 0x7c, 0x6a, 0x35, 0x41, 0xd3, 0x5d, 0xfa, 0x98, 0x4a, 0x3e, 0x01, 0x61, 0x9d, 0x1c,
|
|
|
10006
|
+- 0xda, 0x60, 0x71, 0xfd, 0xb6, 0xdc, 0xd6, 0x9a, 0xd3, 0xee, 0x65, 0x8d, 0xba, 0x24, 0x91, 0x34,
|
|
|
10007
|
+- 0xca, 0x13, 0x22, 0xf8, 0x1f, 0x07, 0xe0, 0x84, 0x10, 0xfa, 0x6e, 0x38, 0x13, 0xe5, 0xa8, 0xb6,
|
|
|
10008
|
+- 0xf2, 0x52, 0x22, 0xf4, 0xd2, 0xf6, 0x2c, 0x3e, 0x46, 0x25, 0x88, 0x2c, 0x25, 0x58, 0x56, 0x33,
|
|
|
10009
|
+- 0xf6, 0x57, 0xce, 0x80, 0xb1, 0x1b, 0x8d, 0xbc, 0x38, 0xd6, 0x09, 0xe5, 0xc5, 0xc1, 0x30, 0x4a,
|
|
|
10010
|
+- 0x76, 0xdb, 0xf1, 0x7e, 0xd5, 0x0d, 0x7b, 0x25, 0x56, 0x5b, 0x16, 0x38, 0xdd, 0x34, 0x25, 0x04,
|
|
|
10011
|
+- 0x2b, 0x3a, 0xd9, 0xc9, 0x8b, 0x8a, 0x1f, 0x62, 0xf2, 0xa2, 0xd2, 0x29, 0x26, 0x2f, 0x5a, 0x87,
|
|
|
10012
|
+- 0x91, 0x96, 0x1b, 0x63, 0xd2, 0x0e, 0x04, 0x6b, 0x97, 0xb9, 0x0e, 0x6f, 0x70, 0x94, 0xee, 0x84,
|
|
|
10013
|
+- 0x19, 0x02, 0x80, 0x25, 0x11, 0xf4, 0x86, 0xda, 0x81, 0xc3, 0xf9, 0x92, 0x51, 0xf7, 0x7b, 0x5a,
|
|
|
10014
|
+- 0xe6, 0x1e, 0x14, 0xc9, 0x8a, 0x46, 0x1e, 0x36, 0x59, 0xd1, 0x8a, 0x4c, 0x31, 0x34, 0x9a, 0x6f,
|
|
|
10015
|
+- 0x3a, 0xce, 0x32, 0x08, 0xf5, 0x49, 0x2c, 0x64, 0x24, 0x63, 0x2a, 0x9f, 0x5c, 0x32, 0xa6, 0xef,
|
|
|
10016
|
+- 0xb7, 0xe0, 0x5c, 0x3b, 0x2b, 0x2f, 0x99, 0x48, 0x0c, 0xf4, 0xf2, 0xc0, 0x89, 0xd7, 0x8c, 0x06,
|
|
|
10017
|
+- 0x99, 0x88, 0x9c, 0x89, 0x86, 0xb3, 0x9b, 0xa3, 0x03, 0x1d, 0x6e, 0x36, 0x45, 0x36, 0xa1, 0xa7,
|
|
|
10018
|
+- 0x72, 0xb2, 0x3a, 0xf5, 0xc8, 0xe5, 0xb4, 0x91, 0x91, 0x41, 0xe8, 0xe3, 0x79, 0x19, 0x84, 0x06,
|
|
|
10019
|
+- 0xce, 0x1b, 0xf4, 0x86, 0xca, 0xe7, 0x34, 0x91, 0xbf, 0x94, 0x78, 0xb6, 0xa6, 0xbe, 0x59, 0x9c,
|
|
|
10020
|
+- 0xde, 0x50, 0x59, 0x9c, 0x7a, 0xc4, 0x37, 0xe3, 0x39, 0x9a, 0xfa, 0xe6, 0x6e, 0xd2, 0xf2, 0x2f,
|
|
|
10021
|
+- 0x4d, 0x9d, 0x4c, 0xfe, 0x25, 0xe3, 0xaa, 0xe1, 0x29, 0x80, 0x9e, 0xed, 0x73, 0xd5, 0x18, 0x74,
|
|
|
10022
|
+- 0x7b, 0x5f, 0x36, 0x3c, 0xd7, 0xd4, 0xcc, 0x43, 0xe5, 0x9a, 0xba, 0xa7, 0xe7, 0x6e, 0x42, 0x7d,
|
|
|
10023
|
+- 0x92, 0x13, 0x51, 0xa4, 0x01, 0x33, 0x36, 0xdd, 0xd3, 0x2f, 0xc0, 0x33, 0xf9, 0x74, 0xd5, 0x3d,
|
|
|
10024
|
+- 0xd7, 0x4d, 0x37, 0xf3, 0x0a, 0xec, 0xca, 0x04, 0x75, 0xf6, 0x74, 0x32, 0x41, 0x9d, 0x3b, 0xf1,
|
|
|
10025
|
+- 0x4c, 0x50, 0xe7, 0x4f, 0x21, 0x13, 0xd4, 0x63, 0x1f, 0x6a, 0x26, 0xa8, 0xd9, 0x47, 0x90, 0x09,
|
|
|
10026
|
+- 0x6a, 0x3d, 0xc9, 0x04, 0x75, 0x21, 0x7f, 0x4a, 0x32, 0xec, 0x59, 0x73, 0xf2, 0x3f, 0xdd, 0x83,
|
|
|
10027
|
+- 0x72, 0x5b, 0x46, 0x7a, 0x10, 0x01, 0xd8, 0xb2, 0x93, 0xd1, 0x66, 0x85, 0x83, 0xe0, 0x53, 0xa2,
|
|
|
10028
|
+- 0x40, 0x38, 0x21, 0x45, 0xe9, 0x26, 0xf9, 0xa0, 0x1e, 0xef, 0xa1, 0x04, 0xcd, 0x52, 0x2f, 0xe5,
|
|
|
10029
|
+- 0x67, 0x81, 0xb2, 0xff, 0x6a, 0x01, 0x2e, 0xf5, 0x5e, 0xd7, 0x89, 0x6e, 0xaa, 0x96, 0xbc, 0xa5,
|
|
|
10030
|
+- 0xa4, 0x74, 0x53, 0x5c, 0xc8, 0x49, 0xb0, 0x06, 0x0e, 0x87, 0x73, 0x03, 0x66, 0x94, 0x21, 0xab,
|
|
|
10031
|
+- 0xe7, 0x36, 0xf6, 0xb5, 0x24, 0xb5, 0xca, 0x61, 0xaf, 0x9e, 0x46, 0xc0, 0xdd, 0x75, 0xd0, 0x02,
|
|
|
10032
|
+- 0x4c, 0x19, 0x85, 0xab, 0x55, 0x21, 0xcc, 0x28, 0x65, 0x58, 0xdd, 0x04, 0xe3, 0x34, 0xbe, 0xfd,
|
|
|
10033
|
+- 0x73, 0x16, 0x3c, 0x96, 0x93, 0x24, 0x61, 0xe0, 0x68, 0x2f, 0x5b, 0x30, 0xd5, 0x36, 0xab, 0xf6,
|
|
|
10034
|
+- 0x09, 0x0a, 0x65, 0xa4, 0x62, 0x50, 0x7d, 0x4d, 0x01, 0x70, 0x9a, 0xe8, 0xe2, 0xd5, 0xdf, 0xfa,
|
|
|
10035
|
+- 0xfd, 0x4b, 0x1f, 0xfb, 0xed, 0xdf, 0xbf, 0xf4, 0xb1, 0xdf, 0xf9, 0xfd, 0x4b, 0x1f, 0xfb, 0xff,
|
|
|
10036
|
+- 0x0f, 0x2f, 0x59, 0xbf, 0x75, 0x78, 0xc9, 0xfa, 0xed, 0xc3, 0x4b, 0xd6, 0xef, 0x1c, 0x5e, 0xb2,
|
|
|
10037
|
+- 0x7e, 0xef, 0xf0, 0x92, 0xf5, 0xd5, 0x3f, 0xb8, 0xf4, 0xb1, 0xb7, 0x0b, 0x7b, 0x2f, 0xfc, 0xbf,
|
|
|
10038
|
+- 0x00, 0x00, 0x00, 0xff, 0xff, 0x41, 0x99, 0x07, 0x31, 0x7e, 0xe5, 0x00, 0x00,
|
|
10041
|
10039
|
+ 0x76, 0x18, 0xbc, 0xd5, 0xdd, 0x7c, 0xf4, 0xe1, 0xfb, 0xce, 0x8b, 0x43, 0xcd, 0x4c, 0x8f, 0x4a,
|
|
10042
|
10040
|
+ 0xbb, 0xa3, 0xd1, 0x4a, 0x22, 0x57, 0x23, 0x69, 0x25, 0xaf, 0x76, 0x65, 0x93, 0x6c, 0x72, 0x86,
|
|
10043
|
10041
|
+ 0x9a, 0x21, 0xa7, 0x75, 0x9b, 0x33, 0xda, 0x95, 0xb5, 0xeb, 0x2d, 0x76, 0x5f, 0x92, 0x25, 0x16,
|
|
...
|
...
|
@@ -10835,74 +10684,6 @@ index 48b5a3c..f27250e 100644
|
|
10835
|
10835
|
+ 0xaf, 0x58, 0xbf, 0x77, 0x78, 0xc5, 0xfa, 0xea, 0x1f, 0x5c, 0xf9, 0xd8, 0xdb, 0x85, 0xbd, 0x17,
|
|
10836
|
10836
|
+ 0xfe, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x60, 0x08, 0xf7, 0x9c, 0xf8, 0xe6, 0x00, 0x00,
|
|
10837
|
10837
|
}
|
|
10838
|
|
-diff --git a/staging/src/k8s.io/api/core/v1/generated.proto b/staging/src/k8s.io/api/core/v1/generated.proto
|
|
10839
|
|
-index c1e9922..8e3f14f 100644
|
|
10840
|
|
-+++ b/staging/src/k8s.io/api/core/v1/generated.proto
|
|
10841
|
|
-@@ -232,6 +232,17 @@ message Capabilities {
|
|
10842
|
|
- repeated string drop = 2;
|
|
10843
|
|
- }
|
|
10844
|
|
-
|
|
10845
|
|
-+// Represents a Photon Controller persistent disk resource.
|
|
10846
|
|
-+message CascadeDiskVolumeSource {
|
|
10847
|
|
-+ // ID that identifies Cascade persistent disk
|
|
10848
|
|
-+ optional string diskID = 1;
|
|
10849
|
|
-+
|
|
10850
|
|
-+ // Filesystem type to mount.
|
|
10851
|
|
-+ // Must be a filesystem type supported by the host operating system.
|
|
10852
|
|
-+ // Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
|
|
10853
|
|
-+ optional string fsType = 2;
|
|
10854
|
|
-+}
|
|
10855
|
|
-+
|
|
10856
|
|
- // Represents a Ceph Filesystem mount that lasts the lifetime of a pod
|
|
10857
|
|
- // Cephfs volumes do not support ownership management or SELinux relabeling.
|
|
10858
|
|
- message CephFSPersistentVolumeSource {
|
|
10859
|
|
-@@ -2423,9 +2434,9 @@ message PersistentVolumeSource {
|
|
10860
|
|
- // +optional
|
|
10861
|
|
- optional QuobyteVolumeSource quobyte = 15;
|
|
10862
|
|
-
|
|
10863
|
|
-- // AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
|
10864
|
|
-+ // CascadeDisk represents a Cascade persistent disk attached and mounted on kubelets host machine
|
|
10865
|
|
- // +optional
|
|
10866
|
|
-- optional AzureDiskVolumeSource azureDisk = 16;
|
|
10867
|
|
-+ optional CascadeDiskVolumeSource cascadeDisk = 16;
|
|
10868
|
|
-
|
|
10869
|
|
- // PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
|
|
10870
|
|
- optional PhotonPersistentDiskVolumeSource photonPersistentDisk = 17;
|
|
10871
|
|
-@@ -2450,6 +2461,10 @@ message PersistentVolumeSource {
|
|
10872
|
|
- // CSI represents storage that handled by an external CSI driver (Beta feature).
|
|
10873
|
|
- // +optional
|
|
10874
|
|
- optional CSIPersistentVolumeSource csi = 22;
|
|
10875
|
|
-+
|
|
10876
|
|
-+ // AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
|
10877
|
|
-+ // +optional
|
|
10878
|
|
-+ optional AzureDiskVolumeSource azureDisk = 23;
|
|
10879
|
|
- }
|
|
10880
|
|
-
|
|
10881
|
|
- // PersistentVolumeSpec is the specification of a persistent volume.
|
|
10882
|
|
-@@ -4652,9 +4667,9 @@ message VolumeSource {
|
|
10883
|
|
- // +optional
|
|
10884
|
|
- optional QuobyteVolumeSource quobyte = 21;
|
|
10885
|
|
-
|
|
10886
|
|
-- // AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
|
10887
|
|
-+ // CascadeDisk represents a Cascade persistent disk attached and mounted on kubelets host machine
|
|
10888
|
|
- // +optional
|
|
10889
|
|
-- optional AzureDiskVolumeSource azureDisk = 22;
|
|
10890
|
|
-+ optional CascadeDiskVolumeSource cascadeDisk = 22;
|
|
10891
|
|
-
|
|
10892
|
|
- // PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
|
|
10893
|
|
- optional PhotonPersistentDiskVolumeSource photonPersistentDisk = 23;
|
|
10894
|
|
-@@ -4673,6 +4688,10 @@ message VolumeSource {
|
|
10895
|
|
- // StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.
|
|
10896
|
|
- // +optional
|
|
10897
|
|
- optional StorageOSVolumeSource storageos = 27;
|
|
10898
|
|
-+
|
|
10899
|
|
-+ // AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
|
10900
|
|
-+ // +optional
|
|
10901
|
|
-+ optional AzureDiskVolumeSource azureDisk = 28;
|
|
10902
|
|
- }
|
|
10903
|
|
-
|
|
10904
|
|
- // Represents a vSphere volume resource.
|
|
10905
|
10838
|
diff --git a/staging/src/k8s.io/api/core/v1/types.go b/staging/src/k8s.io/api/core/v1/types.go
|
|
10906
|
10839
|
index d9f4869..5417d75 100644
|
|
10907
|
10840
|
--- a/staging/src/k8s.io/api/core/v1/types.go
|
|
...
|
...
|
@@ -10968,153 +10749,6 @@ index d9f4869..5417d75 100644
|
|
10968
|
10968
|
// Adapts a ConfigMap into a volume.
|
|
10969
|
10969
|
//
|
|
10970
|
10970
|
// The contents of the target ConfigMap's Data field will be presented in a
|
|
10971
|
|
-diff --git a/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go b/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go
|
|
10972
|
|
-index 59f1d1e..61d347c 100644
|
|
10973
|
|
-+++ b/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go
|
|
10974
|
|
-@@ -142,6 +142,16 @@ func (Capabilities) SwaggerDoc() map[string]string {
|
|
10975
|
|
- return map_Capabilities
|
|
10976
|
|
- }
|
|
10977
|
|
-
|
|
10978
|
|
-+var map_CascadeDiskVolumeSource = map[string]string{
|
|
10979
|
|
-+ "": "Represents a Photon Controller persistent disk resource.",
|
|
10980
|
|
-+ "diskID": "ID that identifies Cascade persistent disk",
|
|
10981
|
|
-+ "fsType": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
|
|
10982
|
|
-+}
|
|
10983
|
|
-+
|
|
10984
|
|
-+func (CascadeDiskVolumeSource) SwaggerDoc() map[string]string {
|
|
10985
|
|
-+ return map_CascadeDiskVolumeSource
|
|
10986
|
|
-+}
|
|
10987
|
|
-+
|
|
10988
|
|
- var map_CephFSPersistentVolumeSource = map[string]string{
|
|
10989
|
|
- "": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
|
|
10990
|
|
- "monitors": "Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it",
|
|
10991
|
|
-@@ -1265,13 +1275,14 @@ var map_PersistentVolumeSource = map[string]string{
|
|
10992
|
|
- "azureFile": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
|
|
10993
|
|
- "vsphereVolume": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine",
|
|
10994
|
|
- "quobyte": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime",
|
|
10995
|
|
-- "azureDisk": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
|
|
10996
|
|
-+ "vkeDisk": "CascadeDisk represents a Cascade persistent disk attached and mounted on kubelets host machine",
|
|
10997
|
|
- "photonPersistentDisk": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine",
|
|
10998
|
|
- "portworxVolume": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine",
|
|
10999
|
|
- "scaleIO": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.",
|
|
11000
|
|
- "local": "Local represents directly-attached storage with node affinity",
|
|
11001
|
|
- "storageos": "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://releases.k8s.io/HEAD/examples/volumes/storageos/README.md",
|
|
11002
|
|
- "csi": "CSI represents storage that handled by an external CSI driver (Beta feature).",
|
|
11003
|
|
-+ "azureDisk": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
|
|
11004
|
|
- }
|
|
11005
|
|
-
|
|
11006
|
|
- func (PersistentVolumeSource) SwaggerDoc() map[string]string {
|
|
11007
|
|
-@@ -2281,12 +2292,13 @@ var map_VolumeSource = map[string]string{
|
|
11008
|
|
- "configMap": "ConfigMap represents a configMap that should populate this volume",
|
|
11009
|
|
- "vsphereVolume": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine",
|
|
11010
|
|
- "quobyte": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime",
|
|
11011
|
|
-- "azureDisk": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
|
|
11012
|
|
-+ "vkeDisk": "CascadeDisk represents a Cascade persistent disk attached and mounted on kubelets host machine",
|
|
11013
|
|
- "photonPersistentDisk": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine",
|
|
11014
|
|
- "projected": "Items for all in one resources secrets, configmaps, and downward API",
|
|
11015
|
|
- "portworxVolume": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine",
|
|
11016
|
|
- "scaleIO": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.",
|
|
11017
|
|
- "storageos": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.",
|
|
11018
|
|
-+ "azureDisk": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
|
|
11019
|
|
- }
|
|
11020
|
|
-
|
|
11021
|
|
- func (VolumeSource) SwaggerDoc() map[string]string {
|
|
11022
|
|
-diff --git a/staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go b/staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go
|
|
11023
|
|
-index 0501bbc..1a09f3d 100644
|
|
11024
|
|
-+++ b/staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go
|
|
11025
|
|
-@@ -321,6 +321,22 @@ func (in *Capabilities) DeepCopy() *Capabilities {
|
|
11026
|
|
- }
|
|
11027
|
|
-
|
|
11028
|
|
- // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
11029
|
|
-+func (in *CascadeDiskVolumeSource) DeepCopyInto(out *CascadeDiskVolumeSource) {
|
|
11030
|
|
-+ *out = *in
|
|
11031
|
|
-+ return
|
|
11032
|
|
-+}
|
|
11033
|
|
-+
|
|
11034
|
|
-+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CascadeDiskVolumeSource.
|
|
11035
|
|
-+func (in *CascadeDiskVolumeSource) DeepCopy() *CascadeDiskVolumeSource {
|
|
11036
|
|
-+ if in == nil {
|
|
11037
|
|
-+ return nil
|
|
11038
|
|
-+ }
|
|
11039
|
|
-+ out := new(CascadeDiskVolumeSource)
|
|
11040
|
|
-+ in.DeepCopyInto(out)
|
|
11041
|
|
-+ return out
|
|
11042
|
|
-+}
|
|
11043
|
|
-+
|
|
11044
|
|
-+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
11045
|
|
- func (in *CephFSPersistentVolumeSource) DeepCopyInto(out *CephFSPersistentVolumeSource) {
|
|
11046
|
|
- *out = *in
|
|
11047
|
|
- if in.Monitors != nil {
|
|
11048
|
|
-@@ -3183,13 +3199,13 @@ func (in *PersistentVolumeSource) DeepCopyInto(out *PersistentVolumeSource) {
|
|
11049
|
|
- **out = **in
|
|
11050
|
|
- }
|
|
11051
|
|
- }
|
|
11052
|
|
-- if in.AzureDisk != nil {
|
|
11053
|
|
-- in, out := &in.AzureDisk, &out.AzureDisk
|
|
11054
|
|
-+ if in.CascadeDisk != nil {
|
|
11055
|
|
-+ in, out := &in.CascadeDisk, &out.CascadeDisk
|
|
11056
|
|
- if *in == nil {
|
|
11057
|
|
- *out = nil
|
|
11058
|
|
- } else {
|
|
11059
|
|
-- *out = new(AzureDiskVolumeSource)
|
|
11060
|
|
-- (*in).DeepCopyInto(*out)
|
|
11061
|
|
-+ *out = new(CascadeDiskVolumeSource)
|
|
11062
|
|
-+ **out = **in
|
|
11063
|
|
- }
|
|
11064
|
|
- }
|
|
11065
|
|
- if in.PhotonPersistentDisk != nil {
|
|
11066
|
|
-@@ -3246,6 +3262,15 @@ func (in *PersistentVolumeSource) DeepCopyInto(out *PersistentVolumeSource) {
|
|
11067
|
|
- (*in).DeepCopyInto(*out)
|
|
11068
|
|
- }
|
|
11069
|
|
- }
|
|
11070
|
|
-+ if in.AzureDisk != nil {
|
|
11071
|
|
-+ in, out := &in.AzureDisk, &out.AzureDisk
|
|
11072
|
|
-+ if *in == nil {
|
|
11073
|
|
-+ *out = nil
|
|
11074
|
|
-+ } else {
|
|
11075
|
|
-+ *out = new(AzureDiskVolumeSource)
|
|
11076
|
|
-+ (*in).DeepCopyInto(*out)
|
|
11077
|
|
-+ }
|
|
11078
|
|
-+ }
|
|
11079
|
|
- return
|
|
11080
|
|
- }
|
|
11081
|
|
-
|
|
11082
|
|
-@@ -5964,13 +5989,13 @@ func (in *VolumeSource) DeepCopyInto(out *VolumeSource) {
|
|
11083
|
|
- **out = **in
|
|
11084
|
|
- }
|
|
11085
|
|
- }
|
|
11086
|
|
-- if in.AzureDisk != nil {
|
|
11087
|
|
-- in, out := &in.AzureDisk, &out.AzureDisk
|
|
11088
|
|
-+ if in.CascadeDisk != nil {
|
|
11089
|
|
-+ in, out := &in.CascadeDisk, &out.CascadeDisk
|
|
11090
|
|
- if *in == nil {
|
|
11091
|
|
- *out = nil
|
|
11092
|
|
- } else {
|
|
11093
|
|
-- *out = new(AzureDiskVolumeSource)
|
|
11094
|
|
-- (*in).DeepCopyInto(*out)
|
|
11095
|
|
-+ *out = new(CascadeDiskVolumeSource)
|
|
11096
|
|
-+ **out = **in
|
|
11097
|
|
- }
|
|
11098
|
|
- }
|
|
11099
|
|
- if in.PhotonPersistentDisk != nil {
|
|
11100
|
|
-@@ -6018,6 +6043,15 @@ func (in *VolumeSource) DeepCopyInto(out *VolumeSource) {
|
|
11101
|
|
- (*in).DeepCopyInto(*out)
|
|
11102
|
|
- }
|
|
11103
|
|
- }
|
|
11104
|
|
-+ if in.AzureDisk != nil {
|
|
11105
|
|
-+ in, out := &in.AzureDisk, &out.AzureDisk
|
|
11106
|
|
-+ if *in == nil {
|
|
11107
|
|
-+ *out = nil
|
|
11108
|
|
-+ } else {
|
|
11109
|
|
-+ *out = new(AzureDiskVolumeSource)
|
|
11110
|
|
-+ (*in).DeepCopyInto(*out)
|
|
11111
|
|
-+ }
|
|
11112
|
|
-+ }
|
|
11113
|
|
- return
|
|
11114
|
|
- }
|
|
11115
|
|
-
|
|
11116
|
10971
|
--
|
|
11117
|
10972
|
2.7.4
|
|
11118
|
10973
|
|