85c0 0000 0000 0000 0000 0000 0000 0000
0000 0000 514d 3030 3030 3320 2020 2020
2020 2020 2020 2020 0003 0200 0004 322e
352b 2020 2020 5145 4d55 2044 5644 2d52
4f4d 2020 2020 2020 2020 2020 2020 2020
2020 2020 2020 2020 2020 2020 2020 0000
0001 0300 0000 0000 0000 0007 0000 0000
0000 0000 0000 0000 0000 0000 0007 0407
0003 00b4 00b4 012c 00b4 0000 0000 001e
001e 0000 0000 0000 0000 0000 0000 0000
001e 0000 0000 0000 0000 0000 0000 0000
003f 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
     ÿh           mO0+j6n1e$ ?V3֥;Ev0@e^sDq'W_{z @4qo1,4v[HpCVؔ()oo(!ݕ0Ԙ*~IF̌ `A09BLTOT]BXgdS#B'ukWjb]Z0!",hrʏi9q&Hb,px6
#ʇbqQ YgZɝ]	T[67
z#I|H;֩
;ze,oνߜ*Cib4_OYY=O:NR%USxy~~poiKrZޥVA}rN    (   	lY>T;[Tţ164      	export PATH=/opt/cpanel/ea-php81/root/usr/bin:/opt/cpanel/ea-php81/root/usr/sbin${PATH:+:${PATH}}
export MANPATH=/opt/cpanel/ea-php81/root/usr/share/man:${MANPATH}
  &   lajh8q\m1h0  ?   l4(D 	p,F135aajh8q ţ      3        1        1        1        1        1        1        1        1        1        1        1        1        1
  (   lY>a,jzMm1hȿ     #!/usr/local/cpanel/3rdparty/bin/perl

# cpanel - scripts/featuremod                      Copyright 2022 cPanel, L.L.C.
#                                                           All rights reserved.
# copyright@cpanel.net                                         http://cpanel.net
# This code is subject to the cPanel license. Unauthorized copying is prohibited

use strict;
use Cpanel::Usage    ();
use Cpanel::Features ();

if ( $> != 0 ) {
    die "Insufficient permissions to modify feature lists.\n";
}

my $list;
my $feature;
my $value;
Cpanel::Usage::wrap_options( \@ARGV, \&usage, { 'list' => \$list, 'feature' => \$feature, 'value' => \$value } );

if ( !$feature ) {
    print STDERR "Invalid feature provided\n\n";
    usage();
    exit 1;
}
elsif ( !$value || ( $value !~ m/^enable$/i && $value !~ m/^disable$/i ) ) {
    print STDERR "Invalid feature value provided. Expected enable or disable\n\n";
    usage();
    exit 1;
}
else {
    $value = $value =~ m/^enable$/i ? 1 : 0;
}

if ( $list && !Cpanel::Features::is_feature_list($list) ) {
    print "Sorry, specified feature list does not exist.\n";
    exit 1;
}

unless ( grep { $feature eq $_ } Cpanel::Features::load_feature_names() ) {
    print "Sorry '$feature' is not a recognized feature.\n";
    exit 1;
}

Cpanel::Features::modify_feature(
    'feature' => $feature, 'value' => $value, 'verbose' => 1,
    ( $list ? ( list => $list ) : () ),
);

sub usage {
    print <<"EOM";
This utility will enable or disable a feature in all (non-default) feature lists
or only the provided feature list. To modify the default feature list, you must
request it explicitly.

Usage: $0 --feature {name} --value {enable|disable}

  Options:
     --help             Brief help message
     --list {listname}  Modify specified feature list only
     --feature {name}   The fea