xref: /aosp_15_r20/external/curl/src/tool_hugehelp.c (revision 6236dae45794135f37c4eb022389c904c8b0090d)
1*6236dae4SAndroid Build Coastguard Worker #include "tool_setup.h"
2*6236dae4SAndroid Build Coastguard Worker #ifndef HAVE_LIBZ
3*6236dae4SAndroid Build Coastguard Worker /*
4*6236dae4SAndroid Build Coastguard Worker  * NEVER EVER edit this manually, fix the mkhelp.pl script instead!
5*6236dae4SAndroid Build Coastguard Worker  */
6*6236dae4SAndroid Build Coastguard Worker #ifdef USE_MANUAL
7*6236dae4SAndroid Build Coastguard Worker #include "tool_hugehelp.h"
hugehelp(void)8*6236dae4SAndroid Build Coastguard Worker void hugehelp(void)
9*6236dae4SAndroid Build Coastguard Worker {
10*6236dae4SAndroid Build Coastguard Worker    fputs(
11*6236dae4SAndroid Build Coastguard Worker "                                  _   _ ____  _\n"
12*6236dae4SAndroid Build Coastguard Worker "  Project                     ___| | | |  _ \\| |\n"
13*6236dae4SAndroid Build Coastguard Worker "                             / __| | | | |_) | |\n"
14*6236dae4SAndroid Build Coastguard Worker "                            | (__| |_| |  _ <| |___\n"
15*6236dae4SAndroid Build Coastguard Worker "                             \\___|\\___/|_| \\_\\_____|\n"
16*6236dae4SAndroid Build Coastguard Worker "\n"
17*6236dae4SAndroid Build Coastguard Worker "NAME\n"
18*6236dae4SAndroid Build Coastguard Worker "       curl - transfer a URL\n"
19*6236dae4SAndroid Build Coastguard Worker "\n"
20*6236dae4SAndroid Build Coastguard Worker "SYNOPSIS\n"
21*6236dae4SAndroid Build Coastguard Worker "       curl [options / URLs]\n"
22*6236dae4SAndroid Build Coastguard Worker "\n"
23*6236dae4SAndroid Build Coastguard Worker "DESCRIPTION\n"
24*6236dae4SAndroid Build Coastguard Worker "       curl  is  a tool for transferring data from or to a server. It supports\n"
25*6236dae4SAndroid Build Coastguard Worker "       these protocols: DICT, FILE, FTP, FTPS, GOPHER, GOPHERS,  HTTP,  HTTPS,\n"
26*6236dae4SAndroid Build Coastguard Worker , stdout);
27*6236dae4SAndroid Build Coastguard Worker  fputs(
28*6236dae4SAndroid Build Coastguard Worker "       IMAP,  IMAPS,  LDAP,  LDAPS, MQTT, POP3, POP3S, RTMP, RTMPS, RTSP, SCP,\n"
29*6236dae4SAndroid Build Coastguard Worker "       SFTP, SMB, SMBS, SMTP, SMTPS, TELNET or TFTP. The command  is  designed\n"
30*6236dae4SAndroid Build Coastguard Worker "       to work without user interaction.\n"
31*6236dae4SAndroid Build Coastguard Worker "\n"
32*6236dae4SAndroid Build Coastguard Worker "       curl offers a busload of useful tricks like proxy support, user authen-\n"
33*6236dae4SAndroid Build Coastguard Worker "       tication, FTP upload, HTTP post, SSL connections, cookies, file  trans-\n"
34*6236dae4SAndroid Build Coastguard Worker "       fer resume and more. As you will see below, the number of features will\n"
35*6236dae4SAndroid Build Coastguard Worker "       make your head spin!\n"
36*6236dae4SAndroid Build Coastguard Worker "\n"
37*6236dae4SAndroid Build Coastguard Worker , stdout);
38*6236dae4SAndroid Build Coastguard Worker  fputs(
39*6236dae4SAndroid Build Coastguard Worker "       curl is powered by  libcurl  for  all  transfer-related  features.  See\n"
40*6236dae4SAndroid Build Coastguard Worker "       libcurl(3) for details.\n"
41*6236dae4SAndroid Build Coastguard Worker "\n"
42*6236dae4SAndroid Build Coastguard Worker "URL\n"
43*6236dae4SAndroid Build Coastguard Worker "       The  URL  syntax is protocol-dependent. You find a detailed description\n"
44*6236dae4SAndroid Build Coastguard Worker "       in RFC 3986.\n"
45*6236dae4SAndroid Build Coastguard Worker "\n"
46*6236dae4SAndroid Build Coastguard Worker "       You can specify multiple URLs or parts of URLs  by  writing  part  sets\n"
47*6236dae4SAndroid Build Coastguard Worker "       within braces and quoting the URL as in:\n"
48*6236dae4SAndroid Build Coastguard Worker "\n"
49*6236dae4SAndroid Build Coastguard Worker "         \"http://site.{one,two,three}.com\"\n"
50*6236dae4SAndroid Build Coastguard Worker "\n"
51*6236dae4SAndroid Build Coastguard Worker "       or you can get sequences of alphanumeric series by using [] as in:\n"
52*6236dae4SAndroid Build Coastguard Worker "\n"
53*6236dae4SAndroid Build Coastguard Worker , stdout);
54*6236dae4SAndroid Build Coastguard Worker  fputs(
55*6236dae4SAndroid Build Coastguard Worker "         \"ftp://ftp.example.com/file[1-100].txt\"\n"
56*6236dae4SAndroid Build Coastguard Worker "\n"
57*6236dae4SAndroid Build Coastguard Worker "         \"ftp://ftp.example.com/file[001-100].txt\"    (with leading zeros)\n"
58*6236dae4SAndroid Build Coastguard Worker "\n"
59*6236dae4SAndroid Build Coastguard Worker "         \"ftp://ftp.example.com/file[a-z].txt\"\n"
60*6236dae4SAndroid Build Coastguard Worker "\n"
61*6236dae4SAndroid Build Coastguard Worker "       Nested  sequences  are not supported, but you can use several ones next\n"
62*6236dae4SAndroid Build Coastguard Worker "       to each other:\n"
63*6236dae4SAndroid Build Coastguard Worker "\n"
64*6236dae4SAndroid Build Coastguard Worker "         \"http://example.com/archive[1996-1999]/vol[1-4]/part{a,b,c}.html\"\n"
65*6236dae4SAndroid Build Coastguard Worker "\n"
66*6236dae4SAndroid Build Coastguard Worker "       You can specify any amount of URLs on the command line.  They  will  be\n"
67*6236dae4SAndroid Build Coastguard Worker , stdout);
68*6236dae4SAndroid Build Coastguard Worker  fputs(
69*6236dae4SAndroid Build Coastguard Worker "       fetched  in a sequential manner in the specified order. You can specify\n"
70*6236dae4SAndroid Build Coastguard Worker "       command line options and URLs mixed and in any  order  on  the  command\n"
71*6236dae4SAndroid Build Coastguard Worker "       line.\n"
72*6236dae4SAndroid Build Coastguard Worker "\n"
73*6236dae4SAndroid Build Coastguard Worker "       You  can  specify a step counter for the ranges to get every Nth number\n"
74*6236dae4SAndroid Build Coastguard Worker "       or letter:\n"
75*6236dae4SAndroid Build Coastguard Worker "\n"
76*6236dae4SAndroid Build Coastguard Worker "         \"http://example.com/file[1-100:10].txt\"\n"
77*6236dae4SAndroid Build Coastguard Worker "\n"
78*6236dae4SAndroid Build Coastguard Worker "         \"http://example.com/file[a-z:2].txt\"\n"
79*6236dae4SAndroid Build Coastguard Worker "\n"
80*6236dae4SAndroid Build Coastguard Worker "       When using [] or {} sequences when invoked from a command line  prompt,\n"
81*6236dae4SAndroid Build Coastguard Worker , stdout);
82*6236dae4SAndroid Build Coastguard Worker  fputs(
83*6236dae4SAndroid Build Coastguard Worker "       you probably have to put the full URL within double quotes to avoid the\n"
84*6236dae4SAndroid Build Coastguard Worker "       shell from interfering with it. This also  goes  for  other  characters\n"
85*6236dae4SAndroid Build Coastguard Worker "       treated special, like for example '&', '?' and '*'.\n"
86*6236dae4SAndroid Build Coastguard Worker "\n"
87*6236dae4SAndroid Build Coastguard Worker "       Provide  the IPv6 zone index in the URL with an escaped percentage sign\n"
88*6236dae4SAndroid Build Coastguard Worker "       and the interface name. Like in\n"
89*6236dae4SAndroid Build Coastguard Worker "\n"
90*6236dae4SAndroid Build Coastguard Worker "         \"http://[fe80::3%25eth0]/\"\n"
91*6236dae4SAndroid Build Coastguard Worker "\n"
92*6236dae4SAndroid Build Coastguard Worker "       If you specify URL without protocol:// prefix,  curl  will  attempt  to\n"
93*6236dae4SAndroid Build Coastguard Worker , stdout);
94*6236dae4SAndroid Build Coastguard Worker  fputs(
95*6236dae4SAndroid Build Coastguard Worker "       guess  what  protocol  you might want. It will then default to HTTP but\n"
96*6236dae4SAndroid Build Coastguard Worker "       try other protocols based on often-used host name prefixes.  For  exam-\n"
97*6236dae4SAndroid Build Coastguard Worker "       ple,  for  host names starting with \"ftp.\" curl will assume you want to\n"
98*6236dae4SAndroid Build Coastguard Worker "       speak FTP.\n"
99*6236dae4SAndroid Build Coastguard Worker "\n"
100*6236dae4SAndroid Build Coastguard Worker "       curl will do its best to use what you pass to it as a URL.  It  is  not\n"
101*6236dae4SAndroid Build Coastguard Worker "       trying  to  validate it as a syntactically correct URL by any means but\n"
102*6236dae4SAndroid Build Coastguard Worker "       is instead very liberal with what it accepts.\n"
103*6236dae4SAndroid Build Coastguard Worker "\n"
104*6236dae4SAndroid Build Coastguard Worker , stdout);
105*6236dae4SAndroid Build Coastguard Worker  fputs(
106*6236dae4SAndroid Build Coastguard Worker "       curl will attempt to re-use connections for multiple file transfers, so\n"
107*6236dae4SAndroid Build Coastguard Worker "       that  getting many files from the same server will not do multiple con-\n"
108*6236dae4SAndroid Build Coastguard Worker "       nects / handshakes. This improves speed. Of course this is only done on\n"
109*6236dae4SAndroid Build Coastguard Worker "       files  specified  on  a  single command line and cannot be used between\n"
110*6236dae4SAndroid Build Coastguard Worker "       separate curl invocations.\n"
111*6236dae4SAndroid Build Coastguard Worker "\n"
112*6236dae4SAndroid Build Coastguard Worker "OUTPUT\n"
113*6236dae4SAndroid Build Coastguard Worker "       If not told otherwise, curl writes the received data to stdout. It  can\n"
114*6236dae4SAndroid Build Coastguard Worker , stdout);
115*6236dae4SAndroid Build Coastguard Worker  fputs(
116*6236dae4SAndroid Build Coastguard Worker "       be  instructed  to  instead save that data into a local file, using the\n"
117*6236dae4SAndroid Build Coastguard Worker "       -o, --output or -O, --remote-name options. If curl  is  given  multiple\n"
118*6236dae4SAndroid Build Coastguard Worker "       URLs  to  transfer on the command line, it similarly needs multiple op-\n"
119*6236dae4SAndroid Build Coastguard Worker "       tions for where to save them.\n"
120*6236dae4SAndroid Build Coastguard Worker "\n"
121*6236dae4SAndroid Build Coastguard Worker "       curl does not parse or otherwise \"understand\" the content  it  gets  or\n"
122*6236dae4SAndroid Build Coastguard Worker "       writes  as  output.  It does no encoding or decoding, unless explicitly\n"
123*6236dae4SAndroid Build Coastguard Worker "       asked to with dedicated command line options.\n"
124*6236dae4SAndroid Build Coastguard Worker "\n"
125*6236dae4SAndroid Build Coastguard Worker "PROTOCOLS\n"
126*6236dae4SAndroid Build Coastguard Worker , stdout);
127*6236dae4SAndroid Build Coastguard Worker  fputs(
128*6236dae4SAndroid Build Coastguard Worker "       curl supports numerous protocols, or put in URL  terms:  schemes.  Your\n"
129*6236dae4SAndroid Build Coastguard Worker "       particular build may not support them all.\n"
130*6236dae4SAndroid Build Coastguard Worker "\n"
131*6236dae4SAndroid Build Coastguard Worker "       DICT   Lets you lookup words using online dictionaries.\n"
132*6236dae4SAndroid Build Coastguard Worker "\n"
133*6236dae4SAndroid Build Coastguard Worker "       FILE   Read  or  write  local  files.  curl  does not support accessing\n"
134*6236dae4SAndroid Build Coastguard Worker "              file:// URL remotely, but when running on Microsoft Windows  us-\n"
135*6236dae4SAndroid Build Coastguard Worker "              ing the native UNC approach will work.\n"
136*6236dae4SAndroid Build Coastguard Worker "\n"
137*6236dae4SAndroid Build Coastguard Worker "       FTP(S) curl  supports  the  File Transfer Protocol with a lot of tweaks\n"
138*6236dae4SAndroid Build Coastguard Worker , stdout);
139*6236dae4SAndroid Build Coastguard Worker  fputs(
140*6236dae4SAndroid Build Coastguard Worker "              and levers. With or without using TLS.\n"
141*6236dae4SAndroid Build Coastguard Worker "\n"
142*6236dae4SAndroid Build Coastguard Worker "       GOPHER(S)\n"
143*6236dae4SAndroid Build Coastguard Worker "              Retrieve files.\n"
144*6236dae4SAndroid Build Coastguard Worker "\n"
145*6236dae4SAndroid Build Coastguard Worker "       HTTP(S)\n"
146*6236dae4SAndroid Build Coastguard Worker "              curl supports HTTP with numerous options and variations. It  can\n"
147*6236dae4SAndroid Build Coastguard Worker "              speak HTTP version 0.9, 1.0, 1.1, 2 and 3 depending on build op-\n"
148*6236dae4SAndroid Build Coastguard Worker "              tions and the correct command line options.\n"
149*6236dae4SAndroid Build Coastguard Worker "\n"
150*6236dae4SAndroid Build Coastguard Worker "       IMAP(S)\n"
151*6236dae4SAndroid Build Coastguard Worker "              Using the mail reading protocol, curl can \"download\" emails  for\n"
152*6236dae4SAndroid Build Coastguard Worker "              you. With or without using TLS.\n"
153*6236dae4SAndroid Build Coastguard Worker "\n"
154*6236dae4SAndroid Build Coastguard Worker "       LDAP(S)\n"
155*6236dae4SAndroid Build Coastguard Worker , stdout);
156*6236dae4SAndroid Build Coastguard Worker  fputs(
157*6236dae4SAndroid Build Coastguard Worker "              curl can do directory lookups for you, with or without TLS.\n"
158*6236dae4SAndroid Build Coastguard Worker "\n"
159*6236dae4SAndroid Build Coastguard Worker "       MQTT   curl supports MQTT version 3. Downloading over MQTT equals \"sub-\n"
160*6236dae4SAndroid Build Coastguard Worker "              scribe\" to a topic while uploading/posting equals \"publish\" on a\n"
161*6236dae4SAndroid Build Coastguard Worker "              topic. MQTT over TLS is not supported (yet).\n"
162*6236dae4SAndroid Build Coastguard Worker "\n"
163*6236dae4SAndroid Build Coastguard Worker "       POP3(S)\n"
164*6236dae4SAndroid Build Coastguard Worker "              Downloading  from  a  pop3  server means getting a mail. With or\n"
165*6236dae4SAndroid Build Coastguard Worker "              without using TLS.\n"
166*6236dae4SAndroid Build Coastguard Worker "\n"
167*6236dae4SAndroid Build Coastguard Worker "       RTMP(S)\n"
168*6236dae4SAndroid Build Coastguard Worker , stdout);
169*6236dae4SAndroid Build Coastguard Worker  fputs(
170*6236dae4SAndroid Build Coastguard Worker "              The Realtime Messaging Protocol  is  primarily  used  to  server\n"
171*6236dae4SAndroid Build Coastguard Worker "              streaming media and curl can download it.\n"
172*6236dae4SAndroid Build Coastguard Worker "\n"
173*6236dae4SAndroid Build Coastguard Worker "       RTSP   curl supports RTSP 1.0 downloads.\n"
174*6236dae4SAndroid Build Coastguard Worker "\n"
175*6236dae4SAndroid Build Coastguard Worker "       SCP    curl supports SSH version 2 scp transfers.\n"
176*6236dae4SAndroid Build Coastguard Worker "\n"
177*6236dae4SAndroid Build Coastguard Worker "       SFTP   curl supports SFTP (draft 5) done over SSH version 2.\n"
178*6236dae4SAndroid Build Coastguard Worker "\n"
179*6236dae4SAndroid Build Coastguard Worker "       SMB(S) curl supports SMB version 1 for upload and download.\n"
180*6236dae4SAndroid Build Coastguard Worker "\n"
181*6236dae4SAndroid Build Coastguard Worker "       SMTP(S)\n"
182*6236dae4SAndroid Build Coastguard Worker "              Uploading  contents  to  an  SMTP server means sending an email.\n"
183*6236dae4SAndroid Build Coastguard Worker , stdout);
184*6236dae4SAndroid Build Coastguard Worker  fputs(
185*6236dae4SAndroid Build Coastguard Worker "              With or without TLS.\n"
186*6236dae4SAndroid Build Coastguard Worker "\n"
187*6236dae4SAndroid Build Coastguard Worker "       TELNET Telling curl to fetch a telnet URL starts an interactive session\n"
188*6236dae4SAndroid Build Coastguard Worker "              where  it  sends  what  it  reads  on stdin and outputs what the\n"
189*6236dae4SAndroid Build Coastguard Worker "              server sends it.\n"
190*6236dae4SAndroid Build Coastguard Worker "\n"
191*6236dae4SAndroid Build Coastguard Worker "       TFTP   curl can do TFTP downloads and uploads.\n"
192*6236dae4SAndroid Build Coastguard Worker "\n"
193*6236dae4SAndroid Build Coastguard Worker "PROGRESS METER\n"
194*6236dae4SAndroid Build Coastguard Worker "       curl normally displays a progress meter during  operations,  indicating\n"
195*6236dae4SAndroid Build Coastguard Worker "       the  amount  of  transferred  data,  transfer speeds and estimated time\n"
196*6236dae4SAndroid Build Coastguard Worker , stdout);
197*6236dae4SAndroid Build Coastguard Worker  fputs(
198*6236dae4SAndroid Build Coastguard Worker "       left, etc. The progress meter displays number of bytes and  the  speeds\n"
199*6236dae4SAndroid Build Coastguard Worker "       are  in  bytes per second. The suffixes (k, M, G, T, P) are 1024 based.\n"
200*6236dae4SAndroid Build Coastguard Worker "       For example 1k is 1024 bytes. 1M is 1048576 bytes.\n"
201*6236dae4SAndroid Build Coastguard Worker "\n"
202*6236dae4SAndroid Build Coastguard Worker "       curl displays this data to the terminal by default, so  if  you  invoke\n"
203*6236dae4SAndroid Build Coastguard Worker "       curl  to do an operation and it is about to write data to the terminal,\n"
204*6236dae4SAndroid Build Coastguard Worker "       it disables the progress meter as otherwise it would mess up the output\n"
205*6236dae4SAndroid Build Coastguard Worker , stdout);
206*6236dae4SAndroid Build Coastguard Worker  fputs(
207*6236dae4SAndroid Build Coastguard Worker "       mixing progress meter and response data.\n"
208*6236dae4SAndroid Build Coastguard Worker "\n"
209*6236dae4SAndroid Build Coastguard Worker "       If you want a progress meter for HTTP POST or PUT requests, you need to\n"
210*6236dae4SAndroid Build Coastguard Worker "       redirect the response output to a file, using shell redirect  (>),  -o,\n"
211*6236dae4SAndroid Build Coastguard Worker "       --output or similar.\n"
212*6236dae4SAndroid Build Coastguard Worker "\n"
213*6236dae4SAndroid Build Coastguard Worker "       This  does  not apply to FTP upload as that operation does not spit out\n"
214*6236dae4SAndroid Build Coastguard Worker "       any response data to the terminal.\n"
215*6236dae4SAndroid Build Coastguard Worker "\n"
216*6236dae4SAndroid Build Coastguard Worker "       If you prefer a progress  \"bar\"  instead  of  the  regular  meter,  -#,\n"
217*6236dae4SAndroid Build Coastguard Worker , stdout);
218*6236dae4SAndroid Build Coastguard Worker  fputs(
219*6236dae4SAndroid Build Coastguard Worker "       --progress-bar  is your friend. You can also disable the progress meter\n"
220*6236dae4SAndroid Build Coastguard Worker "       completely with the -s, --silent option.\n"
221*6236dae4SAndroid Build Coastguard Worker "\n"
222*6236dae4SAndroid Build Coastguard Worker "OPTIONS\n"
223*6236dae4SAndroid Build Coastguard Worker "       Options start with one or two dashes. Many of the  options  require  an\n"
224*6236dae4SAndroid Build Coastguard Worker "       additional value next to them.\n"
225*6236dae4SAndroid Build Coastguard Worker "\n"
226*6236dae4SAndroid Build Coastguard Worker "       The  short  \"single-dash\"  form  of the options, -d for example, may be\n"
227*6236dae4SAndroid Build Coastguard Worker "       used with or without a space between it and its value, although a space\n"
228*6236dae4SAndroid Build Coastguard Worker "       is a recommended separator. The long \"double-dash\" form, -d, --data for\n"
229*6236dae4SAndroid Build Coastguard Worker , stdout);
230*6236dae4SAndroid Build Coastguard Worker  fputs(
231*6236dae4SAndroid Build Coastguard Worker "       example, requires a space between it and its value.\n"
232*6236dae4SAndroid Build Coastguard Worker "\n"
233*6236dae4SAndroid Build Coastguard Worker "       Short version options that do not need any  additional  values  can  be\n"
234*6236dae4SAndroid Build Coastguard Worker "       used  immediately  next to each other, like for example you can specify\n"
235*6236dae4SAndroid Build Coastguard Worker "       all the options -O, -L and -v at once as -OLv.\n"
236*6236dae4SAndroid Build Coastguard Worker "\n"
237*6236dae4SAndroid Build Coastguard Worker "       In general, all boolean options are enabled with --option and yet again\n"
238*6236dae4SAndroid Build Coastguard Worker "       disabled  with --no-option. That is, you use the exact same option name\n"
239*6236dae4SAndroid Build Coastguard Worker , stdout);
240*6236dae4SAndroid Build Coastguard Worker  fputs(
241*6236dae4SAndroid Build Coastguard Worker "       but prefix it with \"no-\". However, in this list we mostly only list and\n"
242*6236dae4SAndroid Build Coastguard Worker "       show the --option version of them.\n"
243*6236dae4SAndroid Build Coastguard Worker "\n"
244*6236dae4SAndroid Build Coastguard Worker "       --abstract-unix-socket <path>\n"
245*6236dae4SAndroid Build Coastguard Worker "              (HTTP)  Connect  through an abstract Unix domain socket, instead\n"
246*6236dae4SAndroid Build Coastguard Worker "              of using the network.  Note: netstat shows the path  of  an  ab-\n"
247*6236dae4SAndroid Build Coastguard Worker "              stract  socket  prefixed  with  '@', however the <path> argument\n"
248*6236dae4SAndroid Build Coastguard Worker "              should not have this leading character.\n"
249*6236dae4SAndroid Build Coastguard Worker "\n"
250*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
251*6236dae4SAndroid Build Coastguard Worker , stdout);
252*6236dae4SAndroid Build Coastguard Worker  fputs(
253*6236dae4SAndroid Build Coastguard Worker "               curl --abstract-unix-socket socketpath https://example.com\n"
254*6236dae4SAndroid Build Coastguard Worker "\n"
255*6236dae4SAndroid Build Coastguard Worker "              Added in 7.53.0.\n"
256*6236dae4SAndroid Build Coastguard Worker "\n"
257*6236dae4SAndroid Build Coastguard Worker "       --alt-svc <file name>\n"
258*6236dae4SAndroid Build Coastguard Worker "              (HTTPS) This option enables the alt-svc parser in curl.  If  the\n"
259*6236dae4SAndroid Build Coastguard Worker "              file name points to an existing alt-svc cache file, that will be\n"
260*6236dae4SAndroid Build Coastguard Worker "              used. After a completed transfer, the cache will be saved to the\n"
261*6236dae4SAndroid Build Coastguard Worker "              file name again if it has been modified.\n"
262*6236dae4SAndroid Build Coastguard Worker "\n"
263*6236dae4SAndroid Build Coastguard Worker , stdout);
264*6236dae4SAndroid Build Coastguard Worker  fputs(
265*6236dae4SAndroid Build Coastguard Worker "              Specify a \"\" file name (zero length) to avoid loading/saving and\n"
266*6236dae4SAndroid Build Coastguard Worker "              make curl just handle the cache in memory.\n"
267*6236dae4SAndroid Build Coastguard Worker "\n"
268*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, curl  will  load  contents\n"
269*6236dae4SAndroid Build Coastguard Worker "              from all the files but the last one will be used for saving.\n"
270*6236dae4SAndroid Build Coastguard Worker "\n"
271*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
272*6236dae4SAndroid Build Coastguard Worker "               curl --alt-svc svc.txt https://example.com\n"
273*6236dae4SAndroid Build Coastguard Worker "\n"
274*6236dae4SAndroid Build Coastguard Worker "              Added in 7.64.1.\n"
275*6236dae4SAndroid Build Coastguard Worker "\n"
276*6236dae4SAndroid Build Coastguard Worker "       --anyauth\n"
277*6236dae4SAndroid Build Coastguard Worker , stdout);
278*6236dae4SAndroid Build Coastguard Worker  fputs(
279*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Tells curl to figure out authentication method by itself,\n"
280*6236dae4SAndroid Build Coastguard Worker "              and use the most secure one the remote site claims  to  support.\n"
281*6236dae4SAndroid Build Coastguard Worker "              This is done by first doing a request and checking the response-\n"
282*6236dae4SAndroid Build Coastguard Worker "              headers, thus possibly inducing  an  extra  network  round-trip.\n"
283*6236dae4SAndroid Build Coastguard Worker "              This  is  used  instead  of  setting  a  specific authentication\n"
284*6236dae4SAndroid Build Coastguard Worker "              method, which you can do with  --basic,  --digest,  --ntlm,  and\n"
285*6236dae4SAndroid Build Coastguard Worker , stdout);
286*6236dae4SAndroid Build Coastguard Worker  fputs(
287*6236dae4SAndroid Build Coastguard Worker "              --negotiate.\n"
288*6236dae4SAndroid Build Coastguard Worker "\n"
289*6236dae4SAndroid Build Coastguard Worker "              Using --anyauth is not recommended if you do uploads from stdin,\n"
290*6236dae4SAndroid Build Coastguard Worker "              since it may require data to be sent twice and then  the  client\n"
291*6236dae4SAndroid Build Coastguard Worker "              must  be able to rewind. If the need should arise when uploading\n"
292*6236dae4SAndroid Build Coastguard Worker "              from stdin, the upload operation will fail.\n"
293*6236dae4SAndroid Build Coastguard Worker "\n"
294*6236dae4SAndroid Build Coastguard Worker "              Used together with -u, --user.\n"
295*6236dae4SAndroid Build Coastguard Worker "\n"
296*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
297*6236dae4SAndroid Build Coastguard Worker "               curl --anyauth --user me:pwd https://example.com\n"
298*6236dae4SAndroid Build Coastguard Worker "\n"
299*6236dae4SAndroid Build Coastguard Worker , stdout);
300*6236dae4SAndroid Build Coastguard Worker  fputs(
301*6236dae4SAndroid Build Coastguard Worker "              See also --proxy-anyauth, --basic and --digest.\n"
302*6236dae4SAndroid Build Coastguard Worker "\n"
303*6236dae4SAndroid Build Coastguard Worker "       -a, --append\n"
304*6236dae4SAndroid Build Coastguard Worker "              (FTP SFTP) When used in an upload, this makes curl append to the\n"
305*6236dae4SAndroid Build Coastguard Worker "              target  file  instead of overwriting it. If the remote file does\n"
306*6236dae4SAndroid Build Coastguard Worker "              not exist, it will be created.  Note that this flag  is  ignored\n"
307*6236dae4SAndroid Build Coastguard Worker "              by some SFTP servers (including OpenSSH).\n"
308*6236dae4SAndroid Build Coastguard Worker "\n"
309*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
310*6236dae4SAndroid Build Coastguard Worker "               curl --upload-file local --append ftp://example.com/\n"
311*6236dae4SAndroid Build Coastguard Worker "\n"
312*6236dae4SAndroid Build Coastguard Worker , stdout);
313*6236dae4SAndroid Build Coastguard Worker  fputs(
314*6236dae4SAndroid Build Coastguard Worker "       --aws-sigv4 <provider1[:provider2[:region[:service]]]>\n"
315*6236dae4SAndroid Build Coastguard Worker "              Use AWS V4 signature authentication in the transfer.\n"
316*6236dae4SAndroid Build Coastguard Worker "\n"
317*6236dae4SAndroid Build Coastguard Worker "              The  provider argument is a string that is used by the algorithm\n"
318*6236dae4SAndroid Build Coastguard Worker "              when creating outgoing authentication headers.\n"
319*6236dae4SAndroid Build Coastguard Worker "\n"
320*6236dae4SAndroid Build Coastguard Worker "              The region argument is a string that points to a geographic area\n"
321*6236dae4SAndroid Build Coastguard Worker "              of  a resources collection (region-code) when the region name is\n"
322*6236dae4SAndroid Build Coastguard Worker "              omitted from the endpoint.\n"
323*6236dae4SAndroid Build Coastguard Worker "\n"
324*6236dae4SAndroid Build Coastguard Worker , stdout);
325*6236dae4SAndroid Build Coastguard Worker  fputs(
326*6236dae4SAndroid Build Coastguard Worker "              The service argument is a string that points to a function  pro-\n"
327*6236dae4SAndroid Build Coastguard Worker "              vided by a cloud (service-code) when the service name is omitted\n"
328*6236dae4SAndroid Build Coastguard Worker "              from the endpoint.\n"
329*6236dae4SAndroid Build Coastguard Worker "\n"
330*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
331*6236dae4SAndroid Build Coastguard Worker "               curl --aws-sigv4 \"aws:amz:east-2:es\" --user \"key:secret\" https://example.com\n"
332*6236dae4SAndroid Build Coastguard Worker "\n"
333*6236dae4SAndroid Build Coastguard Worker "              Added in 7.75.0.\n"
334*6236dae4SAndroid Build Coastguard Worker "\n"
335*6236dae4SAndroid Build Coastguard Worker "       --basic\n"
336*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Tells curl to use HTTP Basic authentication with the  re-\n"
337*6236dae4SAndroid Build Coastguard Worker , stdout);
338*6236dae4SAndroid Build Coastguard Worker  fputs(
339*6236dae4SAndroid Build Coastguard Worker "              mote host. This is the default and this option is usually point-\n"
340*6236dae4SAndroid Build Coastguard Worker "              less, unless you use it to override a previously set option that\n"
341*6236dae4SAndroid Build Coastguard Worker "              sets  a  different  authentication method (such as --ntlm, --di-\n"
342*6236dae4SAndroid Build Coastguard Worker "              gest, or --negotiate).\n"
343*6236dae4SAndroid Build Coastguard Worker "\n"
344*6236dae4SAndroid Build Coastguard Worker "              Used together with -u, --user.\n"
345*6236dae4SAndroid Build Coastguard Worker "\n"
346*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
347*6236dae4SAndroid Build Coastguard Worker "               curl -u name:password --basic https://example.com\n"
348*6236dae4SAndroid Build Coastguard Worker "\n"
349*6236dae4SAndroid Build Coastguard Worker "              See also --proxy-basic.\n"
350*6236dae4SAndroid Build Coastguard Worker "\n"
351*6236dae4SAndroid Build Coastguard Worker "       --cacert <file>\n"
352*6236dae4SAndroid Build Coastguard Worker , stdout);
353*6236dae4SAndroid Build Coastguard Worker  fputs(
354*6236dae4SAndroid Build Coastguard Worker "              (TLS) Tells curl to use the specified certificate file to verify\n"
355*6236dae4SAndroid Build Coastguard Worker "              the  peer.  The  file  may contain multiple CA certificates. The\n"
356*6236dae4SAndroid Build Coastguard Worker "              certificate(s) must be in PEM format. Normally curl is built  to\n"
357*6236dae4SAndroid Build Coastguard Worker "              use a default file for this, so this option is typically used to\n"
358*6236dae4SAndroid Build Coastguard Worker "              alter that default file.\n"
359*6236dae4SAndroid Build Coastguard Worker "\n"
360*6236dae4SAndroid Build Coastguard Worker "              curl recognizes the environment variable named  'CURL_CA_BUNDLE'\n"
361*6236dae4SAndroid Build Coastguard Worker , stdout);
362*6236dae4SAndroid Build Coastguard Worker  fputs(
363*6236dae4SAndroid Build Coastguard Worker "              if  it  is  set,  and uses the given path as a path to a CA cert\n"
364*6236dae4SAndroid Build Coastguard Worker "              bundle. This option overrides that variable.\n"
365*6236dae4SAndroid Build Coastguard Worker "\n"
366*6236dae4SAndroid Build Coastguard Worker "              The windows version of curl will automatically  look  for  a  CA\n"
367*6236dae4SAndroid Build Coastguard Worker "              certs file named 'curl-ca-bundle.crt', either in the same direc-\n"
368*6236dae4SAndroid Build Coastguard Worker "              tory as curl.exe, or in the Current Working Directory, or in any\n"
369*6236dae4SAndroid Build Coastguard Worker "              folder along your PATH.\n"
370*6236dae4SAndroid Build Coastguard Worker "\n"
371*6236dae4SAndroid Build Coastguard Worker "              If  curl  is  built  against  the  NSS  SSL library, the NSS PEM\n"
372*6236dae4SAndroid Build Coastguard Worker , stdout);
373*6236dae4SAndroid Build Coastguard Worker  fputs(
374*6236dae4SAndroid Build Coastguard Worker "              PKCS#11 module (libnsspem.so) needs to be available for this op-\n"
375*6236dae4SAndroid Build Coastguard Worker "              tion to work properly.\n"
376*6236dae4SAndroid Build Coastguard Worker "\n"
377*6236dae4SAndroid Build Coastguard Worker "              (iOS  and macOS only) If curl is built against Secure Transport,\n"
378*6236dae4SAndroid Build Coastguard Worker "              then this option is supported for  backward  compatibility  with\n"
379*6236dae4SAndroid Build Coastguard Worker "              other  SSL  engines,  but it should not be set. If the option is\n"
380*6236dae4SAndroid Build Coastguard Worker "              not set, then curl will use the certificates in the  system  and\n"
381*6236dae4SAndroid Build Coastguard Worker , stdout);
382*6236dae4SAndroid Build Coastguard Worker  fputs(
383*6236dae4SAndroid Build Coastguard Worker "              user  Keychain to verify the peer, which is the preferred method\n"
384*6236dae4SAndroid Build Coastguard Worker "              of verifying the peer's certificate chain.\n"
385*6236dae4SAndroid Build Coastguard Worker "\n"
386*6236dae4SAndroid Build Coastguard Worker "              (Schannel only) This option is supported for Schannel in Windows\n"
387*6236dae4SAndroid Build Coastguard Worker "              7  or later with libcurl 7.60 or later. This option is supported\n"
388*6236dae4SAndroid Build Coastguard Worker "              for backward compatibility with other SSL engines; instead it is\n"
389*6236dae4SAndroid Build Coastguard Worker "              recommended  to use Windows' store of root certificates (the de-\n"
390*6236dae4SAndroid Build Coastguard Worker "              fault for Schannel).\n"
391*6236dae4SAndroid Build Coastguard Worker "\n"
392*6236dae4SAndroid Build Coastguard Worker , stdout);
393*6236dae4SAndroid Build Coastguard Worker  fputs(
394*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
395*6236dae4SAndroid Build Coastguard Worker "\n"
396*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
397*6236dae4SAndroid Build Coastguard Worker "               curl --cacert CA-file.txt https://example.com\n"
398*6236dae4SAndroid Build Coastguard Worker "\n"
399*6236dae4SAndroid Build Coastguard Worker "       --capath <dir>\n"
400*6236dae4SAndroid Build Coastguard Worker "              (TLS) Tells curl to use the specified certificate  directory  to\n"
401*6236dae4SAndroid Build Coastguard Worker "              verify  the  peer.  Multiple paths can be provided by separating\n"
402*6236dae4SAndroid Build Coastguard Worker "              them with \":\" (e.g.  \"path1:path2:path3\"). The certificates must\n"
403*6236dae4SAndroid Build Coastguard Worker , stdout);
404*6236dae4SAndroid Build Coastguard Worker  fputs(
405*6236dae4SAndroid Build Coastguard Worker "              be  in PEM format, and if curl is built against OpenSSL, the di-\n"
406*6236dae4SAndroid Build Coastguard Worker "              rectory must have been processed using the c_rehash utility sup-\n"
407*6236dae4SAndroid Build Coastguard Worker "              plied  with  OpenSSL.  Using  --capath can allow OpenSSL-powered\n"
408*6236dae4SAndroid Build Coastguard Worker "              curl to make SSL-connections much more  efficiently  than  using\n"
409*6236dae4SAndroid Build Coastguard Worker "              --cacert if the --cacert file contains many CA certificates.\n"
410*6236dae4SAndroid Build Coastguard Worker "\n"
411*6236dae4SAndroid Build Coastguard Worker "              If this option is set, the default capath value will be ignored,\n"
412*6236dae4SAndroid Build Coastguard Worker , stdout);
413*6236dae4SAndroid Build Coastguard Worker  fputs(
414*6236dae4SAndroid Build Coastguard Worker "              and if it is used several times, the last one will be used.\n"
415*6236dae4SAndroid Build Coastguard Worker "\n"
416*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
417*6236dae4SAndroid Build Coastguard Worker "               curl --capath /local/directory https://example.com\n"
418*6236dae4SAndroid Build Coastguard Worker "\n"
419*6236dae4SAndroid Build Coastguard Worker "       --cert-status\n"
420*6236dae4SAndroid Build Coastguard Worker "              (TLS) Tells curl to verify the status of the server  certificate\n"
421*6236dae4SAndroid Build Coastguard Worker "              by using the Certificate Status Request (aka. OCSP stapling) TLS\n"
422*6236dae4SAndroid Build Coastguard Worker "              extension.\n"
423*6236dae4SAndroid Build Coastguard Worker "\n"
424*6236dae4SAndroid Build Coastguard Worker "              If this option is enabled and the server sends an invalid  (e.g.\n"
425*6236dae4SAndroid Build Coastguard Worker , stdout);
426*6236dae4SAndroid Build Coastguard Worker  fputs(
427*6236dae4SAndroid Build Coastguard Worker "              expired) response, if the response suggests that the server cer-\n"
428*6236dae4SAndroid Build Coastguard Worker "              tificate has been revoked, or no response at  all  is  received,\n"
429*6236dae4SAndroid Build Coastguard Worker "              the verification fails.\n"
430*6236dae4SAndroid Build Coastguard Worker "\n"
431*6236dae4SAndroid Build Coastguard Worker "              This  is  currently  only implemented in the OpenSSL, GnuTLS and\n"
432*6236dae4SAndroid Build Coastguard Worker "              NSS backends.\n"
433*6236dae4SAndroid Build Coastguard Worker "\n"
434*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
435*6236dae4SAndroid Build Coastguard Worker "               curl --cert-status https://example.com\n"
436*6236dae4SAndroid Build Coastguard Worker "\n"
437*6236dae4SAndroid Build Coastguard Worker "              Added in 7.41.0.\n"
438*6236dae4SAndroid Build Coastguard Worker "\n"
439*6236dae4SAndroid Build Coastguard Worker "       --cert-type <type>\n"
440*6236dae4SAndroid Build Coastguard Worker , stdout);
441*6236dae4SAndroid Build Coastguard Worker  fputs(
442*6236dae4SAndroid Build Coastguard Worker "              (TLS) Tells curl what type the provided  client  certificate  is\n"
443*6236dae4SAndroid Build Coastguard Worker "              using. PEM, DER, ENG and P12 are recognized types.  If not spec-\n"
444*6236dae4SAndroid Build Coastguard Worker "              ified, PEM is assumed.\n"
445*6236dae4SAndroid Build Coastguard Worker "\n"
446*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
447*6236dae4SAndroid Build Coastguard Worker "\n"
448*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
449*6236dae4SAndroid Build Coastguard Worker "               curl --cert-type PEM --cert file https://example.com\n"
450*6236dae4SAndroid Build Coastguard Worker "\n"
451*6236dae4SAndroid Build Coastguard Worker "              See also -E, --cert, --key and --key-type.\n"
452*6236dae4SAndroid Build Coastguard Worker "\n"
453*6236dae4SAndroid Build Coastguard Worker "       -E, --cert <certificate[:password]>\n"
454*6236dae4SAndroid Build Coastguard Worker , stdout);
455*6236dae4SAndroid Build Coastguard Worker  fputs(
456*6236dae4SAndroid Build Coastguard Worker "              (TLS) Tells curl to use the specified  client  certificate  file\n"
457*6236dae4SAndroid Build Coastguard Worker "              when getting a file with HTTPS, FTPS or another SSL-based proto-\n"
458*6236dae4SAndroid Build Coastguard Worker "              col. The certificate must be in PKCS#12 format if  using  Secure\n"
459*6236dae4SAndroid Build Coastguard Worker "              Transport,  or PEM format if using any other engine.  If the op-\n"
460*6236dae4SAndroid Build Coastguard Worker "              tional password is not specified, it will be queried for on  the\n"
461*6236dae4SAndroid Build Coastguard Worker "              terminal.  Note  that  this  option assumes a \"certificate\" file\n"
462*6236dae4SAndroid Build Coastguard Worker , stdout);
463*6236dae4SAndroid Build Coastguard Worker  fputs(
464*6236dae4SAndroid Build Coastguard Worker "              that is the private key and the client certificate concatenated!\n"
465*6236dae4SAndroid Build Coastguard Worker "              See -E, --cert and --key to specify them independently.\n"
466*6236dae4SAndroid Build Coastguard Worker "\n"
467*6236dae4SAndroid Build Coastguard Worker "              If  curl  is  built against the NSS SSL library then this option\n"
468*6236dae4SAndroid Build Coastguard Worker "              can tell curl the nickname of the certificate to use within  the\n"
469*6236dae4SAndroid Build Coastguard Worker "              NSS  database defined by the environment variable SSL_DIR (or by\n"
470*6236dae4SAndroid Build Coastguard Worker "              default /etc/pki/nssdb). If the NSS  PEM  PKCS#11  module  (lib-\n"
471*6236dae4SAndroid Build Coastguard Worker , stdout);
472*6236dae4SAndroid Build Coastguard Worker  fputs(
473*6236dae4SAndroid Build Coastguard Worker "              nsspem.so)  is  available  then  PEM files may be loaded. If you\n"
474*6236dae4SAndroid Build Coastguard Worker "              want to use a file from the current directory, please precede it\n"
475*6236dae4SAndroid Build Coastguard Worker "              with  \"./\"  prefix, in order to avoid confusion with a nickname.\n"
476*6236dae4SAndroid Build Coastguard Worker "              If the nickname contains \":\", it needs to be preceded by \"\\\"  so\n"
477*6236dae4SAndroid Build Coastguard Worker "              that  it  is not recognized as password delimiter.  If the nick-\n"
478*6236dae4SAndroid Build Coastguard Worker "              name contains \"\\\", it needs to be escaped as \"\\\\\" so that it  is\n"
479*6236dae4SAndroid Build Coastguard Worker , stdout);
480*6236dae4SAndroid Build Coastguard Worker  fputs(
481*6236dae4SAndroid Build Coastguard Worker "              not recognized as an escape character.\n"
482*6236dae4SAndroid Build Coastguard Worker "\n"
483*6236dae4SAndroid Build Coastguard Worker "              If  curl is built against OpenSSL library, and the engine pkcs11\n"
484*6236dae4SAndroid Build Coastguard Worker "              is available, then a PKCS#11 URI (RFC 7512) can be used to spec-\n"
485*6236dae4SAndroid Build Coastguard Worker "              ify  a  certificate located in a PKCS#11 device. A string begin-\n"
486*6236dae4SAndroid Build Coastguard Worker "              ning with \"pkcs11:\" will be interpreted as a PKCS#11 URI.  If  a\n"
487*6236dae4SAndroid Build Coastguard Worker "              PKCS#11 URI is provided, then the --engine option will be set as\n"
488*6236dae4SAndroid Build Coastguard Worker , stdout);
489*6236dae4SAndroid Build Coastguard Worker  fputs(
490*6236dae4SAndroid Build Coastguard Worker "              \"pkcs11\" if none was provided and the --cert-type option will be\n"
491*6236dae4SAndroid Build Coastguard Worker "              set as \"ENG\" if none was provided.\n"
492*6236dae4SAndroid Build Coastguard Worker "\n"
493*6236dae4SAndroid Build Coastguard Worker "              (iOS  and macOS only) If curl is built against Secure Transport,\n"
494*6236dae4SAndroid Build Coastguard Worker "              then the certificate string can either be the name of a certifi-\n"
495*6236dae4SAndroid Build Coastguard Worker "              cate/private  key in the system or user keychain, or the path to\n"
496*6236dae4SAndroid Build Coastguard Worker "              a PKCS#12-encoded certificate and private key. If  you  want  to\n"
497*6236dae4SAndroid Build Coastguard Worker , stdout);
498*6236dae4SAndroid Build Coastguard Worker  fputs(
499*6236dae4SAndroid Build Coastguard Worker "              use  a  file  from the current directory, please precede it with\n"
500*6236dae4SAndroid Build Coastguard Worker "              \"./\" prefix, in order to avoid confusion with a nickname.\n"
501*6236dae4SAndroid Build Coastguard Worker "\n"
502*6236dae4SAndroid Build Coastguard Worker "              (Schannel only) Client certificates must be specified by a  path\n"
503*6236dae4SAndroid Build Coastguard Worker "              expression  to  a  certificate  store.  (Loading PFX is not sup-\n"
504*6236dae4SAndroid Build Coastguard Worker "              ported; you can import it to a store first). You can use \"<store\n"
505*6236dae4SAndroid Build Coastguard Worker "              location>\\<store  name>\\<thumbprint>\"  to refer to a certificate\n"
506*6236dae4SAndroid Build Coastguard Worker , stdout);
507*6236dae4SAndroid Build Coastguard Worker  fputs(
508*6236dae4SAndroid Build Coastguard Worker "              in  the  system  certificates  store,  for   example,   \"Curren-\n"
509*6236dae4SAndroid Build Coastguard Worker "              tUser\\MY\\934a7ac6f8a5d579285a74fa61e19f23ddfe8d7a\".   Thumbprint\n"
510*6236dae4SAndroid Build Coastguard Worker "              is usually a SHA-1 hex string which you can see  in  certificate\n"
511*6236dae4SAndroid Build Coastguard Worker "              details.  Following  store locations are supported: CurrentUser,\n"
512*6236dae4SAndroid Build Coastguard Worker "              LocalMachine, CurrentService, Services,  CurrentUserGroupPolicy,\n"
513*6236dae4SAndroid Build Coastguard Worker "              LocalMachineGroupPolicy, LocalMachineEnterprise.\n"
514*6236dae4SAndroid Build Coastguard Worker "\n"
515*6236dae4SAndroid Build Coastguard Worker , stdout);
516*6236dae4SAndroid Build Coastguard Worker  fputs(
517*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
518*6236dae4SAndroid Build Coastguard Worker "\n"
519*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
520*6236dae4SAndroid Build Coastguard Worker "               curl --cert certfile --key keyfile https://example.com\n"
521*6236dae4SAndroid Build Coastguard Worker "\n"
522*6236dae4SAndroid Build Coastguard Worker "              See also --cert-type, --key and --key-type.\n"
523*6236dae4SAndroid Build Coastguard Worker "\n"
524*6236dae4SAndroid Build Coastguard Worker "       --ciphers <list of ciphers>\n"
525*6236dae4SAndroid Build Coastguard Worker "              (TLS) Specifies which ciphers to use in the connection. The list\n"
526*6236dae4SAndroid Build Coastguard Worker "              of ciphers must specify valid ciphers. Read  up  on  SSL  cipher\n"
527*6236dae4SAndroid Build Coastguard Worker "              list details on this URL:\n"
528*6236dae4SAndroid Build Coastguard Worker "\n"
529*6236dae4SAndroid Build Coastguard Worker , stdout);
530*6236dae4SAndroid Build Coastguard Worker  fputs(
531*6236dae4SAndroid Build Coastguard Worker "               https://curl.se/docs/ssl-ciphers.html\n"
532*6236dae4SAndroid Build Coastguard Worker "\n"
533*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
534*6236dae4SAndroid Build Coastguard Worker "\n"
535*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
536*6236dae4SAndroid Build Coastguard Worker "               curl --ciphers ECDHE-ECDSA-AES256-CCM8 https://example.com\n"
537*6236dae4SAndroid Build Coastguard Worker "\n"
538*6236dae4SAndroid Build Coastguard Worker "       --compressed-ssh\n"
539*6236dae4SAndroid Build Coastguard Worker "              (SCP SFTP) Enables built-in SSH compression.  This is a request,\n"
540*6236dae4SAndroid Build Coastguard Worker "              not an order; the server may or may not do it.\n"
541*6236dae4SAndroid Build Coastguard Worker "\n"
542*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
543*6236dae4SAndroid Build Coastguard Worker "               curl --compressed-ssh sftp://example.com/\n"
544*6236dae4SAndroid Build Coastguard Worker "\n"
545*6236dae4SAndroid Build Coastguard Worker , stdout);
546*6236dae4SAndroid Build Coastguard Worker  fputs(
547*6236dae4SAndroid Build Coastguard Worker "              Added in 7.56.0.\n"
548*6236dae4SAndroid Build Coastguard Worker "\n"
549*6236dae4SAndroid Build Coastguard Worker "       --compressed\n"
550*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Request a compressed response using one of the algorithms\n"
551*6236dae4SAndroid Build Coastguard Worker "              curl supports, and automatically decompress the content. Headers\n"
552*6236dae4SAndroid Build Coastguard Worker "              are not modified.\n"
553*6236dae4SAndroid Build Coastguard Worker "\n"
554*6236dae4SAndroid Build Coastguard Worker "              If this option is used and the server sends an  unsupported  en-\n"
555*6236dae4SAndroid Build Coastguard Worker "              coding, curl will report an error. This is a request, not an or-\n"
556*6236dae4SAndroid Build Coastguard Worker "              der; the server may or may not deliver data compressed.\n"
557*6236dae4SAndroid Build Coastguard Worker "\n"
558*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
559*6236dae4SAndroid Build Coastguard Worker , stdout);
560*6236dae4SAndroid Build Coastguard Worker  fputs(
561*6236dae4SAndroid Build Coastguard Worker "               curl --compressed https://example.com\n"
562*6236dae4SAndroid Build Coastguard Worker "\n"
563*6236dae4SAndroid Build Coastguard Worker "       -K, --config <file>\n"
564*6236dae4SAndroid Build Coastguard Worker "              Specify a text file to read curl  arguments  from.  The  command\n"
565*6236dae4SAndroid Build Coastguard Worker "              line  arguments  found  in the text file will be used as if they\n"
566*6236dae4SAndroid Build Coastguard Worker "              were provided on the command line.\n"
567*6236dae4SAndroid Build Coastguard Worker "\n"
568*6236dae4SAndroid Build Coastguard Worker "              Options and their parameters must be specified on the same  line\n"
569*6236dae4SAndroid Build Coastguard Worker "              in the file, separated by whitespace, colon, or the equals sign.\n"
570*6236dae4SAndroid Build Coastguard Worker , stdout);
571*6236dae4SAndroid Build Coastguard Worker  fputs(
572*6236dae4SAndroid Build Coastguard Worker "              Long option names can optionally be given  in  the  config  file\n"
573*6236dae4SAndroid Build Coastguard Worker "              without the initial double dashes and if so, the colon or equals\n"
574*6236dae4SAndroid Build Coastguard Worker "              characters can be used as separators. If the option is specified\n"
575*6236dae4SAndroid Build Coastguard Worker "              with  one or two dashes, there can be no colon or equals charac-\n"
576*6236dae4SAndroid Build Coastguard Worker "              ter between the option and its parameter.\n"
577*6236dae4SAndroid Build Coastguard Worker "\n"
578*6236dae4SAndroid Build Coastguard Worker "              If the parameter contains whitespace (or starts with  :  or  =),\n"
579*6236dae4SAndroid Build Coastguard Worker , stdout);
580*6236dae4SAndroid Build Coastguard Worker  fputs(
581*6236dae4SAndroid Build Coastguard Worker "              the  parameter  must  be  enclosed  within quotes. Within double\n"
582*6236dae4SAndroid Build Coastguard Worker "              quotes, the following escape sequences are  available:  \\\\,  \\\",\n"
583*6236dae4SAndroid Build Coastguard Worker "              \\t, \\n, \\r and \\v. A backslash preceding any other letter is ig-\n"
584*6236dae4SAndroid Build Coastguard Worker "              nored.\n"
585*6236dae4SAndroid Build Coastguard Worker "\n"
586*6236dae4SAndroid Build Coastguard Worker "              If the first column of a config line is  a  '#'  character,  the\n"
587*6236dae4SAndroid Build Coastguard Worker "              rest of the line will be treated as a comment.\n"
588*6236dae4SAndroid Build Coastguard Worker "\n"
589*6236dae4SAndroid Build Coastguard Worker "              Only write one option per physical line in the config file.\n"
590*6236dae4SAndroid Build Coastguard Worker "\n"
591*6236dae4SAndroid Build Coastguard Worker , stdout);
592*6236dae4SAndroid Build Coastguard Worker  fputs(
593*6236dae4SAndroid Build Coastguard Worker "              Specify  the  filename  to -K, --config as '-' to make curl read\n"
594*6236dae4SAndroid Build Coastguard Worker "              the file from stdin.\n"
595*6236dae4SAndroid Build Coastguard Worker "\n"
596*6236dae4SAndroid Build Coastguard Worker "              Note that to be able to specify a URL in the  config  file,  you\n"
597*6236dae4SAndroid Build Coastguard Worker "              need  to  specify  it  using the --url option, and not by simply\n"
598*6236dae4SAndroid Build Coastguard Worker "              writing the URL on its own line. So, it could  look  similar  to\n"
599*6236dae4SAndroid Build Coastguard Worker "              this:\n"
600*6236dae4SAndroid Build Coastguard Worker "\n"
601*6236dae4SAndroid Build Coastguard Worker "              url = \"https://curl.se/docs/\"\n"
602*6236dae4SAndroid Build Coastguard Worker "\n"
603*6236dae4SAndroid Build Coastguard Worker "              When  curl  is invoked, it (unless -q, --disable is used) checks\n"
604*6236dae4SAndroid Build Coastguard Worker , stdout);
605*6236dae4SAndroid Build Coastguard Worker  fputs(
606*6236dae4SAndroid Build Coastguard Worker "              for a default config file and uses it if found, even  when  this\n"
607*6236dae4SAndroid Build Coastguard Worker "              option  is  used.  The default config file is checked for in the\n"
608*6236dae4SAndroid Build Coastguard Worker "              following places in this order:\n"
609*6236dae4SAndroid Build Coastguard Worker "\n"
610*6236dae4SAndroid Build Coastguard Worker "              1) Use the CURL_HOME environment variable if set\n"
611*6236dae4SAndroid Build Coastguard Worker "\n"
612*6236dae4SAndroid Build Coastguard Worker "              2) Use the XDG_CONFIG_HOME environment variable if set (Added in\n"
613*6236dae4SAndroid Build Coastguard Worker "              7.73.0)\n"
614*6236dae4SAndroid Build Coastguard Worker "\n"
615*6236dae4SAndroid Build Coastguard Worker "              3) Use the HOME environment variable if set\n"
616*6236dae4SAndroid Build Coastguard Worker "\n"
617*6236dae4SAndroid Build Coastguard Worker "              4) Non-windows: use getpwuid to find the home directory\n"
618*6236dae4SAndroid Build Coastguard Worker , stdout);
619*6236dae4SAndroid Build Coastguard Worker  fputs(
620*6236dae4SAndroid Build Coastguard Worker "\n"
621*6236dae4SAndroid Build Coastguard Worker "              5) Windows: use APPDATA if set\n"
622*6236dae4SAndroid Build Coastguard Worker "\n"
623*6236dae4SAndroid Build Coastguard Worker "              6) Windows: use \"USERPROFILE\\Application Data\" if set\n"
624*6236dae4SAndroid Build Coastguard Worker "\n"
625*6236dae4SAndroid Build Coastguard Worker "              7)  On  windows, if there is no .curlrc file in the home dir, it\n"
626*6236dae4SAndroid Build Coastguard Worker "              checks for one in the same dir the curl executable is placed. On\n"
627*6236dae4SAndroid Build Coastguard Worker "              Unix-like  systems,  it will simply try to load .curlrc from the\n"
628*6236dae4SAndroid Build Coastguard Worker "              determined home dir.\n"
629*6236dae4SAndroid Build Coastguard Worker "\n"
630*6236dae4SAndroid Build Coastguard Worker "              # --- Example file ---\n"
631*6236dae4SAndroid Build Coastguard Worker "              # this is a comment\n"
632*6236dae4SAndroid Build Coastguard Worker "              url = \"example.com\"\n"
633*6236dae4SAndroid Build Coastguard Worker , stdout);
634*6236dae4SAndroid Build Coastguard Worker  fputs(
635*6236dae4SAndroid Build Coastguard Worker "              output = \"curlhere.html\"\n"
636*6236dae4SAndroid Build Coastguard Worker "              user-agent = \"superagent/1.0\"\n"
637*6236dae4SAndroid Build Coastguard Worker "\n"
638*6236dae4SAndroid Build Coastguard Worker "              # and fetch another URL too\n"
639*6236dae4SAndroid Build Coastguard Worker "              url = \"example.com/docs/manpage.html\"\n"
640*6236dae4SAndroid Build Coastguard Worker "              -O\n"
641*6236dae4SAndroid Build Coastguard Worker "              referer = \"http://nowhereatall.example.com/\"\n"
642*6236dae4SAndroid Build Coastguard Worker "              # --- End of example file ---\n"
643*6236dae4SAndroid Build Coastguard Worker "\n"
644*6236dae4SAndroid Build Coastguard Worker "              This option can be used multiple times to load  multiple  config\n"
645*6236dae4SAndroid Build Coastguard Worker "              files.\n"
646*6236dae4SAndroid Build Coastguard Worker "\n"
647*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
648*6236dae4SAndroid Build Coastguard Worker "               curl --config file.txt https://example.com\n"
649*6236dae4SAndroid Build Coastguard Worker "\n"
650*6236dae4SAndroid Build Coastguard Worker , stdout);
651*6236dae4SAndroid Build Coastguard Worker  fputs(
652*6236dae4SAndroid Build Coastguard Worker "       --connect-timeout <fractional seconds>\n"
653*6236dae4SAndroid Build Coastguard Worker "              Maximum  time  in  seconds  that  you allow curl's connection to\n"
654*6236dae4SAndroid Build Coastguard Worker "              take.  This only limits the connection phase, so  if  curl  con-\n"
655*6236dae4SAndroid Build Coastguard Worker "              nects  within the given period it will continue - if not it will\n"
656*6236dae4SAndroid Build Coastguard Worker "              exit.  Since version 7.32.0, this option accepts decimal values.\n"
657*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
658*6236dae4SAndroid Build Coastguard Worker "\n"
659*6236dae4SAndroid Build Coastguard Worker "              Examples:\n"
660*6236dae4SAndroid Build Coastguard Worker , stdout);
661*6236dae4SAndroid Build Coastguard Worker  fputs(
662*6236dae4SAndroid Build Coastguard Worker "               curl --connect-timeout 20 https://example.com\n"
663*6236dae4SAndroid Build Coastguard Worker "               curl --connect-timeout 3.14 https://example.com\n"
664*6236dae4SAndroid Build Coastguard Worker "\n"
665*6236dae4SAndroid Build Coastguard Worker "              See also -m, --max-time.\n"
666*6236dae4SAndroid Build Coastguard Worker "\n"
667*6236dae4SAndroid Build Coastguard Worker "       --connect-to <HOST1:PORT1:HOST2:PORT2>\n"
668*6236dae4SAndroid Build Coastguard Worker "\n"
669*6236dae4SAndroid Build Coastguard Worker "              For  a  request  to  the  given  HOST1:PORT1  pair,  connect  to\n"
670*6236dae4SAndroid Build Coastguard Worker "              HOST2:PORT2 instead.  This option is suitable to direct requests\n"
671*6236dae4SAndroid Build Coastguard Worker "              at a specific server, e.g. at a specific cluster node in a clus-\n"
672*6236dae4SAndroid Build Coastguard Worker , stdout);
673*6236dae4SAndroid Build Coastguard Worker  fputs(
674*6236dae4SAndroid Build Coastguard Worker "              ter  of  servers. This option is only used to establish the net-\n"
675*6236dae4SAndroid Build Coastguard Worker "              work connection. It does NOT affect the  hostname/port  that  is\n"
676*6236dae4SAndroid Build Coastguard Worker "              used for TLS/SSL (e.g. SNI, certificate verification) or for the\n"
677*6236dae4SAndroid Build Coastguard Worker "              application protocols. \"HOST1\" and  \"PORT1\"  may  be  the  empty\n"
678*6236dae4SAndroid Build Coastguard Worker "              string, meaning \"any host/port\". \"HOST2\" and \"PORT2\" may also be\n"
679*6236dae4SAndroid Build Coastguard Worker "              the  empty  string,  meaning   \"use   the   request's   original\n"
680*6236dae4SAndroid Build Coastguard Worker "              host/port\".\n"
681*6236dae4SAndroid Build Coastguard Worker , stdout);
682*6236dae4SAndroid Build Coastguard Worker  fputs(
683*6236dae4SAndroid Build Coastguard Worker "\n"
684*6236dae4SAndroid Build Coastguard Worker "              A \"host\" specified to this option is compared as a string, so it\n"
685*6236dae4SAndroid Build Coastguard Worker "              needs to match the name used in request URL. It  can  be  either\n"
686*6236dae4SAndroid Build Coastguard Worker "              numerical such as \"127.0.0.1\" or the full host name such as \"ex-\n"
687*6236dae4SAndroid Build Coastguard Worker "              ample.org\".\n"
688*6236dae4SAndroid Build Coastguard Worker "\n"
689*6236dae4SAndroid Build Coastguard Worker "              This option can be used many times to add many connect rules.\n"
690*6236dae4SAndroid Build Coastguard Worker "\n"
691*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
692*6236dae4SAndroid Build Coastguard Worker "               curl --connect-to example.com:443:example.net:8443 https://example.com\n"
693*6236dae4SAndroid Build Coastguard Worker "\n"
694*6236dae4SAndroid Build Coastguard Worker , stdout);
695*6236dae4SAndroid Build Coastguard Worker  fputs(
696*6236dae4SAndroid Build Coastguard Worker "              See also --resolve and -H, --header. Added in 7.49.0.\n"
697*6236dae4SAndroid Build Coastguard Worker "\n"
698*6236dae4SAndroid Build Coastguard Worker "       -C, --continue-at <offset>\n"
699*6236dae4SAndroid Build Coastguard Worker "              Continue/Resume a previous file transfer at  the  given  offset.\n"
700*6236dae4SAndroid Build Coastguard Worker "              The  given  offset  is  the  exact  number of bytes that will be\n"
701*6236dae4SAndroid Build Coastguard Worker "              skipped, counting from the beginning of the source  file  before\n"
702*6236dae4SAndroid Build Coastguard Worker "              it is transferred to the destination.  If used with uploads, the\n"
703*6236dae4SAndroid Build Coastguard Worker "              FTP server command SIZE will not be used by curl.\n"
704*6236dae4SAndroid Build Coastguard Worker "\n"
705*6236dae4SAndroid Build Coastguard Worker , stdout);
706*6236dae4SAndroid Build Coastguard Worker  fputs(
707*6236dae4SAndroid Build Coastguard Worker "              Use \"-C -\" to tell curl to automatically find out  where/how  to\n"
708*6236dae4SAndroid Build Coastguard Worker "              resume  the  transfer. It then uses the given output/input files\n"
709*6236dae4SAndroid Build Coastguard Worker "              to figure that out.\n"
710*6236dae4SAndroid Build Coastguard Worker "\n"
711*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
712*6236dae4SAndroid Build Coastguard Worker "\n"
713*6236dae4SAndroid Build Coastguard Worker "              Examples:\n"
714*6236dae4SAndroid Build Coastguard Worker "               curl -C - https://example.com\n"
715*6236dae4SAndroid Build Coastguard Worker "               curl -C 400 https://example.com\n"
716*6236dae4SAndroid Build Coastguard Worker "\n"
717*6236dae4SAndroid Build Coastguard Worker "              See also -r, --range.\n"
718*6236dae4SAndroid Build Coastguard Worker "\n"
719*6236dae4SAndroid Build Coastguard Worker "       -c, --cookie-jar <filename>\n"
720*6236dae4SAndroid Build Coastguard Worker , stdout);
721*6236dae4SAndroid Build Coastguard Worker  fputs(
722*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Specify to which file you want curl to write all  cookies\n"
723*6236dae4SAndroid Build Coastguard Worker "              after  a  completed  operation. Curl writes all cookies from its\n"
724*6236dae4SAndroid Build Coastguard Worker "              in-memory cookie storage to the given file at the end of  opera-\n"
725*6236dae4SAndroid Build Coastguard Worker "              tions.  If  no  cookies  are known, no data will be written. The\n"
726*6236dae4SAndroid Build Coastguard Worker "              file will be written using the Netscape cookie file  format.  If\n"
727*6236dae4SAndroid Build Coastguard Worker "              you set the file name to a single dash, \"-\", the cookies will be\n"
728*6236dae4SAndroid Build Coastguard Worker , stdout);
729*6236dae4SAndroid Build Coastguard Worker  fputs(
730*6236dae4SAndroid Build Coastguard Worker "              written to stdout.\n"
731*6236dae4SAndroid Build Coastguard Worker "\n"
732*6236dae4SAndroid Build Coastguard Worker "              This command line option will activate the  cookie  engine  that\n"
733*6236dae4SAndroid Build Coastguard Worker "              makes curl record and use cookies. Another way to activate it is\n"
734*6236dae4SAndroid Build Coastguard Worker "              to use the -b, --cookie option.\n"
735*6236dae4SAndroid Build Coastguard Worker "\n"
736*6236dae4SAndroid Build Coastguard Worker "              If the cookie jar cannot be created or  written  to,  the  whole\n"
737*6236dae4SAndroid Build Coastguard Worker "              curl  operation  will  not fail or even report an error clearly.\n"
738*6236dae4SAndroid Build Coastguard Worker "              Using -v, --verbose will get a warning displayed,  but  that  is\n"
739*6236dae4SAndroid Build Coastguard Worker , stdout);
740*6236dae4SAndroid Build Coastguard Worker  fputs(
741*6236dae4SAndroid Build Coastguard Worker "              the  only  visible  feedback  you get about this possibly lethal\n"
742*6236dae4SAndroid Build Coastguard Worker "              situation.\n"
743*6236dae4SAndroid Build Coastguard Worker "\n"
744*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the  last  specified  file\n"
745*6236dae4SAndroid Build Coastguard Worker "              name will be used.\n"
746*6236dae4SAndroid Build Coastguard Worker "\n"
747*6236dae4SAndroid Build Coastguard Worker "              Examples:\n"
748*6236dae4SAndroid Build Coastguard Worker "               curl -c store-here.txt https://example.com\n"
749*6236dae4SAndroid Build Coastguard Worker "               curl -c store-here.txt -b read-these https://example.com\n"
750*6236dae4SAndroid Build Coastguard Worker "\n"
751*6236dae4SAndroid Build Coastguard Worker "       -b, --cookie <data|filename>\n"
752*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Pass the data to the HTTP server in the Cookie header. It\n"
753*6236dae4SAndroid Build Coastguard Worker , stdout);
754*6236dae4SAndroid Build Coastguard Worker  fputs(
755*6236dae4SAndroid Build Coastguard Worker "              is supposedly the data previously received from the server in  a\n"
756*6236dae4SAndroid Build Coastguard Worker "              \"Set-Cookie:\"   line.    The   data  should  be  in  the  format\n"
757*6236dae4SAndroid Build Coastguard Worker "              \"NAME1=VALUE1; NAME2=VALUE2\".\n"
758*6236dae4SAndroid Build Coastguard Worker "\n"
759*6236dae4SAndroid Build Coastguard Worker "              If no '=' symbol is used in the argument, it is instead  treated\n"
760*6236dae4SAndroid Build Coastguard Worker "              as a filename to read previously stored cookie from. This option\n"
761*6236dae4SAndroid Build Coastguard Worker "              also activates the cookie engine which will make curl record in-\n"
762*6236dae4SAndroid Build Coastguard Worker , stdout);
763*6236dae4SAndroid Build Coastguard Worker  fputs(
764*6236dae4SAndroid Build Coastguard Worker "              coming cookies, which may be handy if you are using this in com-\n"
765*6236dae4SAndroid Build Coastguard Worker "              bination with the -L,  --location  option  or  do  multiple  URL\n"
766*6236dae4SAndroid Build Coastguard Worker "              transfers  on the same invoke. If the file name is exactly a mi-\n"
767*6236dae4SAndroid Build Coastguard Worker "              nus (\"-\"), curl will instead read the contents from stdin.\n"
768*6236dae4SAndroid Build Coastguard Worker "\n"
769*6236dae4SAndroid Build Coastguard Worker "              The file format of the file to read cookies from should be plain\n"
770*6236dae4SAndroid Build Coastguard Worker "              HTTP  headers  (Set-Cookie style) or the Netscape/Mozilla cookie\n"
771*6236dae4SAndroid Build Coastguard Worker "              file format.\n"
772*6236dae4SAndroid Build Coastguard Worker "\n"
773*6236dae4SAndroid Build Coastguard Worker , stdout);
774*6236dae4SAndroid Build Coastguard Worker  fputs(
775*6236dae4SAndroid Build Coastguard Worker "              The file specified with -b, --cookie is only used as  input.  No\n"
776*6236dae4SAndroid Build Coastguard Worker "              cookies  will  be written to the file. To store cookies, use the\n"
777*6236dae4SAndroid Build Coastguard Worker "              -c, --cookie-jar option.\n"
778*6236dae4SAndroid Build Coastguard Worker "\n"
779*6236dae4SAndroid Build Coastguard Worker "              If you use the Set-Cookie file format and do not specify  a  do-\n"
780*6236dae4SAndroid Build Coastguard Worker "              main  then  the  cookie  is not sent since the domain will never\n"
781*6236dae4SAndroid Build Coastguard Worker "              match. To address this, set a domain in Set-Cookie  line  (doing\n"
782*6236dae4SAndroid Build Coastguard Worker , stdout);
783*6236dae4SAndroid Build Coastguard Worker  fputs(
784*6236dae4SAndroid Build Coastguard Worker "              that  will  include sub-domains) or preferably: use the Netscape\n"
785*6236dae4SAndroid Build Coastguard Worker "              format.\n"
786*6236dae4SAndroid Build Coastguard Worker "\n"
787*6236dae4SAndroid Build Coastguard Worker "              This option can be used multiple times.\n"
788*6236dae4SAndroid Build Coastguard Worker "\n"
789*6236dae4SAndroid Build Coastguard Worker "              Users often want to both read cookies from a file and write  up-\n"
790*6236dae4SAndroid Build Coastguard Worker "              dated cookies back to a file, so using both -b, --cookie and -c,\n"
791*6236dae4SAndroid Build Coastguard Worker "              --cookie-jar in the same command line is common.\n"
792*6236dae4SAndroid Build Coastguard Worker "\n"
793*6236dae4SAndroid Build Coastguard Worker "              Examples:\n"
794*6236dae4SAndroid Build Coastguard Worker "               curl -b cookiefile https://example.com\n"
795*6236dae4SAndroid Build Coastguard Worker , stdout);
796*6236dae4SAndroid Build Coastguard Worker  fputs(
797*6236dae4SAndroid Build Coastguard Worker "               curl -b cookiefile -c cookiefile https://example.com\n"
798*6236dae4SAndroid Build Coastguard Worker "\n"
799*6236dae4SAndroid Build Coastguard Worker "       --create-dirs\n"
800*6236dae4SAndroid Build Coastguard Worker "              When used in conjunction with the -o, --output option, curl will\n"
801*6236dae4SAndroid Build Coastguard Worker "              create  the  necessary local directory hierarchy as needed. This\n"
802*6236dae4SAndroid Build Coastguard Worker "              option creates the directories mentioned with the  -o,  --output\n"
803*6236dae4SAndroid Build Coastguard Worker "              option,  nothing  else. If the --output file name uses no direc-\n"
804*6236dae4SAndroid Build Coastguard Worker "              tory, or if the directories it mentions already exist, no direc-\n"
805*6236dae4SAndroid Build Coastguard Worker , stdout);
806*6236dae4SAndroid Build Coastguard Worker  fputs(
807*6236dae4SAndroid Build Coastguard Worker "              tories will be created.\n"
808*6236dae4SAndroid Build Coastguard Worker "\n"
809*6236dae4SAndroid Build Coastguard Worker "              Created dirs are made with mode 0750 on unix style file systems.\n"
810*6236dae4SAndroid Build Coastguard Worker "              To  create remote directories when using FTP or SFTP, try --ftp-\n"
811*6236dae4SAndroid Build Coastguard Worker "              create-dirs.\n"
812*6236dae4SAndroid Build Coastguard Worker "\n"
813*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
814*6236dae4SAndroid Build Coastguard Worker "               curl --create-dirs --output local/dir/file https://example.com\n"
815*6236dae4SAndroid Build Coastguard Worker "\n"
816*6236dae4SAndroid Build Coastguard Worker "       --create-file-mode <mode>\n"
817*6236dae4SAndroid Build Coastguard Worker "              (SFTP SCP FILE) When curl is used to create files remotely using\n"
818*6236dae4SAndroid Build Coastguard Worker , stdout);
819*6236dae4SAndroid Build Coastguard Worker  fputs(
820*6236dae4SAndroid Build Coastguard Worker "              one  of  the supported protocols, this option allows the user to\n"
821*6236dae4SAndroid Build Coastguard Worker "              set which 'mode' to set on the file at creation time, instead of\n"
822*6236dae4SAndroid Build Coastguard Worker "              the default 0644.\n"
823*6236dae4SAndroid Build Coastguard Worker "\n"
824*6236dae4SAndroid Build Coastguard Worker "              This option takes an octal number as argument.\n"
825*6236dae4SAndroid Build Coastguard Worker "\n"
826*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
827*6236dae4SAndroid Build Coastguard Worker "\n"
828*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
829*6236dae4SAndroid Build Coastguard Worker "               curl --create-file-mode 0777 -T localfile sftp://example.com/new\n"
830*6236dae4SAndroid Build Coastguard Worker "\n"
831*6236dae4SAndroid Build Coastguard Worker "              See also --ftp-create-dirs. Added in 7.75.0.\n"
832*6236dae4SAndroid Build Coastguard Worker "\n"
833*6236dae4SAndroid Build Coastguard Worker , stdout);
834*6236dae4SAndroid Build Coastguard Worker  fputs(
835*6236dae4SAndroid Build Coastguard Worker "       --crlf (FTP  SMTP)  Convert  LF  to  CRLF  in  upload.  Useful  for MVS\n"
836*6236dae4SAndroid Build Coastguard Worker "              (OS/390).\n"
837*6236dae4SAndroid Build Coastguard Worker "\n"
838*6236dae4SAndroid Build Coastguard Worker "              (SMTP added in 7.40.0)\n"
839*6236dae4SAndroid Build Coastguard Worker "\n"
840*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
841*6236dae4SAndroid Build Coastguard Worker "               curl --crlf -T file ftp://example.com/\n"
842*6236dae4SAndroid Build Coastguard Worker "\n"
843*6236dae4SAndroid Build Coastguard Worker "       --crlfile <file>\n"
844*6236dae4SAndroid Build Coastguard Worker "              (TLS) Provide a file using PEM format with a Certificate Revoca-\n"
845*6236dae4SAndroid Build Coastguard Worker "              tion List that may specify peer certificates that are to be con-\n"
846*6236dae4SAndroid Build Coastguard Worker "              sidered revoked.\n"
847*6236dae4SAndroid Build Coastguard Worker "\n"
848*6236dae4SAndroid Build Coastguard Worker , stdout);
849*6236dae4SAndroid Build Coastguard Worker  fputs(
850*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
851*6236dae4SAndroid Build Coastguard Worker "\n"
852*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
853*6236dae4SAndroid Build Coastguard Worker "               curl --crlfile rejects.txt https://example.com\n"
854*6236dae4SAndroid Build Coastguard Worker "\n"
855*6236dae4SAndroid Build Coastguard Worker "       --curves <algorithm list>\n"
856*6236dae4SAndroid Build Coastguard Worker "              (TLS) Tells curl to request specific curves to  use  during  SSL\n"
857*6236dae4SAndroid Build Coastguard Worker "              session  establishment according to RFC 8422, 5.1.  Multiple al-\n"
858*6236dae4SAndroid Build Coastguard Worker "              gorithms can be provided  by  separating  them  with  \":\"  (e.g.\n"
859*6236dae4SAndroid Build Coastguard Worker , stdout);
860*6236dae4SAndroid Build Coastguard Worker  fputs(
861*6236dae4SAndroid Build Coastguard Worker "              \"X25519:P-521\").   The parameter is available identically in the\n"
862*6236dae4SAndroid Build Coastguard Worker "              \"openssl s_client/s_server\" utilities.\n"
863*6236dae4SAndroid Build Coastguard Worker "\n"
864*6236dae4SAndroid Build Coastguard Worker "              --curves allows a OpenSSL powered curl to  make  SSL-connections\n"
865*6236dae4SAndroid Build Coastguard Worker "              with  exactly  the  (EC) curve requested by the client, avoiding\n"
866*6236dae4SAndroid Build Coastguard Worker "              intransparent client/server negotiations.\n"
867*6236dae4SAndroid Build Coastguard Worker "\n"
868*6236dae4SAndroid Build Coastguard Worker "              If this option is  set,  the  default  curves  list  built  into\n"
869*6236dae4SAndroid Build Coastguard Worker "              openssl will be ignored.\n"
870*6236dae4SAndroid Build Coastguard Worker "\n"
871*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
872*6236dae4SAndroid Build Coastguard Worker , stdout);
873*6236dae4SAndroid Build Coastguard Worker  fputs(
874*6236dae4SAndroid Build Coastguard Worker "               curl --curves X25519 https://example.com\n"
875*6236dae4SAndroid Build Coastguard Worker "\n"
876*6236dae4SAndroid Build Coastguard Worker "              Added in 7.73.0.\n"
877*6236dae4SAndroid Build Coastguard Worker "\n"
878*6236dae4SAndroid Build Coastguard Worker "       --data-ascii <data>\n"
879*6236dae4SAndroid Build Coastguard Worker "              (HTTP) This is just an alias for -d, --data.\n"
880*6236dae4SAndroid Build Coastguard Worker "\n"
881*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
882*6236dae4SAndroid Build Coastguard Worker "               curl --data-ascii @file https://example.com\n"
883*6236dae4SAndroid Build Coastguard Worker "\n"
884*6236dae4SAndroid Build Coastguard Worker "       --data-binary <data>\n"
885*6236dae4SAndroid Build Coastguard Worker "              (HTTP)  This  posts data exactly as specified with no extra pro-\n"
886*6236dae4SAndroid Build Coastguard Worker "              cessing whatsoever.\n"
887*6236dae4SAndroid Build Coastguard Worker "\n"
888*6236dae4SAndroid Build Coastguard Worker "              If you start the data with the letter @, the rest  should  be  a\n"
889*6236dae4SAndroid Build Coastguard Worker , stdout);
890*6236dae4SAndroid Build Coastguard Worker  fputs(
891*6236dae4SAndroid Build Coastguard Worker "              filename.   Data  is  posted  in  a similar manner as -d, --data\n"
892*6236dae4SAndroid Build Coastguard Worker "              does, except that newlines and carriage  returns  are  preserved\n"
893*6236dae4SAndroid Build Coastguard Worker "              and conversions are never done.\n"
894*6236dae4SAndroid Build Coastguard Worker "\n"
895*6236dae4SAndroid Build Coastguard Worker "              Like  -d,  --data the default content-type sent to the server is\n"
896*6236dae4SAndroid Build Coastguard Worker "              application/x-www-form-urlencoded. If you want the  data  to  be\n"
897*6236dae4SAndroid Build Coastguard Worker "              treated as arbitrary binary data by the server then set the con-\n"
898*6236dae4SAndroid Build Coastguard Worker , stdout);
899*6236dae4SAndroid Build Coastguard Worker  fputs(
900*6236dae4SAndroid Build Coastguard Worker "              tent-type to octet-stream: -H \"Content-Type:  application/octet-\n"
901*6236dae4SAndroid Build Coastguard Worker "              stream\".\n"
902*6236dae4SAndroid Build Coastguard Worker "\n"
903*6236dae4SAndroid Build Coastguard Worker "              If  this  option  is  used several times, the ones following the\n"
904*6236dae4SAndroid Build Coastguard Worker "              first will append data as described in -d, --data.\n"
905*6236dae4SAndroid Build Coastguard Worker "\n"
906*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
907*6236dae4SAndroid Build Coastguard Worker "               curl --data-binary @filename https://example.com\n"
908*6236dae4SAndroid Build Coastguard Worker "\n"
909*6236dae4SAndroid Build Coastguard Worker "       --data-raw <data>\n"
910*6236dae4SAndroid Build Coastguard Worker "              (HTTP) This posts data similarly to -d, --data but  without  the\n"
911*6236dae4SAndroid Build Coastguard Worker "              special interpretation of the @ character.\n"
912*6236dae4SAndroid Build Coastguard Worker "\n"
913*6236dae4SAndroid Build Coastguard Worker , stdout);
914*6236dae4SAndroid Build Coastguard Worker  fputs(
915*6236dae4SAndroid Build Coastguard Worker "              Examples:\n"
916*6236dae4SAndroid Build Coastguard Worker "               curl --data-raw \"hello\" https://example.com\n"
917*6236dae4SAndroid Build Coastguard Worker "               curl --data-raw \"@at@at@\" https://example.com\n"
918*6236dae4SAndroid Build Coastguard Worker "\n"
919*6236dae4SAndroid Build Coastguard Worker "              See also -d, --data. Added in 7.43.0.\n"
920*6236dae4SAndroid Build Coastguard Worker "\n"
921*6236dae4SAndroid Build Coastguard Worker "       --data-urlencode <data>\n"
922*6236dae4SAndroid Build Coastguard Worker "              (HTTP)  This posts data, similar to the other -d, --data options\n"
923*6236dae4SAndroid Build Coastguard Worker "              with the exception that this performs URL-encoding.\n"
924*6236dae4SAndroid Build Coastguard Worker "\n"
925*6236dae4SAndroid Build Coastguard Worker "              To be CGI-compliant, the <data> part should begin  with  a  name\n"
926*6236dae4SAndroid Build Coastguard Worker , stdout);
927*6236dae4SAndroid Build Coastguard Worker  fputs(
928*6236dae4SAndroid Build Coastguard Worker "              followed  by a separator and a content specification. The <data>\n"
929*6236dae4SAndroid Build Coastguard Worker "              part can be passed to curl using one of the following syntaxes:\n"
930*6236dae4SAndroid Build Coastguard Worker "\n"
931*6236dae4SAndroid Build Coastguard Worker "              content\n"
932*6236dae4SAndroid Build Coastguard Worker "                     This will make curl URL-encode the content and pass  that\n"
933*6236dae4SAndroid Build Coastguard Worker "                     on.  Just be careful so that the content does not contain\n"
934*6236dae4SAndroid Build Coastguard Worker "                     any = or @ symbols, as that will  then  make  the  syntax\n"
935*6236dae4SAndroid Build Coastguard Worker "                     match one of the other cases below!\n"
936*6236dae4SAndroid Build Coastguard Worker "\n"
937*6236dae4SAndroid Build Coastguard Worker "              =content\n"
938*6236dae4SAndroid Build Coastguard Worker , stdout);
939*6236dae4SAndroid Build Coastguard Worker  fputs(
940*6236dae4SAndroid Build Coastguard Worker "                     This  will make curl URL-encode the content and pass that\n"
941*6236dae4SAndroid Build Coastguard Worker "                     on. The preceding = symbol is not included in the data.\n"
942*6236dae4SAndroid Build Coastguard Worker "\n"
943*6236dae4SAndroid Build Coastguard Worker "              name=content\n"
944*6236dae4SAndroid Build Coastguard Worker "                     This will make curl URL-encode the content part and  pass\n"
945*6236dae4SAndroid Build Coastguard Worker "                     that  on.  Note that the name part is expected to be URL-\n"
946*6236dae4SAndroid Build Coastguard Worker "                     encoded already.\n"
947*6236dae4SAndroid Build Coastguard Worker "\n"
948*6236dae4SAndroid Build Coastguard Worker "              @filename\n"
949*6236dae4SAndroid Build Coastguard Worker "                     This will make curl load data from the  given  file  (in-\n"
950*6236dae4SAndroid Build Coastguard Worker , stdout);
951*6236dae4SAndroid Build Coastguard Worker  fputs(
952*6236dae4SAndroid Build Coastguard Worker "                     cluding  any  newlines), URL-encode that data and pass it\n"
953*6236dae4SAndroid Build Coastguard Worker "                     on in the POST.\n"
954*6236dae4SAndroid Build Coastguard Worker "\n"
955*6236dae4SAndroid Build Coastguard Worker "              name@filename\n"
956*6236dae4SAndroid Build Coastguard Worker "                     This will make curl load data from the  given  file  (in-\n"
957*6236dae4SAndroid Build Coastguard Worker "                     cluding  any  newlines), URL-encode that data and pass it\n"
958*6236dae4SAndroid Build Coastguard Worker "                     on in the POST. The name part  gets  an  equal  sign  ap-\n"
959*6236dae4SAndroid Build Coastguard Worker "                     pended,  resulting  in name=urlencoded-file-content. Note\n"
960*6236dae4SAndroid Build Coastguard Worker , stdout);
961*6236dae4SAndroid Build Coastguard Worker  fputs(
962*6236dae4SAndroid Build Coastguard Worker "                     that the name is expected to be URL-encoded already.\n"
963*6236dae4SAndroid Build Coastguard Worker "\n"
964*6236dae4SAndroid Build Coastguard Worker "       Examples:\n"
965*6236dae4SAndroid Build Coastguard Worker "        curl --data-urlencode name=val https://example.com\n"
966*6236dae4SAndroid Build Coastguard Worker "        curl --data-urlencode =encodethis https://example.com\n"
967*6236dae4SAndroid Build Coastguard Worker "        curl --data-urlencode name@file https://example.com\n"
968*6236dae4SAndroid Build Coastguard Worker "        curl --data-urlencode @fileonly https://example.com\n"
969*6236dae4SAndroid Build Coastguard Worker "\n"
970*6236dae4SAndroid Build Coastguard Worker "       See also -d, --data and --data-raw.\n"
971*6236dae4SAndroid Build Coastguard Worker "\n"
972*6236dae4SAndroid Build Coastguard Worker "       -d, --data <data>\n"
973*6236dae4SAndroid Build Coastguard Worker "              (HTTP MQTT) Sends the specified data in a POST  request  to  the\n"
974*6236dae4SAndroid Build Coastguard Worker , stdout);
975*6236dae4SAndroid Build Coastguard Worker  fputs(
976*6236dae4SAndroid Build Coastguard Worker "              HTTP server, in the same way that a browser does when a user has\n"
977*6236dae4SAndroid Build Coastguard Worker "              filled in an HTML form and presses the submit button. This  will\n"
978*6236dae4SAndroid Build Coastguard Worker "              cause curl to pass the data to the server using the content-type\n"
979*6236dae4SAndroid Build Coastguard Worker "              application/x-www-form-urlencoded.  Compare to -F, --form.\n"
980*6236dae4SAndroid Build Coastguard Worker "\n"
981*6236dae4SAndroid Build Coastguard Worker "              --data-raw is almost the same but does not have a special inter-\n"
982*6236dae4SAndroid Build Coastguard Worker "              pretation  of  the  @ character. To post data purely binary, you\n"
983*6236dae4SAndroid Build Coastguard Worker , stdout);
984*6236dae4SAndroid Build Coastguard Worker  fputs(
985*6236dae4SAndroid Build Coastguard Worker "              should instead use the --data-binary option.  To URL-encode  the\n"
986*6236dae4SAndroid Build Coastguard Worker "              value of a form field you may use --data-urlencode.\n"
987*6236dae4SAndroid Build Coastguard Worker "\n"
988*6236dae4SAndroid Build Coastguard Worker "              If  any of these options is used more than once on the same com-\n"
989*6236dae4SAndroid Build Coastguard Worker "              mand line, the data pieces specified  will  be  merged  together\n"
990*6236dae4SAndroid Build Coastguard Worker "              with  a  separating  &-symbol.  Thus,  using  '-d name=daniel -d\n"
991*6236dae4SAndroid Build Coastguard Worker "              skill=lousy'  would  generate  a  post  chunk  that  looks  like\n"
992*6236dae4SAndroid Build Coastguard Worker , stdout);
993*6236dae4SAndroid Build Coastguard Worker  fputs(
994*6236dae4SAndroid Build Coastguard Worker "              'name=daniel&skill=lousy'.\n"
995*6236dae4SAndroid Build Coastguard Worker "\n"
996*6236dae4SAndroid Build Coastguard Worker "              If  you  start  the data with the letter @, the rest should be a\n"
997*6236dae4SAndroid Build Coastguard Worker "              file name to read the data from, or - if you want curl  to  read\n"
998*6236dae4SAndroid Build Coastguard Worker "              the  data  from  stdin.  Posting data from a file named 'foobar'\n"
999*6236dae4SAndroid Build Coastguard Worker "              would thus be done with -d, --data @foobar. When -d,  --data  is\n"
1000*6236dae4SAndroid Build Coastguard Worker "              told  to  read  from a file like that, carriage returns and new-\n"
1001*6236dae4SAndroid Build Coastguard Worker , stdout);
1002*6236dae4SAndroid Build Coastguard Worker  fputs(
1003*6236dae4SAndroid Build Coastguard Worker "              lines will be stripped out. If you do not want the  @  character\n"
1004*6236dae4SAndroid Build Coastguard Worker "              to have a special interpretation use --data-raw instead.\n"
1005*6236dae4SAndroid Build Coastguard Worker "\n"
1006*6236dae4SAndroid Build Coastguard Worker "              Examples:\n"
1007*6236dae4SAndroid Build Coastguard Worker "               curl -d \"name=curl\" https://example.com\n"
1008*6236dae4SAndroid Build Coastguard Worker "               curl -d \"name=curl\" -d \"tool=cmdline\" https://example.com\n"
1009*6236dae4SAndroid Build Coastguard Worker "               curl -d @filename https://example.com\n"
1010*6236dae4SAndroid Build Coastguard Worker "\n"
1011*6236dae4SAndroid Build Coastguard Worker "              See  also  --data-binary,  --data-urlencode and --data-raw. This\n"
1012*6236dae4SAndroid Build Coastguard Worker , stdout);
1013*6236dae4SAndroid Build Coastguard Worker  fputs(
1014*6236dae4SAndroid Build Coastguard Worker "              option overrides -F, --form and -I,  --head  and  -T,  --upload-\n"
1015*6236dae4SAndroid Build Coastguard Worker "              file.\n"
1016*6236dae4SAndroid Build Coastguard Worker "\n"
1017*6236dae4SAndroid Build Coastguard Worker "       --delegation <LEVEL>\n"
1018*6236dae4SAndroid Build Coastguard Worker "              (GSS/kerberos)  Set  LEVEL to tell the server what it is allowed\n"
1019*6236dae4SAndroid Build Coastguard Worker "              to delegate when it comes to user credentials.\n"
1020*6236dae4SAndroid Build Coastguard Worker "\n"
1021*6236dae4SAndroid Build Coastguard Worker "              none   Do not allow any delegation.\n"
1022*6236dae4SAndroid Build Coastguard Worker "\n"
1023*6236dae4SAndroid Build Coastguard Worker "              policy Delegates if and only if the OK-AS-DELEGATE flag  is  set\n"
1024*6236dae4SAndroid Build Coastguard Worker "                     in  the  Kerberos  service  ticket,  which is a matter of\n"
1025*6236dae4SAndroid Build Coastguard Worker , stdout);
1026*6236dae4SAndroid Build Coastguard Worker  fputs(
1027*6236dae4SAndroid Build Coastguard Worker "                     realm policy.\n"
1028*6236dae4SAndroid Build Coastguard Worker "\n"
1029*6236dae4SAndroid Build Coastguard Worker "              always Unconditionally allow the server to delegate.\n"
1030*6236dae4SAndroid Build Coastguard Worker "\n"
1031*6236dae4SAndroid Build Coastguard Worker "       If this option is used several times, the last one will be used.\n"
1032*6236dae4SAndroid Build Coastguard Worker "\n"
1033*6236dae4SAndroid Build Coastguard Worker "       Example:\n"
1034*6236dae4SAndroid Build Coastguard Worker "        curl --delegation \"none\" https://example.com\n"
1035*6236dae4SAndroid Build Coastguard Worker "\n"
1036*6236dae4SAndroid Build Coastguard Worker "       --digest\n"
1037*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Enables HTTP Digest authentication. This is an  authenti-\n"
1038*6236dae4SAndroid Build Coastguard Worker "              cation  scheme  that  prevents the password from being sent over\n"
1039*6236dae4SAndroid Build Coastguard Worker "              the wire in clear text. Use this in combination with the  normal\n"
1040*6236dae4SAndroid Build Coastguard Worker , stdout);
1041*6236dae4SAndroid Build Coastguard Worker  fputs(
1042*6236dae4SAndroid Build Coastguard Worker "              -u, --user option to set user name and password.\n"
1043*6236dae4SAndroid Build Coastguard Worker "\n"
1044*6236dae4SAndroid Build Coastguard Worker "              If  this  option  is  used  several times, only the first one is\n"
1045*6236dae4SAndroid Build Coastguard Worker "              used.\n"
1046*6236dae4SAndroid Build Coastguard Worker "\n"
1047*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1048*6236dae4SAndroid Build Coastguard Worker "               curl -u name:password --digest https://example.com\n"
1049*6236dae4SAndroid Build Coastguard Worker "\n"
1050*6236dae4SAndroid Build Coastguard Worker "              See also -u, --user, --proxy-digest and --anyauth.  This  option\n"
1051*6236dae4SAndroid Build Coastguard Worker "              overrides --basic and --ntlm and --negotiate.\n"
1052*6236dae4SAndroid Build Coastguard Worker "\n"
1053*6236dae4SAndroid Build Coastguard Worker "       --disable-eprt\n"
1054*6236dae4SAndroid Build Coastguard Worker "              (FTP) Tell curl to disable the use of the EPRT and LPRT commands\n"
1055*6236dae4SAndroid Build Coastguard Worker , stdout);
1056*6236dae4SAndroid Build Coastguard Worker  fputs(
1057*6236dae4SAndroid Build Coastguard Worker "              when doing active FTP transfers. Curl will normally always first\n"
1058*6236dae4SAndroid Build Coastguard Worker "              attempt  to use EPRT, then LPRT before using PORT, but with this\n"
1059*6236dae4SAndroid Build Coastguard Worker "              option, it will use PORT right away. EPRT and  LPRT  are  exten-\n"
1060*6236dae4SAndroid Build Coastguard Worker "              sions  to  the  original  FTP  protocol, and may not work on all\n"
1061*6236dae4SAndroid Build Coastguard Worker "              servers, but they enable more functionality in a better way than\n"
1062*6236dae4SAndroid Build Coastguard Worker "              the traditional PORT command.\n"
1063*6236dae4SAndroid Build Coastguard Worker "\n"
1064*6236dae4SAndroid Build Coastguard Worker , stdout);
1065*6236dae4SAndroid Build Coastguard Worker  fputs(
1066*6236dae4SAndroid Build Coastguard Worker "              --eprt can be used to explicitly enable EPRT again and --no-eprt\n"
1067*6236dae4SAndroid Build Coastguard Worker "              is an alias for --disable-eprt.\n"
1068*6236dae4SAndroid Build Coastguard Worker "\n"
1069*6236dae4SAndroid Build Coastguard Worker "              If the server is accessed using IPv6, this option will  have  no\n"
1070*6236dae4SAndroid Build Coastguard Worker "              effect as EPRT is necessary then.\n"
1071*6236dae4SAndroid Build Coastguard Worker "\n"
1072*6236dae4SAndroid Build Coastguard Worker "              Disabling  EPRT only changes the active behavior. If you want to\n"
1073*6236dae4SAndroid Build Coastguard Worker "              switch to passive mode you need to not  use  -P,  --ftp-port  or\n"
1074*6236dae4SAndroid Build Coastguard Worker "              force it with --ftp-pasv.\n"
1075*6236dae4SAndroid Build Coastguard Worker "\n"
1076*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1077*6236dae4SAndroid Build Coastguard Worker , stdout);
1078*6236dae4SAndroid Build Coastguard Worker  fputs(
1079*6236dae4SAndroid Build Coastguard Worker "               curl --disable-eprt ftp://example.com/\n"
1080*6236dae4SAndroid Build Coastguard Worker "\n"
1081*6236dae4SAndroid Build Coastguard Worker "       --disable-epsv\n"
1082*6236dae4SAndroid Build Coastguard Worker "              (FTP)  Tell curl to disable the use of the EPSV command when do-\n"
1083*6236dae4SAndroid Build Coastguard Worker "              ing passive FTP transfers. Curl will normally always  first  at-\n"
1084*6236dae4SAndroid Build Coastguard Worker "              tempt to use EPSV before PASV, but with this option, it will not\n"
1085*6236dae4SAndroid Build Coastguard Worker "              try using EPSV.\n"
1086*6236dae4SAndroid Build Coastguard Worker "\n"
1087*6236dae4SAndroid Build Coastguard Worker "              --epsv can be used to explicitly enable EPSV again and --no-epsv\n"
1088*6236dae4SAndroid Build Coastguard Worker "              is an alias for --disable-epsv.\n"
1089*6236dae4SAndroid Build Coastguard Worker "\n"
1090*6236dae4SAndroid Build Coastguard Worker , stdout);
1091*6236dae4SAndroid Build Coastguard Worker  fputs(
1092*6236dae4SAndroid Build Coastguard Worker "              If  the  server is an IPv6 host, this option will have no effect\n"
1093*6236dae4SAndroid Build Coastguard Worker "              as EPSV is necessary then.\n"
1094*6236dae4SAndroid Build Coastguard Worker "\n"
1095*6236dae4SAndroid Build Coastguard Worker "              Disabling EPSV only changes the passive behavior. If you want to\n"
1096*6236dae4SAndroid Build Coastguard Worker "              switch to active mode you need to use -P, --ftp-port.\n"
1097*6236dae4SAndroid Build Coastguard Worker "\n"
1098*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1099*6236dae4SAndroid Build Coastguard Worker "               curl --disable-epsv ftp://example.com/\n"
1100*6236dae4SAndroid Build Coastguard Worker "\n"
1101*6236dae4SAndroid Build Coastguard Worker "       -q, --disable\n"
1102*6236dae4SAndroid Build Coastguard Worker "              If  used  as the first parameter on the command line, the curlrc\n"
1103*6236dae4SAndroid Build Coastguard Worker , stdout);
1104*6236dae4SAndroid Build Coastguard Worker  fputs(
1105*6236dae4SAndroid Build Coastguard Worker "              config file will not be read and used. See the -K, --config  for\n"
1106*6236dae4SAndroid Build Coastguard Worker "              details on the default config file search path.\n"
1107*6236dae4SAndroid Build Coastguard Worker "\n"
1108*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1109*6236dae4SAndroid Build Coastguard Worker "               curl -q https://example.com\n"
1110*6236dae4SAndroid Build Coastguard Worker "\n"
1111*6236dae4SAndroid Build Coastguard Worker "       --disallow-username-in-url\n"
1112*6236dae4SAndroid Build Coastguard Worker "              (HTTP)  This  tells  curl  to  exit if passed a url containing a\n"
1113*6236dae4SAndroid Build Coastguard Worker "              username. This is probably most useful when  the  URL  is  being\n"
1114*6236dae4SAndroid Build Coastguard Worker "              provided at run-time or similar.\n"
1115*6236dae4SAndroid Build Coastguard Worker "\n"
1116*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1117*6236dae4SAndroid Build Coastguard Worker , stdout);
1118*6236dae4SAndroid Build Coastguard Worker  fputs(
1119*6236dae4SAndroid Build Coastguard Worker "               curl --disallow-username-in-url https://example.com\n"
1120*6236dae4SAndroid Build Coastguard Worker "\n"
1121*6236dae4SAndroid Build Coastguard Worker "              See also --proto. Added in 7.61.0.\n"
1122*6236dae4SAndroid Build Coastguard Worker "\n"
1123*6236dae4SAndroid Build Coastguard Worker "       --dns-interface <interface>\n"
1124*6236dae4SAndroid Build Coastguard Worker "              (DNS)  Tell  curl  to send outgoing DNS requests through <inter-\n"
1125*6236dae4SAndroid Build Coastguard Worker "              face>. This option is a counterpart to --interface  (which  does\n"
1126*6236dae4SAndroid Build Coastguard Worker "              not  affect  DNS). The supplied string must be an interface name\n"
1127*6236dae4SAndroid Build Coastguard Worker "              (not an address).\n"
1128*6236dae4SAndroid Build Coastguard Worker "\n"
1129*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1130*6236dae4SAndroid Build Coastguard Worker , stdout);
1131*6236dae4SAndroid Build Coastguard Worker  fputs(
1132*6236dae4SAndroid Build Coastguard Worker "               curl --dns-interface eth0 https://example.com\n"
1133*6236dae4SAndroid Build Coastguard Worker "\n"
1134*6236dae4SAndroid Build Coastguard Worker "              See also --dns-ipv4-addr  and  --dns-ipv6-addr.  --dns-interface\n"
1135*6236dae4SAndroid Build Coastguard Worker "              requires  that  the  underlying  libcurl was built to support c-\n"
1136*6236dae4SAndroid Build Coastguard Worker "              ares. Added in 7.33.0.\n"
1137*6236dae4SAndroid Build Coastguard Worker "\n"
1138*6236dae4SAndroid Build Coastguard Worker "       --dns-ipv4-addr <address>\n"
1139*6236dae4SAndroid Build Coastguard Worker "              (DNS) Tell curl to bind to <ip-address> when making IPv4 DNS re-\n"
1140*6236dae4SAndroid Build Coastguard Worker "              quests,  so  that  the DNS requests originate from this address.\n"
1141*6236dae4SAndroid Build Coastguard Worker , stdout);
1142*6236dae4SAndroid Build Coastguard Worker  fputs(
1143*6236dae4SAndroid Build Coastguard Worker "              The argument should be a single IPv4 address.\n"
1144*6236dae4SAndroid Build Coastguard Worker "\n"
1145*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
1146*6236dae4SAndroid Build Coastguard Worker "\n"
1147*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1148*6236dae4SAndroid Build Coastguard Worker "               curl --dns-ipv4-addr 10.1.2.3 https://example.com\n"
1149*6236dae4SAndroid Build Coastguard Worker "\n"
1150*6236dae4SAndroid Build Coastguard Worker "              See also --dns-interface  and  --dns-ipv6-addr.  --dns-ipv4-addr\n"
1151*6236dae4SAndroid Build Coastguard Worker "              requires  that  the  underlying  libcurl was built to support c-\n"
1152*6236dae4SAndroid Build Coastguard Worker "              ares. Added in 7.33.0.\n"
1153*6236dae4SAndroid Build Coastguard Worker "\n"
1154*6236dae4SAndroid Build Coastguard Worker "       --dns-ipv6-addr <address>\n"
1155*6236dae4SAndroid Build Coastguard Worker , stdout);
1156*6236dae4SAndroid Build Coastguard Worker  fputs(
1157*6236dae4SAndroid Build Coastguard Worker "              (DNS) Tell curl to bind to <ip-address> when making IPv6 DNS re-\n"
1158*6236dae4SAndroid Build Coastguard Worker "              quests,  so  that  the DNS requests originate from this address.\n"
1159*6236dae4SAndroid Build Coastguard Worker "              The argument should be a single IPv6 address.\n"
1160*6236dae4SAndroid Build Coastguard Worker "\n"
1161*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
1162*6236dae4SAndroid Build Coastguard Worker "\n"
1163*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1164*6236dae4SAndroid Build Coastguard Worker "               curl --dns-ipv6-addr 2a04:4e42::561 https://example.com\n"
1165*6236dae4SAndroid Build Coastguard Worker "\n"
1166*6236dae4SAndroid Build Coastguard Worker "              See also --dns-interface  and  --dns-ipv4-addr.  --dns-ipv6-addr\n"
1167*6236dae4SAndroid Build Coastguard Worker , stdout);
1168*6236dae4SAndroid Build Coastguard Worker  fputs(
1169*6236dae4SAndroid Build Coastguard Worker "              requires  that  the  underlying  libcurl was built to support c-\n"
1170*6236dae4SAndroid Build Coastguard Worker "              ares. Added in 7.33.0.\n"
1171*6236dae4SAndroid Build Coastguard Worker "\n"
1172*6236dae4SAndroid Build Coastguard Worker "       --dns-servers <addresses>\n"
1173*6236dae4SAndroid Build Coastguard Worker "              Set the list of DNS servers to be used instead of the system de-\n"
1174*6236dae4SAndroid Build Coastguard Worker "              fault.   The  list of IP addresses should be separated with com-\n"
1175*6236dae4SAndroid Build Coastguard Worker "              mas. Port numbers may also optionally be given as :<port-number>\n"
1176*6236dae4SAndroid Build Coastguard Worker "              after each IP address.\n"
1177*6236dae4SAndroid Build Coastguard Worker "\n"
1178*6236dae4SAndroid Build Coastguard Worker , stdout);
1179*6236dae4SAndroid Build Coastguard Worker  fputs(
1180*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
1181*6236dae4SAndroid Build Coastguard Worker "\n"
1182*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1183*6236dae4SAndroid Build Coastguard Worker "               curl --dns-servers 192.168.0.1,192.168.0.2 https://example.com\n"
1184*6236dae4SAndroid Build Coastguard Worker "\n"
1185*6236dae4SAndroid Build Coastguard Worker "              --dns-servers  requires that the underlying libcurl was built to\n"
1186*6236dae4SAndroid Build Coastguard Worker "              support c-ares. Added in 7.33.0.\n"
1187*6236dae4SAndroid Build Coastguard Worker "\n"
1188*6236dae4SAndroid Build Coastguard Worker "       --doh-cert-status\n"
1189*6236dae4SAndroid Build Coastguard Worker "              (all) Same as --cert-status but used for DoH (DNS-over-HTTPS).\n"
1190*6236dae4SAndroid Build Coastguard Worker "\n"
1191*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1192*6236dae4SAndroid Build Coastguard Worker , stdout);
1193*6236dae4SAndroid Build Coastguard Worker  fputs(
1194*6236dae4SAndroid Build Coastguard Worker "               curl --doh-cert-status --doh-url https://doh.example https://example.com\n"
1195*6236dae4SAndroid Build Coastguard Worker "\n"
1196*6236dae4SAndroid Build Coastguard Worker "              Added in 7.76.0.\n"
1197*6236dae4SAndroid Build Coastguard Worker "\n"
1198*6236dae4SAndroid Build Coastguard Worker "       --doh-insecure\n"
1199*6236dae4SAndroid Build Coastguard Worker "              (all) Same as -k, --insecure but used for DoH (DNS-over-HTTPS).\n"
1200*6236dae4SAndroid Build Coastguard Worker "\n"
1201*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1202*6236dae4SAndroid Build Coastguard Worker "               curl --doh-insecure --doh-url https://doh.example https://example.com\n"
1203*6236dae4SAndroid Build Coastguard Worker "\n"
1204*6236dae4SAndroid Build Coastguard Worker "              Added in 7.76.0.\n"
1205*6236dae4SAndroid Build Coastguard Worker "\n"
1206*6236dae4SAndroid Build Coastguard Worker "       --doh-url <URL>\n"
1207*6236dae4SAndroid Build Coastguard Worker "              (all) Specifies which DNS-over-HTTPS (DoH) server to use to  re-\n"
1208*6236dae4SAndroid Build Coastguard Worker , stdout);
1209*6236dae4SAndroid Build Coastguard Worker  fputs(
1210*6236dae4SAndroid Build Coastguard Worker "              solve  hostnames,  instead  of  using  the default name resolver\n"
1211*6236dae4SAndroid Build Coastguard Worker "              mechanism. The URL must be HTTPS.\n"
1212*6236dae4SAndroid Build Coastguard Worker "\n"
1213*6236dae4SAndroid Build Coastguard Worker "              Some SSL options that you set for your transfer  will  apply  to\n"
1214*6236dae4SAndroid Build Coastguard Worker "              DoH  since  the  name  lookups take place over SSL. However, the\n"
1215*6236dae4SAndroid Build Coastguard Worker "              certificate verification settings are not inherited and  can  be\n"
1216*6236dae4SAndroid Build Coastguard Worker "              controlled separately via --doh-insecure and --doh-cert-status.\n"
1217*6236dae4SAndroid Build Coastguard Worker "\n"
1218*6236dae4SAndroid Build Coastguard Worker , stdout);
1219*6236dae4SAndroid Build Coastguard Worker  fputs(
1220*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
1221*6236dae4SAndroid Build Coastguard Worker "\n"
1222*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1223*6236dae4SAndroid Build Coastguard Worker "               curl --doh-url https://doh.example https://example.com\n"
1224*6236dae4SAndroid Build Coastguard Worker "\n"
1225*6236dae4SAndroid Build Coastguard Worker "              Added in 7.62.0.\n"
1226*6236dae4SAndroid Build Coastguard Worker "\n"
1227*6236dae4SAndroid Build Coastguard Worker "       -D, --dump-header <filename>\n"
1228*6236dae4SAndroid Build Coastguard Worker "              (HTTP  FTP) Write the received protocol headers to the specified\n"
1229*6236dae4SAndroid Build Coastguard Worker "              file. If no headers are received, the use of  this  option  will\n"
1230*6236dae4SAndroid Build Coastguard Worker "              create an empty file.\n"
1231*6236dae4SAndroid Build Coastguard Worker "\n"
1232*6236dae4SAndroid Build Coastguard Worker , stdout);
1233*6236dae4SAndroid Build Coastguard Worker  fputs(
1234*6236dae4SAndroid Build Coastguard Worker "              When  used  in FTP, the FTP server response lines are considered\n"
1235*6236dae4SAndroid Build Coastguard Worker "              being \"headers\" and thus are saved there.\n"
1236*6236dae4SAndroid Build Coastguard Worker "\n"
1237*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
1238*6236dae4SAndroid Build Coastguard Worker "\n"
1239*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1240*6236dae4SAndroid Build Coastguard Worker "               curl --dump-header store.txt https://example.com\n"
1241*6236dae4SAndroid Build Coastguard Worker "\n"
1242*6236dae4SAndroid Build Coastguard Worker "              See also -o, --output.\n"
1243*6236dae4SAndroid Build Coastguard Worker "\n"
1244*6236dae4SAndroid Build Coastguard Worker "       --egd-file <file>\n"
1245*6236dae4SAndroid Build Coastguard Worker "              (TLS) Specify the path name  to  the  Entropy  Gathering  Daemon\n"
1246*6236dae4SAndroid Build Coastguard Worker , stdout);
1247*6236dae4SAndroid Build Coastguard Worker  fputs(
1248*6236dae4SAndroid Build Coastguard Worker "              socket.  The  socket  is  used to seed the random engine for SSL\n"
1249*6236dae4SAndroid Build Coastguard Worker "              connections.\n"
1250*6236dae4SAndroid Build Coastguard Worker "\n"
1251*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1252*6236dae4SAndroid Build Coastguard Worker "               curl --egd-file /random/here https://example.com\n"
1253*6236dae4SAndroid Build Coastguard Worker "\n"
1254*6236dae4SAndroid Build Coastguard Worker "              See also --random-file.\n"
1255*6236dae4SAndroid Build Coastguard Worker "\n"
1256*6236dae4SAndroid Build Coastguard Worker "       --engine <name>\n"
1257*6236dae4SAndroid Build Coastguard Worker "              (TLS) Select the OpenSSL crypto engine to use for cipher  opera-\n"
1258*6236dae4SAndroid Build Coastguard Worker "              tions. Use --engine list to print a list of build-time supported\n"
1259*6236dae4SAndroid Build Coastguard Worker "              engines. Note that not all (and possibly none)  of  the  engines\n"
1260*6236dae4SAndroid Build Coastguard Worker , stdout);
1261*6236dae4SAndroid Build Coastguard Worker  fputs(
1262*6236dae4SAndroid Build Coastguard Worker "              may be available at run-time.\n"
1263*6236dae4SAndroid Build Coastguard Worker "\n"
1264*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1265*6236dae4SAndroid Build Coastguard Worker "               curl --engine flavor https://example.com\n"
1266*6236dae4SAndroid Build Coastguard Worker "\n"
1267*6236dae4SAndroid Build Coastguard Worker "       --etag-compare <file>\n"
1268*6236dae4SAndroid Build Coastguard Worker "              (HTTP) This option makes a conditional HTTP request for the spe-\n"
1269*6236dae4SAndroid Build Coastguard Worker "              cific ETag read from the given file by sending a custom If-None-\n"
1270*6236dae4SAndroid Build Coastguard Worker "              Match header using the stored ETag.\n"
1271*6236dae4SAndroid Build Coastguard Worker "\n"
1272*6236dae4SAndroid Build Coastguard Worker "              For  correct results, make sure that the specified file contains\n"
1273*6236dae4SAndroid Build Coastguard Worker , stdout);
1274*6236dae4SAndroid Build Coastguard Worker  fputs(
1275*6236dae4SAndroid Build Coastguard Worker "              only a single line with the  desired  ETag.  An  empty  file  is\n"
1276*6236dae4SAndroid Build Coastguard Worker "              parsed as an empty ETag.\n"
1277*6236dae4SAndroid Build Coastguard Worker "\n"
1278*6236dae4SAndroid Build Coastguard Worker "              Use  the  option  --etag-save  to first save the ETag from a re-\n"
1279*6236dae4SAndroid Build Coastguard Worker "              sponse, and then use this option to compare  against  the  saved\n"
1280*6236dae4SAndroid Build Coastguard Worker "              ETag in a subsequent request.\n"
1281*6236dae4SAndroid Build Coastguard Worker "\n"
1282*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1283*6236dae4SAndroid Build Coastguard Worker "               curl --etag-compare etag.txt https://example.com\n"
1284*6236dae4SAndroid Build Coastguard Worker "\n"
1285*6236dae4SAndroid Build Coastguard Worker "              Added in 7.68.0.\n"
1286*6236dae4SAndroid Build Coastguard Worker "\n"
1287*6236dae4SAndroid Build Coastguard Worker "       --etag-save <file>\n"
1288*6236dae4SAndroid Build Coastguard Worker , stdout);
1289*6236dae4SAndroid Build Coastguard Worker  fputs(
1290*6236dae4SAndroid Build Coastguard Worker "              (HTTP)  This option saves an HTTP ETag to the specified file. An\n"
1291*6236dae4SAndroid Build Coastguard Worker "              ETag is a caching related header,  usually  returned  in  a  re-\n"
1292*6236dae4SAndroid Build Coastguard Worker "              sponse.\n"
1293*6236dae4SAndroid Build Coastguard Worker "\n"
1294*6236dae4SAndroid Build Coastguard Worker "              If no ETag is sent by the server, an empty file is created.\n"
1295*6236dae4SAndroid Build Coastguard Worker "\n"
1296*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1297*6236dae4SAndroid Build Coastguard Worker "               curl --etag-save storetag.txt https://example.com\n"
1298*6236dae4SAndroid Build Coastguard Worker "\n"
1299*6236dae4SAndroid Build Coastguard Worker "              Added in 7.68.0.\n"
1300*6236dae4SAndroid Build Coastguard Worker "\n"
1301*6236dae4SAndroid Build Coastguard Worker "       --expect100-timeout <seconds>\n"
1302*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Maximum time in seconds that you allow curl to wait for a\n"
1303*6236dae4SAndroid Build Coastguard Worker , stdout);
1304*6236dae4SAndroid Build Coastguard Worker  fputs(
1305*6236dae4SAndroid Build Coastguard Worker "              100-continue response when curl emits an  Expects:  100-continue\n"
1306*6236dae4SAndroid Build Coastguard Worker "              header  in  its  request.  By default curl will wait one second.\n"
1307*6236dae4SAndroid Build Coastguard Worker "              This option accepts decimal values! When curl stops waiting,  it\n"
1308*6236dae4SAndroid Build Coastguard Worker "              will continue as if the response has been received.\n"
1309*6236dae4SAndroid Build Coastguard Worker "\n"
1310*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1311*6236dae4SAndroid Build Coastguard Worker "               curl --expect100-timeout 2.5 -T file https://example.com\n"
1312*6236dae4SAndroid Build Coastguard Worker "\n"
1313*6236dae4SAndroid Build Coastguard Worker "              See also --connect-timeout. Added in 7.47.0.\n"
1314*6236dae4SAndroid Build Coastguard Worker "\n"
1315*6236dae4SAndroid Build Coastguard Worker "       --fail-early\n"
1316*6236dae4SAndroid Build Coastguard Worker , stdout);
1317*6236dae4SAndroid Build Coastguard Worker  fputs(
1318*6236dae4SAndroid Build Coastguard Worker "              Fail and exit on the first detected transfer error.\n"
1319*6236dae4SAndroid Build Coastguard Worker "\n"
1320*6236dae4SAndroid Build Coastguard Worker "              When  curl is used to do multiple transfers on the command line,\n"
1321*6236dae4SAndroid Build Coastguard Worker "              it will attempt to operate on each given URL, one by one. By de-\n"
1322*6236dae4SAndroid Build Coastguard Worker "              fault,  it  will  ignore errors if there are more URLs given and\n"
1323*6236dae4SAndroid Build Coastguard Worker "              the last URL's success will determine the error  code  curl  re-\n"
1324*6236dae4SAndroid Build Coastguard Worker "              turns. So early failures will be \"hidden\" by subsequent success-\n"
1325*6236dae4SAndroid Build Coastguard Worker "              ful transfers.\n"
1326*6236dae4SAndroid Build Coastguard Worker "\n"
1327*6236dae4SAndroid Build Coastguard Worker , stdout);
1328*6236dae4SAndroid Build Coastguard Worker  fputs(
1329*6236dae4SAndroid Build Coastguard Worker "              Using this option, curl will instead  return  an  error  on  the\n"
1330*6236dae4SAndroid Build Coastguard Worker "              first  transfer  that  fails,  independent of the amount of URLs\n"
1331*6236dae4SAndroid Build Coastguard Worker "              that are given on the command line. This way, no transfer  fail-\n"
1332*6236dae4SAndroid Build Coastguard Worker "              ures go undetected by scripts and similar.\n"
1333*6236dae4SAndroid Build Coastguard Worker "\n"
1334*6236dae4SAndroid Build Coastguard Worker "              This option is global and does not need to be specified for each\n"
1335*6236dae4SAndroid Build Coastguard Worker "              use of -:, --next.\n"
1336*6236dae4SAndroid Build Coastguard Worker "\n"
1337*6236dae4SAndroid Build Coastguard Worker "              This option does not imply -f, --fail, which causes transfers to\n"
1338*6236dae4SAndroid Build Coastguard Worker , stdout);
1339*6236dae4SAndroid Build Coastguard Worker  fputs(
1340*6236dae4SAndroid Build Coastguard Worker "              fail  due  to the server's HTTP status code. You can combine the\n"
1341*6236dae4SAndroid Build Coastguard Worker "              two options, however note -f, --fail is not global and is there-\n"
1342*6236dae4SAndroid Build Coastguard Worker "              fore contained by -:, --next.\n"
1343*6236dae4SAndroid Build Coastguard Worker "\n"
1344*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1345*6236dae4SAndroid Build Coastguard Worker "               curl --fail-early https://example.com https://two.example\n"
1346*6236dae4SAndroid Build Coastguard Worker "\n"
1347*6236dae4SAndroid Build Coastguard Worker "              Added in 7.52.0.\n"
1348*6236dae4SAndroid Build Coastguard Worker "       --fail-with-body\n"
1349*6236dae4SAndroid Build Coastguard Worker "              (HTTP)  Return an error on server errors where the HTTP response\n"
1350*6236dae4SAndroid Build Coastguard Worker , stdout);
1351*6236dae4SAndroid Build Coastguard Worker  fputs(
1352*6236dae4SAndroid Build Coastguard Worker "              code is 400 or greater). In normal cases  when  an  HTTP  server\n"
1353*6236dae4SAndroid Build Coastguard Worker "              fails to deliver a document, it returns an HTML document stating\n"
1354*6236dae4SAndroid Build Coastguard Worker "              so (which often also describes why and  more).  This  flag  will\n"
1355*6236dae4SAndroid Build Coastguard Worker "              still allow curl to output and save that content but also to re-\n"
1356*6236dae4SAndroid Build Coastguard Worker "              turn error 22.\n"
1357*6236dae4SAndroid Build Coastguard Worker "\n"
1358*6236dae4SAndroid Build Coastguard Worker "              This is an alternative option to -f,  --fail  which  makes  curl\n"
1359*6236dae4SAndroid Build Coastguard Worker , stdout);
1360*6236dae4SAndroid Build Coastguard Worker  fputs(
1361*6236dae4SAndroid Build Coastguard Worker "              fail for the same circumstances but without saving the content.\n"
1362*6236dae4SAndroid Build Coastguard Worker "\n"
1363*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1364*6236dae4SAndroid Build Coastguard Worker "               curl --fail-with-body https://example.com\n"
1365*6236dae4SAndroid Build Coastguard Worker "\n"
1366*6236dae4SAndroid Build Coastguard Worker "              See also -f, --fail. Added in 7.76.0.\n"
1367*6236dae4SAndroid Build Coastguard Worker "\n"
1368*6236dae4SAndroid Build Coastguard Worker "       -f, --fail\n"
1369*6236dae4SAndroid Build Coastguard Worker "              (HTTP)  Fail  silently (no output at all) on server errors. This\n"
1370*6236dae4SAndroid Build Coastguard Worker "              is mostly done to enable scripts etc to better deal with  failed\n"
1371*6236dae4SAndroid Build Coastguard Worker "              attempts. In normal cases when an HTTP server fails to deliver a\n"
1372*6236dae4SAndroid Build Coastguard Worker , stdout);
1373*6236dae4SAndroid Build Coastguard Worker  fputs(
1374*6236dae4SAndroid Build Coastguard Worker "              document, it returns an HTML document stating  so  (which  often\n"
1375*6236dae4SAndroid Build Coastguard Worker "              also  describes  why and more). This flag will prevent curl from\n"
1376*6236dae4SAndroid Build Coastguard Worker "              outputting that and return error 22.\n"
1377*6236dae4SAndroid Build Coastguard Worker "\n"
1378*6236dae4SAndroid Build Coastguard Worker "              This method is not fail-safe and there are occasions where  non-\n"
1379*6236dae4SAndroid Build Coastguard Worker "              successful response codes will slip through, especially when au-\n"
1380*6236dae4SAndroid Build Coastguard Worker "              thentication is involved (response codes 401 and 407).\n"
1381*6236dae4SAndroid Build Coastguard Worker "\n"
1382*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1383*6236dae4SAndroid Build Coastguard Worker , stdout);
1384*6236dae4SAndroid Build Coastguard Worker  fputs(
1385*6236dae4SAndroid Build Coastguard Worker "               curl --fail https://example.com\n"
1386*6236dae4SAndroid Build Coastguard Worker "\n"
1387*6236dae4SAndroid Build Coastguard Worker "              See also --fail-with-body.\n"
1388*6236dae4SAndroid Build Coastguard Worker "\n"
1389*6236dae4SAndroid Build Coastguard Worker "       --false-start\n"
1390*6236dae4SAndroid Build Coastguard Worker "              (TLS) Tells curl to use false start during  the  TLS  handshake.\n"
1391*6236dae4SAndroid Build Coastguard Worker "              False  start is a mode where a TLS client will start sending ap-\n"
1392*6236dae4SAndroid Build Coastguard Worker "              plication data before verifying the server's  Finished  message,\n"
1393*6236dae4SAndroid Build Coastguard Worker "              thus saving a round trip when performing a full handshake.\n"
1394*6236dae4SAndroid Build Coastguard Worker "\n"
1395*6236dae4SAndroid Build Coastguard Worker , stdout);
1396*6236dae4SAndroid Build Coastguard Worker  fputs(
1397*6236dae4SAndroid Build Coastguard Worker "              This  is currently only implemented in the NSS and Secure Trans-\n"
1398*6236dae4SAndroid Build Coastguard Worker "              port (on iOS 7.0 or later, or OS X 10.9 or later) backends.\n"
1399*6236dae4SAndroid Build Coastguard Worker "\n"
1400*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1401*6236dae4SAndroid Build Coastguard Worker "               curl --false-start https://example.com\n"
1402*6236dae4SAndroid Build Coastguard Worker "\n"
1403*6236dae4SAndroid Build Coastguard Worker "              Added in 7.42.0.\n"
1404*6236dae4SAndroid Build Coastguard Worker "\n"
1405*6236dae4SAndroid Build Coastguard Worker "       --form-string <name=string>\n"
1406*6236dae4SAndroid Build Coastguard Worker "              (HTTP SMTP IMAP) Similar to -F, --form  except  that  the  value\n"
1407*6236dae4SAndroid Build Coastguard Worker "              string  for  the  named parameter is used literally. Leading '@'\n"
1408*6236dae4SAndroid Build Coastguard Worker , stdout);
1409*6236dae4SAndroid Build Coastguard Worker  fputs(
1410*6236dae4SAndroid Build Coastguard Worker "              and '<' characters, and the ';type=' string in the value have no\n"
1411*6236dae4SAndroid Build Coastguard Worker "              special meaning. Use this in preference to -F, --form if there's\n"
1412*6236dae4SAndroid Build Coastguard Worker "              any possibility that the string value may  accidentally  trigger\n"
1413*6236dae4SAndroid Build Coastguard Worker "              the '@' or '<' features of -F, --form.\n"
1414*6236dae4SAndroid Build Coastguard Worker "\n"
1415*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1416*6236dae4SAndroid Build Coastguard Worker "               curl --form-string \"data\" https://example.com\n"
1417*6236dae4SAndroid Build Coastguard Worker "\n"
1418*6236dae4SAndroid Build Coastguard Worker "              See also -F, --form.\n"
1419*6236dae4SAndroid Build Coastguard Worker "\n"
1420*6236dae4SAndroid Build Coastguard Worker "       -F, --form <name=content>\n"
1421*6236dae4SAndroid Build Coastguard Worker , stdout);
1422*6236dae4SAndroid Build Coastguard Worker  fputs(
1423*6236dae4SAndroid Build Coastguard Worker "              (HTTP  SMTP  IMAP) For HTTP protocol family, this lets curl emu-\n"
1424*6236dae4SAndroid Build Coastguard Worker "              late a filled-in form in which a user  has  pressed  the  submit\n"
1425*6236dae4SAndroid Build Coastguard Worker "              button.  This  causes  curl  to POST data using the Content-Type\n"
1426*6236dae4SAndroid Build Coastguard Worker "              multipart/form-data according to RFC 2388.\n"
1427*6236dae4SAndroid Build Coastguard Worker "\n"
1428*6236dae4SAndroid Build Coastguard Worker "              For SMTP and IMAP protocols, this is the means to compose a mul-\n"
1429*6236dae4SAndroid Build Coastguard Worker "              tipart mail message to transmit.\n"
1430*6236dae4SAndroid Build Coastguard Worker "\n"
1431*6236dae4SAndroid Build Coastguard Worker , stdout);
1432*6236dae4SAndroid Build Coastguard Worker  fputs(
1433*6236dae4SAndroid Build Coastguard Worker "              This  enables  uploading of binary files etc. To force the 'con-\n"
1434*6236dae4SAndroid Build Coastguard Worker "              tent' part to be a file, prefix the file name with an @ sign. To\n"
1435*6236dae4SAndroid Build Coastguard Worker "              just get the content part from a file, prefix the file name with\n"
1436*6236dae4SAndroid Build Coastguard Worker "              the symbol <. The difference between @ and  <  is  then  that  @\n"
1437*6236dae4SAndroid Build Coastguard Worker "              makes  a  file  get attached in the post as a file upload, while\n"
1438*6236dae4SAndroid Build Coastguard Worker "              the < makes a text field and just get the contents for that text\n"
1439*6236dae4SAndroid Build Coastguard Worker , stdout);
1440*6236dae4SAndroid Build Coastguard Worker  fputs(
1441*6236dae4SAndroid Build Coastguard Worker "              field from a file.\n"
1442*6236dae4SAndroid Build Coastguard Worker "\n"
1443*6236dae4SAndroid Build Coastguard Worker "              Tell  curl to read content from stdin instead of a file by using\n"
1444*6236dae4SAndroid Build Coastguard Worker "              - as filename. This goes for both @ and < constructs. When stdin\n"
1445*6236dae4SAndroid Build Coastguard Worker "              is used, the contents is buffered in memory first by curl to de-\n"
1446*6236dae4SAndroid Build Coastguard Worker "              termine its size and allow a possible resend.  Defining a part's\n"
1447*6236dae4SAndroid Build Coastguard Worker "              data from a named non-regular file (such as a named pipe or sim-\n"
1448*6236dae4SAndroid Build Coastguard Worker , stdout);
1449*6236dae4SAndroid Build Coastguard Worker  fputs(
1450*6236dae4SAndroid Build Coastguard Worker "              ilar) is unfortunately not subject to buffering and will be  ef-\n"
1451*6236dae4SAndroid Build Coastguard Worker "              fectively  read at transmission time; since the full size is un-\n"
1452*6236dae4SAndroid Build Coastguard Worker "              known before the transfer starts, such data is sent as chunks by\n"
1453*6236dae4SAndroid Build Coastguard Worker "              HTTP and rejected by IMAP.\n"
1454*6236dae4SAndroid Build Coastguard Worker "\n"
1455*6236dae4SAndroid Build Coastguard Worker "              Example: send an image to an HTTP server, where 'profile' is the\n"
1456*6236dae4SAndroid Build Coastguard Worker "              name of the form-field to which the file  portrait.jpg  will  be\n"
1457*6236dae4SAndroid Build Coastguard Worker "              the input:\n"
1458*6236dae4SAndroid Build Coastguard Worker "\n"
1459*6236dae4SAndroid Build Coastguard Worker , stdout);
1460*6236dae4SAndroid Build Coastguard Worker  fputs(
1461*6236dae4SAndroid Build Coastguard Worker "               curl -F [email protected] https://example.com/upload.cgi\n"
1462*6236dae4SAndroid Build Coastguard Worker "\n"
1463*6236dae4SAndroid Build Coastguard Worker "              Example:  send your name and shoe size in two text fields to the\n"
1464*6236dae4SAndroid Build Coastguard Worker "              server:\n"
1465*6236dae4SAndroid Build Coastguard Worker "\n"
1466*6236dae4SAndroid Build Coastguard Worker "               curl -F name=John -F shoesize=11 https://example.com/\n"
1467*6236dae4SAndroid Build Coastguard Worker "\n"
1468*6236dae4SAndroid Build Coastguard Worker "              Example: send your essay in a text field to the server. Send  it\n"
1469*6236dae4SAndroid Build Coastguard Worker "              as  a plain text field, but get the contents for it from a local\n"
1470*6236dae4SAndroid Build Coastguard Worker "              file:\n"
1471*6236dae4SAndroid Build Coastguard Worker "\n"
1472*6236dae4SAndroid Build Coastguard Worker "               curl -F \"story=<hugefile.txt\" https://example.com/\n"
1473*6236dae4SAndroid Build Coastguard Worker "\n"
1474*6236dae4SAndroid Build Coastguard Worker , stdout);
1475*6236dae4SAndroid Build Coastguard Worker  fputs(
1476*6236dae4SAndroid Build Coastguard Worker "              You can also  tell  curl  what  Content-Type  to  use  by  using\n"
1477*6236dae4SAndroid Build Coastguard Worker "              'type=', in a manner similar to:\n"
1478*6236dae4SAndroid Build Coastguard Worker "\n"
1479*6236dae4SAndroid Build Coastguard Worker "               curl -F \"web=@index.html;type=text/html\" example.com\n"
1480*6236dae4SAndroid Build Coastguard Worker "\n"
1481*6236dae4SAndroid Build Coastguard Worker "              or\n"
1482*6236dae4SAndroid Build Coastguard Worker "\n"
1483*6236dae4SAndroid Build Coastguard Worker "               curl -F \"name=daniel;type=text/foo\" example.com\n"
1484*6236dae4SAndroid Build Coastguard Worker "\n"
1485*6236dae4SAndroid Build Coastguard Worker "              You  can  also explicitly change the name field of a file upload\n"
1486*6236dae4SAndroid Build Coastguard Worker "              part by setting filename=, like this:\n"
1487*6236dae4SAndroid Build Coastguard Worker "\n"
1488*6236dae4SAndroid Build Coastguard Worker "               curl -F \"file=@localfile;filename=nameinpost\" example.com\n"
1489*6236dae4SAndroid Build Coastguard Worker "\n"
1490*6236dae4SAndroid Build Coastguard Worker , stdout);
1491*6236dae4SAndroid Build Coastguard Worker  fputs(
1492*6236dae4SAndroid Build Coastguard Worker "              If filename/path contains ',' or ';', it must be quoted by  dou-\n"
1493*6236dae4SAndroid Build Coastguard Worker "              ble-quotes like:\n"
1494*6236dae4SAndroid Build Coastguard Worker "\n"
1495*6236dae4SAndroid Build Coastguard Worker "               curl  -F \"file=@\\\"local,file\\\";filename=\\\"name;in;post\\\"\" exam-\n"
1496*6236dae4SAndroid Build Coastguard Worker "              ple.com\n"
1497*6236dae4SAndroid Build Coastguard Worker "\n"
1498*6236dae4SAndroid Build Coastguard Worker "              or\n"
1499*6236dae4SAndroid Build Coastguard Worker "\n"
1500*6236dae4SAndroid Build Coastguard Worker "               curl  -F   'file=@\"local,file\";filename=\"name;in;post\"'   exam-\n"
1501*6236dae4SAndroid Build Coastguard Worker "              ple.com\n"
1502*6236dae4SAndroid Build Coastguard Worker "\n"
1503*6236dae4SAndroid Build Coastguard Worker "              Note  that  if  a  filename/path is quoted by double-quotes, any\n"
1504*6236dae4SAndroid Build Coastguard Worker "              double-quote or backslash within the filename must be escaped by\n"
1505*6236dae4SAndroid Build Coastguard Worker , stdout);
1506*6236dae4SAndroid Build Coastguard Worker  fputs(
1507*6236dae4SAndroid Build Coastguard Worker "              backslash.\n"
1508*6236dae4SAndroid Build Coastguard Worker "\n"
1509*6236dae4SAndroid Build Coastguard Worker "              Quoting  must  also  be  applied to non-file data if it contains\n"
1510*6236dae4SAndroid Build Coastguard Worker "              semicolons, leading/trailing spaces or leading double quotes:\n"
1511*6236dae4SAndroid Build Coastguard Worker "\n"
1512*6236dae4SAndroid Build Coastguard Worker "               curl -F  'colors=\"red;  green;  blue\";type=text/x-myapp'  exam-\n"
1513*6236dae4SAndroid Build Coastguard Worker "              ple.com\n"
1514*6236dae4SAndroid Build Coastguard Worker "\n"
1515*6236dae4SAndroid Build Coastguard Worker "              You  can  add  custom  headers to the field by setting headers=,\n"
1516*6236dae4SAndroid Build Coastguard Worker "              like\n"
1517*6236dae4SAndroid Build Coastguard Worker "\n"
1518*6236dae4SAndroid Build Coastguard Worker "                curl -F \"submit=OK;headers=\\\"X-submit-type: OK\\\"\" example.com\n"
1519*6236dae4SAndroid Build Coastguard Worker "\n"
1520*6236dae4SAndroid Build Coastguard Worker "              or\n"
1521*6236dae4SAndroid Build Coastguard Worker "\n"
1522*6236dae4SAndroid Build Coastguard Worker , stdout);
1523*6236dae4SAndroid Build Coastguard Worker  fputs(
1524*6236dae4SAndroid Build Coastguard Worker "                curl -F \"submit=OK;headers=@headerfile\" example.com\n"
1525*6236dae4SAndroid Build Coastguard Worker "\n"
1526*6236dae4SAndroid Build Coastguard Worker "              The headers= keyword may appear more that once and  above  notes\n"
1527*6236dae4SAndroid Build Coastguard Worker "              about  quoting  apply.  When headers are read from a file, Empty\n"
1528*6236dae4SAndroid Build Coastguard Worker "              lines and lines starting with '#' are comments and ignored; each\n"
1529*6236dae4SAndroid Build Coastguard Worker "              header can be folded by splitting between two words and starting\n"
1530*6236dae4SAndroid Build Coastguard Worker "              the continuation line with a  space;  embedded  carriage-returns\n"
1531*6236dae4SAndroid Build Coastguard Worker , stdout);
1532*6236dae4SAndroid Build Coastguard Worker  fputs(
1533*6236dae4SAndroid Build Coastguard Worker "              and  trailing  spaces  are  stripped.   Here  is an example of a\n"
1534*6236dae4SAndroid Build Coastguard Worker "              header file contents:\n"
1535*6236dae4SAndroid Build Coastguard Worker "\n"
1536*6236dae4SAndroid Build Coastguard Worker "                # This file contain two headers.\n"
1537*6236dae4SAndroid Build Coastguard Worker "                X-header-1: this is a header\n"
1538*6236dae4SAndroid Build Coastguard Worker "\n"
1539*6236dae4SAndroid Build Coastguard Worker "                # The following header is folded.\n"
1540*6236dae4SAndroid Build Coastguard Worker "                X-header-2: this is\n"
1541*6236dae4SAndroid Build Coastguard Worker "                 another header\n"
1542*6236dae4SAndroid Build Coastguard Worker "\n"
1543*6236dae4SAndroid Build Coastguard Worker "              To support sending multipart mail messages, the  syntax  is  ex-\n"
1544*6236dae4SAndroid Build Coastguard Worker "              tended as follows:\n"
1545*6236dae4SAndroid Build Coastguard Worker , stdout);
1546*6236dae4SAndroid Build Coastguard Worker  fputs(
1547*6236dae4SAndroid Build Coastguard Worker "              -  name can be omitted: the equal sign is the first character of\n"
1548*6236dae4SAndroid Build Coastguard Worker "              the argument,\n"
1549*6236dae4SAndroid Build Coastguard Worker "              - if data starts with '(', this signals to start  a  new  multi-\n"
1550*6236dae4SAndroid Build Coastguard Worker "              part: it can be followed by a content type specification.\n"
1551*6236dae4SAndroid Build Coastguard Worker "              - a multipart can be terminated with a '=)' argument.\n"
1552*6236dae4SAndroid Build Coastguard Worker "\n"
1553*6236dae4SAndroid Build Coastguard Worker "              Example:  the  following  command sends an SMTP mime e-mail con-\n"
1554*6236dae4SAndroid Build Coastguard Worker "              sisting in an inline part in two alternative formats: plain text\n"
1555*6236dae4SAndroid Build Coastguard Worker , stdout);
1556*6236dae4SAndroid Build Coastguard Worker  fputs(
1557*6236dae4SAndroid Build Coastguard Worker "              and HTML. It attaches a text file:\n"
1558*6236dae4SAndroid Build Coastguard Worker "\n"
1559*6236dae4SAndroid Build Coastguard Worker "               curl -F '=(;type=multipart/alternative' \\\n"
1560*6236dae4SAndroid Build Coastguard Worker "                       -F '=plain text message' \\\n"
1561*6236dae4SAndroid Build Coastguard Worker "                       -F '= <body>HTML message</body>;type=text/html' \\\n"
1562*6236dae4SAndroid Build Coastguard Worker "                    -F '=)' -F '=@textfile.txt' ...  smtp://example.com\n"
1563*6236dae4SAndroid Build Coastguard Worker "\n"
1564*6236dae4SAndroid Build Coastguard Worker "              Data  can  be encoded for transfer using encoder=. Available en-\n"
1565*6236dae4SAndroid Build Coastguard Worker "              codings are binary and 8bit that do nothing else than adding the\n"
1566*6236dae4SAndroid Build Coastguard Worker , stdout);
1567*6236dae4SAndroid Build Coastguard Worker  fputs(
1568*6236dae4SAndroid Build Coastguard Worker "              corresponding  Content-Transfer-Encoding  header, 7bit that only\n"
1569*6236dae4SAndroid Build Coastguard Worker "              rejects 8-bit characters with a transfer error, quoted-printable\n"
1570*6236dae4SAndroid Build Coastguard Worker "              and  base64  that  encodes  data  according to the corresponding\n"
1571*6236dae4SAndroid Build Coastguard Worker "              schemes, limiting lines length to 76 characters.\n"
1572*6236dae4SAndroid Build Coastguard Worker "\n"
1573*6236dae4SAndroid Build Coastguard Worker "              Example: send multipart mail with a quoted-printable  text  mes-\n"
1574*6236dae4SAndroid Build Coastguard Worker "              sage and a base64 attached file:\n"
1575*6236dae4SAndroid Build Coastguard Worker "\n"
1576*6236dae4SAndroid Build Coastguard Worker "               curl -F '=text message;encoder=quoted-printable' \\\n"
1577*6236dae4SAndroid Build Coastguard Worker , stdout);
1578*6236dae4SAndroid Build Coastguard Worker  fputs(
1579*6236dae4SAndroid Build Coastguard Worker "                    -F '=@localfile;encoder=base64' ... smtp://example.com\n"
1580*6236dae4SAndroid Build Coastguard Worker "\n"
1581*6236dae4SAndroid Build Coastguard Worker "              See further examples and details in the MANUAL.\n"
1582*6236dae4SAndroid Build Coastguard Worker "\n"
1583*6236dae4SAndroid Build Coastguard Worker "              This option can be used multiple times.\n"
1584*6236dae4SAndroid Build Coastguard Worker "\n"
1585*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1586*6236dae4SAndroid Build Coastguard Worker "               curl --form \"name=curl\" --form \"file=@loadthis\" https://example.com\n"
1587*6236dae4SAndroid Build Coastguard Worker "\n"
1588*6236dae4SAndroid Build Coastguard Worker "              This  option  overrides  -d, --data and -I, --head and -T, --up-\n"
1589*6236dae4SAndroid Build Coastguard Worker "              load-file.\n"
1590*6236dae4SAndroid Build Coastguard Worker "\n"
1591*6236dae4SAndroid Build Coastguard Worker "       --ftp-account <data>\n"
1592*6236dae4SAndroid Build Coastguard Worker , stdout);
1593*6236dae4SAndroid Build Coastguard Worker  fputs(
1594*6236dae4SAndroid Build Coastguard Worker "              (FTP) When an FTP server asks for \"account data\" after user name\n"
1595*6236dae4SAndroid Build Coastguard Worker "              and  password has been provided, this data is sent off using the\n"
1596*6236dae4SAndroid Build Coastguard Worker "              ACCT command.\n"
1597*6236dae4SAndroid Build Coastguard Worker "\n"
1598*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
1599*6236dae4SAndroid Build Coastguard Worker "\n"
1600*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1601*6236dae4SAndroid Build Coastguard Worker "               curl --ftp-account \"mr.robot\" ftp://example.com/\n"
1602*6236dae4SAndroid Build Coastguard Worker "\n"
1603*6236dae4SAndroid Build Coastguard Worker "       --ftp-alternative-to-user <command>\n"
1604*6236dae4SAndroid Build Coastguard Worker "              (FTP) If authenticating with the USER and PASS  commands  fails,\n"
1605*6236dae4SAndroid Build Coastguard Worker , stdout);
1606*6236dae4SAndroid Build Coastguard Worker  fputs(
1607*6236dae4SAndroid Build Coastguard Worker "              send  this  command.   When  connecting  to  Tumbleweed's Secure\n"
1608*6236dae4SAndroid Build Coastguard Worker "              Transport server over FTPS using  a  client  certificate,  using\n"
1609*6236dae4SAndroid Build Coastguard Worker "              \"SITE  AUTH\"  will tell the server to retrieve the username from\n"
1610*6236dae4SAndroid Build Coastguard Worker "              the certificate.\n"
1611*6236dae4SAndroid Build Coastguard Worker "\n"
1612*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1613*6236dae4SAndroid Build Coastguard Worker "               curl --ftp-alternative-to-user \"U53r\" ftp://example.com\n"
1614*6236dae4SAndroid Build Coastguard Worker "\n"
1615*6236dae4SAndroid Build Coastguard Worker "       --ftp-create-dirs\n"
1616*6236dae4SAndroid Build Coastguard Worker "              (FTP SFTP) When an FTP or SFTP URL/operation uses  a  path  that\n"
1617*6236dae4SAndroid Build Coastguard Worker , stdout);
1618*6236dae4SAndroid Build Coastguard Worker  fputs(
1619*6236dae4SAndroid Build Coastguard Worker "              does not currently exist on the server, the standard behavior of\n"
1620*6236dae4SAndroid Build Coastguard Worker "              curl is to fail. Using this option, curl will instead attempt to\n"
1621*6236dae4SAndroid Build Coastguard Worker "              create missing directories.\n"
1622*6236dae4SAndroid Build Coastguard Worker "\n"
1623*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1624*6236dae4SAndroid Build Coastguard Worker "               curl --ftp-create-dirs -T file ftp://example.com/remote/path/file\n"
1625*6236dae4SAndroid Build Coastguard Worker "\n"
1626*6236dae4SAndroid Build Coastguard Worker "              See also --create-dirs.\n"
1627*6236dae4SAndroid Build Coastguard Worker "\n"
1628*6236dae4SAndroid Build Coastguard Worker "       --ftp-method <method>\n"
1629*6236dae4SAndroid Build Coastguard Worker "              (FTP)  Control what method curl should use to reach a file on an\n"
1630*6236dae4SAndroid Build Coastguard Worker , stdout);
1631*6236dae4SAndroid Build Coastguard Worker  fputs(
1632*6236dae4SAndroid Build Coastguard Worker "              FTP(S) server. The method argument should be one of the  follow-\n"
1633*6236dae4SAndroid Build Coastguard Worker "              ing alternatives:\n"
1634*6236dae4SAndroid Build Coastguard Worker "\n"
1635*6236dae4SAndroid Build Coastguard Worker "              multicwd\n"
1636*6236dae4SAndroid Build Coastguard Worker "                     curl  does  a  single CWD operation for each path part in\n"
1637*6236dae4SAndroid Build Coastguard Worker "                     the given URL. For deep hierarchies this means many  com-\n"
1638*6236dae4SAndroid Build Coastguard Worker "                     mands.  This is how RFC 1738 says it should be done. This\n"
1639*6236dae4SAndroid Build Coastguard Worker "                     is the default but the slowest behavior.\n"
1640*6236dae4SAndroid Build Coastguard Worker "\n"
1641*6236dae4SAndroid Build Coastguard Worker , stdout);
1642*6236dae4SAndroid Build Coastguard Worker  fputs(
1643*6236dae4SAndroid Build Coastguard Worker "              nocwd  curl does no CWD at all. curl will do  SIZE,  RETR,  STOR\n"
1644*6236dae4SAndroid Build Coastguard Worker "                     etc and give a full path to the server for all these com-\n"
1645*6236dae4SAndroid Build Coastguard Worker "                     mands. This is the fastest behavior.\n"
1646*6236dae4SAndroid Build Coastguard Worker "\n"
1647*6236dae4SAndroid Build Coastguard Worker "              singlecwd\n"
1648*6236dae4SAndroid Build Coastguard Worker "                     curl does one CWD with the full target directory and then\n"
1649*6236dae4SAndroid Build Coastguard Worker "                     operates  on  the  file  \"normally\" (like in the multicwd\n"
1650*6236dae4SAndroid Build Coastguard Worker "                     case). This is somewhat  more  standards  compliant  than\n"
1651*6236dae4SAndroid Build Coastguard Worker , stdout);
1652*6236dae4SAndroid Build Coastguard Worker  fputs(
1653*6236dae4SAndroid Build Coastguard Worker "                     'nocwd' but without the full penalty of 'multicwd'.\n"
1654*6236dae4SAndroid Build Coastguard Worker "\n"
1655*6236dae4SAndroid Build Coastguard Worker "       Examples:\n"
1656*6236dae4SAndroid Build Coastguard Worker "        curl --ftp-method multicwd ftp://example.com/dir1/dir2/file\n"
1657*6236dae4SAndroid Build Coastguard Worker "        curl --ftp-method nocwd ftp://example.com/dir1/dir2/file\n"
1658*6236dae4SAndroid Build Coastguard Worker "        curl --ftp-method singlecwd ftp://example.com/dir1/dir2/file\n"
1659*6236dae4SAndroid Build Coastguard Worker "\n"
1660*6236dae4SAndroid Build Coastguard Worker "       --ftp-pasv\n"
1661*6236dae4SAndroid Build Coastguard Worker "              (FTP)  Use  passive mode for the data connection. Passive is the\n"
1662*6236dae4SAndroid Build Coastguard Worker "              internal default behavior, but using this option can be used  to\n"
1663*6236dae4SAndroid Build Coastguard Worker , stdout);
1664*6236dae4SAndroid Build Coastguard Worker  fputs(
1665*6236dae4SAndroid Build Coastguard Worker "              override a previous -P, --ftp-port option.\n"
1666*6236dae4SAndroid Build Coastguard Worker "\n"
1667*6236dae4SAndroid Build Coastguard Worker "              If  this  option  is  used  several times, only the first one is\n"
1668*6236dae4SAndroid Build Coastguard Worker "              used. Undoing an enforced passive really is not doable  but  you\n"
1669*6236dae4SAndroid Build Coastguard Worker "              must then instead enforce the correct -P, --ftp-port again.\n"
1670*6236dae4SAndroid Build Coastguard Worker "\n"
1671*6236dae4SAndroid Build Coastguard Worker "              Passive mode means that curl will try the EPSV command first and\n"
1672*6236dae4SAndroid Build Coastguard Worker "              then PASV, unless --disable-epsv is used.\n"
1673*6236dae4SAndroid Build Coastguard Worker "\n"
1674*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1675*6236dae4SAndroid Build Coastguard Worker "               curl --ftp-pasv ftp://example.com/\n"
1676*6236dae4SAndroid Build Coastguard Worker , stdout);
1677*6236dae4SAndroid Build Coastguard Worker  fputs(
1678*6236dae4SAndroid Build Coastguard Worker "\n"
1679*6236dae4SAndroid Build Coastguard Worker "              See also --disable-epsv.\n"
1680*6236dae4SAndroid Build Coastguard Worker "       -P, --ftp-port <address>\n"
1681*6236dae4SAndroid Build Coastguard Worker "              (FTP) Reverses the default initiator/listener  roles  when  con-\n"
1682*6236dae4SAndroid Build Coastguard Worker "              necting  with  FTP. This option makes curl use active mode. curl\n"
1683*6236dae4SAndroid Build Coastguard Worker "              then tells the server to connect back to the client's  specified\n"
1684*6236dae4SAndroid Build Coastguard Worker "              address and port, while passive mode asks the server to setup an\n"
1685*6236dae4SAndroid Build Coastguard Worker "              IP address and port for it to connect to.  <address>  should  be\n"
1686*6236dae4SAndroid Build Coastguard Worker "              one of:\n"
1687*6236dae4SAndroid Build Coastguard Worker "\n"
1688*6236dae4SAndroid Build Coastguard Worker , stdout);
1689*6236dae4SAndroid Build Coastguard Worker  fputs(
1690*6236dae4SAndroid Build Coastguard Worker "              interface\n"
1691*6236dae4SAndroid Build Coastguard Worker "                     e.g.  \"eth0\"  to specify which interface's IP address you\n"
1692*6236dae4SAndroid Build Coastguard Worker "                     want to use (Unix only)\n"
1693*6236dae4SAndroid Build Coastguard Worker "\n"
1694*6236dae4SAndroid Build Coastguard Worker "              IP address\n"
1695*6236dae4SAndroid Build Coastguard Worker "                     e.g. \"192.168.10.1\" to specify the exact IP address\n"
1696*6236dae4SAndroid Build Coastguard Worker "\n"
1697*6236dae4SAndroid Build Coastguard Worker "              host name\n"
1698*6236dae4SAndroid Build Coastguard Worker "                     e.g. \"my.host.domain\" to specify the machine\n"
1699*6236dae4SAndroid Build Coastguard Worker "\n"
1700*6236dae4SAndroid Build Coastguard Worker "              -      make curl pick the same IP address that is  already  used\n"
1701*6236dae4SAndroid Build Coastguard Worker "                     for the control connection\n"
1702*6236dae4SAndroid Build Coastguard Worker "\n"
1703*6236dae4SAndroid Build Coastguard Worker , stdout);
1704*6236dae4SAndroid Build Coastguard Worker  fputs(
1705*6236dae4SAndroid Build Coastguard Worker "       If  this  option is used several times, the last one will be used. Dis-\n"
1706*6236dae4SAndroid Build Coastguard Worker "       able the use of PORT with --ftp-pasv. Disable the attempt  to  use  the\n"
1707*6236dae4SAndroid Build Coastguard Worker "       EPRT  command  instead  of PORT by using --disable-eprt. EPRT is really\n"
1708*6236dae4SAndroid Build Coastguard Worker "       PORT++.\n"
1709*6236dae4SAndroid Build Coastguard Worker "\n"
1710*6236dae4SAndroid Build Coastguard Worker "       You can also append \":[start]-[end]\" to the right of  the  address,  to\n"
1711*6236dae4SAndroid Build Coastguard Worker "       tell  curl  what  TCP  port range to use. That means you specify a port\n"
1712*6236dae4SAndroid Build Coastguard Worker "       range, from a lower to a higher number. A single number works as  well,\n"
1713*6236dae4SAndroid Build Coastguard Worker , stdout);
1714*6236dae4SAndroid Build Coastguard Worker  fputs(
1715*6236dae4SAndroid Build Coastguard Worker "       but  do  note  that it increases the risk of failure since the port may\n"
1716*6236dae4SAndroid Build Coastguard Worker "       not be available.\n"
1717*6236dae4SAndroid Build Coastguard Worker "\n"
1718*6236dae4SAndroid Build Coastguard Worker "       Examples:\n"
1719*6236dae4SAndroid Build Coastguard Worker "        curl -P - ftp:/example.com\n"
1720*6236dae4SAndroid Build Coastguard Worker "        curl -P eth0 ftp:/example.com\n"
1721*6236dae4SAndroid Build Coastguard Worker "        curl -P 192.168.0.2 ftp:/example.com\n"
1722*6236dae4SAndroid Build Coastguard Worker "\n"
1723*6236dae4SAndroid Build Coastguard Worker "       See also --ftp-pasv and --disable-eprt.\n"
1724*6236dae4SAndroid Build Coastguard Worker "\n"
1725*6236dae4SAndroid Build Coastguard Worker "       --ftp-pret\n"
1726*6236dae4SAndroid Build Coastguard Worker "              (FTP) Tell curl to send a PRET command before PASV  (and  EPSV).\n"
1727*6236dae4SAndroid Build Coastguard Worker "              Certain  FTP  servers,  mainly drftpd, require this non-standard\n"
1728*6236dae4SAndroid Build Coastguard Worker , stdout);
1729*6236dae4SAndroid Build Coastguard Worker  fputs(
1730*6236dae4SAndroid Build Coastguard Worker "              command for directory listings as well as up  and  downloads  in\n"
1731*6236dae4SAndroid Build Coastguard Worker "              PASV mode.\n"
1732*6236dae4SAndroid Build Coastguard Worker "\n"
1733*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1734*6236dae4SAndroid Build Coastguard Worker "               curl --ftp-pret ftp://example.com/\n"
1735*6236dae4SAndroid Build Coastguard Worker "\n"
1736*6236dae4SAndroid Build Coastguard Worker "       --ftp-skip-pasv-ip\n"
1737*6236dae4SAndroid Build Coastguard Worker "              (FTP) Tell curl to not use the IP address the server suggests in\n"
1738*6236dae4SAndroid Build Coastguard Worker "              its response to curl's PASV command when curl connects the  data\n"
1739*6236dae4SAndroid Build Coastguard Worker "              connection.  Instead curl will re-use the same IP address it al-\n"
1740*6236dae4SAndroid Build Coastguard Worker "              ready uses for the control connection.\n"
1741*6236dae4SAndroid Build Coastguard Worker "\n"
1742*6236dae4SAndroid Build Coastguard Worker , stdout);
1743*6236dae4SAndroid Build Coastguard Worker  fputs(
1744*6236dae4SAndroid Build Coastguard Worker "              Since curl 7.74.0 this option is enabled by default.\n"
1745*6236dae4SAndroid Build Coastguard Worker "\n"
1746*6236dae4SAndroid Build Coastguard Worker "              This option has no effect if PORT, EPRT or EPSV is used  instead\n"
1747*6236dae4SAndroid Build Coastguard Worker "              of PASV.\n"
1748*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1749*6236dae4SAndroid Build Coastguard Worker "               curl --ftp-skip-pasv-ip ftp://example.com/\n"
1750*6236dae4SAndroid Build Coastguard Worker "\n"
1751*6236dae4SAndroid Build Coastguard Worker "              See also --ftp-pasv.\n"
1752*6236dae4SAndroid Build Coastguard Worker "\n"
1753*6236dae4SAndroid Build Coastguard Worker "       --ftp-ssl-ccc-mode <active/passive>\n"
1754*6236dae4SAndroid Build Coastguard Worker "              (FTP)  Sets the CCC mode. The passive mode will not initiate the\n"
1755*6236dae4SAndroid Build Coastguard Worker "              shutdown, but instead wait for the server to do it, and will not\n"
1756*6236dae4SAndroid Build Coastguard Worker , stdout);
1757*6236dae4SAndroid Build Coastguard Worker  fputs(
1758*6236dae4SAndroid Build Coastguard Worker "              reply to the shutdown from the server. The active mode initiates\n"
1759*6236dae4SAndroid Build Coastguard Worker "              the shutdown and waits for a reply from the server.\n"
1760*6236dae4SAndroid Build Coastguard Worker "\n"
1761*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1762*6236dae4SAndroid Build Coastguard Worker "               curl --ftp-ssl-ccc-mode active --ftp-ssl-ccc ftps://example.com/\n"
1763*6236dae4SAndroid Build Coastguard Worker "\n"
1764*6236dae4SAndroid Build Coastguard Worker "              See also --ftp-ssl-ccc.\n"
1765*6236dae4SAndroid Build Coastguard Worker "\n"
1766*6236dae4SAndroid Build Coastguard Worker "       --ftp-ssl-ccc\n"
1767*6236dae4SAndroid Build Coastguard Worker "              (FTP) Use CCC (Clear Command Channel)  Shuts  down  the  SSL/TLS\n"
1768*6236dae4SAndroid Build Coastguard Worker "              layer after authenticating. The rest of the control channel com-\n"
1769*6236dae4SAndroid Build Coastguard Worker , stdout);
1770*6236dae4SAndroid Build Coastguard Worker  fputs(
1771*6236dae4SAndroid Build Coastguard Worker "              munication will be unencrypted. This allows NAT routers to  fol-\n"
1772*6236dae4SAndroid Build Coastguard Worker "              low the FTP transaction. The default mode is passive.\n"
1773*6236dae4SAndroid Build Coastguard Worker "\n"
1774*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1775*6236dae4SAndroid Build Coastguard Worker "               curl --ftp-ssl-ccc ftps://example.com/\n"
1776*6236dae4SAndroid Build Coastguard Worker "              See also --ssl and --ftp-ssl-ccc-mode.\n"
1777*6236dae4SAndroid Build Coastguard Worker "\n"
1778*6236dae4SAndroid Build Coastguard Worker "       --ftp-ssl-control\n"
1779*6236dae4SAndroid Build Coastguard Worker "              (FTP)  Require  SSL/TLS  for  the FTP login, clear for transfer.\n"
1780*6236dae4SAndroid Build Coastguard Worker "              Allows secure authentication, but non-encrypted  data  transfers\n"
1781*6236dae4SAndroid Build Coastguard Worker , stdout);
1782*6236dae4SAndroid Build Coastguard Worker  fputs(
1783*6236dae4SAndroid Build Coastguard Worker "              for  efficiency.  Fails the transfer if the server does not sup-\n"
1784*6236dae4SAndroid Build Coastguard Worker "              port SSL/TLS.\n"
1785*6236dae4SAndroid Build Coastguard Worker "\n"
1786*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1787*6236dae4SAndroid Build Coastguard Worker "               curl --ftp-ssl-control ftp://example.com\n"
1788*6236dae4SAndroid Build Coastguard Worker "\n"
1789*6236dae4SAndroid Build Coastguard Worker "       -G, --get\n"
1790*6236dae4SAndroid Build Coastguard Worker "              When used, this option will make all  data  specified  with  -d,\n"
1791*6236dae4SAndroid Build Coastguard Worker "              --data,  --data-binary or --data-urlencode to be used in an HTTP\n"
1792*6236dae4SAndroid Build Coastguard Worker "              GET request instead of the POST request that otherwise would  be\n"
1793*6236dae4SAndroid Build Coastguard Worker , stdout);
1794*6236dae4SAndroid Build Coastguard Worker  fputs(
1795*6236dae4SAndroid Build Coastguard Worker "              used. The data will be appended to the URL with a '?' separator.\n"
1796*6236dae4SAndroid Build Coastguard Worker "              If  used  in combination with -I, --head, the POST data will in-\n"
1797*6236dae4SAndroid Build Coastguard Worker "              stead be appended to the URL with a HEAD request.\n"
1798*6236dae4SAndroid Build Coastguard Worker "\n"
1799*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times,  only  the  first  one  is\n"
1800*6236dae4SAndroid Build Coastguard Worker "              used. This is because undoing a GET does not make sense, but you\n"
1801*6236dae4SAndroid Build Coastguard Worker "              should then instead enforce the alternative method you prefer.\n"
1802*6236dae4SAndroid Build Coastguard Worker "\n"
1803*6236dae4SAndroid Build Coastguard Worker "              Examples:\n"
1804*6236dae4SAndroid Build Coastguard Worker , stdout);
1805*6236dae4SAndroid Build Coastguard Worker  fputs(
1806*6236dae4SAndroid Build Coastguard Worker "               curl --get https://example.com\n"
1807*6236dae4SAndroid Build Coastguard Worker "               curl --get -d \"tool=curl\" -d \"age=old\" https://example.com\n"
1808*6236dae4SAndroid Build Coastguard Worker "               curl --get -I -d \"tool=curl\" https://example.com\n"
1809*6236dae4SAndroid Build Coastguard Worker "\n"
1810*6236dae4SAndroid Build Coastguard Worker "       -g, --globoff\n"
1811*6236dae4SAndroid Build Coastguard Worker "              This option switches off the \"URL globbing parser\". When you set\n"
1812*6236dae4SAndroid Build Coastguard Worker "              this  option, you can specify URLs that contain the letters {}[]\n"
1813*6236dae4SAndroid Build Coastguard Worker "              without having curl itself interpret them. Note that these  let-\n"
1814*6236dae4SAndroid Build Coastguard Worker , stdout);
1815*6236dae4SAndroid Build Coastguard Worker  fputs(
1816*6236dae4SAndroid Build Coastguard Worker "              ters  are  not  normal legal URL contents but they should be en-\n"
1817*6236dae4SAndroid Build Coastguard Worker "              coded according to the URI standard.\n"
1818*6236dae4SAndroid Build Coastguard Worker "\n"
1819*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1820*6236dae4SAndroid Build Coastguard Worker "               curl -g \"https://example.com/{[]}}}}\"\n"
1821*6236dae4SAndroid Build Coastguard Worker "\n"
1822*6236dae4SAndroid Build Coastguard Worker "       --happy-eyeballs-timeout-ms <milliseconds>\n"
1823*6236dae4SAndroid Build Coastguard Worker "              Happy Eyeballs is an algorithm that attempts to connect to  both\n"
1824*6236dae4SAndroid Build Coastguard Worker "              IPv4  and  IPv6  addresses  for  dual-stack hosts, giving IPv6 a\n"
1825*6236dae4SAndroid Build Coastguard Worker "              head-start of the specified number of milliseconds. If the  IPv6\n"
1826*6236dae4SAndroid Build Coastguard Worker , stdout);
1827*6236dae4SAndroid Build Coastguard Worker  fputs(
1828*6236dae4SAndroid Build Coastguard Worker "              address  cannot be connected to within that time, then a connec-\n"
1829*6236dae4SAndroid Build Coastguard Worker "              tion attempt is made to the IPv4 address in parallel. The  first\n"
1830*6236dae4SAndroid Build Coastguard Worker "              connection to be established is the one that is used.\n"
1831*6236dae4SAndroid Build Coastguard Worker "\n"
1832*6236dae4SAndroid Build Coastguard Worker "              The  range of suggested useful values is limited. Happy Eyeballs\n"
1833*6236dae4SAndroid Build Coastguard Worker "              RFC 6555 says \"It is RECOMMENDED  that  connection  attempts  be\n"
1834*6236dae4SAndroid Build Coastguard Worker "              paced  150-250 ms apart to balance human factors against network\n"
1835*6236dae4SAndroid Build Coastguard Worker , stdout);
1836*6236dae4SAndroid Build Coastguard Worker  fputs(
1837*6236dae4SAndroid Build Coastguard Worker "              load.\" libcurl currently defaults to 200 ms. Firefox and  Chrome\n"
1838*6236dae4SAndroid Build Coastguard Worker "              currently default to 300 ms.\n"
1839*6236dae4SAndroid Build Coastguard Worker "\n"
1840*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
1841*6236dae4SAndroid Build Coastguard Worker "\n"
1842*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1843*6236dae4SAndroid Build Coastguard Worker "               curl --happy-eyeballs-timeout-ms 500 https://example.com\n"
1844*6236dae4SAndroid Build Coastguard Worker "\n"
1845*6236dae4SAndroid Build Coastguard Worker "              Added in 7.59.0.\n"
1846*6236dae4SAndroid Build Coastguard Worker "\n"
1847*6236dae4SAndroid Build Coastguard Worker "       --haproxy-protocol\n"
1848*6236dae4SAndroid Build Coastguard Worker "              (HTTP)  Send a HAProxy PROXY protocol v1 header at the beginning\n"
1849*6236dae4SAndroid Build Coastguard Worker , stdout);
1850*6236dae4SAndroid Build Coastguard Worker  fputs(
1851*6236dae4SAndroid Build Coastguard Worker "              of the connection. This is used by some load balancers  and  re-\n"
1852*6236dae4SAndroid Build Coastguard Worker "              verse proxies to indicate the client's true IP address and port.\n"
1853*6236dae4SAndroid Build Coastguard Worker "              This  option is primarily useful when sending test requests to a\n"
1854*6236dae4SAndroid Build Coastguard Worker "              service that expects this header.\n"
1855*6236dae4SAndroid Build Coastguard Worker "\n"
1856*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1857*6236dae4SAndroid Build Coastguard Worker "               curl --haproxy-protocol https://example.com\n"
1858*6236dae4SAndroid Build Coastguard Worker "\n"
1859*6236dae4SAndroid Build Coastguard Worker "              Added in 7.60.0.\n"
1860*6236dae4SAndroid Build Coastguard Worker "\n"
1861*6236dae4SAndroid Build Coastguard Worker "       -I, --head\n"
1862*6236dae4SAndroid Build Coastguard Worker "              (HTTP FTP FILE) Fetch the headers only! HTTP-servers feature the\n"
1863*6236dae4SAndroid Build Coastguard Worker , stdout);
1864*6236dae4SAndroid Build Coastguard Worker  fputs(
1865*6236dae4SAndroid Build Coastguard Worker "              command  HEAD which this uses to get nothing but the header of a\n"
1866*6236dae4SAndroid Build Coastguard Worker "              document. When used on an FTP or FILE file,  curl  displays  the\n"
1867*6236dae4SAndroid Build Coastguard Worker "              file size and last modification time only.\n"
1868*6236dae4SAndroid Build Coastguard Worker "\n"
1869*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1870*6236dae4SAndroid Build Coastguard Worker "               curl -I https://example.com\n"
1871*6236dae4SAndroid Build Coastguard Worker "       -H, --header <header/@file>\n"
1872*6236dae4SAndroid Build Coastguard Worker "              (HTTP)  Extra header to include in the request when sending HTTP\n"
1873*6236dae4SAndroid Build Coastguard Worker "              to a server. You may specify any number of extra  headers.  Note\n"
1874*6236dae4SAndroid Build Coastguard Worker , stdout);
1875*6236dae4SAndroid Build Coastguard Worker  fputs(
1876*6236dae4SAndroid Build Coastguard Worker "              that if you should add a custom header that has the same name as\n"
1877*6236dae4SAndroid Build Coastguard Worker "              one of the internal ones curl would  use,  your  externally  set\n"
1878*6236dae4SAndroid Build Coastguard Worker "              header will be used instead of the internal one. This allows you\n"
1879*6236dae4SAndroid Build Coastguard Worker "              to make even trickier stuff than curl  would  normally  do.  You\n"
1880*6236dae4SAndroid Build Coastguard Worker "              should  not  replace internally set headers without knowing per-\n"
1881*6236dae4SAndroid Build Coastguard Worker "              fectly well what you are doing. Remove  an  internal  header  by\n"
1882*6236dae4SAndroid Build Coastguard Worker , stdout);
1883*6236dae4SAndroid Build Coastguard Worker  fputs(
1884*6236dae4SAndroid Build Coastguard Worker "              giving  a  replacement  without content on the right side of the\n"
1885*6236dae4SAndroid Build Coastguard Worker "              colon, as in: -H \"Host:\". If you send the custom header with no-\n"
1886*6236dae4SAndroid Build Coastguard Worker "              value  then its header must be terminated with a semicolon, such\n"
1887*6236dae4SAndroid Build Coastguard Worker "              as -H \"X-Custom-Header;\" to send \"X-Custom-Header:\".\n"
1888*6236dae4SAndroid Build Coastguard Worker "\n"
1889*6236dae4SAndroid Build Coastguard Worker "              curl will make sure that each header  you  add/replace  is  sent\n"
1890*6236dae4SAndroid Build Coastguard Worker "              with the proper end-of-line marker, you should thus not add that\n"
1891*6236dae4SAndroid Build Coastguard Worker , stdout);
1892*6236dae4SAndroid Build Coastguard Worker  fputs(
1893*6236dae4SAndroid Build Coastguard Worker "              as a part of the header content: do not add newlines or carriage\n"
1894*6236dae4SAndroid Build Coastguard Worker "              returns, they will only mess things up for you.\n"
1895*6236dae4SAndroid Build Coastguard Worker "\n"
1896*6236dae4SAndroid Build Coastguard Worker "              This  option can take an argument in @filename style, which then\n"
1897*6236dae4SAndroid Build Coastguard Worker "              adds a header for each line in the input  file.  Using  @-  will\n"
1898*6236dae4SAndroid Build Coastguard Worker "              make curl read the header file from stdin. Added in 7.55.0.\n"
1899*6236dae4SAndroid Build Coastguard Worker "\n"
1900*6236dae4SAndroid Build Coastguard Worker "              You  need  --proxy-header  to send custom headers intended for a\n"
1901*6236dae4SAndroid Build Coastguard Worker "              HTTP proxy. Added in 7.37.0.\n"
1902*6236dae4SAndroid Build Coastguard Worker "\n"
1903*6236dae4SAndroid Build Coastguard Worker , stdout);
1904*6236dae4SAndroid Build Coastguard Worker  fputs(
1905*6236dae4SAndroid Build Coastguard Worker "              Passing on a \"Transfer-Encoding: chunked\" header  when  doing  a\n"
1906*6236dae4SAndroid Build Coastguard Worker "              HTTP  request  with a request body, will make curl send the data\n"
1907*6236dae4SAndroid Build Coastguard Worker "              using chunked encoding.\n"
1908*6236dae4SAndroid Build Coastguard Worker "\n"
1909*6236dae4SAndroid Build Coastguard Worker "              WARNING: headers set with this option will be  set  in  all  re-\n"
1910*6236dae4SAndroid Build Coastguard Worker "              quests  - even after redirects are followed, like when told with\n"
1911*6236dae4SAndroid Build Coastguard Worker "              -L, --location. This can lead to the header being sent to  other\n"
1912*6236dae4SAndroid Build Coastguard Worker , stdout);
1913*6236dae4SAndroid Build Coastguard Worker  fputs(
1914*6236dae4SAndroid Build Coastguard Worker "              hosts  than  the  original  host, so sensitive headers should be\n"
1915*6236dae4SAndroid Build Coastguard Worker "              used with caution combined with following redirects.\n"
1916*6236dae4SAndroid Build Coastguard Worker "\n"
1917*6236dae4SAndroid Build Coastguard Worker "              This option can be used  multiple  times  to  add/replace/remove\n"
1918*6236dae4SAndroid Build Coastguard Worker "              multiple headers.\n"
1919*6236dae4SAndroid Build Coastguard Worker "\n"
1920*6236dae4SAndroid Build Coastguard Worker "              Examples:\n"
1921*6236dae4SAndroid Build Coastguard Worker "               curl -H \"X-First-Name: Joe\" https://example.com\n"
1922*6236dae4SAndroid Build Coastguard Worker "               curl -H \"User-Agent: yes-please/2000\" https://example.com\n"
1923*6236dae4SAndroid Build Coastguard Worker "               curl -H \"Host:\" https://example.com\n"
1924*6236dae4SAndroid Build Coastguard Worker "\n"
1925*6236dae4SAndroid Build Coastguard Worker , stdout);
1926*6236dae4SAndroid Build Coastguard Worker  fputs(
1927*6236dae4SAndroid Build Coastguard Worker "              See also -A, --user-agent and -e, --referer.\n"
1928*6236dae4SAndroid Build Coastguard Worker "\n"
1929*6236dae4SAndroid Build Coastguard Worker "       -h, --help <category>\n"
1930*6236dae4SAndroid Build Coastguard Worker "              Usage  help.  This  lists all commands of the <category>.  If no\n"
1931*6236dae4SAndroid Build Coastguard Worker "              arg was provided, curl will display the most  important  command\n"
1932*6236dae4SAndroid Build Coastguard Worker "              line  arguments.   If the argument \"all\" was provided, curl will\n"
1933*6236dae4SAndroid Build Coastguard Worker "              display all options available.  If the argument  \"category\"  was\n"
1934*6236dae4SAndroid Build Coastguard Worker "              provided, curl will display all categories and their meanings.\n"
1935*6236dae4SAndroid Build Coastguard Worker "\n"
1936*6236dae4SAndroid Build Coastguard Worker , stdout);
1937*6236dae4SAndroid Build Coastguard Worker  fputs(
1938*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1939*6236dae4SAndroid Build Coastguard Worker "               curl --help all\n"
1940*6236dae4SAndroid Build Coastguard Worker "\n"
1941*6236dae4SAndroid Build Coastguard Worker "       --hostpubmd5 <md5>\n"
1942*6236dae4SAndroid Build Coastguard Worker "              (SFTP  SCP)  Pass a string containing 32 hexadecimal digits. The\n"
1943*6236dae4SAndroid Build Coastguard Worker "              string should be the 128 bit MD5 checksum of the  remote  host's\n"
1944*6236dae4SAndroid Build Coastguard Worker "              public key, curl will refuse the connection with the host unless\n"
1945*6236dae4SAndroid Build Coastguard Worker "              the md5sums match.\n"
1946*6236dae4SAndroid Build Coastguard Worker "\n"
1947*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1948*6236dae4SAndroid Build Coastguard Worker "               curl --hostpubmd5 e5c1c49020640a5ab0f2034854c321a8 sftp://example.com/\n"
1949*6236dae4SAndroid Build Coastguard Worker "\n"
1950*6236dae4SAndroid Build Coastguard Worker "       --hostpubsha256 <sha256>\n"
1951*6236dae4SAndroid Build Coastguard Worker , stdout);
1952*6236dae4SAndroid Build Coastguard Worker  fputs(
1953*6236dae4SAndroid Build Coastguard Worker "              (SFTP SCP) Pass a string containing a Base64-encoded SHA256 hash\n"
1954*6236dae4SAndroid Build Coastguard Worker "              of the remote host's public key. Curl will refuse the connection\n"
1955*6236dae4SAndroid Build Coastguard Worker "              with the host unless the hashes match.\n"
1956*6236dae4SAndroid Build Coastguard Worker "\n"
1957*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1958*6236dae4SAndroid Build Coastguard Worker "               curl --hostpubsha256 NDVkMTQxMGQ1ODdmMjQ3MjczYjAyOTY5MmRkMjVmNDQ= sftp://example.com/\n"
1959*6236dae4SAndroid Build Coastguard Worker "\n"
1960*6236dae4SAndroid Build Coastguard Worker "              Added in 7.80.0.\n"
1961*6236dae4SAndroid Build Coastguard Worker "\n"
1962*6236dae4SAndroid Build Coastguard Worker "       --hsts <file name>\n"
1963*6236dae4SAndroid Build Coastguard Worker "              (HTTPS) This option enables HSTS for the transfer. If  the  file\n"
1964*6236dae4SAndroid Build Coastguard Worker , stdout);
1965*6236dae4SAndroid Build Coastguard Worker  fputs(
1966*6236dae4SAndroid Build Coastguard Worker "              name  points  to an existing HSTS cache file, that will be used.\n"
1967*6236dae4SAndroid Build Coastguard Worker "              After a completed transfer, the cache will be saved to the  file\n"
1968*6236dae4SAndroid Build Coastguard Worker "              name again if it has been modified.\n"
1969*6236dae4SAndroid Build Coastguard Worker "\n"
1970*6236dae4SAndroid Build Coastguard Worker "              Specify a \"\" file name (zero length) to avoid loading/saving and\n"
1971*6236dae4SAndroid Build Coastguard Worker "              make curl just handle HSTS in memory.\n"
1972*6236dae4SAndroid Build Coastguard Worker "\n"
1973*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, curl  will  load  contents\n"
1974*6236dae4SAndroid Build Coastguard Worker "              from all the files but the last one will be used for saving.\n"
1975*6236dae4SAndroid Build Coastguard Worker "\n"
1976*6236dae4SAndroid Build Coastguard Worker , stdout);
1977*6236dae4SAndroid Build Coastguard Worker  fputs(
1978*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1979*6236dae4SAndroid Build Coastguard Worker "               curl --hsts cache.txt https://example.com\n"
1980*6236dae4SAndroid Build Coastguard Worker "\n"
1981*6236dae4SAndroid Build Coastguard Worker "              Added in 7.74.0.\n"
1982*6236dae4SAndroid Build Coastguard Worker "\n"
1983*6236dae4SAndroid Build Coastguard Worker "       --http0.9\n"
1984*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Tells curl to be fine with HTTP version 0.9 response.\n"
1985*6236dae4SAndroid Build Coastguard Worker "\n"
1986*6236dae4SAndroid Build Coastguard Worker "              HTTP/0.9  is  a completely headerless response and therefore you\n"
1987*6236dae4SAndroid Build Coastguard Worker "              can also connect with this to non-HTTP servers and still  get  a\n"
1988*6236dae4SAndroid Build Coastguard Worker "              response since curl will simply transparently downgrade - if al-\n"
1989*6236dae4SAndroid Build Coastguard Worker "              lowed.\n"
1990*6236dae4SAndroid Build Coastguard Worker "\n"
1991*6236dae4SAndroid Build Coastguard Worker , stdout);
1992*6236dae4SAndroid Build Coastguard Worker  fputs(
1993*6236dae4SAndroid Build Coastguard Worker "              Since curl 7.66.0, HTTP/0.9 is disabled by default.\n"
1994*6236dae4SAndroid Build Coastguard Worker "\n"
1995*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
1996*6236dae4SAndroid Build Coastguard Worker "               curl --http0.9 https://example.com\n"
1997*6236dae4SAndroid Build Coastguard Worker "\n"
1998*6236dae4SAndroid Build Coastguard Worker "              Added in 7.64.0.\n"
1999*6236dae4SAndroid Build Coastguard Worker "\n"
2000*6236dae4SAndroid Build Coastguard Worker "       -0, --http1.0\n"
2001*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Tells curl to use HTTP version 1.0 instead of  using  its\n"
2002*6236dae4SAndroid Build Coastguard Worker "              internally preferred HTTP version.\n"
2003*6236dae4SAndroid Build Coastguard Worker "\n"
2004*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2005*6236dae4SAndroid Build Coastguard Worker "               curl --http1.0 https://example.com\n"
2006*6236dae4SAndroid Build Coastguard Worker "\n"
2007*6236dae4SAndroid Build Coastguard Worker "              This option overrides --http1.1 and --http2.\n"
2008*6236dae4SAndroid Build Coastguard Worker "\n"
2009*6236dae4SAndroid Build Coastguard Worker "       --http1.1\n"
2010*6236dae4SAndroid Build Coastguard Worker , stdout);
2011*6236dae4SAndroid Build Coastguard Worker  fputs(
2012*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Tells curl to use HTTP version 1.1.\n"
2013*6236dae4SAndroid Build Coastguard Worker "\n"
2014*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2015*6236dae4SAndroid Build Coastguard Worker "               curl --http1.1 https://example.com\n"
2016*6236dae4SAndroid Build Coastguard Worker "\n"
2017*6236dae4SAndroid Build Coastguard Worker "              This  option  overrides  -0,  --http1.0  and  --http2.  Added in\n"
2018*6236dae4SAndroid Build Coastguard Worker "              7.33.0.\n"
2019*6236dae4SAndroid Build Coastguard Worker "\n"
2020*6236dae4SAndroid Build Coastguard Worker "       --http2-prior-knowledge\n"
2021*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Tells curl to  issue  its  non-TLS  HTTP  requests  using\n"
2022*6236dae4SAndroid Build Coastguard Worker "              HTTP/2  without  HTTP/1.1  Upgrade.  It requires prior knowledge\n"
2023*6236dae4SAndroid Build Coastguard Worker , stdout);
2024*6236dae4SAndroid Build Coastguard Worker  fputs(
2025*6236dae4SAndroid Build Coastguard Worker "              that the server supports HTTP/2 straight  away.  HTTPS  requests\n"
2026*6236dae4SAndroid Build Coastguard Worker "              will  still  do HTTP/2 the standard way with negotiated protocol\n"
2027*6236dae4SAndroid Build Coastguard Worker "              version in the TLS handshake.\n"
2028*6236dae4SAndroid Build Coastguard Worker "\n"
2029*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2030*6236dae4SAndroid Build Coastguard Worker "               curl --http2-prior-knowledge https://example.com\n"
2031*6236dae4SAndroid Build Coastguard Worker "\n"
2032*6236dae4SAndroid Build Coastguard Worker "              --http2-prior-knowledge requires that the underlying libcurl was\n"
2033*6236dae4SAndroid Build Coastguard Worker "              built to support HTTP/2. This option overrides --http1.1 and -0,\n"
2034*6236dae4SAndroid Build Coastguard Worker , stdout);
2035*6236dae4SAndroid Build Coastguard Worker  fputs(
2036*6236dae4SAndroid Build Coastguard Worker "              --http1.0 and --http2. Added in 7.49.0.\n"
2037*6236dae4SAndroid Build Coastguard Worker "\n"
2038*6236dae4SAndroid Build Coastguard Worker "       --http2\n"
2039*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Tells curl to use HTTP version 2.\n"
2040*6236dae4SAndroid Build Coastguard Worker "\n"
2041*6236dae4SAndroid Build Coastguard Worker "              For HTTPS, this means curl will attempt to negotiate  HTTP/2  in\n"
2042*6236dae4SAndroid Build Coastguard Worker "              the TLS handshake. curl does this by default.\n"
2043*6236dae4SAndroid Build Coastguard Worker "\n"
2044*6236dae4SAndroid Build Coastguard Worker "              For HTTP, this means curl will attempt to upgrade the request to\n"
2045*6236dae4SAndroid Build Coastguard Worker "              HTTP/2 using the Upgrade: request header.\n"
2046*6236dae4SAndroid Build Coastguard Worker "\n"
2047*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2048*6236dae4SAndroid Build Coastguard Worker "               curl --http2 https://example.com\n"
2049*6236dae4SAndroid Build Coastguard Worker "\n"
2050*6236dae4SAndroid Build Coastguard Worker , stdout);
2051*6236dae4SAndroid Build Coastguard Worker  fputs(
2052*6236dae4SAndroid Build Coastguard Worker "              See also --http1.1 and --http3. --http2 requires that the under-\n"
2053*6236dae4SAndroid Build Coastguard Worker "              lying libcurl was built to support HTTP/2. This option overrides\n"
2054*6236dae4SAndroid Build Coastguard Worker "              --http1.1 and -0, --http1.0 and  --http2-prior-knowledge.  Added\n"
2055*6236dae4SAndroid Build Coastguard Worker "              in 7.33.0.\n"
2056*6236dae4SAndroid Build Coastguard Worker "\n"
2057*6236dae4SAndroid Build Coastguard Worker "       --http3\n"
2058*6236dae4SAndroid Build Coastguard Worker "              (HTTP)  WARNING: this option is experimental. Do not use in pro-\n"
2059*6236dae4SAndroid Build Coastguard Worker "              duction.\n"
2060*6236dae4SAndroid Build Coastguard Worker "\n"
2061*6236dae4SAndroid Build Coastguard Worker "              Tells curl to use HTTP version 3 directly to the host  and  port\n"
2062*6236dae4SAndroid Build Coastguard Worker , stdout);
2063*6236dae4SAndroid Build Coastguard Worker  fputs(
2064*6236dae4SAndroid Build Coastguard Worker "              number used in the URL. A normal HTTP/3 transaction will be done\n"
2065*6236dae4SAndroid Build Coastguard Worker "              to a host and then get redirected via Alt-Svc, but  this  option\n"
2066*6236dae4SAndroid Build Coastguard Worker "              allows  a  user to circumvent that when you know that the target\n"
2067*6236dae4SAndroid Build Coastguard Worker "              speaks HTTP/3 on the given host and port.\n"
2068*6236dae4SAndroid Build Coastguard Worker "\n"
2069*6236dae4SAndroid Build Coastguard Worker "              This option will make curl fail if a QUIC connection  cannot  be\n"
2070*6236dae4SAndroid Build Coastguard Worker "              established,  it cannot fall back to a lower HTTP version on its\n"
2071*6236dae4SAndroid Build Coastguard Worker "              own.\n"
2072*6236dae4SAndroid Build Coastguard Worker "\n"
2073*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2074*6236dae4SAndroid Build Coastguard Worker , stdout);
2075*6236dae4SAndroid Build Coastguard Worker  fputs(
2076*6236dae4SAndroid Build Coastguard Worker "               curl --http3 https://example.com\n"
2077*6236dae4SAndroid Build Coastguard Worker "\n"
2078*6236dae4SAndroid Build Coastguard Worker "              See also --http1.1 and --http2. --http3 requires that the under-\n"
2079*6236dae4SAndroid Build Coastguard Worker "              lying libcurl was built to support HTTP/3. This option overrides\n"
2080*6236dae4SAndroid Build Coastguard Worker "              --http1.1 and -0, --http1.0 and --http2 and --http2-prior-knowl-\n"
2081*6236dae4SAndroid Build Coastguard Worker "              edge. Added in 7.66.0.\n"
2082*6236dae4SAndroid Build Coastguard Worker "\n"
2083*6236dae4SAndroid Build Coastguard Worker "       --ignore-content-length\n"
2084*6236dae4SAndroid Build Coastguard Worker "              (FTP  HTTP)  For HTTP, Ignore the Content-Length header. This is\n"
2085*6236dae4SAndroid Build Coastguard Worker , stdout);
2086*6236dae4SAndroid Build Coastguard Worker  fputs(
2087*6236dae4SAndroid Build Coastguard Worker "              particularly useful for servers running Apache 1.x,  which  will\n"
2088*6236dae4SAndroid Build Coastguard Worker "              report  incorrect  Content-Length  for files larger than 2 giga-\n"
2089*6236dae4SAndroid Build Coastguard Worker "              bytes.\n"
2090*6236dae4SAndroid Build Coastguard Worker "\n"
2091*6236dae4SAndroid Build Coastguard Worker "              For FTP (since 7.46.0), skip the RETR command to figure out  the\n"
2092*6236dae4SAndroid Build Coastguard Worker "              size before downloading a file.\n"
2093*6236dae4SAndroid Build Coastguard Worker "\n"
2094*6236dae4SAndroid Build Coastguard Worker "              This  option  does not work for HTTP if libcurl was built to use\n"
2095*6236dae4SAndroid Build Coastguard Worker "              hyper.\n"
2096*6236dae4SAndroid Build Coastguard Worker "\n"
2097*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2098*6236dae4SAndroid Build Coastguard Worker "               curl --ignore-content-length https://example.com\n"
2099*6236dae4SAndroid Build Coastguard Worker "\n"
2100*6236dae4SAndroid Build Coastguard Worker , stdout);
2101*6236dae4SAndroid Build Coastguard Worker  fputs(
2102*6236dae4SAndroid Build Coastguard Worker "       -i, --include\n"
2103*6236dae4SAndroid Build Coastguard Worker "              Include the HTTP response headers in the output.  The  HTTP  re-\n"
2104*6236dae4SAndroid Build Coastguard Worker "              sponse  headers  can  include  things like server name, cookies,\n"
2105*6236dae4SAndroid Build Coastguard Worker "              date of the document, HTTP version and more...\n"
2106*6236dae4SAndroid Build Coastguard Worker "\n"
2107*6236dae4SAndroid Build Coastguard Worker "              To view the request headers, consider the -v, --verbose option.\n"
2108*6236dae4SAndroid Build Coastguard Worker "\n"
2109*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2110*6236dae4SAndroid Build Coastguard Worker "               curl -i https://example.com\n"
2111*6236dae4SAndroid Build Coastguard Worker "\n"
2112*6236dae4SAndroid Build Coastguard Worker "              See also -v, --verbose.\n"
2113*6236dae4SAndroid Build Coastguard Worker "\n"
2114*6236dae4SAndroid Build Coastguard Worker "       -k, --insecure\n"
2115*6236dae4SAndroid Build Coastguard Worker , stdout);
2116*6236dae4SAndroid Build Coastguard Worker  fputs(
2117*6236dae4SAndroid Build Coastguard Worker "              (TLS) By default, every SSL connection curl makes is verified to\n"
2118*6236dae4SAndroid Build Coastguard Worker "              be  secure.  This option allows curl to proceed and operate even\n"
2119*6236dae4SAndroid Build Coastguard Worker "              for server connections otherwise considered insecure.\n"
2120*6236dae4SAndroid Build Coastguard Worker "\n"
2121*6236dae4SAndroid Build Coastguard Worker "              The server connection is verified by making  sure  the  server's\n"
2122*6236dae4SAndroid Build Coastguard Worker "              certificate  contains  the  right name and verifies successfully\n"
2123*6236dae4SAndroid Build Coastguard Worker "              using the cert store.\n"
2124*6236dae4SAndroid Build Coastguard Worker "\n"
2125*6236dae4SAndroid Build Coastguard Worker "              See this online resource for further details:\n"
2126*6236dae4SAndroid Build Coastguard Worker , stdout);
2127*6236dae4SAndroid Build Coastguard Worker  fputs(
2128*6236dae4SAndroid Build Coastguard Worker "               https://curl.se/docs/sslcerts.html\n"
2129*6236dae4SAndroid Build Coastguard Worker "\n"
2130*6236dae4SAndroid Build Coastguard Worker "              WARNING: this makes the transfer insecure.\n"
2131*6236dae4SAndroid Build Coastguard Worker "\n"
2132*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2133*6236dae4SAndroid Build Coastguard Worker "               curl --insecure https://example.com\n"
2134*6236dae4SAndroid Build Coastguard Worker "\n"
2135*6236dae4SAndroid Build Coastguard Worker "              See also --proxy-insecure and --cacert.\n"
2136*6236dae4SAndroid Build Coastguard Worker "\n"
2137*6236dae4SAndroid Build Coastguard Worker "       --interface <name>\n"
2138*6236dae4SAndroid Build Coastguard Worker "              Perform an operation using a specified interface. You can  enter\n"
2139*6236dae4SAndroid Build Coastguard Worker "              interface  name,  IP address or host name. An example could look\n"
2140*6236dae4SAndroid Build Coastguard Worker "              like:\n"
2141*6236dae4SAndroid Build Coastguard Worker "\n"
2142*6236dae4SAndroid Build Coastguard Worker , stdout);
2143*6236dae4SAndroid Build Coastguard Worker  fputs(
2144*6236dae4SAndroid Build Coastguard Worker "               curl --interface eth0:1 https://www.example.com/\n"
2145*6236dae4SAndroid Build Coastguard Worker "\n"
2146*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
2147*6236dae4SAndroid Build Coastguard Worker "              On Linux it can be used to specify a VRF, but the  binary  needs\n"
2148*6236dae4SAndroid Build Coastguard Worker "              to  either  have CAP_NET_RAW or to be run as root. More informa-\n"
2149*6236dae4SAndroid Build Coastguard Worker "              tion  about  Linux  VRF:   https://www.kernel.org/doc/Documenta-\n"
2150*6236dae4SAndroid Build Coastguard Worker "              tion/networking/vrf.txt\n"
2151*6236dae4SAndroid Build Coastguard Worker "\n"
2152*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2153*6236dae4SAndroid Build Coastguard Worker "               curl --interface eth0 https://example.com\n"
2154*6236dae4SAndroid Build Coastguard Worker , stdout);
2155*6236dae4SAndroid Build Coastguard Worker  fputs(
2156*6236dae4SAndroid Build Coastguard Worker "\n"
2157*6236dae4SAndroid Build Coastguard Worker "              See also --dns-interface.\n"
2158*6236dae4SAndroid Build Coastguard Worker "\n"
2159*6236dae4SAndroid Build Coastguard Worker "       -4, --ipv4\n"
2160*6236dae4SAndroid Build Coastguard Worker "              This  option tells curl to resolve names to IPv4 addresses only,\n"
2161*6236dae4SAndroid Build Coastguard Worker "              and not for example try IPv6.\n"
2162*6236dae4SAndroid Build Coastguard Worker "\n"
2163*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2164*6236dae4SAndroid Build Coastguard Worker "               curl --ipv4 https://example.com\n"
2165*6236dae4SAndroid Build Coastguard Worker "\n"
2166*6236dae4SAndroid Build Coastguard Worker "              See also  --http1.1  and  --http2.  This  option  overrides  -6,\n"
2167*6236dae4SAndroid Build Coastguard Worker "              --ipv6.\n"
2168*6236dae4SAndroid Build Coastguard Worker "\n"
2169*6236dae4SAndroid Build Coastguard Worker "       -6, --ipv6\n"
2170*6236dae4SAndroid Build Coastguard Worker "              This  option tells curl to resolve names to IPv6 addresses only,\n"
2171*6236dae4SAndroid Build Coastguard Worker "              and not for example try IPv4.\n"
2172*6236dae4SAndroid Build Coastguard Worker "\n"
2173*6236dae4SAndroid Build Coastguard Worker , stdout);
2174*6236dae4SAndroid Build Coastguard Worker  fputs(
2175*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2176*6236dae4SAndroid Build Coastguard Worker "               curl --ipv6 https://example.com\n"
2177*6236dae4SAndroid Build Coastguard Worker "\n"
2178*6236dae4SAndroid Build Coastguard Worker "              See also  --http1.1  and  --http2.  This  option  overrides  -4,\n"
2179*6236dae4SAndroid Build Coastguard Worker "              --ipv4.\n"
2180*6236dae4SAndroid Build Coastguard Worker "\n"
2181*6236dae4SAndroid Build Coastguard Worker "       -j, --junk-session-cookies\n"
2182*6236dae4SAndroid Build Coastguard Worker "              (HTTP) When curl is told to read cookies from a given file, this\n"
2183*6236dae4SAndroid Build Coastguard Worker "              option will make it discard all \"session cookies\". This will ba-\n"
2184*6236dae4SAndroid Build Coastguard Worker "              sically  have  the  same  effect as if a new session is started.\n"
2185*6236dae4SAndroid Build Coastguard Worker , stdout);
2186*6236dae4SAndroid Build Coastguard Worker  fputs(
2187*6236dae4SAndroid Build Coastguard Worker "              Typical browsers always discard session cookies  when  they  are\n"
2188*6236dae4SAndroid Build Coastguard Worker "              closed down.\n"
2189*6236dae4SAndroid Build Coastguard Worker "\n"
2190*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2191*6236dae4SAndroid Build Coastguard Worker "               curl --junk-session-cookies -b cookies.txt https://example.com\n"
2192*6236dae4SAndroid Build Coastguard Worker "\n"
2193*6236dae4SAndroid Build Coastguard Worker "              See also -b, --cookie and -c, --cookie-jar.\n"
2194*6236dae4SAndroid Build Coastguard Worker "\n"
2195*6236dae4SAndroid Build Coastguard Worker "       --keepalive-time <seconds>\n"
2196*6236dae4SAndroid Build Coastguard Worker "              This  option sets the time a connection needs to remain idle be-\n"
2197*6236dae4SAndroid Build Coastguard Worker "              fore sending keepalive probes and the  time  between  individual\n"
2198*6236dae4SAndroid Build Coastguard Worker , stdout);
2199*6236dae4SAndroid Build Coastguard Worker  fputs(
2200*6236dae4SAndroid Build Coastguard Worker "              keepalive probes. It is currently effective on operating systems\n"
2201*6236dae4SAndroid Build Coastguard Worker "              offering  the  TCP_KEEPIDLE  and  TCP_KEEPINTVL  socket  options\n"
2202*6236dae4SAndroid Build Coastguard Worker "              (meaning  Linux, recent AIX, HP-UX and more). This option has no\n"
2203*6236dae4SAndroid Build Coastguard Worker "              effect if --no-keepalive is used.\n"
2204*6236dae4SAndroid Build Coastguard Worker "\n"
2205*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
2206*6236dae4SAndroid Build Coastguard Worker "              If unspecified, the option defaults to 60 seconds.\n"
2207*6236dae4SAndroid Build Coastguard Worker "\n"
2208*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2209*6236dae4SAndroid Build Coastguard Worker , stdout);
2210*6236dae4SAndroid Build Coastguard Worker  fputs(
2211*6236dae4SAndroid Build Coastguard Worker "               curl --keepalive-time 20 https://example.com\n"
2212*6236dae4SAndroid Build Coastguard Worker "\n"
2213*6236dae4SAndroid Build Coastguard Worker "       --key-type <type>\n"
2214*6236dae4SAndroid Build Coastguard Worker "              (TLS)  Private key file type. Specify which type your --key pro-\n"
2215*6236dae4SAndroid Build Coastguard Worker "              vided private key is. DER, PEM, and ENG are  supported.  If  not\n"
2216*6236dae4SAndroid Build Coastguard Worker "              specified, PEM is assumed.\n"
2217*6236dae4SAndroid Build Coastguard Worker "\n"
2218*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
2219*6236dae4SAndroid Build Coastguard Worker "\n"
2220*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2221*6236dae4SAndroid Build Coastguard Worker "               curl --key-type DER --key here https://example.com\n"
2222*6236dae4SAndroid Build Coastguard Worker "\n"
2223*6236dae4SAndroid Build Coastguard Worker "       --key <key>\n"
2224*6236dae4SAndroid Build Coastguard Worker , stdout);
2225*6236dae4SAndroid Build Coastguard Worker  fputs(
2226*6236dae4SAndroid Build Coastguard Worker "              (TLS SSH) Private key file name. Allows you to provide your pri-\n"
2227*6236dae4SAndroid Build Coastguard Worker "              vate key in this separate file. For SSH, if not specified,  curl\n"
2228*6236dae4SAndroid Build Coastguard Worker "              tries   the  following  candidates  in  order:  '~/.ssh/id_rsa',\n"
2229*6236dae4SAndroid Build Coastguard Worker "              '~/.ssh/id_dsa', './id_rsa', './id_dsa'.\n"
2230*6236dae4SAndroid Build Coastguard Worker "\n"
2231*6236dae4SAndroid Build Coastguard Worker "              If curl is built against OpenSSL library, and the engine  pkcs11\n"
2232*6236dae4SAndroid Build Coastguard Worker "              is available, then a PKCS#11 URI (RFC 7512) can be used to spec-\n"
2233*6236dae4SAndroid Build Coastguard Worker , stdout);
2234*6236dae4SAndroid Build Coastguard Worker  fputs(
2235*6236dae4SAndroid Build Coastguard Worker "              ify a private key located in a PKCS#11 device. A  string  begin-\n"
2236*6236dae4SAndroid Build Coastguard Worker "              ning  with  \"pkcs11:\" will be interpreted as a PKCS#11 URI. If a\n"
2237*6236dae4SAndroid Build Coastguard Worker "              PKCS#11 URI is provided, then the --engine option will be set as\n"
2238*6236dae4SAndroid Build Coastguard Worker "              \"pkcs11\"  if none was provided and the --key-type option will be\n"
2239*6236dae4SAndroid Build Coastguard Worker "              set as \"ENG\" if none was provided.\n"
2240*6236dae4SAndroid Build Coastguard Worker "\n"
2241*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
2242*6236dae4SAndroid Build Coastguard Worker "\n"
2243*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2244*6236dae4SAndroid Build Coastguard Worker , stdout);
2245*6236dae4SAndroid Build Coastguard Worker  fputs(
2246*6236dae4SAndroid Build Coastguard Worker "               curl --cert certificate --key here https://example.com\n"
2247*6236dae4SAndroid Build Coastguard Worker "\n"
2248*6236dae4SAndroid Build Coastguard Worker "       --krb <level>\n"
2249*6236dae4SAndroid Build Coastguard Worker "              (FTP) Enable Kerberos authentication and use. The level must  be\n"
2250*6236dae4SAndroid Build Coastguard Worker "              entered and should be one of 'clear', 'safe', 'confidential', or\n"
2251*6236dae4SAndroid Build Coastguard Worker "              'private'. Should you use a level that  is  not  one  of  these,\n"
2252*6236dae4SAndroid Build Coastguard Worker "              'private' will instead be used.\n"
2253*6236dae4SAndroid Build Coastguard Worker "\n"
2254*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
2255*6236dae4SAndroid Build Coastguard Worker "\n"
2256*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2257*6236dae4SAndroid Build Coastguard Worker , stdout);
2258*6236dae4SAndroid Build Coastguard Worker  fputs(
2259*6236dae4SAndroid Build Coastguard Worker "               curl --krb clear ftp://example.com/\n"
2260*6236dae4SAndroid Build Coastguard Worker "\n"
2261*6236dae4SAndroid Build Coastguard Worker "              --krb  requires that the underlying libcurl was built to support\n"
2262*6236dae4SAndroid Build Coastguard Worker "              Kerberos.\n"
2263*6236dae4SAndroid Build Coastguard Worker "\n"
2264*6236dae4SAndroid Build Coastguard Worker "       --libcurl <file>\n"
2265*6236dae4SAndroid Build Coastguard Worker "              Append this option to any ordinary curl command  line,  and  you\n"
2266*6236dae4SAndroid Build Coastguard Worker "              will  get  libcurl-using  C source code written to the file that\n"
2267*6236dae4SAndroid Build Coastguard Worker "              does the equivalent of what your command-line operation does!\n"
2268*6236dae4SAndroid Build Coastguard Worker "\n"
2269*6236dae4SAndroid Build Coastguard Worker "              This option is global and does not need to be specified for each\n"
2270*6236dae4SAndroid Build Coastguard Worker , stdout);
2271*6236dae4SAndroid Build Coastguard Worker  fputs(
2272*6236dae4SAndroid Build Coastguard Worker "              use of -:, --next.\n"
2273*6236dae4SAndroid Build Coastguard Worker "\n"
2274*6236dae4SAndroid Build Coastguard Worker "              If  this  option is used several times, the last given file name\n"
2275*6236dae4SAndroid Build Coastguard Worker "              will be used.\n"
2276*6236dae4SAndroid Build Coastguard Worker "\n"
2277*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2278*6236dae4SAndroid Build Coastguard Worker "               curl --libcurl client.c https://example.com\n"
2279*6236dae4SAndroid Build Coastguard Worker "\n"
2280*6236dae4SAndroid Build Coastguard Worker "       --limit-rate <speed>\n"
2281*6236dae4SAndroid Build Coastguard Worker "              Specify the maximum transfer rate you want curl  to  use  -  for\n"
2282*6236dae4SAndroid Build Coastguard Worker "              both downloads and uploads. This feature is useful if you have a\n"
2283*6236dae4SAndroid Build Coastguard Worker "              limited pipe and you would like your transfer not  to  use  your\n"
2284*6236dae4SAndroid Build Coastguard Worker , stdout);
2285*6236dae4SAndroid Build Coastguard Worker  fputs(
2286*6236dae4SAndroid Build Coastguard Worker "              entire bandwidth. To make it slower than it otherwise would be.\n"
2287*6236dae4SAndroid Build Coastguard Worker "\n"
2288*6236dae4SAndroid Build Coastguard Worker "              The  given speed is measured in bytes/second, unless a suffix is\n"
2289*6236dae4SAndroid Build Coastguard Worker "              appended.  Appending 'k' or 'K' will count the number  as  kilo-\n"
2290*6236dae4SAndroid Build Coastguard Worker "              bytes,  'm' or 'M' makes it megabytes, while 'g' or 'G' makes it\n"
2291*6236dae4SAndroid Build Coastguard Worker "              gigabytes. The suffixes (k, M, G, T, P) are 1024 based. For  ex-\n"
2292*6236dae4SAndroid Build Coastguard Worker "              ample 1k is 1024. Examples: 200K, 3m and 1G.\n"
2293*6236dae4SAndroid Build Coastguard Worker "\n"
2294*6236dae4SAndroid Build Coastguard Worker , stdout);
2295*6236dae4SAndroid Build Coastguard Worker  fputs(
2296*6236dae4SAndroid Build Coastguard Worker "              The rate limiting logic works on averaging the transfer speed to\n"
2297*6236dae4SAndroid Build Coastguard Worker "              no more than the set threshold over a period  of  multiple  sec-\n"
2298*6236dae4SAndroid Build Coastguard Worker "              onds.\n"
2299*6236dae4SAndroid Build Coastguard Worker "\n"
2300*6236dae4SAndroid Build Coastguard Worker "              If  you  also use the -Y, --speed-limit option, that option will\n"
2301*6236dae4SAndroid Build Coastguard Worker "              take precedence and might cripple the rate-limiting slightly, to\n"
2302*6236dae4SAndroid Build Coastguard Worker "              help keeping the speed-limit logic working.\n"
2303*6236dae4SAndroid Build Coastguard Worker "\n"
2304*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
2305*6236dae4SAndroid Build Coastguard Worker "\n"
2306*6236dae4SAndroid Build Coastguard Worker "              Examples:\n"
2307*6236dae4SAndroid Build Coastguard Worker , stdout);
2308*6236dae4SAndroid Build Coastguard Worker  fputs(
2309*6236dae4SAndroid Build Coastguard Worker "               curl --limit-rate 100K https://example.com\n"
2310*6236dae4SAndroid Build Coastguard Worker "               curl --limit-rate 1000 https://example.com\n"
2311*6236dae4SAndroid Build Coastguard Worker "               curl --limit-rate 10M https://example.com\n"
2312*6236dae4SAndroid Build Coastguard Worker "\n"
2313*6236dae4SAndroid Build Coastguard Worker "       -l, --list-only\n"
2314*6236dae4SAndroid Build Coastguard Worker "              (FTP  POP3)  (FTP)  When  listing  an FTP directory, this switch\n"
2315*6236dae4SAndroid Build Coastguard Worker "              forces a name-only view. This is especially useful if  the  user\n"
2316*6236dae4SAndroid Build Coastguard Worker "              wants  to  machine-parse  the contents of an FTP directory since\n"
2317*6236dae4SAndroid Build Coastguard Worker , stdout);
2318*6236dae4SAndroid Build Coastguard Worker  fputs(
2319*6236dae4SAndroid Build Coastguard Worker "              the normal directory view does not use a standard look  or  for-\n"
2320*6236dae4SAndroid Build Coastguard Worker "              mat.  When  used like this, the option causes an NLST command to\n"
2321*6236dae4SAndroid Build Coastguard Worker "              be sent to the server instead of LIST.\n"
2322*6236dae4SAndroid Build Coastguard Worker "\n"
2323*6236dae4SAndroid Build Coastguard Worker "              Note: Some FTP servers list only  files  in  their  response  to\n"
2324*6236dae4SAndroid Build Coastguard Worker "              NLST; they do not include sub-directories and symbolic links.\n"
2325*6236dae4SAndroid Build Coastguard Worker "\n"
2326*6236dae4SAndroid Build Coastguard Worker "              (POP3)  When  retrieving a specific email from POP3, this switch\n"
2327*6236dae4SAndroid Build Coastguard Worker , stdout);
2328*6236dae4SAndroid Build Coastguard Worker  fputs(
2329*6236dae4SAndroid Build Coastguard Worker "              forces a LIST command to be performed instead of RETR.  This  is\n"
2330*6236dae4SAndroid Build Coastguard Worker "              particularly  useful if the user wants to see if a specific mes-\n"
2331*6236dae4SAndroid Build Coastguard Worker "              sage-id exists on the server and what size it is.\n"
2332*6236dae4SAndroid Build Coastguard Worker "\n"
2333*6236dae4SAndroid Build Coastguard Worker "              Note: When combined with -X, --request, this option can be  used\n"
2334*6236dae4SAndroid Build Coastguard Worker "              to  send a UIDL command instead, so the user may use the email's\n"
2335*6236dae4SAndroid Build Coastguard Worker "              unique identifier rather than its message-id  to  make  the  re-\n"
2336*6236dae4SAndroid Build Coastguard Worker "              quest.\n"
2337*6236dae4SAndroid Build Coastguard Worker "\n"
2338*6236dae4SAndroid Build Coastguard Worker , stdout);
2339*6236dae4SAndroid Build Coastguard Worker  fputs(
2340*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2341*6236dae4SAndroid Build Coastguard Worker "               curl --list-only ftp://example.com/dir/\n"
2342*6236dae4SAndroid Build Coastguard Worker "\n"
2343*6236dae4SAndroid Build Coastguard Worker "       --local-port <num/range>\n"
2344*6236dae4SAndroid Build Coastguard Worker "              Set  a  preferred single number or range (FROM-TO) of local port\n"
2345*6236dae4SAndroid Build Coastguard Worker "              numbers to use for the connection(s).  Note that port numbers by\n"
2346*6236dae4SAndroid Build Coastguard Worker "              nature  are a scarce resource that will be busy at times so set-\n"
2347*6236dae4SAndroid Build Coastguard Worker "              ting this range to something too narrow might cause  unnecessary\n"
2348*6236dae4SAndroid Build Coastguard Worker "              connection setup failures.\n"
2349*6236dae4SAndroid Build Coastguard Worker "\n"
2350*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2351*6236dae4SAndroid Build Coastguard Worker , stdout);
2352*6236dae4SAndroid Build Coastguard Worker  fputs(
2353*6236dae4SAndroid Build Coastguard Worker "               curl --local-port 1000-3000 https://example.com\n"
2354*6236dae4SAndroid Build Coastguard Worker "\n"
2355*6236dae4SAndroid Build Coastguard Worker "       --location-trusted\n"
2356*6236dae4SAndroid Build Coastguard Worker "              (HTTP)  Like  -L,  --location, but will allow sending the name +\n"
2357*6236dae4SAndroid Build Coastguard Worker "              password to all hosts that the site may redirect to. This may or\n"
2358*6236dae4SAndroid Build Coastguard Worker "              may not introduce a security breach if the site redirects you to\n"
2359*6236dae4SAndroid Build Coastguard Worker "              a site to which you will send your authentication info (which is\n"
2360*6236dae4SAndroid Build Coastguard Worker "              plaintext in the case of HTTP Basic authentication).\n"
2361*6236dae4SAndroid Build Coastguard Worker "\n"
2362*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2363*6236dae4SAndroid Build Coastguard Worker , stdout);
2364*6236dae4SAndroid Build Coastguard Worker  fputs(
2365*6236dae4SAndroid Build Coastguard Worker "               curl --location-trusted -u user:password https://example.com\n"
2366*6236dae4SAndroid Build Coastguard Worker "\n"
2367*6236dae4SAndroid Build Coastguard Worker "              See also -u, --user.\n"
2368*6236dae4SAndroid Build Coastguard Worker "\n"
2369*6236dae4SAndroid Build Coastguard Worker "       -L, --location\n"
2370*6236dae4SAndroid Build Coastguard Worker "              (HTTP)  If  the server reports that the requested page has moved\n"
2371*6236dae4SAndroid Build Coastguard Worker "              to a different location (indicated with a Location: header and a\n"
2372*6236dae4SAndroid Build Coastguard Worker "              3XX  response code), this option will make curl redo the request\n"
2373*6236dae4SAndroid Build Coastguard Worker "              on the new place. If used together with  -i,  --include  or  -I,\n"
2374*6236dae4SAndroid Build Coastguard Worker , stdout);
2375*6236dae4SAndroid Build Coastguard Worker  fputs(
2376*6236dae4SAndroid Build Coastguard Worker "              --head, headers from all requested pages will be shown. When au-\n"
2377*6236dae4SAndroid Build Coastguard Worker "              thentication is used, curl only sends  its  credentials  to  the\n"
2378*6236dae4SAndroid Build Coastguard Worker "              initial  host.  If a redirect takes curl to a different host, it\n"
2379*6236dae4SAndroid Build Coastguard Worker "              will not be able to intercept the user+password. See also  --lo-\n"
2380*6236dae4SAndroid Build Coastguard Worker "              cation-trusted  on  how to change this. You can limit the amount\n"
2381*6236dae4SAndroid Build Coastguard Worker "              of redirects to follow by using the --max-redirs option.\n"
2382*6236dae4SAndroid Build Coastguard Worker "\n"
2383*6236dae4SAndroid Build Coastguard Worker , stdout);
2384*6236dae4SAndroid Build Coastguard Worker  fputs(
2385*6236dae4SAndroid Build Coastguard Worker "              When curl follows a redirect and if the request is  a  POST,  it\n"
2386*6236dae4SAndroid Build Coastguard Worker "              will  send the following request with a GET if the HTTP response\n"
2387*6236dae4SAndroid Build Coastguard Worker "              was 301, 302, or 303. If the response code  was  any  other  3xx\n"
2388*6236dae4SAndroid Build Coastguard Worker "              code, curl will re-send the following request using the same un-\n"
2389*6236dae4SAndroid Build Coastguard Worker "              modified method.\n"
2390*6236dae4SAndroid Build Coastguard Worker "\n"
2391*6236dae4SAndroid Build Coastguard Worker "              You can tell curl to not change POST requests to GET after a 30x\n"
2392*6236dae4SAndroid Build Coastguard Worker , stdout);
2393*6236dae4SAndroid Build Coastguard Worker  fputs(
2394*6236dae4SAndroid Build Coastguard Worker "              response  by  using  the  dedicated options for that: --post301,\n"
2395*6236dae4SAndroid Build Coastguard Worker "              --post302 and --post303.\n"
2396*6236dae4SAndroid Build Coastguard Worker "\n"
2397*6236dae4SAndroid Build Coastguard Worker "              The method set with -X,  --request  overrides  the  method  curl\n"
2398*6236dae4SAndroid Build Coastguard Worker "              would otherwise select to use.\n"
2399*6236dae4SAndroid Build Coastguard Worker "\n"
2400*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2401*6236dae4SAndroid Build Coastguard Worker "               curl -L https://example.com\n"
2402*6236dae4SAndroid Build Coastguard Worker "\n"
2403*6236dae4SAndroid Build Coastguard Worker "       --login-options <options>\n"
2404*6236dae4SAndroid Build Coastguard Worker "              (IMAP  POP3 SMTP) Specify the login options to use during server\n"
2405*6236dae4SAndroid Build Coastguard Worker "              authentication.\n"
2406*6236dae4SAndroid Build Coastguard Worker "\n"
2407*6236dae4SAndroid Build Coastguard Worker , stdout);
2408*6236dae4SAndroid Build Coastguard Worker  fputs(
2409*6236dae4SAndroid Build Coastguard Worker "              You can use login options to specify protocol  specific  options\n"
2410*6236dae4SAndroid Build Coastguard Worker "              that  may  be  used during authentication. At present only IMAP,\n"
2411*6236dae4SAndroid Build Coastguard Worker "              POP3 and SMTP support login options. For more information  about\n"
2412*6236dae4SAndroid Build Coastguard Worker "              login  options  please  see  RFC  2384,  RFC 5092 and IETF draft\n"
2413*6236dae4SAndroid Build Coastguard Worker "              draft-earhart-url-smtp-00.txt\n"
2414*6236dae4SAndroid Build Coastguard Worker "\n"
2415*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
2416*6236dae4SAndroid Build Coastguard Worker "\n"
2417*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2418*6236dae4SAndroid Build Coastguard Worker , stdout);
2419*6236dae4SAndroid Build Coastguard Worker  fputs(
2420*6236dae4SAndroid Build Coastguard Worker "               curl --login-options 'AUTH=*' imap://example.com\n"
2421*6236dae4SAndroid Build Coastguard Worker "\n"
2422*6236dae4SAndroid Build Coastguard Worker "              Added in 7.34.0.\n"
2423*6236dae4SAndroid Build Coastguard Worker "\n"
2424*6236dae4SAndroid Build Coastguard Worker "       --mail-auth <address>\n"
2425*6236dae4SAndroid Build Coastguard Worker "              (SMTP) Specify a single address. This will be  used  to  specify\n"
2426*6236dae4SAndroid Build Coastguard Worker "              the  authentication  address  (identity)  of a submitted message\n"
2427*6236dae4SAndroid Build Coastguard Worker "              that is being relayed to another server.\n"
2428*6236dae4SAndroid Build Coastguard Worker "\n"
2429*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2430*6236dae4SAndroid Build Coastguard Worker "               curl --mail-auth [email protected] -T mail smtp://example.com/\n"
2431*6236dae4SAndroid Build Coastguard Worker "\n"
2432*6236dae4SAndroid Build Coastguard Worker "              See also --mail-rcpt and --mail-from.\n"
2433*6236dae4SAndroid Build Coastguard Worker "\n"
2434*6236dae4SAndroid Build Coastguard Worker , stdout);
2435*6236dae4SAndroid Build Coastguard Worker  fputs(
2436*6236dae4SAndroid Build Coastguard Worker "       --mail-from <address>\n"
2437*6236dae4SAndroid Build Coastguard Worker "              (SMTP) Specify a single address that the given mail  should  get\n"
2438*6236dae4SAndroid Build Coastguard Worker "              sent from.\n"
2439*6236dae4SAndroid Build Coastguard Worker "\n"
2440*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2441*6236dae4SAndroid Build Coastguard Worker "               curl --mail-from [email protected] -T mail smtp://example.com/\n"
2442*6236dae4SAndroid Build Coastguard Worker "\n"
2443*6236dae4SAndroid Build Coastguard Worker "              See also --mail-rcpt and --mail-auth.\n"
2444*6236dae4SAndroid Build Coastguard Worker "\n"
2445*6236dae4SAndroid Build Coastguard Worker "       --mail-rcpt-allowfails\n"
2446*6236dae4SAndroid Build Coastguard Worker "              (SMTP) When sending data to multiple recipients, by default curl\n"
2447*6236dae4SAndroid Build Coastguard Worker "              will abort SMTP conversation if at least one of  the  recipients\n"
2448*6236dae4SAndroid Build Coastguard Worker , stdout);
2449*6236dae4SAndroid Build Coastguard Worker  fputs(
2450*6236dae4SAndroid Build Coastguard Worker "              causes RCPT TO command to return an error.\n"
2451*6236dae4SAndroid Build Coastguard Worker "\n"
2452*6236dae4SAndroid Build Coastguard Worker "              The  default  behavior can be changed by passing --mail-rcpt-al-\n"
2453*6236dae4SAndroid Build Coastguard Worker "              lowfails command-line option which will make curl ignore  errors\n"
2454*6236dae4SAndroid Build Coastguard Worker "              and proceed with the remaining valid recipients.\n"
2455*6236dae4SAndroid Build Coastguard Worker "\n"
2456*6236dae4SAndroid Build Coastguard Worker "              If  all  recipients  trigger  RCPT  TO failures and this flag is\n"
2457*6236dae4SAndroid Build Coastguard Worker "              specified, curl will still abort the SMTP conversation  and  re-\n"
2458*6236dae4SAndroid Build Coastguard Worker , stdout);
2459*6236dae4SAndroid Build Coastguard Worker  fputs(
2460*6236dae4SAndroid Build Coastguard Worker "              turn the error received from to the last RCPT TO command.\n"
2461*6236dae4SAndroid Build Coastguard Worker "\n"
2462*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2463*6236dae4SAndroid Build Coastguard Worker "               curl --mail-rcpt-allowfails --mail-rcpt [email protected] smtp://example.com\n"
2464*6236dae4SAndroid Build Coastguard Worker "\n"
2465*6236dae4SAndroid Build Coastguard Worker "              Added in 7.69.0.\n"
2466*6236dae4SAndroid Build Coastguard Worker "\n"
2467*6236dae4SAndroid Build Coastguard Worker "       --mail-rcpt <address>\n"
2468*6236dae4SAndroid Build Coastguard Worker "              (SMTP)  Specify  a  single  e-mail address, user name or mailing\n"
2469*6236dae4SAndroid Build Coastguard Worker "              list name. Repeat this option several times to send to  multiple\n"
2470*6236dae4SAndroid Build Coastguard Worker "              recipients.\n"
2471*6236dae4SAndroid Build Coastguard Worker "\n"
2472*6236dae4SAndroid Build Coastguard Worker , stdout);
2473*6236dae4SAndroid Build Coastguard Worker  fputs(
2474*6236dae4SAndroid Build Coastguard Worker "              When  performing an address verification (VRFY command), the re-\n"
2475*6236dae4SAndroid Build Coastguard Worker "              cipient should be specified as the user name or  user  name  and\n"
2476*6236dae4SAndroid Build Coastguard Worker "              domain (as per Section 3.5 of RFC5321). (Added in 7.34.0)\n"
2477*6236dae4SAndroid Build Coastguard Worker "\n"
2478*6236dae4SAndroid Build Coastguard Worker "              When performing a mailing list expand (EXPN command), the recip-\n"
2479*6236dae4SAndroid Build Coastguard Worker "              ient should be specified using the mailing list  name,  such  as\n"
2480*6236dae4SAndroid Build Coastguard Worker "              \"Friends\" or \"London-Office\".  (Added in 7.34.0)\n"
2481*6236dae4SAndroid Build Coastguard Worker "\n"
2482*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2483*6236dae4SAndroid Build Coastguard Worker , stdout);
2484*6236dae4SAndroid Build Coastguard Worker  fputs(
2485*6236dae4SAndroid Build Coastguard Worker "               curl --mail-rcpt [email protected] smtp://example.com\n"
2486*6236dae4SAndroid Build Coastguard Worker "\n"
2487*6236dae4SAndroid Build Coastguard Worker "       -M, --manual\n"
2488*6236dae4SAndroid Build Coastguard Worker "              Manual. Display the huge help text.\n"
2489*6236dae4SAndroid Build Coastguard Worker "\n"
2490*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2491*6236dae4SAndroid Build Coastguard Worker "               curl --manual\n"
2492*6236dae4SAndroid Build Coastguard Worker "\n"
2493*6236dae4SAndroid Build Coastguard Worker "       --max-filesize <bytes>\n"
2494*6236dae4SAndroid Build Coastguard Worker "              (FTP HTTP MQTT) Specify the maximum size (in bytes) of a file to\n"
2495*6236dae4SAndroid Build Coastguard Worker "              download. If the file requested is larger than this  value,  the\n"
2496*6236dae4SAndroid Build Coastguard Worker "              transfer will not start and curl will return with exit code 63.\n"
2497*6236dae4SAndroid Build Coastguard Worker "\n"
2498*6236dae4SAndroid Build Coastguard Worker , stdout);
2499*6236dae4SAndroid Build Coastguard Worker  fputs(
2500*6236dae4SAndroid Build Coastguard Worker "              A  size  modifier may be used. For example, Appending 'k' or 'K'\n"
2501*6236dae4SAndroid Build Coastguard Worker "              will count  the  number  as  kilobytes,  'm'  or  'M'  makes  it\n"
2502*6236dae4SAndroid Build Coastguard Worker "              megabytes,  while 'g' or 'G' makes it gigabytes. Examples: 200K,\n"
2503*6236dae4SAndroid Build Coastguard Worker "              3m and 1G. (Added in 7.58.0)\n"
2504*6236dae4SAndroid Build Coastguard Worker "\n"
2505*6236dae4SAndroid Build Coastguard Worker "              NOTE: The file size is not always known prior to  download,  and\n"
2506*6236dae4SAndroid Build Coastguard Worker "              for such files this option has no effect even if the file trans-\n"
2507*6236dae4SAndroid Build Coastguard Worker , stdout);
2508*6236dae4SAndroid Build Coastguard Worker  fputs(
2509*6236dae4SAndroid Build Coastguard Worker "              fer ends up being larger than this given limit.  Example:\n"
2510*6236dae4SAndroid Build Coastguard Worker "               curl --max-filesize 100K https://example.com\n"
2511*6236dae4SAndroid Build Coastguard Worker "\n"
2512*6236dae4SAndroid Build Coastguard Worker "              See also --limit-rate.\n"
2513*6236dae4SAndroid Build Coastguard Worker "\n"
2514*6236dae4SAndroid Build Coastguard Worker "       --max-redirs <num>\n"
2515*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Set maximum number of redirections to  follow.  When  -L,\n"
2516*6236dae4SAndroid Build Coastguard Worker "              --location  is  used,  to  prevent  curl from following too many\n"
2517*6236dae4SAndroid Build Coastguard Worker "              redirects, by default, the limit is set  to  50  redirects.  Set\n"
2518*6236dae4SAndroid Build Coastguard Worker "              this option to -1 to make it unlimited.\n"
2519*6236dae4SAndroid Build Coastguard Worker "\n"
2520*6236dae4SAndroid Build Coastguard Worker , stdout);
2521*6236dae4SAndroid Build Coastguard Worker  fputs(
2522*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
2523*6236dae4SAndroid Build Coastguard Worker "\n"
2524*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2525*6236dae4SAndroid Build Coastguard Worker "               curl --max-redirs 3 --location https://example.com\n"
2526*6236dae4SAndroid Build Coastguard Worker "\n"
2527*6236dae4SAndroid Build Coastguard Worker "       -m, --max-time <fractional seconds>\n"
2528*6236dae4SAndroid Build Coastguard Worker "              Maximum  time  in  seconds that you allow the whole operation to\n"
2529*6236dae4SAndroid Build Coastguard Worker "              take.  This is useful for preventing your batch jobs from  hang-\n"
2530*6236dae4SAndroid Build Coastguard Worker "              ing  for  hours due to slow networks or links going down.  Since\n"
2531*6236dae4SAndroid Build Coastguard Worker , stdout);
2532*6236dae4SAndroid Build Coastguard Worker  fputs(
2533*6236dae4SAndroid Build Coastguard Worker "              7.32.0, this option accepts decimal values, but the actual time-\n"
2534*6236dae4SAndroid Build Coastguard Worker "              out will decrease in accuracy as the specified timeout increases\n"
2535*6236dae4SAndroid Build Coastguard Worker "              in decimal precision.\n"
2536*6236dae4SAndroid Build Coastguard Worker "\n"
2537*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
2538*6236dae4SAndroid Build Coastguard Worker "\n"
2539*6236dae4SAndroid Build Coastguard Worker "              Examples:\n"
2540*6236dae4SAndroid Build Coastguard Worker "               curl --max-time 10 https://example.com\n"
2541*6236dae4SAndroid Build Coastguard Worker "               curl --max-time 2.92 https://example.com\n"
2542*6236dae4SAndroid Build Coastguard Worker "\n"
2543*6236dae4SAndroid Build Coastguard Worker "              See also --connect-timeout.\n"
2544*6236dae4SAndroid Build Coastguard Worker "\n"
2545*6236dae4SAndroid Build Coastguard Worker "       --metalink\n"
2546*6236dae4SAndroid Build Coastguard Worker , stdout);
2547*6236dae4SAndroid Build Coastguard Worker  fputs(
2548*6236dae4SAndroid Build Coastguard Worker "              This option was previously used to specify a metalink  resource.\n"
2549*6236dae4SAndroid Build Coastguard Worker "              Metalink  support has been disabled in curl since 7.78.0 for se-\n"
2550*6236dae4SAndroid Build Coastguard Worker "              curity reasons.\n"
2551*6236dae4SAndroid Build Coastguard Worker "\n"
2552*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2553*6236dae4SAndroid Build Coastguard Worker "               curl --metalink file https://example.com\n"
2554*6236dae4SAndroid Build Coastguard Worker "\n"
2555*6236dae4SAndroid Build Coastguard Worker "       --negotiate\n"
2556*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Enables Negotiate (SPNEGO) authentication.\n"
2557*6236dae4SAndroid Build Coastguard Worker "\n"
2558*6236dae4SAndroid Build Coastguard Worker "              This option requires a library built with GSS-API or  SSPI  sup-\n"
2559*6236dae4SAndroid Build Coastguard Worker , stdout);
2560*6236dae4SAndroid Build Coastguard Worker  fputs(
2561*6236dae4SAndroid Build Coastguard Worker "              port.  Use  -V,  --version  to  see  if  your curl supports GSS-\n"
2562*6236dae4SAndroid Build Coastguard Worker "              API/SSPI or SPNEGO.\n"
2563*6236dae4SAndroid Build Coastguard Worker "\n"
2564*6236dae4SAndroid Build Coastguard Worker "              When using this option, you must also provide a fake -u,  --user\n"
2565*6236dae4SAndroid Build Coastguard Worker "              option  to  activate the authentication code properly. Sending a\n"
2566*6236dae4SAndroid Build Coastguard Worker "              '-u :' is enough as the user name  and  password  from  the  -u,\n"
2567*6236dae4SAndroid Build Coastguard Worker "              --user option are not actually used.\n"
2568*6236dae4SAndroid Build Coastguard Worker "\n"
2569*6236dae4SAndroid Build Coastguard Worker "              If  this  option  is  used  several times, only the first one is\n"
2570*6236dae4SAndroid Build Coastguard Worker , stdout);
2571*6236dae4SAndroid Build Coastguard Worker  fputs(
2572*6236dae4SAndroid Build Coastguard Worker "              used.\n"
2573*6236dae4SAndroid Build Coastguard Worker "\n"
2574*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2575*6236dae4SAndroid Build Coastguard Worker "               curl --negotiate -u : https://example.com\n"
2576*6236dae4SAndroid Build Coastguard Worker "\n"
2577*6236dae4SAndroid Build Coastguard Worker "              See also --basic, --ntlm, --anyauth and --proxy-negotiate.\n"
2578*6236dae4SAndroid Build Coastguard Worker "\n"
2579*6236dae4SAndroid Build Coastguard Worker "       --netrc-file <filename>\n"
2580*6236dae4SAndroid Build Coastguard Worker "              This option is similar to -n, --netrc, except that  you  provide\n"
2581*6236dae4SAndroid Build Coastguard Worker "              the  path  (absolute  or  relative)  to the netrc file that curl\n"
2582*6236dae4SAndroid Build Coastguard Worker "              should use.  You can only specify one netrc file per invocation.\n"
2583*6236dae4SAndroid Build Coastguard Worker , stdout);
2584*6236dae4SAndroid Build Coastguard Worker  fputs(
2585*6236dae4SAndroid Build Coastguard Worker "              If  several --netrc-file options are provided, the last one will\n"
2586*6236dae4SAndroid Build Coastguard Worker "              be used.\n"
2587*6236dae4SAndroid Build Coastguard Worker "\n"
2588*6236dae4SAndroid Build Coastguard Worker "              It will abide by --netrc-optional if specified.\n"
2589*6236dae4SAndroid Build Coastguard Worker "\n"
2590*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2591*6236dae4SAndroid Build Coastguard Worker "               curl --netrc-file netrc https://example.com\n"
2592*6236dae4SAndroid Build Coastguard Worker "\n"
2593*6236dae4SAndroid Build Coastguard Worker "              This option overrides -n, --netrc.\n"
2594*6236dae4SAndroid Build Coastguard Worker "\n"
2595*6236dae4SAndroid Build Coastguard Worker "       --netrc-optional\n"
2596*6236dae4SAndroid Build Coastguard Worker "              Similar to -n, --netrc, but this option makes the  .netrc  usage\n"
2597*6236dae4SAndroid Build Coastguard Worker "              optional and not mandatory as the -n, --netrc option does.\n"
2598*6236dae4SAndroid Build Coastguard Worker "\n"
2599*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2600*6236dae4SAndroid Build Coastguard Worker , stdout);
2601*6236dae4SAndroid Build Coastguard Worker  fputs(
2602*6236dae4SAndroid Build Coastguard Worker "               curl --netrc-optional https://example.com\n"
2603*6236dae4SAndroid Build Coastguard Worker "\n"
2604*6236dae4SAndroid Build Coastguard Worker "              See also --netrc-file. This option overrides -n, --netrc.\n"
2605*6236dae4SAndroid Build Coastguard Worker "\n"
2606*6236dae4SAndroid Build Coastguard Worker "       -n, --netrc\n"
2607*6236dae4SAndroid Build Coastguard Worker "              Makes  curl  scan  the  .netrc  (_netrc  on Windows) file in the\n"
2608*6236dae4SAndroid Build Coastguard Worker "              user's home directory for login name and password. This is typi-\n"
2609*6236dae4SAndroid Build Coastguard Worker "              cally  used for FTP on Unix. If used with HTTP, curl will enable\n"
2610*6236dae4SAndroid Build Coastguard Worker "              user authentication. See netrc(5) and ftp(1) for details on  the\n"
2611*6236dae4SAndroid Build Coastguard Worker , stdout);
2612*6236dae4SAndroid Build Coastguard Worker  fputs(
2613*6236dae4SAndroid Build Coastguard Worker "              file  format.  Curl will not complain if that file does not have\n"
2614*6236dae4SAndroid Build Coastguard Worker "              the right permissions (it should be neither  world-  nor  group-\n"
2615*6236dae4SAndroid Build Coastguard Worker "              readable).  The  environment variable \"HOME\" is used to find the\n"
2616*6236dae4SAndroid Build Coastguard Worker "              home directory.\n"
2617*6236dae4SAndroid Build Coastguard Worker "\n"
2618*6236dae4SAndroid Build Coastguard Worker "              A quick and simple example of how to setup  a  .netrc  to  allow\n"
2619*6236dae4SAndroid Build Coastguard Worker "              curl  to  FTP to the machine host.domain.com with user name 'my-\n"
2620*6236dae4SAndroid Build Coastguard Worker "              self' and password 'secret' should look similar to:\n"
2621*6236dae4SAndroid Build Coastguard Worker "\n"
2622*6236dae4SAndroid Build Coastguard Worker , stdout);
2623*6236dae4SAndroid Build Coastguard Worker  fputs(
2624*6236dae4SAndroid Build Coastguard Worker "              machine host.domain.com login myself password secret\n"
2625*6236dae4SAndroid Build Coastguard Worker "\n"
2626*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2627*6236dae4SAndroid Build Coastguard Worker "               curl --netrc https://example.com\n"
2628*6236dae4SAndroid Build Coastguard Worker "\n"
2629*6236dae4SAndroid Build Coastguard Worker "       -:, --next\n"
2630*6236dae4SAndroid Build Coastguard Worker "              Tells curl to use a separate operation for the following URL and\n"
2631*6236dae4SAndroid Build Coastguard Worker "              associated  options.  This  allows  you  to send several URL re-\n"
2632*6236dae4SAndroid Build Coastguard Worker "              quests, each with their own specific options, for example,  such\n"
2633*6236dae4SAndroid Build Coastguard Worker "              as different user names or custom requests for each.\n"
2634*6236dae4SAndroid Build Coastguard Worker "\n"
2635*6236dae4SAndroid Build Coastguard Worker , stdout);
2636*6236dae4SAndroid Build Coastguard Worker  fputs(
2637*6236dae4SAndroid Build Coastguard Worker "              -:,  --next  will  reset  all local options and only global ones\n"
2638*6236dae4SAndroid Build Coastguard Worker "              will have their values survive over to the  operation  following\n"
2639*6236dae4SAndroid Build Coastguard Worker "              the  -:,  --next  instruction. Global options include -v, --ver-\n"
2640*6236dae4SAndroid Build Coastguard Worker "              bose, --trace, --trace-ascii and --fail-early.\n"
2641*6236dae4SAndroid Build Coastguard Worker "\n"
2642*6236dae4SAndroid Build Coastguard Worker "              For example, you can do both a GET and a POST in a  single  com-\n"
2643*6236dae4SAndroid Build Coastguard Worker "              mand line:\n"
2644*6236dae4SAndroid Build Coastguard Worker "\n"
2645*6236dae4SAndroid Build Coastguard Worker "               curl www1.example.com --next -d postthis www2.example.com\n"
2646*6236dae4SAndroid Build Coastguard Worker "\n"
2647*6236dae4SAndroid Build Coastguard Worker , stdout);
2648*6236dae4SAndroid Build Coastguard Worker  fputs(
2649*6236dae4SAndroid Build Coastguard Worker "              Examples:\n"
2650*6236dae4SAndroid Build Coastguard Worker "               curl https://example.com --next -d postthis www2.example.com\n"
2651*6236dae4SAndroid Build Coastguard Worker "               curl -I https://example.com --next https://example.net/\n"
2652*6236dae4SAndroid Build Coastguard Worker "\n"
2653*6236dae4SAndroid Build Coastguard Worker "              Added in 7.36.0.\n"
2654*6236dae4SAndroid Build Coastguard Worker "\n"
2655*6236dae4SAndroid Build Coastguard Worker "       --no-alpn\n"
2656*6236dae4SAndroid Build Coastguard Worker "              (HTTPS)  Disable  the ALPN TLS extension. ALPN is enabled by de-\n"
2657*6236dae4SAndroid Build Coastguard Worker "              fault if libcurl was built with an  SSL  library  that  supports\n"
2658*6236dae4SAndroid Build Coastguard Worker "              ALPN.  ALPN is used by a libcurl that supports HTTP/2 to negoti-\n"
2659*6236dae4SAndroid Build Coastguard Worker , stdout);
2660*6236dae4SAndroid Build Coastguard Worker  fputs(
2661*6236dae4SAndroid Build Coastguard Worker "              ate HTTP/2 support with the server during https sessions.\n"
2662*6236dae4SAndroid Build Coastguard Worker "\n"
2663*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2664*6236dae4SAndroid Build Coastguard Worker "               curl --no-alpn https://example.com\n"
2665*6236dae4SAndroid Build Coastguard Worker "\n"
2666*6236dae4SAndroid Build Coastguard Worker "              See also --no-npn and --http2. --no-alpn requires that  the  un-\n"
2667*6236dae4SAndroid Build Coastguard Worker "              derlying libcurl was built to support TLS. Added in 7.36.0.\n"
2668*6236dae4SAndroid Build Coastguard Worker "\n"
2669*6236dae4SAndroid Build Coastguard Worker "       -N, --no-buffer\n"
2670*6236dae4SAndroid Build Coastguard Worker "              Disables the buffering of the output stream. In normal work sit-\n"
2671*6236dae4SAndroid Build Coastguard Worker "              uations, curl will use a standard buffered  output  stream  that\n"
2672*6236dae4SAndroid Build Coastguard Worker , stdout);
2673*6236dae4SAndroid Build Coastguard Worker  fputs(
2674*6236dae4SAndroid Build Coastguard Worker "              will have the effect that it will output the data in chunks, not\n"
2675*6236dae4SAndroid Build Coastguard Worker "              necessarily exactly when the data arrives.   Using  this  option\n"
2676*6236dae4SAndroid Build Coastguard Worker "              will disable that buffering.\n"
2677*6236dae4SAndroid Build Coastguard Worker "\n"
2678*6236dae4SAndroid Build Coastguard Worker "              Note  that  this  is the negated option name documented. You can\n"
2679*6236dae4SAndroid Build Coastguard Worker "              thus use --buffer to enforce the buffering.\n"
2680*6236dae4SAndroid Build Coastguard Worker "\n"
2681*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2682*6236dae4SAndroid Build Coastguard Worker "               curl --no-buffer https://example.com\n"
2683*6236dae4SAndroid Build Coastguard Worker "\n"
2684*6236dae4SAndroid Build Coastguard Worker "       --no-keepalive\n"
2685*6236dae4SAndroid Build Coastguard Worker , stdout);
2686*6236dae4SAndroid Build Coastguard Worker  fputs(
2687*6236dae4SAndroid Build Coastguard Worker "              Disables the use of keepalive messages on  the  TCP  connection.\n"
2688*6236dae4SAndroid Build Coastguard Worker "              curl otherwise enables them by default.\n"
2689*6236dae4SAndroid Build Coastguard Worker "\n"
2690*6236dae4SAndroid Build Coastguard Worker "              Note  that  this  is the negated option name documented. You can\n"
2691*6236dae4SAndroid Build Coastguard Worker "              thus use --keepalive to enforce keepalive.\n"
2692*6236dae4SAndroid Build Coastguard Worker "\n"
2693*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2694*6236dae4SAndroid Build Coastguard Worker "               curl --no-keepalive https://example.com\n"
2695*6236dae4SAndroid Build Coastguard Worker "\n"
2696*6236dae4SAndroid Build Coastguard Worker "       --no-npn\n"
2697*6236dae4SAndroid Build Coastguard Worker "              (HTTPS) Disable the NPN TLS extension. NPN is enabled by default\n"
2698*6236dae4SAndroid Build Coastguard Worker , stdout);
2699*6236dae4SAndroid Build Coastguard Worker  fputs(
2700*6236dae4SAndroid Build Coastguard Worker "              if  libcurl was built with an SSL library that supports NPN. NPN\n"
2701*6236dae4SAndroid Build Coastguard Worker "              is used by a libcurl that supports HTTP/2  to  negotiate  HTTP/2\n"
2702*6236dae4SAndroid Build Coastguard Worker "              support with the server during https sessions.\n"
2703*6236dae4SAndroid Build Coastguard Worker "\n"
2704*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2705*6236dae4SAndroid Build Coastguard Worker "               curl --no-npn https://example.com\n"
2706*6236dae4SAndroid Build Coastguard Worker "\n"
2707*6236dae4SAndroid Build Coastguard Worker "              See  also  --no-alpn and --http2. --no-npn requires that the un-\n"
2708*6236dae4SAndroid Build Coastguard Worker "              derlying libcurl was built to support TLS. Added in 7.36.0.\n"
2709*6236dae4SAndroid Build Coastguard Worker "\n"
2710*6236dae4SAndroid Build Coastguard Worker "       --no-progress-meter\n"
2711*6236dae4SAndroid Build Coastguard Worker , stdout);
2712*6236dae4SAndroid Build Coastguard Worker  fputs(
2713*6236dae4SAndroid Build Coastguard Worker "              Option to switch off the progress meter output without muting or\n"
2714*6236dae4SAndroid Build Coastguard Worker "              otherwise  affecting warning and informational messages like -s,\n"
2715*6236dae4SAndroid Build Coastguard Worker "              --silent does.\n"
2716*6236dae4SAndroid Build Coastguard Worker "\n"
2717*6236dae4SAndroid Build Coastguard Worker "              Note that this is the negated option name  documented.  You  can\n"
2718*6236dae4SAndroid Build Coastguard Worker "              thus use --progress-meter to enable the progress meter again.\n"
2719*6236dae4SAndroid Build Coastguard Worker "\n"
2720*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2721*6236dae4SAndroid Build Coastguard Worker "               curl --no-progress-meter -o store https://example.com\n"
2722*6236dae4SAndroid Build Coastguard Worker "\n"
2723*6236dae4SAndroid Build Coastguard Worker , stdout);
2724*6236dae4SAndroid Build Coastguard Worker  fputs(
2725*6236dae4SAndroid Build Coastguard Worker "              See also -v, --verbose and -s, --silent. Added in 7.67.0.\n"
2726*6236dae4SAndroid Build Coastguard Worker "\n"
2727*6236dae4SAndroid Build Coastguard Worker "       --no-sessionid\n"
2728*6236dae4SAndroid Build Coastguard Worker "              (TLS)  Disable curl's use of SSL session-ID caching.  By default\n"
2729*6236dae4SAndroid Build Coastguard Worker "              all transfers are done using the cache. Note that while  nothing\n"
2730*6236dae4SAndroid Build Coastguard Worker "              should  ever  get  hurt  by attempting to reuse SSL session-IDs,\n"
2731*6236dae4SAndroid Build Coastguard Worker "              there seem to be broken SSL implementations in the wild that may\n"
2732*6236dae4SAndroid Build Coastguard Worker "              require you to disable this in order for you to succeed.\n"
2733*6236dae4SAndroid Build Coastguard Worker "\n"
2734*6236dae4SAndroid Build Coastguard Worker , stdout);
2735*6236dae4SAndroid Build Coastguard Worker  fputs(
2736*6236dae4SAndroid Build Coastguard Worker "              Note  that  this  is the negated option name documented. You can\n"
2737*6236dae4SAndroid Build Coastguard Worker "              thus use --sessionid to enforce session-ID caching.\n"
2738*6236dae4SAndroid Build Coastguard Worker "\n"
2739*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2740*6236dae4SAndroid Build Coastguard Worker "               curl --no-sessionid https://example.com\n"
2741*6236dae4SAndroid Build Coastguard Worker "\n"
2742*6236dae4SAndroid Build Coastguard Worker "       --noproxy <no-proxy-list>\n"
2743*6236dae4SAndroid Build Coastguard Worker "              Comma-separated list of hosts for which not to use a  proxy,  if\n"
2744*6236dae4SAndroid Build Coastguard Worker "              one  is  specified.  The  only wildcard is a single * character,\n"
2745*6236dae4SAndroid Build Coastguard Worker "              which matches all hosts, and  effectively  disables  the  proxy.\n"
2746*6236dae4SAndroid Build Coastguard Worker , stdout);
2747*6236dae4SAndroid Build Coastguard Worker  fputs(
2748*6236dae4SAndroid Build Coastguard Worker "              Each  name in this list is matched as either a domain which con-\n"
2749*6236dae4SAndroid Build Coastguard Worker "              tains the hostname, or the hostname  itself.  For  example,  lo-\n"
2750*6236dae4SAndroid Build Coastguard Worker "              cal.com  would match local.com, local.com:80, and www.local.com,\n"
2751*6236dae4SAndroid Build Coastguard Worker "              but not www.notlocal.com.\n"
2752*6236dae4SAndroid Build Coastguard Worker "\n"
2753*6236dae4SAndroid Build Coastguard Worker "              Since 7.53.0, This option overrides  the  environment  variables\n"
2754*6236dae4SAndroid Build Coastguard Worker "              that  disable  the proxy ('no_proxy' and 'NO_PROXY'). If there's\n"
2755*6236dae4SAndroid Build Coastguard Worker , stdout);
2756*6236dae4SAndroid Build Coastguard Worker  fputs(
2757*6236dae4SAndroid Build Coastguard Worker "              an environment variable disabling a proxy, you can set  the  no-\n"
2758*6236dae4SAndroid Build Coastguard Worker "              proxy list to \"\" to override it.\n"
2759*6236dae4SAndroid Build Coastguard Worker "\n"
2760*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2761*6236dae4SAndroid Build Coastguard Worker "               curl --noproxy \"www.example\" https://example.com\n"
2762*6236dae4SAndroid Build Coastguard Worker "\n"
2763*6236dae4SAndroid Build Coastguard Worker "       --ntlm-wb\n"
2764*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Enables NTLM much in the style --ntlm does, but hand over\n"
2765*6236dae4SAndroid Build Coastguard Worker "              the authentication to the separate binary  ntlmauth  application\n"
2766*6236dae4SAndroid Build Coastguard Worker "              that is executed when needed.\n"
2767*6236dae4SAndroid Build Coastguard Worker "\n"
2768*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2769*6236dae4SAndroid Build Coastguard Worker , stdout);
2770*6236dae4SAndroid Build Coastguard Worker  fputs(
2771*6236dae4SAndroid Build Coastguard Worker "               curl --ntlm-wb -u user:password https://example.com\n"
2772*6236dae4SAndroid Build Coastguard Worker "\n"
2773*6236dae4SAndroid Build Coastguard Worker "              See also --ntlm and --proxy-ntlm.\n"
2774*6236dae4SAndroid Build Coastguard Worker "\n"
2775*6236dae4SAndroid Build Coastguard Worker "       --ntlm (HTTP)  Enables  NTLM  authentication.  The  NTLM authentication\n"
2776*6236dae4SAndroid Build Coastguard Worker "              method was designed by Microsoft and is used by IIS web servers.\n"
2777*6236dae4SAndroid Build Coastguard Worker "              It  is a proprietary protocol, reverse-engineered by clever peo-\n"
2778*6236dae4SAndroid Build Coastguard Worker "              ple and implemented in curl based on their efforts. This kind of\n"
2779*6236dae4SAndroid Build Coastguard Worker , stdout);
2780*6236dae4SAndroid Build Coastguard Worker  fputs(
2781*6236dae4SAndroid Build Coastguard Worker "              behavior  should  not be endorsed, you should encourage everyone\n"
2782*6236dae4SAndroid Build Coastguard Worker "              who uses NTLM to switch to a public and  documented  authentica-\n"
2783*6236dae4SAndroid Build Coastguard Worker "              tion method instead, such as Digest.\n"
2784*6236dae4SAndroid Build Coastguard Worker "\n"
2785*6236dae4SAndroid Build Coastguard Worker "              If  you  want to enable NTLM for your proxy authentication, then\n"
2786*6236dae4SAndroid Build Coastguard Worker "              use --proxy-ntlm.\n"
2787*6236dae4SAndroid Build Coastguard Worker "\n"
2788*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times,  only  the  first  one  is\n"
2789*6236dae4SAndroid Build Coastguard Worker "              used.\n"
2790*6236dae4SAndroid Build Coastguard Worker "\n"
2791*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2792*6236dae4SAndroid Build Coastguard Worker , stdout);
2793*6236dae4SAndroid Build Coastguard Worker  fputs(
2794*6236dae4SAndroid Build Coastguard Worker "               curl --ntlm -u user:password https://example.com\n"
2795*6236dae4SAndroid Build Coastguard Worker "\n"
2796*6236dae4SAndroid Build Coastguard Worker "              See  also  --proxy-ntlm.  --ntlm  requires  that  the underlying\n"
2797*6236dae4SAndroid Build Coastguard Worker "              libcurl was built to support TLS. This option overrides  --basic\n"
2798*6236dae4SAndroid Build Coastguard Worker "              and --negotiate and --digest and --anyauth.\n"
2799*6236dae4SAndroid Build Coastguard Worker "\n"
2800*6236dae4SAndroid Build Coastguard Worker "       --oauth2-bearer <token>\n"
2801*6236dae4SAndroid Build Coastguard Worker "              (IMAP  POP3  SMTP  HTTP)  Specify the Bearer Token for OAUTH 2.0\n"
2802*6236dae4SAndroid Build Coastguard Worker "              server authentication. The Bearer Token is used  in  conjunction\n"
2803*6236dae4SAndroid Build Coastguard Worker , stdout);
2804*6236dae4SAndroid Build Coastguard Worker  fputs(
2805*6236dae4SAndroid Build Coastguard Worker "              with  the  user name which can be specified as part of the --url\n"
2806*6236dae4SAndroid Build Coastguard Worker "              or -u, --user options.\n"
2807*6236dae4SAndroid Build Coastguard Worker "\n"
2808*6236dae4SAndroid Build Coastguard Worker "              The Bearer Token and user name are formatted  according  to  RFC\n"
2809*6236dae4SAndroid Build Coastguard Worker "              6750.\n"
2810*6236dae4SAndroid Build Coastguard Worker "\n"
2811*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
2812*6236dae4SAndroid Build Coastguard Worker "\n"
2813*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2814*6236dae4SAndroid Build Coastguard Worker "               curl --oauth2-bearer \"mF_9.B5f-4.1JqM\" https://example.com\n"
2815*6236dae4SAndroid Build Coastguard Worker "\n"
2816*6236dae4SAndroid Build Coastguard Worker "              Added in 7.33.0.\n"
2817*6236dae4SAndroid Build Coastguard Worker "\n"
2818*6236dae4SAndroid Build Coastguard Worker "       --output-dir <dir>\n"
2819*6236dae4SAndroid Build Coastguard Worker "\n"
2820*6236dae4SAndroid Build Coastguard Worker , stdout);
2821*6236dae4SAndroid Build Coastguard Worker  fputs(
2822*6236dae4SAndroid Build Coastguard Worker "              This  option  specifies  the  directory in which files should be\n"
2823*6236dae4SAndroid Build Coastguard Worker "              stored, when -O, --remote-name or -o, --output are used.\n"
2824*6236dae4SAndroid Build Coastguard Worker "\n"
2825*6236dae4SAndroid Build Coastguard Worker "              The given output directory is used for all URLs and  output  op-\n"
2826*6236dae4SAndroid Build Coastguard Worker "              tions on the command line, up until the first -:, --next.\n"
2827*6236dae4SAndroid Build Coastguard Worker "\n"
2828*6236dae4SAndroid Build Coastguard Worker "              If  the specified target directory does not exist, the operation\n"
2829*6236dae4SAndroid Build Coastguard Worker "              will fail unless --create-dirs is also used.\n"
2830*6236dae4SAndroid Build Coastguard Worker "\n"
2831*6236dae4SAndroid Build Coastguard Worker , stdout);
2832*6236dae4SAndroid Build Coastguard Worker  fputs(
2833*6236dae4SAndroid Build Coastguard Worker "              If this option is used multiple times, the last specified direc-\n"
2834*6236dae4SAndroid Build Coastguard Worker "              tory will be used.\n"
2835*6236dae4SAndroid Build Coastguard Worker "\n"
2836*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2837*6236dae4SAndroid Build Coastguard Worker "               curl --output-dir \"tmp\" -O https://example.com\n"
2838*6236dae4SAndroid Build Coastguard Worker "\n"
2839*6236dae4SAndroid Build Coastguard Worker "              See  also  -O, --remote-name and -J, --remote-header-name. Added\n"
2840*6236dae4SAndroid Build Coastguard Worker "              in 7.73.0.\n"
2841*6236dae4SAndroid Build Coastguard Worker "\n"
2842*6236dae4SAndroid Build Coastguard Worker "       -o, --output <file>\n"
2843*6236dae4SAndroid Build Coastguard Worker "              Write output to <file> instead of stdout. If you are using {} or\n"
2844*6236dae4SAndroid Build Coastguard Worker "              [] to fetch multiple documents, you should quote the URL and you\n"
2845*6236dae4SAndroid Build Coastguard Worker , stdout);
2846*6236dae4SAndroid Build Coastguard Worker  fputs(
2847*6236dae4SAndroid Build Coastguard Worker "              can use '#' followed by a number in the <file>  specifier.  That\n"
2848*6236dae4SAndroid Build Coastguard Worker "              variable  will  be  replaced with the current string for the URL\n"
2849*6236dae4SAndroid Build Coastguard Worker "              being fetched. Like in:\n"
2850*6236dae4SAndroid Build Coastguard Worker "\n"
2851*6236dae4SAndroid Build Coastguard Worker "               curl \"http://{one,two}.example.com\" -o \"file_#1.txt\"\n"
2852*6236dae4SAndroid Build Coastguard Worker "\n"
2853*6236dae4SAndroid Build Coastguard Worker "              or use several variables like:\n"
2854*6236dae4SAndroid Build Coastguard Worker "\n"
2855*6236dae4SAndroid Build Coastguard Worker "               curl \"http://{site,host}.host[1-5].com\" -o \"#1_#2\"\n"
2856*6236dae4SAndroid Build Coastguard Worker "\n"
2857*6236dae4SAndroid Build Coastguard Worker "              You may use this option as many times as the number of URLs  you\n"
2858*6236dae4SAndroid Build Coastguard Worker , stdout);
2859*6236dae4SAndroid Build Coastguard Worker  fputs(
2860*6236dae4SAndroid Build Coastguard Worker "              have.  For  example, if you specify two URLs on the same command\n"
2861*6236dae4SAndroid Build Coastguard Worker "              line, you can use it like this:\n"
2862*6236dae4SAndroid Build Coastguard Worker "\n"
2863*6236dae4SAndroid Build Coastguard Worker "                curl -o aa example.com -o bb example.net\n"
2864*6236dae4SAndroid Build Coastguard Worker "\n"
2865*6236dae4SAndroid Build Coastguard Worker "              and the order of the -o options and the URLs  does  not  matter,\n"
2866*6236dae4SAndroid Build Coastguard Worker "              just  that  the  first -o is for the first URL and so on, so the\n"
2867*6236dae4SAndroid Build Coastguard Worker "              above command line can also be written as\n"
2868*6236dae4SAndroid Build Coastguard Worker "\n"
2869*6236dae4SAndroid Build Coastguard Worker "                curl example.com example.net -o aa -o bb\n"
2870*6236dae4SAndroid Build Coastguard Worker "\n"
2871*6236dae4SAndroid Build Coastguard Worker , stdout);
2872*6236dae4SAndroid Build Coastguard Worker  fputs(
2873*6236dae4SAndroid Build Coastguard Worker "              See also the --create-dirs option to create the  local  directo-\n"
2874*6236dae4SAndroid Build Coastguard Worker "              ries  dynamically.  Specifying the output as '-' (a single dash)\n"
2875*6236dae4SAndroid Build Coastguard Worker "              will force the output to be done to stdout.\n"
2876*6236dae4SAndroid Build Coastguard Worker "\n"
2877*6236dae4SAndroid Build Coastguard Worker "              To  suppress  response  bodies,  you  can  redirect  output   to\n"
2878*6236dae4SAndroid Build Coastguard Worker "              /dev/null:\n"
2879*6236dae4SAndroid Build Coastguard Worker "\n"
2880*6236dae4SAndroid Build Coastguard Worker "                curl example.com -o /dev/null\n"
2881*6236dae4SAndroid Build Coastguard Worker "\n"
2882*6236dae4SAndroid Build Coastguard Worker "              Or for Windows use nul:\n"
2883*6236dae4SAndroid Build Coastguard Worker "                curl example.com -o nul\n"
2884*6236dae4SAndroid Build Coastguard Worker "\n"
2885*6236dae4SAndroid Build Coastguard Worker "              Examples:\n"
2886*6236dae4SAndroid Build Coastguard Worker , stdout);
2887*6236dae4SAndroid Build Coastguard Worker  fputs(
2888*6236dae4SAndroid Build Coastguard Worker "               curl -o file https://example.com\n"
2889*6236dae4SAndroid Build Coastguard Worker "               curl \"http://{one,two}.example.com\" -o \"file_#1.txt\"\n"
2890*6236dae4SAndroid Build Coastguard Worker "               curl \"http://{site,host}.host[1-5].com\" -o \"#1_#2\"\n"
2891*6236dae4SAndroid Build Coastguard Worker "               curl -o file https://example.com -o file2 https://example.net\n"
2892*6236dae4SAndroid Build Coastguard Worker "\n"
2893*6236dae4SAndroid Build Coastguard Worker "              See  also -O, --remote-name, --remote-name-all and -J, --remote-\n"
2894*6236dae4SAndroid Build Coastguard Worker "              header-name.\n"
2895*6236dae4SAndroid Build Coastguard Worker "\n"
2896*6236dae4SAndroid Build Coastguard Worker "       --parallel-immediate\n"
2897*6236dae4SAndroid Build Coastguard Worker "              When doing parallel transfers, this option  will  instruct  curl\n"
2898*6236dae4SAndroid Build Coastguard Worker , stdout);
2899*6236dae4SAndroid Build Coastguard Worker  fputs(
2900*6236dae4SAndroid Build Coastguard Worker "              that it should rather prefer opening up more connections in par-\n"
2901*6236dae4SAndroid Build Coastguard Worker "              allel at once rather than waiting to see if new transfers can be\n"
2902*6236dae4SAndroid Build Coastguard Worker "              added as multiplexed streams on another connection.\n"
2903*6236dae4SAndroid Build Coastguard Worker "\n"
2904*6236dae4SAndroid Build Coastguard Worker "              This option is global and does not need to be specified for each\n"
2905*6236dae4SAndroid Build Coastguard Worker "              use of -:, --next.\n"
2906*6236dae4SAndroid Build Coastguard Worker "\n"
2907*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2908*6236dae4SAndroid Build Coastguard Worker "               curl --parallel-immediate -Z https://example.com -o file1 https://example.com -o file2\n"
2909*6236dae4SAndroid Build Coastguard Worker "\n"
2910*6236dae4SAndroid Build Coastguard Worker , stdout);
2911*6236dae4SAndroid Build Coastguard Worker  fputs(
2912*6236dae4SAndroid Build Coastguard Worker "              See also -Z, --parallel and --parallel-max. Added in 7.68.0.\n"
2913*6236dae4SAndroid Build Coastguard Worker "\n"
2914*6236dae4SAndroid Build Coastguard Worker "       --parallel-max <num>\n"
2915*6236dae4SAndroid Build Coastguard Worker "              When asked to do parallel transfers, using -Z, --parallel,  this\n"
2916*6236dae4SAndroid Build Coastguard Worker "              option controls the maximum amount of transfers to do simultane-\n"
2917*6236dae4SAndroid Build Coastguard Worker "              ously.\n"
2918*6236dae4SAndroid Build Coastguard Worker "\n"
2919*6236dae4SAndroid Build Coastguard Worker "              This option is global and does not need to be specified for each\n"
2920*6236dae4SAndroid Build Coastguard Worker "              use of -:, --next.\n"
2921*6236dae4SAndroid Build Coastguard Worker "              The default is 50.\n"
2922*6236dae4SAndroid Build Coastguard Worker "\n"
2923*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2924*6236dae4SAndroid Build Coastguard Worker , stdout);
2925*6236dae4SAndroid Build Coastguard Worker  fputs(
2926*6236dae4SAndroid Build Coastguard Worker "               curl --parallel-max 100 -Z https://example.com ftp://example.com/\n"
2927*6236dae4SAndroid Build Coastguard Worker "\n"
2928*6236dae4SAndroid Build Coastguard Worker "              See also -Z, --parallel. Added in 7.66.0.\n"
2929*6236dae4SAndroid Build Coastguard Worker "\n"
2930*6236dae4SAndroid Build Coastguard Worker "       -Z, --parallel\n"
2931*6236dae4SAndroid Build Coastguard Worker "              Makes  curl perform its transfers in parallel as compared to the\n"
2932*6236dae4SAndroid Build Coastguard Worker "              regular serial manner.\n"
2933*6236dae4SAndroid Build Coastguard Worker "\n"
2934*6236dae4SAndroid Build Coastguard Worker "              This option is global and does not need to be specified for each\n"
2935*6236dae4SAndroid Build Coastguard Worker "              use of -:, --next.\n"
2936*6236dae4SAndroid Build Coastguard Worker "\n"
2937*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2938*6236dae4SAndroid Build Coastguard Worker , stdout);
2939*6236dae4SAndroid Build Coastguard Worker  fputs(
2940*6236dae4SAndroid Build Coastguard Worker "               curl --parallel https://example.com -o file1 https://example.com -o file2\n"
2941*6236dae4SAndroid Build Coastguard Worker "\n"
2942*6236dae4SAndroid Build Coastguard Worker "              Added in 7.66.0.\n"
2943*6236dae4SAndroid Build Coastguard Worker "\n"
2944*6236dae4SAndroid Build Coastguard Worker "       --pass <phrase>\n"
2945*6236dae4SAndroid Build Coastguard Worker "              (SSH TLS) Passphrase for the private key.\n"
2946*6236dae4SAndroid Build Coastguard Worker "\n"
2947*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
2948*6236dae4SAndroid Build Coastguard Worker "\n"
2949*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2950*6236dae4SAndroid Build Coastguard Worker "               curl --pass secret --key file https://example.com\n"
2951*6236dae4SAndroid Build Coastguard Worker "\n"
2952*6236dae4SAndroid Build Coastguard Worker "       --path-as-is\n"
2953*6236dae4SAndroid Build Coastguard Worker "              Tell  curl  to  not handle sequences of /../ or /./ in the given\n"
2954*6236dae4SAndroid Build Coastguard Worker , stdout);
2955*6236dae4SAndroid Build Coastguard Worker  fputs(
2956*6236dae4SAndroid Build Coastguard Worker "              URL path. Normally curl will squash or merge them  according  to\n"
2957*6236dae4SAndroid Build Coastguard Worker "              standards but with this option set you tell it not to do that.\n"
2958*6236dae4SAndroid Build Coastguard Worker "\n"
2959*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
2960*6236dae4SAndroid Build Coastguard Worker "               curl --path-as-is https://example.com/../../etc/passwd\n"
2961*6236dae4SAndroid Build Coastguard Worker "\n"
2962*6236dae4SAndroid Build Coastguard Worker "              Added in 7.42.0.\n"
2963*6236dae4SAndroid Build Coastguard Worker "\n"
2964*6236dae4SAndroid Build Coastguard Worker "       --pinnedpubkey <hashes>\n"
2965*6236dae4SAndroid Build Coastguard Worker "              (TLS)  Tells  curl  to  use  the  specified  public key file (or\n"
2966*6236dae4SAndroid Build Coastguard Worker "              hashes) to verify the peer. This can be a path to a  file  which\n"
2967*6236dae4SAndroid Build Coastguard Worker , stdout);
2968*6236dae4SAndroid Build Coastguard Worker  fputs(
2969*6236dae4SAndroid Build Coastguard Worker "              contains a single public key in PEM or DER format, or any number\n"
2970*6236dae4SAndroid Build Coastguard Worker "              of base64 encoded sha256 hashes preceded by 'sha256//' and sepa-\n"
2971*6236dae4SAndroid Build Coastguard Worker "              rated by ';'.\n"
2972*6236dae4SAndroid Build Coastguard Worker "\n"
2973*6236dae4SAndroid Build Coastguard Worker "              When  negotiating  a  TLS  or SSL connection, the server sends a\n"
2974*6236dae4SAndroid Build Coastguard Worker "              certificate indicating its identity. A public key  is  extracted\n"
2975*6236dae4SAndroid Build Coastguard Worker "              from  this certificate and if it does not exactly match the pub-\n"
2976*6236dae4SAndroid Build Coastguard Worker , stdout);
2977*6236dae4SAndroid Build Coastguard Worker  fputs(
2978*6236dae4SAndroid Build Coastguard Worker "              lic key provided to this option, curl will abort the  connection\n"
2979*6236dae4SAndroid Build Coastguard Worker "              before sending or receiving any data.\n"
2980*6236dae4SAndroid Build Coastguard Worker "\n"
2981*6236dae4SAndroid Build Coastguard Worker "              PEM/DER support:\n"
2982*6236dae4SAndroid Build Coastguard Worker "\n"
2983*6236dae4SAndroid Build Coastguard Worker "              7.39.0: OpenSSL, GnuTLS and GSKit\n"
2984*6236dae4SAndroid Build Coastguard Worker "\n"
2985*6236dae4SAndroid Build Coastguard Worker "              7.43.0: NSS and wolfSSL\n"
2986*6236dae4SAndroid Build Coastguard Worker "\n"
2987*6236dae4SAndroid Build Coastguard Worker "              7.47.0: mbedtls\n"
2988*6236dae4SAndroid Build Coastguard Worker "              sha256 support:\n"
2989*6236dae4SAndroid Build Coastguard Worker "\n"
2990*6236dae4SAndroid Build Coastguard Worker "              7.44.0: OpenSSL, GnuTLS, NSS and wolfSSL\n"
2991*6236dae4SAndroid Build Coastguard Worker "\n"
2992*6236dae4SAndroid Build Coastguard Worker "              7.47.0: mbedtls\n"
2993*6236dae4SAndroid Build Coastguard Worker "\n"
2994*6236dae4SAndroid Build Coastguard Worker "              Other SSL backends not supported.\n"
2995*6236dae4SAndroid Build Coastguard Worker "\n"
2996*6236dae4SAndroid Build Coastguard Worker , stdout);
2997*6236dae4SAndroid Build Coastguard Worker  fputs(
2998*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
2999*6236dae4SAndroid Build Coastguard Worker "\n"
3000*6236dae4SAndroid Build Coastguard Worker "              Examples:\n"
3001*6236dae4SAndroid Build Coastguard Worker "               curl --pinnedpubkey keyfile https://example.com\n"
3002*6236dae4SAndroid Build Coastguard Worker "               curl --pinnedpubkey 'sha256//ce118b51897f4452dc' https://example.com\n"
3003*6236dae4SAndroid Build Coastguard Worker "\n"
3004*6236dae4SAndroid Build Coastguard Worker "              Added in 7.39.0.\n"
3005*6236dae4SAndroid Build Coastguard Worker "\n"
3006*6236dae4SAndroid Build Coastguard Worker "       --post301\n"
3007*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Tells curl to respect RFC 7231/6.4.2 and not convert POST\n"
3008*6236dae4SAndroid Build Coastguard Worker "              requests into GET requests when following a 301 redirection. The\n"
3009*6236dae4SAndroid Build Coastguard Worker , stdout);
3010*6236dae4SAndroid Build Coastguard Worker  fputs(
3011*6236dae4SAndroid Build Coastguard Worker "              non-RFC behavior is ubiquitous in web browsers, so curl does the\n"
3012*6236dae4SAndroid Build Coastguard Worker "              conversion by default to maintain consistency. However, a server\n"
3013*6236dae4SAndroid Build Coastguard Worker "              may  require  a  POST to remain a POST after such a redirection.\n"
3014*6236dae4SAndroid Build Coastguard Worker "              This option is meaningful only when using -L, --location.\n"
3015*6236dae4SAndroid Build Coastguard Worker "\n"
3016*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3017*6236dae4SAndroid Build Coastguard Worker "               curl --post301 --location -d \"data\" https://example.com\n"
3018*6236dae4SAndroid Build Coastguard Worker "\n"
3019*6236dae4SAndroid Build Coastguard Worker "              See also --post302, --post303 and -L, --location.\n"
3020*6236dae4SAndroid Build Coastguard Worker "\n"
3021*6236dae4SAndroid Build Coastguard Worker "       --post302\n"
3022*6236dae4SAndroid Build Coastguard Worker , stdout);
3023*6236dae4SAndroid Build Coastguard Worker  fputs(
3024*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Tells curl to respect RFC 7231/6.4.3 and not convert POST\n"
3025*6236dae4SAndroid Build Coastguard Worker "              requests into GET requests when following a 302 redirection. The\n"
3026*6236dae4SAndroid Build Coastguard Worker "              non-RFC behavior is ubiquitous in web browsers, so curl does the\n"
3027*6236dae4SAndroid Build Coastguard Worker "              conversion by default to maintain consistency. However, a server\n"
3028*6236dae4SAndroid Build Coastguard Worker "              may require a POST to remain a POST after  such  a  redirection.\n"
3029*6236dae4SAndroid Build Coastguard Worker "              This option is meaningful only when using -L, --location.\n"
3030*6236dae4SAndroid Build Coastguard Worker "\n"
3031*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3032*6236dae4SAndroid Build Coastguard Worker , stdout);
3033*6236dae4SAndroid Build Coastguard Worker  fputs(
3034*6236dae4SAndroid Build Coastguard Worker "               curl --post302 --location -d \"data\" https://example.com\n"
3035*6236dae4SAndroid Build Coastguard Worker "\n"
3036*6236dae4SAndroid Build Coastguard Worker "              See also --post301, --post303 and -L, --location.\n"
3037*6236dae4SAndroid Build Coastguard Worker "\n"
3038*6236dae4SAndroid Build Coastguard Worker "       --post303\n"
3039*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Tells curl to violate RFC 7231/6.4.4 and not convert POST\n"
3040*6236dae4SAndroid Build Coastguard Worker "              requests into GET requests when following  303  redirections.  A\n"
3041*6236dae4SAndroid Build Coastguard Worker "              server may require a POST to remain a POST after a 303 redirect-\n"
3042*6236dae4SAndroid Build Coastguard Worker "              ion. This option is meaningful only when using -L, --location.\n"
3043*6236dae4SAndroid Build Coastguard Worker "\n"
3044*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3045*6236dae4SAndroid Build Coastguard Worker , stdout);
3046*6236dae4SAndroid Build Coastguard Worker  fputs(
3047*6236dae4SAndroid Build Coastguard Worker "               curl --post303 --location -d \"data\" https://example.com\n"
3048*6236dae4SAndroid Build Coastguard Worker "\n"
3049*6236dae4SAndroid Build Coastguard Worker "              See also --post302, --post301 and -L, --location.\n"
3050*6236dae4SAndroid Build Coastguard Worker "\n"
3051*6236dae4SAndroid Build Coastguard Worker "       --preproxy [protocol://]host[:port]\n"
3052*6236dae4SAndroid Build Coastguard Worker "              Use the specified SOCKS proxy before connecting to  an  HTTP  or\n"
3053*6236dae4SAndroid Build Coastguard Worker "              HTTPS  -x,  --proxy.  In  such a case curl first connects to the\n"
3054*6236dae4SAndroid Build Coastguard Worker "              SOCKS proxy and then connects (through SOCKS)  to  the  HTTP  or\n"
3055*6236dae4SAndroid Build Coastguard Worker "              HTTPS proxy. Hence pre proxy.\n"
3056*6236dae4SAndroid Build Coastguard Worker "\n"
3057*6236dae4SAndroid Build Coastguard Worker , stdout);
3058*6236dae4SAndroid Build Coastguard Worker  fputs(
3059*6236dae4SAndroid Build Coastguard Worker "              The pre proxy string should be specified with a protocol:// pre-\n"
3060*6236dae4SAndroid Build Coastguard Worker "              fix to  specify  alternative  proxy  protocols.  Use  socks4://,\n"
3061*6236dae4SAndroid Build Coastguard Worker "              socks4a://,  socks5://  or  socks5h://  to  request the specific\n"
3062*6236dae4SAndroid Build Coastguard Worker "              SOCKS version to be used. No protocol specified will  make  curl\n"
3063*6236dae4SAndroid Build Coastguard Worker "              default to SOCKS4.\n"
3064*6236dae4SAndroid Build Coastguard Worker "\n"
3065*6236dae4SAndroid Build Coastguard Worker "              If  the  port number is not specified in the proxy string, it is\n"
3066*6236dae4SAndroid Build Coastguard Worker "              assumed to be 1080.\n"
3067*6236dae4SAndroid Build Coastguard Worker "\n"
3068*6236dae4SAndroid Build Coastguard Worker , stdout);
3069*6236dae4SAndroid Build Coastguard Worker  fputs(
3070*6236dae4SAndroid Build Coastguard Worker "              User and password that might be provided in the proxy string are\n"
3071*6236dae4SAndroid Build Coastguard Worker "              URL  decoded by curl. This allows you to pass in special charac-\n"
3072*6236dae4SAndroid Build Coastguard Worker "              ters such as @ by using %40 or pass in a colon with %3a.\n"
3073*6236dae4SAndroid Build Coastguard Worker "\n"
3074*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
3075*6236dae4SAndroid Build Coastguard Worker "\n"
3076*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3077*6236dae4SAndroid Build Coastguard Worker "               curl --preproxy socks5://proxy.example -x http://http.example https://example.com\n"
3078*6236dae4SAndroid Build Coastguard Worker "\n"
3079*6236dae4SAndroid Build Coastguard Worker "              Added in 7.52.0.\n"
3080*6236dae4SAndroid Build Coastguard Worker "\n"
3081*6236dae4SAndroid Build Coastguard Worker "       -#, --progress-bar\n"
3082*6236dae4SAndroid Build Coastguard Worker , stdout);
3083*6236dae4SAndroid Build Coastguard Worker  fputs(
3084*6236dae4SAndroid Build Coastguard Worker "              Make curl display transfer progress as a simple progress bar in-\n"
3085*6236dae4SAndroid Build Coastguard Worker "              stead of the standard, more informational, meter.\n"
3086*6236dae4SAndroid Build Coastguard Worker "\n"
3087*6236dae4SAndroid Build Coastguard Worker "              This  progress  bar draws a single line of '#' characters across\n"
3088*6236dae4SAndroid Build Coastguard Worker "              the screen and shows a percentage if the transfer size is known.\n"
3089*6236dae4SAndroid Build Coastguard Worker "              For  transfers  without  a  known size, there will be space ship\n"
3090*6236dae4SAndroid Build Coastguard Worker "              (-=o=-) that moves back and forth but only while data  is  being\n"
3091*6236dae4SAndroid Build Coastguard Worker , stdout);
3092*6236dae4SAndroid Build Coastguard Worker  fputs(
3093*6236dae4SAndroid Build Coastguard Worker "              transferred, with a set of flying hash sign symbols on top.\n"
3094*6236dae4SAndroid Build Coastguard Worker "\n"
3095*6236dae4SAndroid Build Coastguard Worker "              This option is global and does not need to be specified for each\n"
3096*6236dae4SAndroid Build Coastguard Worker "              use of -:, --next.\n"
3097*6236dae4SAndroid Build Coastguard Worker "\n"
3098*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3099*6236dae4SAndroid Build Coastguard Worker "               curl -# -O https://example.com\n"
3100*6236dae4SAndroid Build Coastguard Worker "\n"
3101*6236dae4SAndroid Build Coastguard Worker "       --proto-default <protocol>\n"
3102*6236dae4SAndroid Build Coastguard Worker "              Tells curl to use protocol for any URL missing a scheme name.\n"
3103*6236dae4SAndroid Build Coastguard Worker "\n"
3104*6236dae4SAndroid Build Coastguard Worker "              An unknown or unsupported  protocol  causes  error  CURLE_UNSUP-\n"
3105*6236dae4SAndroid Build Coastguard Worker "              PORTED_PROTOCOL (1).\n"
3106*6236dae4SAndroid Build Coastguard Worker "\n"
3107*6236dae4SAndroid Build Coastguard Worker , stdout);
3108*6236dae4SAndroid Build Coastguard Worker  fputs(
3109*6236dae4SAndroid Build Coastguard Worker "              This option does not change the default proxy protocol (http).\n"
3110*6236dae4SAndroid Build Coastguard Worker "\n"
3111*6236dae4SAndroid Build Coastguard Worker "              Without this option set, curl guesses protocol based on the host\n"
3112*6236dae4SAndroid Build Coastguard Worker "              name, see --url for details.\n"
3113*6236dae4SAndroid Build Coastguard Worker "\n"
3114*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3115*6236dae4SAndroid Build Coastguard Worker "               curl --proto-default https ftp.example.com\n"
3116*6236dae4SAndroid Build Coastguard Worker "\n"
3117*6236dae4SAndroid Build Coastguard Worker "              Added in 7.45.0.\n"
3118*6236dae4SAndroid Build Coastguard Worker "\n"
3119*6236dae4SAndroid Build Coastguard Worker "       --proto-redir <protocols>\n"
3120*6236dae4SAndroid Build Coastguard Worker "              Tells curl to limit what protocols it may use on redirect.  Pro-\n"
3121*6236dae4SAndroid Build Coastguard Worker , stdout);
3122*6236dae4SAndroid Build Coastguard Worker  fputs(
3123*6236dae4SAndroid Build Coastguard Worker "              tocols  denied by --proto are not overridden by this option. See\n"
3124*6236dae4SAndroid Build Coastguard Worker "              --proto for how protocols are represented.\n"
3125*6236dae4SAndroid Build Coastguard Worker "\n"
3126*6236dae4SAndroid Build Coastguard Worker "              Example, allow only HTTP and HTTPS on redirect:\n"
3127*6236dae4SAndroid Build Coastguard Worker "\n"
3128*6236dae4SAndroid Build Coastguard Worker "               curl --proto-redir -all,http,https http://example.com\n"
3129*6236dae4SAndroid Build Coastguard Worker "\n"
3130*6236dae4SAndroid Build Coastguard Worker "              By default curl will only allow HTTP, HTTPS, FTP and FTPS on re-\n"
3131*6236dae4SAndroid Build Coastguard Worker "              direct (since 7.65.2). Specifying all or +all enables all proto-\n"
3132*6236dae4SAndroid Build Coastguard Worker "              cols on redirects, which is not good for security.\n"
3133*6236dae4SAndroid Build Coastguard Worker "\n"
3134*6236dae4SAndroid Build Coastguard Worker , stdout);
3135*6236dae4SAndroid Build Coastguard Worker  fputs(
3136*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3137*6236dae4SAndroid Build Coastguard Worker "               curl --proto-redir =http,https https://example.com\n"
3138*6236dae4SAndroid Build Coastguard Worker "\n"
3139*6236dae4SAndroid Build Coastguard Worker "       --proto <protocols>\n"
3140*6236dae4SAndroid Build Coastguard Worker "              Tells curl to limit what protocols it  may  use  for  transfers.\n"
3141*6236dae4SAndroid Build Coastguard Worker "              Protocols  are evaluated left to right, are comma separated, and\n"
3142*6236dae4SAndroid Build Coastguard Worker "              are each a protocol name or 'all', optionally prefixed  by  zero\n"
3143*6236dae4SAndroid Build Coastguard Worker "              or more modifiers. Available modifiers are:\n"
3144*6236dae4SAndroid Build Coastguard Worker "\n"
3145*6236dae4SAndroid Build Coastguard Worker "              +  Permit this protocol in addition to protocols already permit-\n"
3146*6236dae4SAndroid Build Coastguard Worker , stdout);
3147*6236dae4SAndroid Build Coastguard Worker  fputs(
3148*6236dae4SAndroid Build Coastguard Worker "                 ted (this is the default if no modifier is used).\n"
3149*6236dae4SAndroid Build Coastguard Worker "\n"
3150*6236dae4SAndroid Build Coastguard Worker "              -  Deny this protocol, removing it from the  list  of  protocols\n"
3151*6236dae4SAndroid Build Coastguard Worker "                 already permitted.\n"
3152*6236dae4SAndroid Build Coastguard Worker "\n"
3153*6236dae4SAndroid Build Coastguard Worker "              =  Permit  only this protocol (ignoring the list already permit-\n"
3154*6236dae4SAndroid Build Coastguard Worker "                 ted), though subject to later modification by subsequent  en-\n"
3155*6236dae4SAndroid Build Coastguard Worker "                 tries in the comma separated list.\n"
3156*6236dae4SAndroid Build Coastguard Worker "\n"
3157*6236dae4SAndroid Build Coastguard Worker "              For example:\n"
3158*6236dae4SAndroid Build Coastguard Worker "\n"
3159*6236dae4SAndroid Build Coastguard Worker "              --proto -ftps  uses the default protocols, but disables ftps\n"
3160*6236dae4SAndroid Build Coastguard Worker "\n"
3161*6236dae4SAndroid Build Coastguard Worker , stdout);
3162*6236dae4SAndroid Build Coastguard Worker  fputs(
3163*6236dae4SAndroid Build Coastguard Worker "              --proto -all,https,+http\n"
3164*6236dae4SAndroid Build Coastguard Worker "                             only enables http and https\n"
3165*6236dae4SAndroid Build Coastguard Worker "\n"
3166*6236dae4SAndroid Build Coastguard Worker "              --proto =http,https\n"
3167*6236dae4SAndroid Build Coastguard Worker "                             also only enables http and https\n"
3168*6236dae4SAndroid Build Coastguard Worker "\n"
3169*6236dae4SAndroid Build Coastguard Worker "              Unknown  protocols  produce  a  warning.  This allows scripts to\n"
3170*6236dae4SAndroid Build Coastguard Worker "              safely rely on being able to disable potentially dangerous  pro-\n"
3171*6236dae4SAndroid Build Coastguard Worker "              tocols,  without  relying  upon  support for that protocol being\n"
3172*6236dae4SAndroid Build Coastguard Worker "              built into curl to avoid an error.\n"
3173*6236dae4SAndroid Build Coastguard Worker "\n"
3174*6236dae4SAndroid Build Coastguard Worker , stdout);
3175*6236dae4SAndroid Build Coastguard Worker  fputs(
3176*6236dae4SAndroid Build Coastguard Worker "              This option can be used multiple times, in which case the effect\n"
3177*6236dae4SAndroid Build Coastguard Worker "              is  the same as concatenating the protocols into one instance of\n"
3178*6236dae4SAndroid Build Coastguard Worker "              the option.\n"
3179*6236dae4SAndroid Build Coastguard Worker "\n"
3180*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3181*6236dae4SAndroid Build Coastguard Worker "               curl --proto =http,https,sftp https://example.com\n"
3182*6236dae4SAndroid Build Coastguard Worker "\n"
3183*6236dae4SAndroid Build Coastguard Worker "              See also --proto-redir and --proto-default.\n"
3184*6236dae4SAndroid Build Coastguard Worker "\n"
3185*6236dae4SAndroid Build Coastguard Worker "       --proxy-anyauth\n"
3186*6236dae4SAndroid Build Coastguard Worker "              Tells curl to pick a suitable authentication method when  commu-\n"
3187*6236dae4SAndroid Build Coastguard Worker , stdout);
3188*6236dae4SAndroid Build Coastguard Worker  fputs(
3189*6236dae4SAndroid Build Coastguard Worker "              nicating  with  the  given HTTP proxy. This might cause an extra\n"
3190*6236dae4SAndroid Build Coastguard Worker "              request/response round-trip.\n"
3191*6236dae4SAndroid Build Coastguard Worker "\n"
3192*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3193*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-anyauth --proxy-user user:passwd -x proxy https://example.com\n"
3194*6236dae4SAndroid Build Coastguard Worker "\n"
3195*6236dae4SAndroid Build Coastguard Worker "              See also -x, --proxy, --proxy-basic and --proxy-digest.\n"
3196*6236dae4SAndroid Build Coastguard Worker "\n"
3197*6236dae4SAndroid Build Coastguard Worker "       --proxy-basic\n"
3198*6236dae4SAndroid Build Coastguard Worker "              Tells curl to use HTTP Basic authentication  when  communicating\n"
3199*6236dae4SAndroid Build Coastguard Worker "              with the given proxy. Use --basic for enabling HTTP Basic with a\n"
3200*6236dae4SAndroid Build Coastguard Worker , stdout);
3201*6236dae4SAndroid Build Coastguard Worker  fputs(
3202*6236dae4SAndroid Build Coastguard Worker "              remote host. Basic is the  default  authentication  method  curl\n"
3203*6236dae4SAndroid Build Coastguard Worker "              uses with proxies.\n"
3204*6236dae4SAndroid Build Coastguard Worker "\n"
3205*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3206*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-basic --proxy-user user:passwd -x proxy https://example.com\n"
3207*6236dae4SAndroid Build Coastguard Worker "\n"
3208*6236dae4SAndroid Build Coastguard Worker "              See also -x, --proxy, --proxy-anyauth and --proxy-digest.\n"
3209*6236dae4SAndroid Build Coastguard Worker "\n"
3210*6236dae4SAndroid Build Coastguard Worker "       --proxy-cacert <file>\n"
3211*6236dae4SAndroid Build Coastguard Worker "              Same as --cacert but used in HTTPS proxy context.\n"
3212*6236dae4SAndroid Build Coastguard Worker "\n"
3213*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3214*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-cacert CA-file.txt -x https://proxy https://example.com\n"
3215*6236dae4SAndroid Build Coastguard Worker "\n"
3216*6236dae4SAndroid Build Coastguard Worker , stdout);
3217*6236dae4SAndroid Build Coastguard Worker  fputs(
3218*6236dae4SAndroid Build Coastguard Worker "              See  also  --proxy-capath,  --cacert,  --capath and -x, --proxy.\n"
3219*6236dae4SAndroid Build Coastguard Worker "              Added in 7.52.0.\n"
3220*6236dae4SAndroid Build Coastguard Worker "\n"
3221*6236dae4SAndroid Build Coastguard Worker "       --proxy-capath <dir>\n"
3222*6236dae4SAndroid Build Coastguard Worker "              Same as --capath but used in HTTPS proxy context.\n"
3223*6236dae4SAndroid Build Coastguard Worker "\n"
3224*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3225*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-capath /local/directory -x https://proxy https://example.com\n"
3226*6236dae4SAndroid Build Coastguard Worker "\n"
3227*6236dae4SAndroid Build Coastguard Worker "              See also --proxy-cacert, -x,  --proxy  and  --capath.  Added  in\n"
3228*6236dae4SAndroid Build Coastguard Worker "              7.52.0.\n"
3229*6236dae4SAndroid Build Coastguard Worker "\n"
3230*6236dae4SAndroid Build Coastguard Worker "       --proxy-cert-type <type>\n"
3231*6236dae4SAndroid Build Coastguard Worker , stdout);
3232*6236dae4SAndroid Build Coastguard Worker  fputs(
3233*6236dae4SAndroid Build Coastguard Worker "              Same as --cert-type but used in HTTPS proxy context.\n"
3234*6236dae4SAndroid Build Coastguard Worker "\n"
3235*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3236*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-cert-type PEM --proxy-cert file -x https://proxy https://example.com\n"
3237*6236dae4SAndroid Build Coastguard Worker "\n"
3238*6236dae4SAndroid Build Coastguard Worker "              Added in 7.52.0.\n"
3239*6236dae4SAndroid Build Coastguard Worker "\n"
3240*6236dae4SAndroid Build Coastguard Worker "       --proxy-cert <cert[:passwd]>\n"
3241*6236dae4SAndroid Build Coastguard Worker "              Same as -E, --cert but used in HTTPS proxy context.\n"
3242*6236dae4SAndroid Build Coastguard Worker "\n"
3243*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3244*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-cert file -x https://proxy https://example.com\n"
3245*6236dae4SAndroid Build Coastguard Worker "\n"
3246*6236dae4SAndroid Build Coastguard Worker "              Added in 7.52.0.\n"
3247*6236dae4SAndroid Build Coastguard Worker "\n"
3248*6236dae4SAndroid Build Coastguard Worker "       --proxy-ciphers <list>\n"
3249*6236dae4SAndroid Build Coastguard Worker , stdout);
3250*6236dae4SAndroid Build Coastguard Worker  fputs(
3251*6236dae4SAndroid Build Coastguard Worker "              Same as --ciphers but used in HTTPS proxy context.\n"
3252*6236dae4SAndroid Build Coastguard Worker "\n"
3253*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3254*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-ciphers ECDHE-ECDSA-AES256-CCM8 -x https://proxy https://example.com\n"
3255*6236dae4SAndroid Build Coastguard Worker "\n"
3256*6236dae4SAndroid Build Coastguard Worker "              Added in 7.52.0.\n"
3257*6236dae4SAndroid Build Coastguard Worker "\n"
3258*6236dae4SAndroid Build Coastguard Worker "       --proxy-crlfile <file>\n"
3259*6236dae4SAndroid Build Coastguard Worker "              Same as --crlfile but used in HTTPS proxy context.\n"
3260*6236dae4SAndroid Build Coastguard Worker "\n"
3261*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3262*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-crlfile rejects.txt -x https://proxy https://example.com\n"
3263*6236dae4SAndroid Build Coastguard Worker "\n"
3264*6236dae4SAndroid Build Coastguard Worker "              Added in 7.52.0.\n"
3265*6236dae4SAndroid Build Coastguard Worker "\n"
3266*6236dae4SAndroid Build Coastguard Worker "       --proxy-digest\n"
3267*6236dae4SAndroid Build Coastguard Worker , stdout);
3268*6236dae4SAndroid Build Coastguard Worker  fputs(
3269*6236dae4SAndroid Build Coastguard Worker "              Tells  curl to use HTTP Digest authentication when communicating\n"
3270*6236dae4SAndroid Build Coastguard Worker "              with the given proxy. Use --digest for enabling HTTP Digest with\n"
3271*6236dae4SAndroid Build Coastguard Worker "              a remote host.\n"
3272*6236dae4SAndroid Build Coastguard Worker "\n"
3273*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3274*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-digest --proxy-user user:passwd -x proxy https://example.com\n"
3275*6236dae4SAndroid Build Coastguard Worker "\n"
3276*6236dae4SAndroid Build Coastguard Worker "              See also -x, --proxy, --proxy-anyauth and --proxy-basic.\n"
3277*6236dae4SAndroid Build Coastguard Worker "\n"
3278*6236dae4SAndroid Build Coastguard Worker "       --proxy-header <header/@file>\n"
3279*6236dae4SAndroid Build Coastguard Worker "              (HTTP)  Extra header to include in the request when sending HTTP\n"
3280*6236dae4SAndroid Build Coastguard Worker , stdout);
3281*6236dae4SAndroid Build Coastguard Worker  fputs(
3282*6236dae4SAndroid Build Coastguard Worker "              to a proxy. You may specify any number of extra headers. This is\n"
3283*6236dae4SAndroid Build Coastguard Worker "              the  equivalent option to -H, --header but is for proxy communi-\n"
3284*6236dae4SAndroid Build Coastguard Worker "              cation only like in CONNECT requests when you  want  a  separate\n"
3285*6236dae4SAndroid Build Coastguard Worker "              header  sent  to  the proxy to what is sent to the actual remote\n"
3286*6236dae4SAndroid Build Coastguard Worker "              host.\n"
3287*6236dae4SAndroid Build Coastguard Worker "\n"
3288*6236dae4SAndroid Build Coastguard Worker "              curl will make sure that each header  you  add/replace  is  sent\n"
3289*6236dae4SAndroid Build Coastguard Worker "              with the proper end-of-line marker, you should thus not add that\n"
3290*6236dae4SAndroid Build Coastguard Worker , stdout);
3291*6236dae4SAndroid Build Coastguard Worker  fputs(
3292*6236dae4SAndroid Build Coastguard Worker "              as a part of the header content: do not add newlines or carriage\n"
3293*6236dae4SAndroid Build Coastguard Worker "              returns, they will only mess things up for you.\n"
3294*6236dae4SAndroid Build Coastguard Worker "\n"
3295*6236dae4SAndroid Build Coastguard Worker "              Headers  specified  with this option will not be included in re-\n"
3296*6236dae4SAndroid Build Coastguard Worker "              quests that curl knows will not be sent to a proxy.\n"
3297*6236dae4SAndroid Build Coastguard Worker "\n"
3298*6236dae4SAndroid Build Coastguard Worker "              Starting in 7.55.0, this option can take an argument  in  @file-\n"
3299*6236dae4SAndroid Build Coastguard Worker "              name  style, which then adds a header for each line in the input\n"
3300*6236dae4SAndroid Build Coastguard Worker , stdout);
3301*6236dae4SAndroid Build Coastguard Worker  fputs(
3302*6236dae4SAndroid Build Coastguard Worker "              file. Using @- will make curl read the header file from stdin.\n"
3303*6236dae4SAndroid Build Coastguard Worker "\n"
3304*6236dae4SAndroid Build Coastguard Worker "              This option can be used  multiple  times  to  add/replace/remove\n"
3305*6236dae4SAndroid Build Coastguard Worker "              multiple headers.\n"
3306*6236dae4SAndroid Build Coastguard Worker "\n"
3307*6236dae4SAndroid Build Coastguard Worker "              Examples:\n"
3308*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-header \"X-First-Name: Joe\" -x http://proxy https://example.com\n"
3309*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-header \"User-Agent: surprise\" -x http://proxy https://example.com\n"
3310*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-header \"Host:\" -x http://proxy https://example.com\n"
3311*6236dae4SAndroid Build Coastguard Worker "\n"
3312*6236dae4SAndroid Build Coastguard Worker , stdout);
3313*6236dae4SAndroid Build Coastguard Worker  fputs(
3314*6236dae4SAndroid Build Coastguard Worker "              Added in 7.37.0.\n"
3315*6236dae4SAndroid Build Coastguard Worker "       --proxy-insecure\n"
3316*6236dae4SAndroid Build Coastguard Worker "              Same as -k, --insecure but used in HTTPS proxy context.\n"
3317*6236dae4SAndroid Build Coastguard Worker "\n"
3318*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3319*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-insecure -x https://proxy https://example.com\n"
3320*6236dae4SAndroid Build Coastguard Worker "\n"
3321*6236dae4SAndroid Build Coastguard Worker "              Added in 7.52.0.\n"
3322*6236dae4SAndroid Build Coastguard Worker "\n"
3323*6236dae4SAndroid Build Coastguard Worker "       --proxy-key-type <type>\n"
3324*6236dae4SAndroid Build Coastguard Worker "              Same as --key-type but used in HTTPS proxy context.\n"
3325*6236dae4SAndroid Build Coastguard Worker "\n"
3326*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3327*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-key-type DER --proxy-key here -x https://proxy https://example.com\n"
3328*6236dae4SAndroid Build Coastguard Worker "\n"
3329*6236dae4SAndroid Build Coastguard Worker , stdout);
3330*6236dae4SAndroid Build Coastguard Worker  fputs(
3331*6236dae4SAndroid Build Coastguard Worker "              Added in 7.52.0.\n"
3332*6236dae4SAndroid Build Coastguard Worker "\n"
3333*6236dae4SAndroid Build Coastguard Worker "       --proxy-key <key>\n"
3334*6236dae4SAndroid Build Coastguard Worker "              Same as --key but used in HTTPS proxy context.\n"
3335*6236dae4SAndroid Build Coastguard Worker "\n"
3336*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3337*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-key here -x https://proxy https://example.com\n"
3338*6236dae4SAndroid Build Coastguard Worker "\n"
3339*6236dae4SAndroid Build Coastguard Worker "              Added in 7.52.0.\n"
3340*6236dae4SAndroid Build Coastguard Worker "\n"
3341*6236dae4SAndroid Build Coastguard Worker "       --proxy-negotiate\n"
3342*6236dae4SAndroid Build Coastguard Worker "              Tells  curl  to  use HTTP Negotiate (SPNEGO) authentication when\n"
3343*6236dae4SAndroid Build Coastguard Worker "              communicating with the given proxy. Use --negotiate for enabling\n"
3344*6236dae4SAndroid Build Coastguard Worker "              HTTP Negotiate (SPNEGO) with a remote host.\n"
3345*6236dae4SAndroid Build Coastguard Worker "\n"
3346*6236dae4SAndroid Build Coastguard Worker , stdout);
3347*6236dae4SAndroid Build Coastguard Worker  fputs(
3348*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3349*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-negotiate --proxy-user user:passwd -x proxy https://example.com\n"
3350*6236dae4SAndroid Build Coastguard Worker "\n"
3351*6236dae4SAndroid Build Coastguard Worker "              See also --proxy-anyauth and --proxy-basic.\n"
3352*6236dae4SAndroid Build Coastguard Worker "\n"
3353*6236dae4SAndroid Build Coastguard Worker "       --proxy-ntlm\n"
3354*6236dae4SAndroid Build Coastguard Worker "              Tells  curl  to  use HTTP NTLM authentication when communicating\n"
3355*6236dae4SAndroid Build Coastguard Worker "              with the given proxy. Use --ntlm for enabling NTLM with a remote\n"
3356*6236dae4SAndroid Build Coastguard Worker "              host.\n"
3357*6236dae4SAndroid Build Coastguard Worker "\n"
3358*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3359*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-ntlm --proxy-user user:passwd -x http://proxy https://example.com\n"
3360*6236dae4SAndroid Build Coastguard Worker "\n"
3361*6236dae4SAndroid Build Coastguard Worker , stdout);
3362*6236dae4SAndroid Build Coastguard Worker  fputs(
3363*6236dae4SAndroid Build Coastguard Worker "              See also --proxy-negotiate and --proxy-anyauth.\n"
3364*6236dae4SAndroid Build Coastguard Worker "\n"
3365*6236dae4SAndroid Build Coastguard Worker "       --proxy-pass <phrase>\n"
3366*6236dae4SAndroid Build Coastguard Worker "              Same as --pass but used in HTTPS proxy context.\n"
3367*6236dae4SAndroid Build Coastguard Worker "\n"
3368*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3369*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-pass secret --proxy-key here -x https://proxy https://example.com\n"
3370*6236dae4SAndroid Build Coastguard Worker "\n"
3371*6236dae4SAndroid Build Coastguard Worker "              Added in 7.52.0.\n"
3372*6236dae4SAndroid Build Coastguard Worker "\n"
3373*6236dae4SAndroid Build Coastguard Worker "       --proxy-pinnedpubkey <hashes>\n"
3374*6236dae4SAndroid Build Coastguard Worker "              (TLS)  Tells  curl  to  use  the  specified  public key file (or\n"
3375*6236dae4SAndroid Build Coastguard Worker "              hashes) to verify the proxy. This can be a path to a file  which\n"
3376*6236dae4SAndroid Build Coastguard Worker , stdout);
3377*6236dae4SAndroid Build Coastguard Worker  fputs(
3378*6236dae4SAndroid Build Coastguard Worker "              contains a single public key in PEM or DER format, or any number\n"
3379*6236dae4SAndroid Build Coastguard Worker "              of base64 encoded sha256 hashes preceded by 'sha256//' and sepa-\n"
3380*6236dae4SAndroid Build Coastguard Worker "              rated by ';'.\n"
3381*6236dae4SAndroid Build Coastguard Worker "\n"
3382*6236dae4SAndroid Build Coastguard Worker "              When  negotiating  a  TLS  or SSL connection, the server sends a\n"
3383*6236dae4SAndroid Build Coastguard Worker "              certificate indicating its identity. A public key  is  extracted\n"
3384*6236dae4SAndroid Build Coastguard Worker "              from  this certificate and if it does not exactly match the pub-\n"
3385*6236dae4SAndroid Build Coastguard Worker , stdout);
3386*6236dae4SAndroid Build Coastguard Worker  fputs(
3387*6236dae4SAndroid Build Coastguard Worker "              lic key provided to this option, curl will abort the  connection\n"
3388*6236dae4SAndroid Build Coastguard Worker "              before sending or receiving any data.\n"
3389*6236dae4SAndroid Build Coastguard Worker "\n"
3390*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
3391*6236dae4SAndroid Build Coastguard Worker "\n"
3392*6236dae4SAndroid Build Coastguard Worker "              Examples:\n"
3393*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-pinnedpubkey keyfile https://example.com\n"
3394*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-pinnedpubkey 'sha256//ce118b51897f4452dc' https://example.com\n"
3395*6236dae4SAndroid Build Coastguard Worker "\n"
3396*6236dae4SAndroid Build Coastguard Worker "              Added in 7.59.0.\n"
3397*6236dae4SAndroid Build Coastguard Worker "\n"
3398*6236dae4SAndroid Build Coastguard Worker "       --proxy-service-name <name>\n"
3399*6236dae4SAndroid Build Coastguard Worker , stdout);
3400*6236dae4SAndroid Build Coastguard Worker  fputs(
3401*6236dae4SAndroid Build Coastguard Worker "              This  option allows you to change the service name for proxy ne-\n"
3402*6236dae4SAndroid Build Coastguard Worker "              gotiation.\n"
3403*6236dae4SAndroid Build Coastguard Worker "\n"
3404*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3405*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-service-name \"shrubbery\" -x proxy https://example.com\n"
3406*6236dae4SAndroid Build Coastguard Worker "\n"
3407*6236dae4SAndroid Build Coastguard Worker "              Added in 7.43.0.\n"
3408*6236dae4SAndroid Build Coastguard Worker "\n"
3409*6236dae4SAndroid Build Coastguard Worker "       --proxy-ssl-allow-beast\n"
3410*6236dae4SAndroid Build Coastguard Worker "              Same as --ssl-allow-beast but used in HTTPS proxy context.\n"
3411*6236dae4SAndroid Build Coastguard Worker "\n"
3412*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3413*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-ssl-allow-beast -x https://proxy https://example.com\n"
3414*6236dae4SAndroid Build Coastguard Worker "\n"
3415*6236dae4SAndroid Build Coastguard Worker "              Added in 7.52.0.\n"
3416*6236dae4SAndroid Build Coastguard Worker "\n"
3417*6236dae4SAndroid Build Coastguard Worker , stdout);
3418*6236dae4SAndroid Build Coastguard Worker  fputs(
3419*6236dae4SAndroid Build Coastguard Worker "       --proxy-ssl-auto-client-cert\n"
3420*6236dae4SAndroid Build Coastguard Worker "              Same as --ssl-auto-client-cert but used in HTTPS proxy context.\n"
3421*6236dae4SAndroid Build Coastguard Worker "\n"
3422*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3423*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-ssl-auto-client-cert -x https://proxy https://example.com\n"
3424*6236dae4SAndroid Build Coastguard Worker "\n"
3425*6236dae4SAndroid Build Coastguard Worker "              Added in 7.77.0.\n"
3426*6236dae4SAndroid Build Coastguard Worker "\n"
3427*6236dae4SAndroid Build Coastguard Worker "       --proxy-tls13-ciphers <ciphersuite list>\n"
3428*6236dae4SAndroid Build Coastguard Worker "              (TLS) Specifies which cipher suites to use in the connection  to\n"
3429*6236dae4SAndroid Build Coastguard Worker "              your HTTPS proxy when it negotiates TLS 1.3. The list of ciphers\n"
3430*6236dae4SAndroid Build Coastguard Worker , stdout);
3431*6236dae4SAndroid Build Coastguard Worker  fputs(
3432*6236dae4SAndroid Build Coastguard Worker "              suites must specify valid ciphers. Read up  on  TLS  1.3  cipher\n"
3433*6236dae4SAndroid Build Coastguard Worker "              suite details on this URL:\n"
3434*6236dae4SAndroid Build Coastguard Worker "\n"
3435*6236dae4SAndroid Build Coastguard Worker "               https://curl.se/docs/ssl-ciphers.html\n"
3436*6236dae4SAndroid Build Coastguard Worker "\n"
3437*6236dae4SAndroid Build Coastguard Worker "              This  option  is  currently  used only when curl is built to use\n"
3438*6236dae4SAndroid Build Coastguard Worker "              OpenSSL 1.1.1 or later. If you are using a different SSL backend\n"
3439*6236dae4SAndroid Build Coastguard Worker "              you  can try setting TLS 1.3 cipher suites by using the --proxy-\n"
3440*6236dae4SAndroid Build Coastguard Worker "              ciphers option.\n"
3441*6236dae4SAndroid Build Coastguard Worker "\n"
3442*6236dae4SAndroid Build Coastguard Worker , stdout);
3443*6236dae4SAndroid Build Coastguard Worker  fputs(
3444*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
3445*6236dae4SAndroid Build Coastguard Worker "\n"
3446*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3447*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-tls13-ciphers TLS_AES_128_GCM_SHA256 -x proxy https://example.com\n"
3448*6236dae4SAndroid Build Coastguard Worker "\n"
3449*6236dae4SAndroid Build Coastguard Worker "              Added in 7.61.0.\n"
3450*6236dae4SAndroid Build Coastguard Worker "\n"
3451*6236dae4SAndroid Build Coastguard Worker "       --proxy-tlsauthtype <type>\n"
3452*6236dae4SAndroid Build Coastguard Worker "              Same as --tlsauthtype but used in HTTPS proxy context.\n"
3453*6236dae4SAndroid Build Coastguard Worker "\n"
3454*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3455*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-tlsauthtype SRP -x https://proxy https://example.com\n"
3456*6236dae4SAndroid Build Coastguard Worker "\n"
3457*6236dae4SAndroid Build Coastguard Worker "              Added in 7.52.0.\n"
3458*6236dae4SAndroid Build Coastguard Worker "\n"
3459*6236dae4SAndroid Build Coastguard Worker , stdout);
3460*6236dae4SAndroid Build Coastguard Worker  fputs(
3461*6236dae4SAndroid Build Coastguard Worker "       --proxy-tlspassword <string>\n"
3462*6236dae4SAndroid Build Coastguard Worker "              Same as --tlspassword but used in HTTPS proxy context.\n"
3463*6236dae4SAndroid Build Coastguard Worker "\n"
3464*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3465*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-tlspassword passwd -x https://proxy https://example.com\n"
3466*6236dae4SAndroid Build Coastguard Worker "\n"
3467*6236dae4SAndroid Build Coastguard Worker "              Added in 7.52.0.\n"
3468*6236dae4SAndroid Build Coastguard Worker "\n"
3469*6236dae4SAndroid Build Coastguard Worker "       --proxy-tlsuser <name>\n"
3470*6236dae4SAndroid Build Coastguard Worker "              Same as --tlsuser but used in HTTPS proxy context.\n"
3471*6236dae4SAndroid Build Coastguard Worker "\n"
3472*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3473*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-tlsuser smith -x https://proxy https://example.com\n"
3474*6236dae4SAndroid Build Coastguard Worker "\n"
3475*6236dae4SAndroid Build Coastguard Worker "              Added in 7.52.0.\n"
3476*6236dae4SAndroid Build Coastguard Worker "\n"
3477*6236dae4SAndroid Build Coastguard Worker "       --proxy-tlsv1\n"
3478*6236dae4SAndroid Build Coastguard Worker , stdout);
3479*6236dae4SAndroid Build Coastguard Worker  fputs(
3480*6236dae4SAndroid Build Coastguard Worker "              Same as -1, --tlsv1 but used in HTTPS proxy context.\n"
3481*6236dae4SAndroid Build Coastguard Worker "\n"
3482*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3483*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-tlsv1 -x https://proxy https://example.com\n"
3484*6236dae4SAndroid Build Coastguard Worker "\n"
3485*6236dae4SAndroid Build Coastguard Worker "              Added in 7.52.0.\n"
3486*6236dae4SAndroid Build Coastguard Worker "\n"
3487*6236dae4SAndroid Build Coastguard Worker "       -U, --proxy-user <user:password>\n"
3488*6236dae4SAndroid Build Coastguard Worker "              Specify the user name and password to use for proxy  authentica-\n"
3489*6236dae4SAndroid Build Coastguard Worker "              tion.\n"
3490*6236dae4SAndroid Build Coastguard Worker "\n"
3491*6236dae4SAndroid Build Coastguard Worker "              If  you use a Windows SSPI-enabled curl binary and do either Ne-\n"
3492*6236dae4SAndroid Build Coastguard Worker "              gotiate or NTLM authentication then you can tell curl to  select\n"
3493*6236dae4SAndroid Build Coastguard Worker , stdout);
3494*6236dae4SAndroid Build Coastguard Worker  fputs(
3495*6236dae4SAndroid Build Coastguard Worker "              the user name and password from your environment by specifying a\n"
3496*6236dae4SAndroid Build Coastguard Worker "              single colon with this option: \"-U :\".\n"
3497*6236dae4SAndroid Build Coastguard Worker "\n"
3498*6236dae4SAndroid Build Coastguard Worker "              On systems where it works, curl will hide the given option argu-\n"
3499*6236dae4SAndroid Build Coastguard Worker "              ment  from  process listings. This is not enough to protect cre-\n"
3500*6236dae4SAndroid Build Coastguard Worker "              dentials from possibly getting seen by other users on  the  same\n"
3501*6236dae4SAndroid Build Coastguard Worker "              system  as  they will still be visible for a brief moment before\n"
3502*6236dae4SAndroid Build Coastguard Worker , stdout);
3503*6236dae4SAndroid Build Coastguard Worker  fputs(
3504*6236dae4SAndroid Build Coastguard Worker "              cleared. Such sensitive data should be retrieved from a file in-\n"
3505*6236dae4SAndroid Build Coastguard Worker "              stead or similar and never used in clear text in a command line.\n"
3506*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
3507*6236dae4SAndroid Build Coastguard Worker "\n"
3508*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3509*6236dae4SAndroid Build Coastguard Worker "               curl --proxy-user name:pwd -x proxy https://example.com\n"
3510*6236dae4SAndroid Build Coastguard Worker "\n"
3511*6236dae4SAndroid Build Coastguard Worker "       -x, --proxy [protocol://]host[:port]\n"
3512*6236dae4SAndroid Build Coastguard Worker "              Use the specified proxy.\n"
3513*6236dae4SAndroid Build Coastguard Worker "\n"
3514*6236dae4SAndroid Build Coastguard Worker "              The  proxy string can be specified with a protocol:// prefix. No\n"
3515*6236dae4SAndroid Build Coastguard Worker , stdout);
3516*6236dae4SAndroid Build Coastguard Worker  fputs(
3517*6236dae4SAndroid Build Coastguard Worker "              protocol specified or http:// will be treated as HTTP proxy. Use\n"
3518*6236dae4SAndroid Build Coastguard Worker "              socks4://, socks4a://, socks5:// or socks5h:// to request a spe-\n"
3519*6236dae4SAndroid Build Coastguard Worker "              cific SOCKS version to be used.\n"
3520*6236dae4SAndroid Build Coastguard Worker "\n"
3521*6236dae4SAndroid Build Coastguard Worker "              HTTPS proxy support via https:// protocol prefix  was  added  in\n"
3522*6236dae4SAndroid Build Coastguard Worker "              7.52.0 for OpenSSL, GnuTLS and NSS.\n"
3523*6236dae4SAndroid Build Coastguard Worker "\n"
3524*6236dae4SAndroid Build Coastguard Worker "              Unrecognized  and  unsupported  proxy  protocols  cause an error\n"
3525*6236dae4SAndroid Build Coastguard Worker "              since 7.52.0.  Prior versions may ignore the  protocol  and  use\n"
3526*6236dae4SAndroid Build Coastguard Worker , stdout);
3527*6236dae4SAndroid Build Coastguard Worker  fputs(
3528*6236dae4SAndroid Build Coastguard Worker "              http:// instead.\n"
3529*6236dae4SAndroid Build Coastguard Worker "\n"
3530*6236dae4SAndroid Build Coastguard Worker "              If  the  port number is not specified in the proxy string, it is\n"
3531*6236dae4SAndroid Build Coastguard Worker "              assumed to be 1080.\n"
3532*6236dae4SAndroid Build Coastguard Worker "\n"
3533*6236dae4SAndroid Build Coastguard Worker "              This option overrides existing environment  variables  that  set\n"
3534*6236dae4SAndroid Build Coastguard Worker "              the  proxy  to use. If there's an environment variable setting a\n"
3535*6236dae4SAndroid Build Coastguard Worker "              proxy, you can set proxy to \"\" to override it.\n"
3536*6236dae4SAndroid Build Coastguard Worker "\n"
3537*6236dae4SAndroid Build Coastguard Worker "              All operations that are performed over an HTTP proxy will trans-\n"
3538*6236dae4SAndroid Build Coastguard Worker , stdout);
3539*6236dae4SAndroid Build Coastguard Worker  fputs(
3540*6236dae4SAndroid Build Coastguard Worker "              parently  be  converted  to HTTP. It means that certain protocol\n"
3541*6236dae4SAndroid Build Coastguard Worker "              specific operations might not be available. This is not the case\n"
3542*6236dae4SAndroid Build Coastguard Worker "              if you can tunnel through the proxy, as one with the -p, --prox-\n"
3543*6236dae4SAndroid Build Coastguard Worker "              ytunnel option.\n"
3544*6236dae4SAndroid Build Coastguard Worker "\n"
3545*6236dae4SAndroid Build Coastguard Worker "              User and password that might be provided in the proxy string are\n"
3546*6236dae4SAndroid Build Coastguard Worker "              URL  decoded by curl. This allows you to pass in special charac-\n"
3547*6236dae4SAndroid Build Coastguard Worker "              ters such as @ by using %40 or pass in a colon with %3a.\n"
3548*6236dae4SAndroid Build Coastguard Worker "\n"
3549*6236dae4SAndroid Build Coastguard Worker , stdout);
3550*6236dae4SAndroid Build Coastguard Worker  fputs(
3551*6236dae4SAndroid Build Coastguard Worker "              The proxy host can be specified the exact same way as the  proxy\n"
3552*6236dae4SAndroid Build Coastguard Worker "              environment  variables,  including the protocol prefix (http://)\n"
3553*6236dae4SAndroid Build Coastguard Worker "              and the embedded user + password.\n"
3554*6236dae4SAndroid Build Coastguard Worker "\n"
3555*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
3556*6236dae4SAndroid Build Coastguard Worker "\n"
3557*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3558*6236dae4SAndroid Build Coastguard Worker "               curl --proxy http://proxy.example https://example.com\n"
3559*6236dae4SAndroid Build Coastguard Worker "\n"
3560*6236dae4SAndroid Build Coastguard Worker "       --proxy1.0 <host[:port]>\n"
3561*6236dae4SAndroid Build Coastguard Worker "              Use the specified HTTP 1.0 proxy. If  the  port  number  is  not\n"
3562*6236dae4SAndroid Build Coastguard Worker , stdout);
3563*6236dae4SAndroid Build Coastguard Worker  fputs(
3564*6236dae4SAndroid Build Coastguard Worker "              specified, it is assumed at port 1080.\n"
3565*6236dae4SAndroid Build Coastguard Worker "\n"
3566*6236dae4SAndroid Build Coastguard Worker "              The  only  difference between this and the HTTP proxy option -x,\n"
3567*6236dae4SAndroid Build Coastguard Worker "              --proxy, is that attempts to use CONNECT through the proxy  will\n"
3568*6236dae4SAndroid Build Coastguard Worker "              specify an HTTP 1.0 protocol instead of the default HTTP 1.1.\n"
3569*6236dae4SAndroid Build Coastguard Worker "\n"
3570*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3571*6236dae4SAndroid Build Coastguard Worker "               curl --proxy1.0 -x http://proxy https://example.com\n"
3572*6236dae4SAndroid Build Coastguard Worker "\n"
3573*6236dae4SAndroid Build Coastguard Worker "       -p, --proxytunnel\n"
3574*6236dae4SAndroid Build Coastguard Worker "              When  an  HTTP  proxy is used -x, --proxy, this option will make\n"
3575*6236dae4SAndroid Build Coastguard Worker , stdout);
3576*6236dae4SAndroid Build Coastguard Worker  fputs(
3577*6236dae4SAndroid Build Coastguard Worker "              curl tunnel through the proxy. The tunnel approach is made  with\n"
3578*6236dae4SAndroid Build Coastguard Worker "              the  HTTP  proxy CONNECT request and requires that the proxy al-\n"
3579*6236dae4SAndroid Build Coastguard Worker "              lows direct connect to the remote port number curl wants to tun-\n"
3580*6236dae4SAndroid Build Coastguard Worker "              nel through to.\n"
3581*6236dae4SAndroid Build Coastguard Worker "\n"
3582*6236dae4SAndroid Build Coastguard Worker "              To  suppress  proxy CONNECT response headers when curl is set to\n"
3583*6236dae4SAndroid Build Coastguard Worker "              output headers use --suppress-connect-headers.\n"
3584*6236dae4SAndroid Build Coastguard Worker "\n"
3585*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3586*6236dae4SAndroid Build Coastguard Worker , stdout);
3587*6236dae4SAndroid Build Coastguard Worker  fputs(
3588*6236dae4SAndroid Build Coastguard Worker "               curl --proxytunnel -x http://proxy https://example.com\n"
3589*6236dae4SAndroid Build Coastguard Worker "\n"
3590*6236dae4SAndroid Build Coastguard Worker "              See also -x, --proxy.\n"
3591*6236dae4SAndroid Build Coastguard Worker "\n"
3592*6236dae4SAndroid Build Coastguard Worker "       --pubkey <key>\n"
3593*6236dae4SAndroid Build Coastguard Worker "              (SFTP SCP) Public key file name. Allows you to provide your pub-\n"
3594*6236dae4SAndroid Build Coastguard Worker "              lic key in this separate file.\n"
3595*6236dae4SAndroid Build Coastguard Worker "\n"
3596*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
3597*6236dae4SAndroid Build Coastguard Worker "              (As of 7.39.0, curl attempts to automatically extract the public\n"
3598*6236dae4SAndroid Build Coastguard Worker "              key from the private key file, so passing this option is  gener-\n"
3599*6236dae4SAndroid Build Coastguard Worker , stdout);
3600*6236dae4SAndroid Build Coastguard Worker  fputs(
3601*6236dae4SAndroid Build Coastguard Worker "              ally not required. Note that this public key extraction requires\n"
3602*6236dae4SAndroid Build Coastguard Worker "              libcurl to be linked against a copy of libssh2 1.2.8  or  higher\n"
3603*6236dae4SAndroid Build Coastguard Worker "              that is itself linked against OpenSSL.)\n"
3604*6236dae4SAndroid Build Coastguard Worker "\n"
3605*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3606*6236dae4SAndroid Build Coastguard Worker "               curl --pubkey file.pub sftp://example.com/\n"
3607*6236dae4SAndroid Build Coastguard Worker "\n"
3608*6236dae4SAndroid Build Coastguard Worker "       -Q, --quote <command>\n"
3609*6236dae4SAndroid Build Coastguard Worker "              (FTP  SFTP)  Send an arbitrary command to the remote FTP or SFTP\n"
3610*6236dae4SAndroid Build Coastguard Worker "              server. Quote commands are sent BEFORE the transfer takes  place\n"
3611*6236dae4SAndroid Build Coastguard Worker , stdout);
3612*6236dae4SAndroid Build Coastguard Worker  fputs(
3613*6236dae4SAndroid Build Coastguard Worker "              (just  after  the  initial PWD command in an FTP transfer, to be\n"
3614*6236dae4SAndroid Build Coastguard Worker "              exact). To make commands take place after a successful transfer,\n"
3615*6236dae4SAndroid Build Coastguard Worker "              prefix  them  with  a  dash '-'.  To make commands be sent after\n"
3616*6236dae4SAndroid Build Coastguard Worker "              curl has changed the working directory, just before the transfer\n"
3617*6236dae4SAndroid Build Coastguard Worker "              command(s),  prefix  the  command  with a '+' (this is only sup-\n"
3618*6236dae4SAndroid Build Coastguard Worker "              ported for FTP). You may specify any number of commands.\n"
3619*6236dae4SAndroid Build Coastguard Worker "\n"
3620*6236dae4SAndroid Build Coastguard Worker , stdout);
3621*6236dae4SAndroid Build Coastguard Worker  fputs(
3622*6236dae4SAndroid Build Coastguard Worker "              By default curl will stop at first failure. To  make  curl  con-\n"
3623*6236dae4SAndroid Build Coastguard Worker "              tinue  even if the command fails, prefix the command with an as-\n"
3624*6236dae4SAndroid Build Coastguard Worker "              terisk (*). Otherwise, if the server returns failure for one  of\n"
3625*6236dae4SAndroid Build Coastguard Worker "              the commands, the entire operation will be aborted.\n"
3626*6236dae4SAndroid Build Coastguard Worker "\n"
3627*6236dae4SAndroid Build Coastguard Worker "              You  must send syntactically correct FTP commands as RFC 959 de-\n"
3628*6236dae4SAndroid Build Coastguard Worker "              fines to FTP servers, or one of the  commands  listed  below  to\n"
3629*6236dae4SAndroid Build Coastguard Worker "              SFTP servers.\n"
3630*6236dae4SAndroid Build Coastguard Worker "\n"
3631*6236dae4SAndroid Build Coastguard Worker , stdout);
3632*6236dae4SAndroid Build Coastguard Worker  fputs(
3633*6236dae4SAndroid Build Coastguard Worker "              This option can be used multiple times.\n"
3634*6236dae4SAndroid Build Coastguard Worker "\n"
3635*6236dae4SAndroid Build Coastguard Worker "              SFTP  is a binary protocol. Unlike for FTP, curl interprets SFTP\n"
3636*6236dae4SAndroid Build Coastguard Worker "              quote commands itself before sending them to the  server.   File\n"
3637*6236dae4SAndroid Build Coastguard Worker "              names may be quoted shell-style to embed spaces or special char-\n"
3638*6236dae4SAndroid Build Coastguard Worker "              acters.  Following is the list of all supported SFTP quote  com-\n"
3639*6236dae4SAndroid Build Coastguard Worker "              mands:\n"
3640*6236dae4SAndroid Build Coastguard Worker "\n"
3641*6236dae4SAndroid Build Coastguard Worker "              atime date file\n"
3642*6236dae4SAndroid Build Coastguard Worker , stdout);
3643*6236dae4SAndroid Build Coastguard Worker  fputs(
3644*6236dae4SAndroid Build Coastguard Worker "                     The  atime  command sets the last access time of the file\n"
3645*6236dae4SAndroid Build Coastguard Worker "                     named by the file operand. The <date expression>  can  be\n"
3646*6236dae4SAndroid Build Coastguard Worker "                     all  sorts  of  date strings, see the curl_getdate(3) man\n"
3647*6236dae4SAndroid Build Coastguard Worker "                     page for date expression details. (Added in 7.73.0)\n"
3648*6236dae4SAndroid Build Coastguard Worker "\n"
3649*6236dae4SAndroid Build Coastguard Worker "              chgrp group file\n"
3650*6236dae4SAndroid Build Coastguard Worker "                     The chgrp command sets the group ID of the file named  by\n"
3651*6236dae4SAndroid Build Coastguard Worker "                     the  file  operand to the group ID specified by the group\n"
3652*6236dae4SAndroid Build Coastguard Worker , stdout);
3653*6236dae4SAndroid Build Coastguard Worker  fputs(
3654*6236dae4SAndroid Build Coastguard Worker "                     operand. The group operand is a decimal integer group ID.\n"
3655*6236dae4SAndroid Build Coastguard Worker "\n"
3656*6236dae4SAndroid Build Coastguard Worker "              chmod mode file\n"
3657*6236dae4SAndroid Build Coastguard Worker "                     The chmod command modifies the  file  mode  bits  of  the\n"
3658*6236dae4SAndroid Build Coastguard Worker "                     specified file. The mode operand is an octal integer mode\n"
3659*6236dae4SAndroid Build Coastguard Worker "                     number.\n"
3660*6236dae4SAndroid Build Coastguard Worker "\n"
3661*6236dae4SAndroid Build Coastguard Worker "              chown user file\n"
3662*6236dae4SAndroid Build Coastguard Worker "                     The chown command sets the owner of the file named by the\n"
3663*6236dae4SAndroid Build Coastguard Worker "                     file  operand  to the user ID specified by the user oper-\n"
3664*6236dae4SAndroid Build Coastguard Worker , stdout);
3665*6236dae4SAndroid Build Coastguard Worker  fputs(
3666*6236dae4SAndroid Build Coastguard Worker "                     and. The user operand is a decimal integer user ID.\n"
3667*6236dae4SAndroid Build Coastguard Worker "\n"
3668*6236dae4SAndroid Build Coastguard Worker "              ln source_file target_file\n"
3669*6236dae4SAndroid Build Coastguard Worker "                     The ln and symlink commands create a symbolic link at the\n"
3670*6236dae4SAndroid Build Coastguard Worker "                     target_file  location  pointing  to the source_file loca-\n"
3671*6236dae4SAndroid Build Coastguard Worker "                     tion.\n"
3672*6236dae4SAndroid Build Coastguard Worker "\n"
3673*6236dae4SAndroid Build Coastguard Worker "              mkdir directory_name\n"
3674*6236dae4SAndroid Build Coastguard Worker "                     The mkdir command creates the directory named by the  di-\n"
3675*6236dae4SAndroid Build Coastguard Worker "                     rectory_name operand.\n"
3676*6236dae4SAndroid Build Coastguard Worker "\n"
3677*6236dae4SAndroid Build Coastguard Worker "              mtime date file\n"
3678*6236dae4SAndroid Build Coastguard Worker , stdout);
3679*6236dae4SAndroid Build Coastguard Worker  fputs(
3680*6236dae4SAndroid Build Coastguard Worker "                     The  mtime command sets the last modification time of the\n"
3681*6236dae4SAndroid Build Coastguard Worker "                     file named by the file operand. The <date expression> can\n"
3682*6236dae4SAndroid Build Coastguard Worker "                     be all sorts of date strings, see the curl_getdate(3) man\n"
3683*6236dae4SAndroid Build Coastguard Worker "                     page for date expression details. (Added in 7.73.0)\n"
3684*6236dae4SAndroid Build Coastguard Worker "\n"
3685*6236dae4SAndroid Build Coastguard Worker "              pwd    The pwd command returns the absolute pathname of the cur-\n"
3686*6236dae4SAndroid Build Coastguard Worker "                     rent working directory.\n"
3687*6236dae4SAndroid Build Coastguard Worker "\n"
3688*6236dae4SAndroid Build Coastguard Worker "              rename source target\n"
3689*6236dae4SAndroid Build Coastguard Worker , stdout);
3690*6236dae4SAndroid Build Coastguard Worker  fputs(
3691*6236dae4SAndroid Build Coastguard Worker "                     The rename command renames the file or directory named by\n"
3692*6236dae4SAndroid Build Coastguard Worker "                     the source operand to the destination path named  by  the\n"
3693*6236dae4SAndroid Build Coastguard Worker "                     target operand.\n"
3694*6236dae4SAndroid Build Coastguard Worker "\n"
3695*6236dae4SAndroid Build Coastguard Worker "              rm file\n"
3696*6236dae4SAndroid Build Coastguard Worker "                     The rm command removes the file specified by the file op-\n"
3697*6236dae4SAndroid Build Coastguard Worker "                     erand.\n"
3698*6236dae4SAndroid Build Coastguard Worker "\n"
3699*6236dae4SAndroid Build Coastguard Worker "              rmdir directory\n"
3700*6236dae4SAndroid Build Coastguard Worker "                     The rmdir command removes the directory  entry  specified\n"
3701*6236dae4SAndroid Build Coastguard Worker , stdout);
3702*6236dae4SAndroid Build Coastguard Worker  fputs(
3703*6236dae4SAndroid Build Coastguard Worker "                     by the directory operand, provided it is empty.\n"
3704*6236dae4SAndroid Build Coastguard Worker "\n"
3705*6236dae4SAndroid Build Coastguard Worker "              symlink source_file target_file\n"
3706*6236dae4SAndroid Build Coastguard Worker "                     See ln.\n"
3707*6236dae4SAndroid Build Coastguard Worker "\n"
3708*6236dae4SAndroid Build Coastguard Worker "       Example:\n"
3709*6236dae4SAndroid Build Coastguard Worker "        curl --quote \"DELE file\" ftp://example.com/foo\n"
3710*6236dae4SAndroid Build Coastguard Worker "\n"
3711*6236dae4SAndroid Build Coastguard Worker "       --random-file <file>\n"
3712*6236dae4SAndroid Build Coastguard Worker "              Specify the path name to file containing what will be considered\n"
3713*6236dae4SAndroid Build Coastguard Worker "              as random data. The data may be used to seed the  random  engine\n"
3714*6236dae4SAndroid Build Coastguard Worker "              for SSL connections.  See also the --egd-file option.\n"
3715*6236dae4SAndroid Build Coastguard Worker "\n"
3716*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3717*6236dae4SAndroid Build Coastguard Worker , stdout);
3718*6236dae4SAndroid Build Coastguard Worker  fputs(
3719*6236dae4SAndroid Build Coastguard Worker "               curl --random-file rubbish https://example.com\n"
3720*6236dae4SAndroid Build Coastguard Worker "\n"
3721*6236dae4SAndroid Build Coastguard Worker "       -r, --range <range>\n"
3722*6236dae4SAndroid Build Coastguard Worker "              (HTTP FTP SFTP FILE) Retrieve a byte range (i.e. a partial docu-\n"
3723*6236dae4SAndroid Build Coastguard Worker "              ment) from an HTTP/1.1, FTP or SFTP  server  or  a  local  FILE.\n"
3724*6236dae4SAndroid Build Coastguard Worker "              Ranges can be specified in a number of ways.\n"
3725*6236dae4SAndroid Build Coastguard Worker "\n"
3726*6236dae4SAndroid Build Coastguard Worker "              0-499     specifies the first 500 bytes\n"
3727*6236dae4SAndroid Build Coastguard Worker "\n"
3728*6236dae4SAndroid Build Coastguard Worker "              500-999   specifies the second 500 bytes\n"
3729*6236dae4SAndroid Build Coastguard Worker "\n"
3730*6236dae4SAndroid Build Coastguard Worker "              -500      specifies the last 500 bytes\n"
3731*6236dae4SAndroid Build Coastguard Worker "\n"
3732*6236dae4SAndroid Build Coastguard Worker , stdout);
3733*6236dae4SAndroid Build Coastguard Worker  fputs(
3734*6236dae4SAndroid Build Coastguard Worker "              9500-     specifies the bytes from offset 9500 and forward\n"
3735*6236dae4SAndroid Build Coastguard Worker "\n"
3736*6236dae4SAndroid Build Coastguard Worker "              0-0,-1    specifies the first and last byte only(*)(HTTP)\n"
3737*6236dae4SAndroid Build Coastguard Worker "\n"
3738*6236dae4SAndroid Build Coastguard Worker "              100-199,500-599\n"
3739*6236dae4SAndroid Build Coastguard Worker "                        specifies two separate 100-byte ranges(*) (HTTP)\n"
3740*6236dae4SAndroid Build Coastguard Worker "\n"
3741*6236dae4SAndroid Build Coastguard Worker "              (*)  = NOTE that this will cause the server to reply with a mul-\n"
3742*6236dae4SAndroid Build Coastguard Worker "              tipart response, which will be returned as-is by  curl!  Parsing\n"
3743*6236dae4SAndroid Build Coastguard Worker "              or otherwise transforming this response is the responsibility of\n"
3744*6236dae4SAndroid Build Coastguard Worker , stdout);
3745*6236dae4SAndroid Build Coastguard Worker  fputs(
3746*6236dae4SAndroid Build Coastguard Worker "              the caller.\n"
3747*6236dae4SAndroid Build Coastguard Worker "\n"
3748*6236dae4SAndroid Build Coastguard Worker "              Only digit characters (0-9) are valid in the 'start' and  'stop'\n"
3749*6236dae4SAndroid Build Coastguard Worker "              fields  of the 'start-stop' range syntax. If a non-digit charac-\n"
3750*6236dae4SAndroid Build Coastguard Worker "              ter is given in the range, the server's response will be unspec-\n"
3751*6236dae4SAndroid Build Coastguard Worker "              ified, depending on the server's configuration.\n"
3752*6236dae4SAndroid Build Coastguard Worker "\n"
3753*6236dae4SAndroid Build Coastguard Worker "              You  should also be aware that many HTTP/1.1 servers do not have\n"
3754*6236dae4SAndroid Build Coastguard Worker "              this feature enabled, so that when you attempt to get  a  range,\n"
3755*6236dae4SAndroid Build Coastguard Worker , stdout);
3756*6236dae4SAndroid Build Coastguard Worker  fputs(
3757*6236dae4SAndroid Build Coastguard Worker "              you will instead get the whole document.\n"
3758*6236dae4SAndroid Build Coastguard Worker "\n"
3759*6236dae4SAndroid Build Coastguard Worker "              FTP  and  SFTP  range  downloads only support the simple 'start-\n"
3760*6236dae4SAndroid Build Coastguard Worker "              stop' syntax (optionally with one of the numbers  omitted).  FTP\n"
3761*6236dae4SAndroid Build Coastguard Worker "              use depends on the extended FTP command SIZE.\n"
3762*6236dae4SAndroid Build Coastguard Worker "\n"
3763*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
3764*6236dae4SAndroid Build Coastguard Worker "\n"
3765*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3766*6236dae4SAndroid Build Coastguard Worker "               curl --range 22-44 https://example.com\n"
3767*6236dae4SAndroid Build Coastguard Worker "\n"
3768*6236dae4SAndroid Build Coastguard Worker , stdout);
3769*6236dae4SAndroid Build Coastguard Worker  fputs(
3770*6236dae4SAndroid Build Coastguard Worker "       --raw  (HTTP) When used, it disables all internal HTTP decoding of con-\n"
3771*6236dae4SAndroid Build Coastguard Worker "              tent or transfer encodings and instead makes them passed on  un-\n"
3772*6236dae4SAndroid Build Coastguard Worker "              altered, raw.\n"
3773*6236dae4SAndroid Build Coastguard Worker "\n"
3774*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3775*6236dae4SAndroid Build Coastguard Worker "               curl --raw https://example.com\n"
3776*6236dae4SAndroid Build Coastguard Worker "\n"
3777*6236dae4SAndroid Build Coastguard Worker "       -e, --referer <URL>\n"
3778*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Sends the \"Referrer Page\" information to the HTTP server.\n"
3779*6236dae4SAndroid Build Coastguard Worker "              This can also be set with the -H, --header flag of course.  When\n"
3780*6236dae4SAndroid Build Coastguard Worker , stdout);
3781*6236dae4SAndroid Build Coastguard Worker  fputs(
3782*6236dae4SAndroid Build Coastguard Worker "              used  with  -L,  --location  you  can  append \";auto\" to the -e,\n"
3783*6236dae4SAndroid Build Coastguard Worker "              --referer URL to make curl automatically set  the  previous  URL\n"
3784*6236dae4SAndroid Build Coastguard Worker "              when  it  follows  a Location: header. The \";auto\" string can be\n"
3785*6236dae4SAndroid Build Coastguard Worker "              used alone, even if you do not set an initial -e, --referer.\n"
3786*6236dae4SAndroid Build Coastguard Worker "\n"
3787*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
3788*6236dae4SAndroid Build Coastguard Worker "\n"
3789*6236dae4SAndroid Build Coastguard Worker "              Examples:\n"
3790*6236dae4SAndroid Build Coastguard Worker "               curl --referer \"https://fake.example\" https://example.com\n"
3791*6236dae4SAndroid Build Coastguard Worker , stdout);
3792*6236dae4SAndroid Build Coastguard Worker  fputs(
3793*6236dae4SAndroid Build Coastguard Worker "               curl --referer \"https://fake.example;auto\" -L https://example.com\n"
3794*6236dae4SAndroid Build Coastguard Worker "               curl --referer \";auto\" -L https://example.com\n"
3795*6236dae4SAndroid Build Coastguard Worker "\n"
3796*6236dae4SAndroid Build Coastguard Worker "              See also -A, --user-agent and -H, --header.\n"
3797*6236dae4SAndroid Build Coastguard Worker "\n"
3798*6236dae4SAndroid Build Coastguard Worker "       -J, --remote-header-name\n"
3799*6236dae4SAndroid Build Coastguard Worker "              (HTTP) This option tells the -O, --remote-name option to use the\n"
3800*6236dae4SAndroid Build Coastguard Worker "              server-specified  Content-Disposition  filename  instead  of ex-\n"
3801*6236dae4SAndroid Build Coastguard Worker "              tracting a filename from the URL.\n"
3802*6236dae4SAndroid Build Coastguard Worker "\n"
3803*6236dae4SAndroid Build Coastguard Worker , stdout);
3804*6236dae4SAndroid Build Coastguard Worker  fputs(
3805*6236dae4SAndroid Build Coastguard Worker "              If the server specifies a file name and a file  with  that  name\n"
3806*6236dae4SAndroid Build Coastguard Worker "              already  exists  in the current working directory it will not be\n"
3807*6236dae4SAndroid Build Coastguard Worker "              overwritten and an error will occur.  If  the  server  does  not\n"
3808*6236dae4SAndroid Build Coastguard Worker "              specify a file name then this option has no effect.\n"
3809*6236dae4SAndroid Build Coastguard Worker "\n"
3810*6236dae4SAndroid Build Coastguard Worker "              There's  no  attempt to decode %-sequences (yet) in the provided\n"
3811*6236dae4SAndroid Build Coastguard Worker "              file name, so this option may provide you with rather unexpected\n"
3812*6236dae4SAndroid Build Coastguard Worker "              file names.\n"
3813*6236dae4SAndroid Build Coastguard Worker "\n"
3814*6236dae4SAndroid Build Coastguard Worker , stdout);
3815*6236dae4SAndroid Build Coastguard Worker  fputs(
3816*6236dae4SAndroid Build Coastguard Worker "              WARNING:  Exercise  judicious  use of this option, especially on\n"
3817*6236dae4SAndroid Build Coastguard Worker "              Windows. A rogue server could send you the  name  of  a  DLL  or\n"
3818*6236dae4SAndroid Build Coastguard Worker "              other  file  that could possibly be loaded automatically by Win-\n"
3819*6236dae4SAndroid Build Coastguard Worker "              dows or some third party software.\n"
3820*6236dae4SAndroid Build Coastguard Worker "\n"
3821*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3822*6236dae4SAndroid Build Coastguard Worker "               curl -OJ https://example.com/file\n"
3823*6236dae4SAndroid Build Coastguard Worker "\n"
3824*6236dae4SAndroid Build Coastguard Worker "       --remote-name-all\n"
3825*6236dae4SAndroid Build Coastguard Worker "              This option changes the default action for all given URLs to  be\n"
3826*6236dae4SAndroid Build Coastguard Worker , stdout);
3827*6236dae4SAndroid Build Coastguard Worker  fputs(
3828*6236dae4SAndroid Build Coastguard Worker "              dealt with as if -O, --remote-name were used for each one. So if\n"
3829*6236dae4SAndroid Build Coastguard Worker "              you want to disable that for a specific URL after --remote-name-\n"
3830*6236dae4SAndroid Build Coastguard Worker "              all has been used, you must use \"-o -\" or --no-remote-name.\n"
3831*6236dae4SAndroid Build Coastguard Worker "\n"
3832*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3833*6236dae4SAndroid Build Coastguard Worker "               curl --remote-name-all ftp://example.com/file1 ftp://example.com/file2\n"
3834*6236dae4SAndroid Build Coastguard Worker "\n"
3835*6236dae4SAndroid Build Coastguard Worker "       -O, --remote-name\n"
3836*6236dae4SAndroid Build Coastguard Worker "              Write  output to a local file named like the remote file we get.\n"
3837*6236dae4SAndroid Build Coastguard Worker , stdout);
3838*6236dae4SAndroid Build Coastguard Worker  fputs(
3839*6236dae4SAndroid Build Coastguard Worker "              (Only the file part of the remote file is used, the path is  cut\n"
3840*6236dae4SAndroid Build Coastguard Worker "              off.)\n"
3841*6236dae4SAndroid Build Coastguard Worker "\n"
3842*6236dae4SAndroid Build Coastguard Worker "              The  file will be saved in the current working directory. If you\n"
3843*6236dae4SAndroid Build Coastguard Worker "              want the file saved in a  different  directory,  make  sure  you\n"
3844*6236dae4SAndroid Build Coastguard Worker "              change  the  current working directory before invoking curl with\n"
3845*6236dae4SAndroid Build Coastguard Worker "              this option.\n"
3846*6236dae4SAndroid Build Coastguard Worker "\n"
3847*6236dae4SAndroid Build Coastguard Worker "              The remote file name to use for saving  is  extracted  from  the\n"
3848*6236dae4SAndroid Build Coastguard Worker , stdout);
3849*6236dae4SAndroid Build Coastguard Worker  fputs(
3850*6236dae4SAndroid Build Coastguard Worker "              given  URL,  nothing  else,  and if it already exists it will be\n"
3851*6236dae4SAndroid Build Coastguard Worker "              overwritten. If you want the server to be  able  to  choose  the\n"
3852*6236dae4SAndroid Build Coastguard Worker "              file name refer to -J, --remote-header-name which can be used in\n"
3853*6236dae4SAndroid Build Coastguard Worker "              addition to this option. If the server chooses a file  name  and\n"
3854*6236dae4SAndroid Build Coastguard Worker "              that name already exists it will not be overwritten.\n"
3855*6236dae4SAndroid Build Coastguard Worker "\n"
3856*6236dae4SAndroid Build Coastguard Worker "              There is no URL decoding done on the file name. If it has %20 or\n"
3857*6236dae4SAndroid Build Coastguard Worker , stdout);
3858*6236dae4SAndroid Build Coastguard Worker  fputs(
3859*6236dae4SAndroid Build Coastguard Worker "              other URL encoded parts of the name, they will end up  as-is  as\n"
3860*6236dae4SAndroid Build Coastguard Worker "              file name.\n"
3861*6236dae4SAndroid Build Coastguard Worker "\n"
3862*6236dae4SAndroid Build Coastguard Worker "              You  may use this option as many times as the number of URLs you\n"
3863*6236dae4SAndroid Build Coastguard Worker "              have.\n"
3864*6236dae4SAndroid Build Coastguard Worker "\n"
3865*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3866*6236dae4SAndroid Build Coastguard Worker "               curl -O https://example.com/filename\n"
3867*6236dae4SAndroid Build Coastguard Worker "\n"
3868*6236dae4SAndroid Build Coastguard Worker "       -R, --remote-time\n"
3869*6236dae4SAndroid Build Coastguard Worker "              When used, this will make curl attempt to figure out  the  time-\n"
3870*6236dae4SAndroid Build Coastguard Worker "              stamp  of the remote file, and if that is available make the lo-\n"
3871*6236dae4SAndroid Build Coastguard Worker , stdout);
3872*6236dae4SAndroid Build Coastguard Worker  fputs(
3873*6236dae4SAndroid Build Coastguard Worker "              cal file get that same timestamp.\n"
3874*6236dae4SAndroid Build Coastguard Worker "\n"
3875*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3876*6236dae4SAndroid Build Coastguard Worker "               curl --remote-time -o foo https://example.com\n"
3877*6236dae4SAndroid Build Coastguard Worker "\n"
3878*6236dae4SAndroid Build Coastguard Worker "       --request-target <path>\n"
3879*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Tells curl to use an alternative \"target\" (path)  instead\n"
3880*6236dae4SAndroid Build Coastguard Worker "              of  using  the  path as provided in the URL. Particularly useful\n"
3881*6236dae4SAndroid Build Coastguard Worker "              when wanting to issue HTTP requests  without  leading  slash  or\n"
3882*6236dae4SAndroid Build Coastguard Worker "              other  data  that  does not follow the regular URL pattern, like\n"
3883*6236dae4SAndroid Build Coastguard Worker , stdout);
3884*6236dae4SAndroid Build Coastguard Worker  fputs(
3885*6236dae4SAndroid Build Coastguard Worker "              \"OPTIONS *\".\n"
3886*6236dae4SAndroid Build Coastguard Worker "\n"
3887*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3888*6236dae4SAndroid Build Coastguard Worker "               curl --request-target \"*\" -X OPTIONS https://example.com\n"
3889*6236dae4SAndroid Build Coastguard Worker "\n"
3890*6236dae4SAndroid Build Coastguard Worker "              Added in 7.55.0.\n"
3891*6236dae4SAndroid Build Coastguard Worker "\n"
3892*6236dae4SAndroid Build Coastguard Worker "       -X, --request <command>\n"
3893*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Specifies a custom request method to use when communicat-\n"
3894*6236dae4SAndroid Build Coastguard Worker "              ing  with the HTTP server.  The specified request method will be\n"
3895*6236dae4SAndroid Build Coastguard Worker "              used instead of the method otherwise  used  (which  defaults  to\n"
3896*6236dae4SAndroid Build Coastguard Worker , stdout);
3897*6236dae4SAndroid Build Coastguard Worker  fputs(
3898*6236dae4SAndroid Build Coastguard Worker "              GET).  Read  the HTTP 1.1 specification for details and explana-\n"
3899*6236dae4SAndroid Build Coastguard Worker "              tions. Common additional HTTP requests include PUT  and  DELETE,\n"
3900*6236dae4SAndroid Build Coastguard Worker "              but related technologies like WebDAV offers PROPFIND, COPY, MOVE\n"
3901*6236dae4SAndroid Build Coastguard Worker "              and more.\n"
3902*6236dae4SAndroid Build Coastguard Worker "\n"
3903*6236dae4SAndroid Build Coastguard Worker "              Normally you do not need this option. All sorts  of  GET,  HEAD,\n"
3904*6236dae4SAndroid Build Coastguard Worker "              POST and PUT requests are rather invoked by using dedicated com-\n"
3905*6236dae4SAndroid Build Coastguard Worker "              mand line options.\n"
3906*6236dae4SAndroid Build Coastguard Worker "\n"
3907*6236dae4SAndroid Build Coastguard Worker , stdout);
3908*6236dae4SAndroid Build Coastguard Worker  fputs(
3909*6236dae4SAndroid Build Coastguard Worker "              This option only changes the actual word used in  the  HTTP  re-\n"
3910*6236dae4SAndroid Build Coastguard Worker "              quest, it does not alter the way curl behaves. So for example if\n"
3911*6236dae4SAndroid Build Coastguard Worker "              you want to make a proper HEAD request, using -X HEAD  will  not\n"
3912*6236dae4SAndroid Build Coastguard Worker "              suffice. You need to use the -I, --head option.\n"
3913*6236dae4SAndroid Build Coastguard Worker "\n"
3914*6236dae4SAndroid Build Coastguard Worker "              The  method  string  you set with -X, --request will be used for\n"
3915*6236dae4SAndroid Build Coastguard Worker "              all requests, which if you for example use  -L,  --location  may\n"
3916*6236dae4SAndroid Build Coastguard Worker , stdout);
3917*6236dae4SAndroid Build Coastguard Worker  fputs(
3918*6236dae4SAndroid Build Coastguard Worker "              cause  unintended side-effects when curl does not change request\n"
3919*6236dae4SAndroid Build Coastguard Worker "              method according to the HTTP 30x response codes - and similar.\n"
3920*6236dae4SAndroid Build Coastguard Worker "\n"
3921*6236dae4SAndroid Build Coastguard Worker "              (FTP) Specifies a custom FTP command to use instead of LIST when\n"
3922*6236dae4SAndroid Build Coastguard Worker "              doing file lists with FTP.\n"
3923*6236dae4SAndroid Build Coastguard Worker "\n"
3924*6236dae4SAndroid Build Coastguard Worker "              (POP3) Specifies a custom POP3 command to use instead of LIST or\n"
3925*6236dae4SAndroid Build Coastguard Worker "              RETR.\n"
3926*6236dae4SAndroid Build Coastguard Worker "\n"
3927*6236dae4SAndroid Build Coastguard Worker "              (IMAP) Specifies a custom IMAP command to use instead  of  LIST.\n"
3928*6236dae4SAndroid Build Coastguard Worker "              (Added in 7.30.0)\n"
3929*6236dae4SAndroid Build Coastguard Worker "\n"
3930*6236dae4SAndroid Build Coastguard Worker , stdout);
3931*6236dae4SAndroid Build Coastguard Worker  fputs(
3932*6236dae4SAndroid Build Coastguard Worker "              (SMTP) Specifies a custom SMTP command to use instead of HELP or\n"
3933*6236dae4SAndroid Build Coastguard Worker "              VRFY. (Added in 7.34.0)\n"
3934*6236dae4SAndroid Build Coastguard Worker "\n"
3935*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
3936*6236dae4SAndroid Build Coastguard Worker "\n"
3937*6236dae4SAndroid Build Coastguard Worker "              Examples:\n"
3938*6236dae4SAndroid Build Coastguard Worker "               curl -X \"DELETE\" https://example.com\n"
3939*6236dae4SAndroid Build Coastguard Worker "               curl -X NLST ftp://example.com/\n"
3940*6236dae4SAndroid Build Coastguard Worker "\n"
3941*6236dae4SAndroid Build Coastguard Worker "       --resolve <[+]host:port:addr[,addr]...>\n"
3942*6236dae4SAndroid Build Coastguard Worker "              Provide a custom address for a specific host and port pair.  Us-\n"
3943*6236dae4SAndroid Build Coastguard Worker , stdout);
3944*6236dae4SAndroid Build Coastguard Worker  fputs(
3945*6236dae4SAndroid Build Coastguard Worker "              ing  this, you can make the curl requests(s) use a specified ad-\n"
3946*6236dae4SAndroid Build Coastguard Worker "              dress and prevent the otherwise normally resolved address to  be\n"
3947*6236dae4SAndroid Build Coastguard Worker "              used.  Consider  it a sort of /etc/hosts alternative provided on\n"
3948*6236dae4SAndroid Build Coastguard Worker "              the command line. The port number should be the number used  for\n"
3949*6236dae4SAndroid Build Coastguard Worker "              the  specific  protocol  the host will be used for. It means you\n"
3950*6236dae4SAndroid Build Coastguard Worker "              need several entries if you want to provide address for the same\n"
3951*6236dae4SAndroid Build Coastguard Worker , stdout);
3952*6236dae4SAndroid Build Coastguard Worker  fputs(
3953*6236dae4SAndroid Build Coastguard Worker "              host but different ports.\n"
3954*6236dae4SAndroid Build Coastguard Worker "\n"
3955*6236dae4SAndroid Build Coastguard Worker "              By  specifying '*' as host you can tell curl to resolve any host\n"
3956*6236dae4SAndroid Build Coastguard Worker "              and specific port pair to the specified address. Wildcard is re-\n"
3957*6236dae4SAndroid Build Coastguard Worker "              solved  last so any --resolve with a specific host and port will\n"
3958*6236dae4SAndroid Build Coastguard Worker "              be used first.\n"
3959*6236dae4SAndroid Build Coastguard Worker "\n"
3960*6236dae4SAndroid Build Coastguard Worker "              The provided address set by this option will be used even if -4,\n"
3961*6236dae4SAndroid Build Coastguard Worker "              --ipv4 or -6, --ipv6 is set to make curl use another IP version.\n"
3962*6236dae4SAndroid Build Coastguard Worker , stdout);
3963*6236dae4SAndroid Build Coastguard Worker  fputs(
3964*6236dae4SAndroid Build Coastguard Worker "              By prefixing the host with a '+' you can make the entry time out\n"
3965*6236dae4SAndroid Build Coastguard Worker "              after curl's default timeout (1 minute).  Note  that  this  will\n"
3966*6236dae4SAndroid Build Coastguard Worker "              only  make  sense for long running parallel transfers with a lot\n"
3967*6236dae4SAndroid Build Coastguard Worker "              of files. In such cases, if this option is used curl will try to\n"
3968*6236dae4SAndroid Build Coastguard Worker "              resolve  the  host as it normally would once the timeout has ex-\n"
3969*6236dae4SAndroid Build Coastguard Worker "              pired.\n"
3970*6236dae4SAndroid Build Coastguard Worker "\n"
3971*6236dae4SAndroid Build Coastguard Worker "              Support for providing the IP address within [brackets] was added\n"
3972*6236dae4SAndroid Build Coastguard Worker , stdout);
3973*6236dae4SAndroid Build Coastguard Worker  fputs(
3974*6236dae4SAndroid Build Coastguard Worker "              in 7.57.0.\n"
3975*6236dae4SAndroid Build Coastguard Worker "\n"
3976*6236dae4SAndroid Build Coastguard Worker "              Support  for providing multiple IP addresses per entry was added\n"
3977*6236dae4SAndroid Build Coastguard Worker "              in 7.59.0.\n"
3978*6236dae4SAndroid Build Coastguard Worker "\n"
3979*6236dae4SAndroid Build Coastguard Worker "              Support for resolving with wildcard was added in 7.64.0.\n"
3980*6236dae4SAndroid Build Coastguard Worker "\n"
3981*6236dae4SAndroid Build Coastguard Worker "              Support for the '+' prefix was was added in 7.75.0.\n"
3982*6236dae4SAndroid Build Coastguard Worker "\n"
3983*6236dae4SAndroid Build Coastguard Worker "              This option can be used many times to add many host names to re-\n"
3984*6236dae4SAndroid Build Coastguard Worker "              solve.\n"
3985*6236dae4SAndroid Build Coastguard Worker "\n"
3986*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
3987*6236dae4SAndroid Build Coastguard Worker "               curl --resolve example.com:443:127.0.0.1 https://example.com\n"
3988*6236dae4SAndroid Build Coastguard Worker "\n"
3989*6236dae4SAndroid Build Coastguard Worker "       --retry-all-errors\n"
3990*6236dae4SAndroid Build Coastguard Worker , stdout);
3991*6236dae4SAndroid Build Coastguard Worker  fputs(
3992*6236dae4SAndroid Build Coastguard Worker "              Retry on any error. This option is used together with --retry.\n"
3993*6236dae4SAndroid Build Coastguard Worker "\n"
3994*6236dae4SAndroid Build Coastguard Worker "              This  option  is the \"sledgehammer\" of retrying. Do not use this\n"
3995*6236dae4SAndroid Build Coastguard Worker "              option by default (eg in curlrc), there may be unintended conse-\n"
3996*6236dae4SAndroid Build Coastguard Worker "              quences  such as sending or receiving duplicate data. Do not use\n"
3997*6236dae4SAndroid Build Coastguard Worker "              with redirected input or output. You'd be much better  off  han-\n"
3998*6236dae4SAndroid Build Coastguard Worker "              dling  your unique problems in shell script. Please read the ex-\n"
3999*6236dae4SAndroid Build Coastguard Worker "              ample below.\n"
4000*6236dae4SAndroid Build Coastguard Worker , stdout);
4001*6236dae4SAndroid Build Coastguard Worker  fputs(
4002*6236dae4SAndroid Build Coastguard Worker "\n"
4003*6236dae4SAndroid Build Coastguard Worker "              WARNING: For server compatibility curl attempts to retry  failed\n"
4004*6236dae4SAndroid Build Coastguard Worker "              flaky  transfers  as close as possible to how they were started,\n"
4005*6236dae4SAndroid Build Coastguard Worker "              but this is not possible with redirected input  or  output.  For\n"
4006*6236dae4SAndroid Build Coastguard Worker "              example,  before  retrying  it removes output data from a failed\n"
4007*6236dae4SAndroid Build Coastguard Worker "              partial transfer that was written to  an  output  file.  However\n"
4008*6236dae4SAndroid Build Coastguard Worker "              this is not true of data redirected to a | pipe or > file, which\n"
4009*6236dae4SAndroid Build Coastguard Worker , stdout);
4010*6236dae4SAndroid Build Coastguard Worker  fputs(
4011*6236dae4SAndroid Build Coastguard Worker "              are not reset. We strongly suggest you do not  parse  or  record\n"
4012*6236dae4SAndroid Build Coastguard Worker "              output  via  redirect in combination with this option, since you\n"
4013*6236dae4SAndroid Build Coastguard Worker "              may receive duplicate data.\n"
4014*6236dae4SAndroid Build Coastguard Worker "\n"
4015*6236dae4SAndroid Build Coastguard Worker "              By default curl will not error on an HTTP response code that in-\n"
4016*6236dae4SAndroid Build Coastguard Worker "              dicates an HTTP error, if the transfer was successful. For exam-\n"
4017*6236dae4SAndroid Build Coastguard Worker "              ple, if a server replies 404 Not Found and the  reply  is  fully\n"
4018*6236dae4SAndroid Build Coastguard Worker , stdout);
4019*6236dae4SAndroid Build Coastguard Worker  fputs(
4020*6236dae4SAndroid Build Coastguard Worker "              received  then  that  is not an error. When --retry is used then\n"
4021*6236dae4SAndroid Build Coastguard Worker "              curl will retry on some HTTP response codes that indicate  tran-\n"
4022*6236dae4SAndroid Build Coastguard Worker "              sient  HTTP  errors, but that does not include most 4xx response\n"
4023*6236dae4SAndroid Build Coastguard Worker "              codes such as 404. If you want to retry on  all  response  codes\n"
4024*6236dae4SAndroid Build Coastguard Worker "              that  indicate  HTTP  errors (4xx and 5xx) then combine with -f,\n"
4025*6236dae4SAndroid Build Coastguard Worker "              --fail.\n"
4026*6236dae4SAndroid Build Coastguard Worker "\n"
4027*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4028*6236dae4SAndroid Build Coastguard Worker "               curl --retry-all-errors https://example.com\n"
4029*6236dae4SAndroid Build Coastguard Worker , stdout);
4030*6236dae4SAndroid Build Coastguard Worker  fputs(
4031*6236dae4SAndroid Build Coastguard Worker "\n"
4032*6236dae4SAndroid Build Coastguard Worker "              Added in 7.71.0.\n"
4033*6236dae4SAndroid Build Coastguard Worker "\n"
4034*6236dae4SAndroid Build Coastguard Worker "       --retry-connrefused\n"
4035*6236dae4SAndroid Build Coastguard Worker "              In addition to the other conditions, consider ECONNREFUSED as  a\n"
4036*6236dae4SAndroid Build Coastguard Worker "              transient  error  too  for --retry. This option is used together\n"
4037*6236dae4SAndroid Build Coastguard Worker "              with --retry.\n"
4038*6236dae4SAndroid Build Coastguard Worker "\n"
4039*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4040*6236dae4SAndroid Build Coastguard Worker "               curl --retry-connrefused --retry https://example.com\n"
4041*6236dae4SAndroid Build Coastguard Worker "\n"
4042*6236dae4SAndroid Build Coastguard Worker "              Added in 7.52.0.\n"
4043*6236dae4SAndroid Build Coastguard Worker "\n"
4044*6236dae4SAndroid Build Coastguard Worker "       --retry-delay <seconds>\n"
4045*6236dae4SAndroid Build Coastguard Worker "              Make curl sleep this amount of time before  each  retry  when  a\n"
4046*6236dae4SAndroid Build Coastguard Worker , stdout);
4047*6236dae4SAndroid Build Coastguard Worker  fputs(
4048*6236dae4SAndroid Build Coastguard Worker "              transfer  has  failed with a transient error (it changes the de-\n"
4049*6236dae4SAndroid Build Coastguard Worker "              fault backoff time algorithm between retries).  This  option  is\n"
4050*6236dae4SAndroid Build Coastguard Worker "              only  interesting if --retry is also used. Setting this delay to\n"
4051*6236dae4SAndroid Build Coastguard Worker "              zero will make curl use the default backoff time.\n"
4052*6236dae4SAndroid Build Coastguard Worker "\n"
4053*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
4054*6236dae4SAndroid Build Coastguard Worker "\n"
4055*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4056*6236dae4SAndroid Build Coastguard Worker "               curl --retry-delay 5 --retry https://example.com\n"
4057*6236dae4SAndroid Build Coastguard Worker "\n"
4058*6236dae4SAndroid Build Coastguard Worker , stdout);
4059*6236dae4SAndroid Build Coastguard Worker  fputs(
4060*6236dae4SAndroid Build Coastguard Worker "       --retry-max-time <seconds>\n"
4061*6236dae4SAndroid Build Coastguard Worker "              The retry timer is reset before the first transfer attempt.  Re-\n"
4062*6236dae4SAndroid Build Coastguard Worker "              tries  will  be done as usual (see --retry) as long as the timer\n"
4063*6236dae4SAndroid Build Coastguard Worker "              has not reached this given limit. Notice that if the  timer  has\n"
4064*6236dae4SAndroid Build Coastguard Worker "              not  reached  the limit, the request will be made and while per-\n"
4065*6236dae4SAndroid Build Coastguard Worker "              forming, it may take longer than  this  given  time  period.  To\n"
4066*6236dae4SAndroid Build Coastguard Worker , stdout);
4067*6236dae4SAndroid Build Coastguard Worker  fputs(
4068*6236dae4SAndroid Build Coastguard Worker "              limit  a single request's maximum time, use -m, --max-time.  Set\n"
4069*6236dae4SAndroid Build Coastguard Worker "              this option to zero to not timeout retries.\n"
4070*6236dae4SAndroid Build Coastguard Worker "\n"
4071*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
4072*6236dae4SAndroid Build Coastguard Worker "\n"
4073*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4074*6236dae4SAndroid Build Coastguard Worker "               curl --retry-max-time 30 --retry 10 https://example.com\n"
4075*6236dae4SAndroid Build Coastguard Worker "\n"
4076*6236dae4SAndroid Build Coastguard Worker "       --retry <num>\n"
4077*6236dae4SAndroid Build Coastguard Worker "              If a transient error is returned when curl tries  to  perform  a\n"
4078*6236dae4SAndroid Build Coastguard Worker "              transfer,  it  will retry this number of times before giving up.\n"
4079*6236dae4SAndroid Build Coastguard Worker , stdout);
4080*6236dae4SAndroid Build Coastguard Worker  fputs(
4081*6236dae4SAndroid Build Coastguard Worker "              Setting the number to 0 makes curl do no retries (which  is  the\n"
4082*6236dae4SAndroid Build Coastguard Worker "              default).  Transient  error  means either: a timeout, an FTP 4xx\n"
4083*6236dae4SAndroid Build Coastguard Worker "              response code or an HTTP 408, 429, 500, 502, 503 or 504 response\n"
4084*6236dae4SAndroid Build Coastguard Worker "              code.\n"
4085*6236dae4SAndroid Build Coastguard Worker "\n"
4086*6236dae4SAndroid Build Coastguard Worker "              When  curl  is about to retry a transfer, it will first wait one\n"
4087*6236dae4SAndroid Build Coastguard Worker "              second and then for all forthcoming retries it will  double  the\n"
4088*6236dae4SAndroid Build Coastguard Worker "              waiting  time until it reaches 10 minutes which then will be the\n"
4089*6236dae4SAndroid Build Coastguard Worker , stdout);
4090*6236dae4SAndroid Build Coastguard Worker  fputs(
4091*6236dae4SAndroid Build Coastguard Worker "              delay between the rest of the retries.  By  using  --retry-delay\n"
4092*6236dae4SAndroid Build Coastguard Worker "              you   disable  this  exponential  backoff  algorithm.  See  also\n"
4093*6236dae4SAndroid Build Coastguard Worker "              --retry-max-time to limit the total time allowed for retries.\n"
4094*6236dae4SAndroid Build Coastguard Worker "\n"
4095*6236dae4SAndroid Build Coastguard Worker "              Since curl 7.66.0, curl will comply with  the  Retry-After:  re-\n"
4096*6236dae4SAndroid Build Coastguard Worker "              sponse  header if one was present to know when to issue the next\n"
4097*6236dae4SAndroid Build Coastguard Worker "              retry.\n"
4098*6236dae4SAndroid Build Coastguard Worker "\n"
4099*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
4100*6236dae4SAndroid Build Coastguard Worker "\n"
4101*6236dae4SAndroid Build Coastguard Worker , stdout);
4102*6236dae4SAndroid Build Coastguard Worker  fputs(
4103*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4104*6236dae4SAndroid Build Coastguard Worker "               curl --retry 7 https://example.com\n"
4105*6236dae4SAndroid Build Coastguard Worker "\n"
4106*6236dae4SAndroid Build Coastguard Worker "       --sasl-authzid <identity>\n"
4107*6236dae4SAndroid Build Coastguard Worker "              Use this authorisation identity (authzid), during SASL PLAIN au-\n"
4108*6236dae4SAndroid Build Coastguard Worker "              thentication,  in addition to the authentication identity (auth-\n"
4109*6236dae4SAndroid Build Coastguard Worker "              cid) as specified by -u, --user.\n"
4110*6236dae4SAndroid Build Coastguard Worker "\n"
4111*6236dae4SAndroid Build Coastguard Worker "              If the option is not specified, the server will derive  the  au-\n"
4112*6236dae4SAndroid Build Coastguard Worker "              thzid  from  the authcid, but if specified, and depending on the\n"
4113*6236dae4SAndroid Build Coastguard Worker , stdout);
4114*6236dae4SAndroid Build Coastguard Worker  fputs(
4115*6236dae4SAndroid Build Coastguard Worker "              server implementation, it may be used to access  another  user's\n"
4116*6236dae4SAndroid Build Coastguard Worker "              inbox,  that  the  user  has been granted access to, or a shared\n"
4117*6236dae4SAndroid Build Coastguard Worker "              mailbox for example.\n"
4118*6236dae4SAndroid Build Coastguard Worker "\n"
4119*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4120*6236dae4SAndroid Build Coastguard Worker "               curl --sasl-authzid zid imap://example.com/\n"
4121*6236dae4SAndroid Build Coastguard Worker "\n"
4122*6236dae4SAndroid Build Coastguard Worker "              Added in 7.66.0.\n"
4123*6236dae4SAndroid Build Coastguard Worker "\n"
4124*6236dae4SAndroid Build Coastguard Worker "       --sasl-ir\n"
4125*6236dae4SAndroid Build Coastguard Worker "              Enable initial response in SASL authentication.\n"
4126*6236dae4SAndroid Build Coastguard Worker "\n"
4127*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4128*6236dae4SAndroid Build Coastguard Worker "               curl --sasl-ir imap://example.com/\n"
4129*6236dae4SAndroid Build Coastguard Worker "\n"
4130*6236dae4SAndroid Build Coastguard Worker "              Added in 7.31.0.\n"
4131*6236dae4SAndroid Build Coastguard Worker "\n"
4132*6236dae4SAndroid Build Coastguard Worker , stdout);
4133*6236dae4SAndroid Build Coastguard Worker  fputs(
4134*6236dae4SAndroid Build Coastguard Worker "       --service-name <name>\n"
4135*6236dae4SAndroid Build Coastguard Worker "              This option allows you to change the service name for SPNEGO.\n"
4136*6236dae4SAndroid Build Coastguard Worker "\n"
4137*6236dae4SAndroid Build Coastguard Worker "              Examples:   --negotiate   --service-name   sockd    would    use\n"
4138*6236dae4SAndroid Build Coastguard Worker "              sockd/server-name.\n"
4139*6236dae4SAndroid Build Coastguard Worker "\n"
4140*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4141*6236dae4SAndroid Build Coastguard Worker "               curl --service-name sockd/server https://example.com\n"
4142*6236dae4SAndroid Build Coastguard Worker "\n"
4143*6236dae4SAndroid Build Coastguard Worker "              Added in 7.43.0.\n"
4144*6236dae4SAndroid Build Coastguard Worker "       -S, --show-error\n"
4145*6236dae4SAndroid Build Coastguard Worker "              When used with -s, --silent, it makes curl show an error message\n"
4146*6236dae4SAndroid Build Coastguard Worker "              if it fails.\n"
4147*6236dae4SAndroid Build Coastguard Worker "\n"
4148*6236dae4SAndroid Build Coastguard Worker , stdout);
4149*6236dae4SAndroid Build Coastguard Worker  fputs(
4150*6236dae4SAndroid Build Coastguard Worker "              This option is global and does not need to be specified for each\n"
4151*6236dae4SAndroid Build Coastguard Worker "              use of -:, --next.\n"
4152*6236dae4SAndroid Build Coastguard Worker "\n"
4153*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4154*6236dae4SAndroid Build Coastguard Worker "               curl --show-error --silent https://example.com\n"
4155*6236dae4SAndroid Build Coastguard Worker "\n"
4156*6236dae4SAndroid Build Coastguard Worker "              See also --no-progress-meter.\n"
4157*6236dae4SAndroid Build Coastguard Worker "\n"
4158*6236dae4SAndroid Build Coastguard Worker "       -s, --silent\n"
4159*6236dae4SAndroid Build Coastguard Worker "              Silent  or  quiet mode. Do not show progress meter or error mes-\n"
4160*6236dae4SAndroid Build Coastguard Worker "              sages.  Makes Curl mute. It will still output the data  you  ask\n"
4161*6236dae4SAndroid Build Coastguard Worker , stdout);
4162*6236dae4SAndroid Build Coastguard Worker  fputs(
4163*6236dae4SAndroid Build Coastguard Worker "              for, potentially even to the terminal/stdout unless you redirect\n"
4164*6236dae4SAndroid Build Coastguard Worker "              it.\n"
4165*6236dae4SAndroid Build Coastguard Worker "\n"
4166*6236dae4SAndroid Build Coastguard Worker "              Use -S, --show-error in  addition  to  this  option  to  disable\n"
4167*6236dae4SAndroid Build Coastguard Worker "              progress meter but still show error messages.\n"
4168*6236dae4SAndroid Build Coastguard Worker "\n"
4169*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4170*6236dae4SAndroid Build Coastguard Worker "               curl -s https://example.com\n"
4171*6236dae4SAndroid Build Coastguard Worker "\n"
4172*6236dae4SAndroid Build Coastguard Worker "              See also -v, --verbose, --stderr and --no-progress-meter.\n"
4173*6236dae4SAndroid Build Coastguard Worker "\n"
4174*6236dae4SAndroid Build Coastguard Worker "       --socks4 <host[:port]>\n"
4175*6236dae4SAndroid Build Coastguard Worker "              Use the specified SOCKS4 proxy. If the port number is not speci-\n"
4176*6236dae4SAndroid Build Coastguard Worker , stdout);
4177*6236dae4SAndroid Build Coastguard Worker  fputs(
4178*6236dae4SAndroid Build Coastguard Worker "              fied, it is assumed at port 1080. Using this  socket  type  make\n"
4179*6236dae4SAndroid Build Coastguard Worker "              curl  resolve  the  host  name and passing the address on to the\n"
4180*6236dae4SAndroid Build Coastguard Worker "              proxy.\n"
4181*6236dae4SAndroid Build Coastguard Worker "\n"
4182*6236dae4SAndroid Build Coastguard Worker "              This option overrides any previous use of -x, --proxy,  as  they\n"
4183*6236dae4SAndroid Build Coastguard Worker "              are mutually exclusive.\n"
4184*6236dae4SAndroid Build Coastguard Worker "\n"
4185*6236dae4SAndroid Build Coastguard Worker "              This  option is superfluous since you can specify a socks4 proxy\n"
4186*6236dae4SAndroid Build Coastguard Worker "              with -x, --proxy using a socks4:// protocol prefix.\n"
4187*6236dae4SAndroid Build Coastguard Worker "\n"
4188*6236dae4SAndroid Build Coastguard Worker , stdout);
4189*6236dae4SAndroid Build Coastguard Worker  fputs(
4190*6236dae4SAndroid Build Coastguard Worker "              Since 7.52.0, --preproxy can be used to specify a SOCKS proxy at\n"
4191*6236dae4SAndroid Build Coastguard Worker "              the  same  time -x, --proxy is used with an HTTP/HTTPS proxy. In\n"
4192*6236dae4SAndroid Build Coastguard Worker "              such a case curl first connects to the SOCKS proxy and then con-\n"
4193*6236dae4SAndroid Build Coastguard Worker "              nects (through SOCKS) to the HTTP or HTTPS proxy.\n"
4194*6236dae4SAndroid Build Coastguard Worker "\n"
4195*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
4196*6236dae4SAndroid Build Coastguard Worker "\n"
4197*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4198*6236dae4SAndroid Build Coastguard Worker "               curl --socks4 hostname:4096 https://example.com\n"
4199*6236dae4SAndroid Build Coastguard Worker "\n"
4200*6236dae4SAndroid Build Coastguard Worker "       --socks4a <host[:port]>\n"
4201*6236dae4SAndroid Build Coastguard Worker , stdout);
4202*6236dae4SAndroid Build Coastguard Worker  fputs(
4203*6236dae4SAndroid Build Coastguard Worker "              Use the specified SOCKS4a proxy. If the port number is not spec-\n"
4204*6236dae4SAndroid Build Coastguard Worker "              ified, it is assumed at port 1080. This asks the  proxy  to  re-\n"
4205*6236dae4SAndroid Build Coastguard Worker "              solve the host name.\n"
4206*6236dae4SAndroid Build Coastguard Worker "\n"
4207*6236dae4SAndroid Build Coastguard Worker "              This  option  overrides any previous use of -x, --proxy, as they\n"
4208*6236dae4SAndroid Build Coastguard Worker "              are mutually exclusive.\n"
4209*6236dae4SAndroid Build Coastguard Worker "\n"
4210*6236dae4SAndroid Build Coastguard Worker "              This option is superfluous since you can specify a socks4a proxy\n"
4211*6236dae4SAndroid Build Coastguard Worker "              with -x, --proxy using a socks4a:// protocol prefix.\n"
4212*6236dae4SAndroid Build Coastguard Worker "\n"
4213*6236dae4SAndroid Build Coastguard Worker , stdout);
4214*6236dae4SAndroid Build Coastguard Worker  fputs(
4215*6236dae4SAndroid Build Coastguard Worker "              Since 7.52.0, --preproxy can be used to specify a SOCKS proxy at\n"
4216*6236dae4SAndroid Build Coastguard Worker "              the same time -x, --proxy is used with an HTTP/HTTPS  proxy.  In\n"
4217*6236dae4SAndroid Build Coastguard Worker "              such a case curl first connects to the SOCKS proxy and then con-\n"
4218*6236dae4SAndroid Build Coastguard Worker "              nects (through SOCKS) to the HTTP or HTTPS proxy.\n"
4219*6236dae4SAndroid Build Coastguard Worker "\n"
4220*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
4221*6236dae4SAndroid Build Coastguard Worker "\n"
4222*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4223*6236dae4SAndroid Build Coastguard Worker "               curl --socks4a hostname:4096 https://example.com\n"
4224*6236dae4SAndroid Build Coastguard Worker "\n"
4225*6236dae4SAndroid Build Coastguard Worker "       --socks5-basic\n"
4226*6236dae4SAndroid Build Coastguard Worker , stdout);
4227*6236dae4SAndroid Build Coastguard Worker  fputs(
4228*6236dae4SAndroid Build Coastguard Worker "              Tells curl to use username/password authentication when connect-\n"
4229*6236dae4SAndroid Build Coastguard Worker "              ing  to a SOCKS5 proxy.  The username/password authentication is\n"
4230*6236dae4SAndroid Build Coastguard Worker "              enabled by default.  Use --socks5-gssapi to  force  GSS-API  au-\n"
4231*6236dae4SAndroid Build Coastguard Worker "              thentication to SOCKS5 proxies.\n"
4232*6236dae4SAndroid Build Coastguard Worker "\n"
4233*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4234*6236dae4SAndroid Build Coastguard Worker "               curl --socks5-basic --socks5 hostname:4096 https://example.com\n"
4235*6236dae4SAndroid Build Coastguard Worker "\n"
4236*6236dae4SAndroid Build Coastguard Worker "              Added in 7.55.0.\n"
4237*6236dae4SAndroid Build Coastguard Worker "\n"
4238*6236dae4SAndroid Build Coastguard Worker "       --socks5-gssapi-nec\n"
4239*6236dae4SAndroid Build Coastguard Worker , stdout);
4240*6236dae4SAndroid Build Coastguard Worker  fputs(
4241*6236dae4SAndroid Build Coastguard Worker "              As  part of the GSS-API negotiation a protection mode is negoti-\n"
4242*6236dae4SAndroid Build Coastguard Worker "              ated. RFC 1961 says in section 4.3/4.4 it should  be  protected,\n"
4243*6236dae4SAndroid Build Coastguard Worker "              but  the  NEC  reference  implementation  does  not.  The option\n"
4244*6236dae4SAndroid Build Coastguard Worker "              --socks5-gssapi-nec allows the unprotected exchange of the  pro-\n"
4245*6236dae4SAndroid Build Coastguard Worker "              tection mode negotiation.\n"
4246*6236dae4SAndroid Build Coastguard Worker "\n"
4247*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4248*6236dae4SAndroid Build Coastguard Worker "               curl --socks5-gssapi-nec --socks5 hostname:4096 https://example.com\n"
4249*6236dae4SAndroid Build Coastguard Worker "\n"
4250*6236dae4SAndroid Build Coastguard Worker , stdout);
4251*6236dae4SAndroid Build Coastguard Worker  fputs(
4252*6236dae4SAndroid Build Coastguard Worker "       --socks5-gssapi-service <name>\n"
4253*6236dae4SAndroid Build Coastguard Worker "              The default service name for a socks server is rcmd/server-fqdn.\n"
4254*6236dae4SAndroid Build Coastguard Worker "              This option allows you to change it.\n"
4255*6236dae4SAndroid Build Coastguard Worker "\n"
4256*6236dae4SAndroid Build Coastguard Worker "              Examples:  --socks5  proxy-name  --socks5-gssapi-service   sockd\n"
4257*6236dae4SAndroid Build Coastguard Worker "              would  use sockd/proxy-name --socks5 proxy-name --socks5-gssapi-\n"
4258*6236dae4SAndroid Build Coastguard Worker "              service sockd/real-name  would  use  sockd/real-name  for  cases\n"
4259*6236dae4SAndroid Build Coastguard Worker "              where the proxy-name does not match the principal name.\n"
4260*6236dae4SAndroid Build Coastguard Worker "\n"
4261*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4262*6236dae4SAndroid Build Coastguard Worker , stdout);
4263*6236dae4SAndroid Build Coastguard Worker  fputs(
4264*6236dae4SAndroid Build Coastguard Worker "               curl --socks5-gssapi-service sockd --socks5 hostname:4096 https://example.com\n"
4265*6236dae4SAndroid Build Coastguard Worker "\n"
4266*6236dae4SAndroid Build Coastguard Worker "       --socks5-gssapi\n"
4267*6236dae4SAndroid Build Coastguard Worker "              Tells  curl  to  use GSS-API authentication when connecting to a\n"
4268*6236dae4SAndroid Build Coastguard Worker "              SOCKS5 proxy.  The GSS-API authentication is enabled by  default\n"
4269*6236dae4SAndroid Build Coastguard Worker "              (if  curl is compiled with GSS-API support).  Use --socks5-basic\n"
4270*6236dae4SAndroid Build Coastguard Worker "              to force username/password authentication to SOCKS5 proxies.\n"
4271*6236dae4SAndroid Build Coastguard Worker "\n"
4272*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4273*6236dae4SAndroid Build Coastguard Worker , stdout);
4274*6236dae4SAndroid Build Coastguard Worker  fputs(
4275*6236dae4SAndroid Build Coastguard Worker "               curl --socks5-gssapi --socks5 hostname:4096 https://example.com\n"
4276*6236dae4SAndroid Build Coastguard Worker "\n"
4277*6236dae4SAndroid Build Coastguard Worker "              Added in 7.55.0.\n"
4278*6236dae4SAndroid Build Coastguard Worker "\n"
4279*6236dae4SAndroid Build Coastguard Worker "       --socks5-hostname <host[:port]>\n"
4280*6236dae4SAndroid Build Coastguard Worker "              Use the specified SOCKS5 proxy (and let the  proxy  resolve  the\n"
4281*6236dae4SAndroid Build Coastguard Worker "              host  name).  If the port number is not specified, it is assumed\n"
4282*6236dae4SAndroid Build Coastguard Worker "              at port 1080.\n"
4283*6236dae4SAndroid Build Coastguard Worker "\n"
4284*6236dae4SAndroid Build Coastguard Worker "              This option overrides any previous use of -x, --proxy,  as  they\n"
4285*6236dae4SAndroid Build Coastguard Worker "              are mutually exclusive.\n"
4286*6236dae4SAndroid Build Coastguard Worker "\n"
4287*6236dae4SAndroid Build Coastguard Worker , stdout);
4288*6236dae4SAndroid Build Coastguard Worker  fputs(
4289*6236dae4SAndroid Build Coastguard Worker "              This  option is superfluous since you can specify a socks5 host-\n"
4290*6236dae4SAndroid Build Coastguard Worker "              name proxy with -x, --proxy using a socks5h:// protocol prefix.\n"
4291*6236dae4SAndroid Build Coastguard Worker "\n"
4292*6236dae4SAndroid Build Coastguard Worker "              Since 7.52.0, --preproxy can be used to specify a SOCKS proxy at\n"
4293*6236dae4SAndroid Build Coastguard Worker "              the  same  time -x, --proxy is used with an HTTP/HTTPS proxy. In\n"
4294*6236dae4SAndroid Build Coastguard Worker "              such a case curl first connects to the SOCKS proxy and then con-\n"
4295*6236dae4SAndroid Build Coastguard Worker "              nects (through SOCKS) to the HTTP or HTTPS proxy.\n"
4296*6236dae4SAndroid Build Coastguard Worker "\n"
4297*6236dae4SAndroid Build Coastguard Worker , stdout);
4298*6236dae4SAndroid Build Coastguard Worker  fputs(
4299*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
4300*6236dae4SAndroid Build Coastguard Worker "\n"
4301*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4302*6236dae4SAndroid Build Coastguard Worker "               curl --socks5-hostname proxy.example:7000 https://example.com\n"
4303*6236dae4SAndroid Build Coastguard Worker "\n"
4304*6236dae4SAndroid Build Coastguard Worker "       --socks5 <host[:port]>\n"
4305*6236dae4SAndroid Build Coastguard Worker "              Use  the  specified SOCKS5 proxy - but resolve the host name lo-\n"
4306*6236dae4SAndroid Build Coastguard Worker "              cally. If the port number is not specified,  it  is  assumed  at\n"
4307*6236dae4SAndroid Build Coastguard Worker "              port 1080.\n"
4308*6236dae4SAndroid Build Coastguard Worker "\n"
4309*6236dae4SAndroid Build Coastguard Worker "              This  option  overrides any previous use of -x, --proxy, as they\n"
4310*6236dae4SAndroid Build Coastguard Worker , stdout);
4311*6236dae4SAndroid Build Coastguard Worker  fputs(
4312*6236dae4SAndroid Build Coastguard Worker "              are mutually exclusive.\n"
4313*6236dae4SAndroid Build Coastguard Worker "\n"
4314*6236dae4SAndroid Build Coastguard Worker "              This option is superfluous since you can specify a socks5  proxy\n"
4315*6236dae4SAndroid Build Coastguard Worker "              with -x, --proxy using a socks5:// protocol prefix.\n"
4316*6236dae4SAndroid Build Coastguard Worker "\n"
4317*6236dae4SAndroid Build Coastguard Worker "              Since 7.52.0, --preproxy can be used to specify a SOCKS proxy at\n"
4318*6236dae4SAndroid Build Coastguard Worker "              the same time -x, --proxy is used with an HTTP/HTTPS  proxy.  In\n"
4319*6236dae4SAndroid Build Coastguard Worker "              such a case curl first connects to the SOCKS proxy and then con-\n"
4320*6236dae4SAndroid Build Coastguard Worker "              nects (through SOCKS) to the HTTP or HTTPS proxy.\n"
4321*6236dae4SAndroid Build Coastguard Worker "\n"
4322*6236dae4SAndroid Build Coastguard Worker , stdout);
4323*6236dae4SAndroid Build Coastguard Worker  fputs(
4324*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
4325*6236dae4SAndroid Build Coastguard Worker "              This option (as well as --socks4) does not work with IPV6,  FTPS\n"
4326*6236dae4SAndroid Build Coastguard Worker "              or LDAP.\n"
4327*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4328*6236dae4SAndroid Build Coastguard Worker "               curl --socks5 proxy.example:7000 https://example.com\n"
4329*6236dae4SAndroid Build Coastguard Worker "\n"
4330*6236dae4SAndroid Build Coastguard Worker "       -Y, --speed-limit <speed>\n"
4331*6236dae4SAndroid Build Coastguard Worker "              If a download is slower than this given speed (in bytes per sec-\n"
4332*6236dae4SAndroid Build Coastguard Worker "              ond) for speed-time seconds it gets aborted. speed-time  is  set\n"
4333*6236dae4SAndroid Build Coastguard Worker , stdout);
4334*6236dae4SAndroid Build Coastguard Worker  fputs(
4335*6236dae4SAndroid Build Coastguard Worker "              with -y, --speed-time and is 30 if not set.\n"
4336*6236dae4SAndroid Build Coastguard Worker "\n"
4337*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
4338*6236dae4SAndroid Build Coastguard Worker "\n"
4339*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4340*6236dae4SAndroid Build Coastguard Worker "               curl --speed-limit 300 --speed-time 10 https://example.com\n"
4341*6236dae4SAndroid Build Coastguard Worker "\n"
4342*6236dae4SAndroid Build Coastguard Worker "       -y, --speed-time <seconds>\n"
4343*6236dae4SAndroid Build Coastguard Worker "              If a download is slower than speed-limit bytes per second during\n"
4344*6236dae4SAndroid Build Coastguard Worker "              a speed-time period, the download gets aborted. If speed-time is\n"
4345*6236dae4SAndroid Build Coastguard Worker , stdout);
4346*6236dae4SAndroid Build Coastguard Worker  fputs(
4347*6236dae4SAndroid Build Coastguard Worker "              used,  the  default  speed-limit  will  be 1 unless set with -Y,\n"
4348*6236dae4SAndroid Build Coastguard Worker "              --speed-limit.\n"
4349*6236dae4SAndroid Build Coastguard Worker "\n"
4350*6236dae4SAndroid Build Coastguard Worker "              This option controls transfers and thus  will  not  affect  slow\n"
4351*6236dae4SAndroid Build Coastguard Worker "              connects  etc.  If this is a concern for you, try the --connect-\n"
4352*6236dae4SAndroid Build Coastguard Worker "              timeout option.\n"
4353*6236dae4SAndroid Build Coastguard Worker "\n"
4354*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
4355*6236dae4SAndroid Build Coastguard Worker "\n"
4356*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4357*6236dae4SAndroid Build Coastguard Worker "               curl --speed-limit 300 --speed-time 10 https://example.com\n"
4358*6236dae4SAndroid Build Coastguard Worker "\n"
4359*6236dae4SAndroid Build Coastguard Worker , stdout);
4360*6236dae4SAndroid Build Coastguard Worker  fputs(
4361*6236dae4SAndroid Build Coastguard Worker "       --ssl-allow-beast\n"
4362*6236dae4SAndroid Build Coastguard Worker "              This option tells curl to not work around a security flaw in the\n"
4363*6236dae4SAndroid Build Coastguard Worker "              SSL3 and TLS1.0 protocols known as BEAST.  If this option is not\n"
4364*6236dae4SAndroid Build Coastguard Worker "              used, the SSL layer may use workarounds known to cause  interop-\n"
4365*6236dae4SAndroid Build Coastguard Worker "              erability problems with some older SSL implementations.\n"
4366*6236dae4SAndroid Build Coastguard Worker "\n"
4367*6236dae4SAndroid Build Coastguard Worker "              WARNING: this option loosens the SSL security, and by using this\n"
4368*6236dae4SAndroid Build Coastguard Worker "              flag you ask for exactly that.\n"
4369*6236dae4SAndroid Build Coastguard Worker "\n"
4370*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4371*6236dae4SAndroid Build Coastguard Worker , stdout);
4372*6236dae4SAndroid Build Coastguard Worker  fputs(
4373*6236dae4SAndroid Build Coastguard Worker "               curl --ssl-allow-beast https://example.com\n"
4374*6236dae4SAndroid Build Coastguard Worker "\n"
4375*6236dae4SAndroid Build Coastguard Worker "       --ssl-auto-client-cert\n"
4376*6236dae4SAndroid Build Coastguard Worker "              Tell libcurl to automatically locate and use a  client  certifi-\n"
4377*6236dae4SAndroid Build Coastguard Worker "              cate  for authentication, when requested by the server. This op-\n"
4378*6236dae4SAndroid Build Coastguard Worker "              tion is only supported for Schannel (the native Windows SSL  li-\n"
4379*6236dae4SAndroid Build Coastguard Worker "              brary). Prior to 7.77.0 this was the default behavior in libcurl\n"
4380*6236dae4SAndroid Build Coastguard Worker "              with Schannel. Since the server can request any certificate that\n"
4381*6236dae4SAndroid Build Coastguard Worker , stdout);
4382*6236dae4SAndroid Build Coastguard Worker  fputs(
4383*6236dae4SAndroid Build Coastguard Worker "              supports  client  authentication  in the OS certificate store it\n"
4384*6236dae4SAndroid Build Coastguard Worker "              could be a privacy violation and unexpected.\n"
4385*6236dae4SAndroid Build Coastguard Worker "\n"
4386*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4387*6236dae4SAndroid Build Coastguard Worker "               curl --ssl-auto-client-cert https://example.com\n"
4388*6236dae4SAndroid Build Coastguard Worker "\n"
4389*6236dae4SAndroid Build Coastguard Worker "              See also --proxy-ssl-auto-client-cert. Added in 7.77.0.\n"
4390*6236dae4SAndroid Build Coastguard Worker "\n"
4391*6236dae4SAndroid Build Coastguard Worker "       --ssl-no-revoke\n"
4392*6236dae4SAndroid Build Coastguard Worker "              (Schannel) This option tells curl to disable certificate revoca-\n"
4393*6236dae4SAndroid Build Coastguard Worker "              tion checks.  WARNING: this option loosens the SSL security, and\n"
4394*6236dae4SAndroid Build Coastguard Worker , stdout);
4395*6236dae4SAndroid Build Coastguard Worker  fputs(
4396*6236dae4SAndroid Build Coastguard Worker "              by using this flag you ask for exactly that.\n"
4397*6236dae4SAndroid Build Coastguard Worker "\n"
4398*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4399*6236dae4SAndroid Build Coastguard Worker "               curl --ssl-no-revoke https://example.com\n"
4400*6236dae4SAndroid Build Coastguard Worker "\n"
4401*6236dae4SAndroid Build Coastguard Worker "              Added in 7.44.0.\n"
4402*6236dae4SAndroid Build Coastguard Worker "\n"
4403*6236dae4SAndroid Build Coastguard Worker "       --ssl-reqd\n"
4404*6236dae4SAndroid Build Coastguard Worker "              (FTP IMAP POP3 SMTP) Require SSL/TLS for the connection.  Termi-\n"
4405*6236dae4SAndroid Build Coastguard Worker "              nates the connection if the server does not support SSL/TLS.\n"
4406*6236dae4SAndroid Build Coastguard Worker "\n"
4407*6236dae4SAndroid Build Coastguard Worker "              This option was formerly known as --ftp-ssl-reqd.\n"
4408*6236dae4SAndroid Build Coastguard Worker "\n"
4409*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4410*6236dae4SAndroid Build Coastguard Worker "               curl --ssl-reqd ftp://example.com\n"
4411*6236dae4SAndroid Build Coastguard Worker "\n"
4412*6236dae4SAndroid Build Coastguard Worker , stdout);
4413*6236dae4SAndroid Build Coastguard Worker  fputs(
4414*6236dae4SAndroid Build Coastguard Worker "       --ssl-revoke-best-effort\n"
4415*6236dae4SAndroid Build Coastguard Worker "              (Schannel)  This option tells curl to ignore certificate revoca-\n"
4416*6236dae4SAndroid Build Coastguard Worker "              tion checks when they failed due to missing/offline distribution\n"
4417*6236dae4SAndroid Build Coastguard Worker "              points for the revocation check lists.\n"
4418*6236dae4SAndroid Build Coastguard Worker "\n"
4419*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4420*6236dae4SAndroid Build Coastguard Worker "               curl --ssl-revoke-best-effort https://example.com\n"
4421*6236dae4SAndroid Build Coastguard Worker "\n"
4422*6236dae4SAndroid Build Coastguard Worker "              Added in 7.70.0.\n"
4423*6236dae4SAndroid Build Coastguard Worker "\n"
4424*6236dae4SAndroid Build Coastguard Worker "       --ssl  (FTP IMAP POP3 SMTP) Try to use SSL/TLS for the connection.  Re-\n"
4425*6236dae4SAndroid Build Coastguard Worker , stdout);
4426*6236dae4SAndroid Build Coastguard Worker  fputs(
4427*6236dae4SAndroid Build Coastguard Worker "              verts to a non-secure connection if the server does not  support\n"
4428*6236dae4SAndroid Build Coastguard Worker "              SSL/TLS.   See also --ftp-ssl-control and --ssl-reqd for differ-\n"
4429*6236dae4SAndroid Build Coastguard Worker "              ent levels of encryption required.\n"
4430*6236dae4SAndroid Build Coastguard Worker "\n"
4431*6236dae4SAndroid Build Coastguard Worker "              This option was formerly known as --ftp-ssl.  That  option  name\n"
4432*6236dae4SAndroid Build Coastguard Worker "              can still be used but will be removed in a future version.\n"
4433*6236dae4SAndroid Build Coastguard Worker "\n"
4434*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4435*6236dae4SAndroid Build Coastguard Worker "               curl --ssl pop3://example.com/\n"
4436*6236dae4SAndroid Build Coastguard Worker "\n"
4437*6236dae4SAndroid Build Coastguard Worker "       -2, --sslv2\n"
4438*6236dae4SAndroid Build Coastguard Worker , stdout);
4439*6236dae4SAndroid Build Coastguard Worker  fputs(
4440*6236dae4SAndroid Build Coastguard Worker "              (SSL) This option previously asked curl to use SSLv2, but start-\n"
4441*6236dae4SAndroid Build Coastguard Worker "              ing in curl 7.77.0 this instruction is ignored. SSLv2 is  widely\n"
4442*6236dae4SAndroid Build Coastguard Worker "              considered insecure (see RFC 6176).\n"
4443*6236dae4SAndroid Build Coastguard Worker "\n"
4444*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4445*6236dae4SAndroid Build Coastguard Worker "               curl --sslv2 https://example.com\n"
4446*6236dae4SAndroid Build Coastguard Worker "\n"
4447*6236dae4SAndroid Build Coastguard Worker "              See  also  --http1.1  and --http2. -2, --sslv2 requires that the\n"
4448*6236dae4SAndroid Build Coastguard Worker "              underlying libcurl was built to support TLS. This  option  over-\n"
4449*6236dae4SAndroid Build Coastguard Worker , stdout);
4450*6236dae4SAndroid Build Coastguard Worker  fputs(
4451*6236dae4SAndroid Build Coastguard Worker "              rides -3, --sslv3 and -1, --tlsv1 and --tlsv1.1 and --tlsv1.2.\n"
4452*6236dae4SAndroid Build Coastguard Worker "\n"
4453*6236dae4SAndroid Build Coastguard Worker "       -3, --sslv3\n"
4454*6236dae4SAndroid Build Coastguard Worker "              (SSL) This option previously asked curl to use SSLv3, but start-\n"
4455*6236dae4SAndroid Build Coastguard Worker "              ing in curl 7.77.0 this instruction is ignored. SSLv3 is  widely\n"
4456*6236dae4SAndroid Build Coastguard Worker "              considered insecure (see RFC 7568).\n"
4457*6236dae4SAndroid Build Coastguard Worker "\n"
4458*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4459*6236dae4SAndroid Build Coastguard Worker "               curl --sslv3 https://example.com\n"
4460*6236dae4SAndroid Build Coastguard Worker "\n"
4461*6236dae4SAndroid Build Coastguard Worker "              See  also  --http1.1  and --http2. -3, --sslv3 requires that the\n"
4462*6236dae4SAndroid Build Coastguard Worker , stdout);
4463*6236dae4SAndroid Build Coastguard Worker  fputs(
4464*6236dae4SAndroid Build Coastguard Worker "              underlying libcurl was built to support TLS. This  option  over-\n"
4465*6236dae4SAndroid Build Coastguard Worker "              rides -2, --sslv2 and -1, --tlsv1 and --tlsv1.1 and --tlsv1.2.\n"
4466*6236dae4SAndroid Build Coastguard Worker "\n"
4467*6236dae4SAndroid Build Coastguard Worker "       --stderr <file>\n"
4468*6236dae4SAndroid Build Coastguard Worker "              Redirect  all writes to stderr to the specified file instead. If\n"
4469*6236dae4SAndroid Build Coastguard Worker "              the file name is a plain '-', it is instead written to stdout.\n"
4470*6236dae4SAndroid Build Coastguard Worker "\n"
4471*6236dae4SAndroid Build Coastguard Worker "              This option is global and does not need to be specified for each\n"
4472*6236dae4SAndroid Build Coastguard Worker "              use of -:, --next.\n"
4473*6236dae4SAndroid Build Coastguard Worker "\n"
4474*6236dae4SAndroid Build Coastguard Worker , stdout);
4475*6236dae4SAndroid Build Coastguard Worker  fputs(
4476*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
4477*6236dae4SAndroid Build Coastguard Worker "\n"
4478*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4479*6236dae4SAndroid Build Coastguard Worker "               curl --stderr output.txt https://example.com\n"
4480*6236dae4SAndroid Build Coastguard Worker "\n"
4481*6236dae4SAndroid Build Coastguard Worker "              See also -v, --verbose and -s, --silent.\n"
4482*6236dae4SAndroid Build Coastguard Worker "\n"
4483*6236dae4SAndroid Build Coastguard Worker "       --styled-output\n"
4484*6236dae4SAndroid Build Coastguard Worker "              Enables  the automatic use of bold font styles when writing HTTP\n"
4485*6236dae4SAndroid Build Coastguard Worker "              headers to the terminal. Use --no-styled-output to  switch  them\n"
4486*6236dae4SAndroid Build Coastguard Worker "              off.\n"
4487*6236dae4SAndroid Build Coastguard Worker "\n"
4488*6236dae4SAndroid Build Coastguard Worker "              This option is global and does not need to be specified for each\n"
4489*6236dae4SAndroid Build Coastguard Worker , stdout);
4490*6236dae4SAndroid Build Coastguard Worker  fputs(
4491*6236dae4SAndroid Build Coastguard Worker "              use of -:, --next.\n"
4492*6236dae4SAndroid Build Coastguard Worker "\n"
4493*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4494*6236dae4SAndroid Build Coastguard Worker "               curl --styled-output -I https://example.com\n"
4495*6236dae4SAndroid Build Coastguard Worker "\n"
4496*6236dae4SAndroid Build Coastguard Worker "              Added in 7.61.0.\n"
4497*6236dae4SAndroid Build Coastguard Worker "\n"
4498*6236dae4SAndroid Build Coastguard Worker "       --suppress-connect-headers\n"
4499*6236dae4SAndroid Build Coastguard Worker "              When -p, --proxytunnel is used and a CONNECT request is made  do\n"
4500*6236dae4SAndroid Build Coastguard Worker "              not  output proxy CONNECT response headers. This option is meant\n"
4501*6236dae4SAndroid Build Coastguard Worker "              to be used with -D, --dump-header or  -i,  --include  which  are\n"
4502*6236dae4SAndroid Build Coastguard Worker "              used to show protocol headers in the output. It has no effect on\n"
4503*6236dae4SAndroid Build Coastguard Worker , stdout);
4504*6236dae4SAndroid Build Coastguard Worker  fputs(
4505*6236dae4SAndroid Build Coastguard Worker "              debug options such as -v, --verbose or --trace, or  any  statis-\n"
4506*6236dae4SAndroid Build Coastguard Worker "              tics.\n"
4507*6236dae4SAndroid Build Coastguard Worker "\n"
4508*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4509*6236dae4SAndroid Build Coastguard Worker "               curl --suppress-connect-headers --include -x proxy https://example.com\n"
4510*6236dae4SAndroid Build Coastguard Worker "\n"
4511*6236dae4SAndroid Build Coastguard Worker "              See also -D, --dump-header, -i, --include and -p, --proxytunnel.\n"
4512*6236dae4SAndroid Build Coastguard Worker "              Added in 7.54.0.\n"
4513*6236dae4SAndroid Build Coastguard Worker "\n"
4514*6236dae4SAndroid Build Coastguard Worker "       --tcp-fastopen\n"
4515*6236dae4SAndroid Build Coastguard Worker "              Enable use of TCP Fast Open (RFC7413).\n"
4516*6236dae4SAndroid Build Coastguard Worker "\n"
4517*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4518*6236dae4SAndroid Build Coastguard Worker "               curl --tcp-fastopen https://example.com\n"
4519*6236dae4SAndroid Build Coastguard Worker "\n"
4520*6236dae4SAndroid Build Coastguard Worker , stdout);
4521*6236dae4SAndroid Build Coastguard Worker  fputs(
4522*6236dae4SAndroid Build Coastguard Worker "              Added in 7.49.0.\n"
4523*6236dae4SAndroid Build Coastguard Worker "\n"
4524*6236dae4SAndroid Build Coastguard Worker "       --tcp-nodelay\n"
4525*6236dae4SAndroid Build Coastguard Worker "              Turn on the TCP_NODELAY option. See the curl_easy_setopt(3)  man\n"
4526*6236dae4SAndroid Build Coastguard Worker "              page for details about this option.\n"
4527*6236dae4SAndroid Build Coastguard Worker "\n"
4528*6236dae4SAndroid Build Coastguard Worker "              Since  7.50.2,  curl sets this option by default and you need to\n"
4529*6236dae4SAndroid Build Coastguard Worker "              explicitly switch it off if you do not want it on.\n"
4530*6236dae4SAndroid Build Coastguard Worker "\n"
4531*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4532*6236dae4SAndroid Build Coastguard Worker "               curl --tcp-nodelay https://example.com\n"
4533*6236dae4SAndroid Build Coastguard Worker "\n"
4534*6236dae4SAndroid Build Coastguard Worker "       -t, --telnet-option <opt=val>\n"
4535*6236dae4SAndroid Build Coastguard Worker , stdout);
4536*6236dae4SAndroid Build Coastguard Worker  fputs(
4537*6236dae4SAndroid Build Coastguard Worker "              Pass options to the telnet protocol. Supported options are:\n"
4538*6236dae4SAndroid Build Coastguard Worker "\n"
4539*6236dae4SAndroid Build Coastguard Worker "              TTYPE=<term> Sets the terminal type.\n"
4540*6236dae4SAndroid Build Coastguard Worker "\n"
4541*6236dae4SAndroid Build Coastguard Worker "              XDISPLOC=<X display> Sets the X display location.\n"
4542*6236dae4SAndroid Build Coastguard Worker "\n"
4543*6236dae4SAndroid Build Coastguard Worker "              NEW_ENV=<var,val> Sets an environment variable.\n"
4544*6236dae4SAndroid Build Coastguard Worker "\n"
4545*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4546*6236dae4SAndroid Build Coastguard Worker "               curl -t TTYPE=vt100 telnet://example.com/\n"
4547*6236dae4SAndroid Build Coastguard Worker "\n"
4548*6236dae4SAndroid Build Coastguard Worker "       --tftp-blksize <value>\n"
4549*6236dae4SAndroid Build Coastguard Worker "              (TFTP) Set TFTP BLKSIZE option (must be >512). This is the block\n"
4550*6236dae4SAndroid Build Coastguard Worker , stdout);
4551*6236dae4SAndroid Build Coastguard Worker  fputs(
4552*6236dae4SAndroid Build Coastguard Worker "              size that curl will try to use when transferring data to or from\n"
4553*6236dae4SAndroid Build Coastguard Worker "              a TFTP server. By default 512 bytes will be used.\n"
4554*6236dae4SAndroid Build Coastguard Worker "\n"
4555*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
4556*6236dae4SAndroid Build Coastguard Worker "\n"
4557*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4558*6236dae4SAndroid Build Coastguard Worker "               curl --tftp-blksize 1024 tftp://example.com/file\n"
4559*6236dae4SAndroid Build Coastguard Worker "\n"
4560*6236dae4SAndroid Build Coastguard Worker "       --tftp-no-options\n"
4561*6236dae4SAndroid Build Coastguard Worker "              (TFTP) Tells curl not to send TFTP options requests.\n"
4562*6236dae4SAndroid Build Coastguard Worker "\n"
4563*6236dae4SAndroid Build Coastguard Worker "              This option improves interop with some legacy  servers  that  do\n"
4564*6236dae4SAndroid Build Coastguard Worker , stdout);
4565*6236dae4SAndroid Build Coastguard Worker  fputs(
4566*6236dae4SAndroid Build Coastguard Worker "              not  acknowledge  or  properly implement TFTP options. When this\n"
4567*6236dae4SAndroid Build Coastguard Worker "              option is used --tftp-blksize is ignored.\n"
4568*6236dae4SAndroid Build Coastguard Worker "\n"
4569*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4570*6236dae4SAndroid Build Coastguard Worker "               curl --tftp-no-options tftp://192.168.0.1/\n"
4571*6236dae4SAndroid Build Coastguard Worker "\n"
4572*6236dae4SAndroid Build Coastguard Worker "              Added in 7.48.0.\n"
4573*6236dae4SAndroid Build Coastguard Worker "\n"
4574*6236dae4SAndroid Build Coastguard Worker "       -z, --time-cond <time>\n"
4575*6236dae4SAndroid Build Coastguard Worker "              (HTTP FTP) Request a file that has been modified later than  the\n"
4576*6236dae4SAndroid Build Coastguard Worker "              given  time  and date, or one that has been modified before that\n"
4577*6236dae4SAndroid Build Coastguard Worker , stdout);
4578*6236dae4SAndroid Build Coastguard Worker  fputs(
4579*6236dae4SAndroid Build Coastguard Worker "              time. The <date expression> can be all sorts of date strings  or\n"
4580*6236dae4SAndroid Build Coastguard Worker "              if  it  does not match any internal ones, it is taken as a file-\n"
4581*6236dae4SAndroid Build Coastguard Worker "              name and tries to get the modification date (mtime) from  <file>\n"
4582*6236dae4SAndroid Build Coastguard Worker "              instead.  See  the curl_getdate(3) man pages for date expression\n"
4583*6236dae4SAndroid Build Coastguard Worker "              details.\n"
4584*6236dae4SAndroid Build Coastguard Worker "\n"
4585*6236dae4SAndroid Build Coastguard Worker "              Start the date expression with a dash (-) to make it request for\n"
4586*6236dae4SAndroid Build Coastguard Worker "              a  document that is older than the given date/time, default is a\n"
4587*6236dae4SAndroid Build Coastguard Worker , stdout);
4588*6236dae4SAndroid Build Coastguard Worker  fputs(
4589*6236dae4SAndroid Build Coastguard Worker "              document that is newer than the specified date/time.\n"
4590*6236dae4SAndroid Build Coastguard Worker "\n"
4591*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
4592*6236dae4SAndroid Build Coastguard Worker "\n"
4593*6236dae4SAndroid Build Coastguard Worker "              Examples:\n"
4594*6236dae4SAndroid Build Coastguard Worker "               curl -z \"Wed 01 Sep 2021 12:18:00\" https://example.com\n"
4595*6236dae4SAndroid Build Coastguard Worker "               curl -z \"-Wed 01 Sep 2021 12:18:00\" https://example.com\n"
4596*6236dae4SAndroid Build Coastguard Worker "               curl -z file https://example.com\n"
4597*6236dae4SAndroid Build Coastguard Worker "\n"
4598*6236dae4SAndroid Build Coastguard Worker "       --tls-max <VERSION>\n"
4599*6236dae4SAndroid Build Coastguard Worker "              (SSL) VERSION defines maximum supported TLS version. The minimum\n"
4600*6236dae4SAndroid Build Coastguard Worker , stdout);
4601*6236dae4SAndroid Build Coastguard Worker  fputs(
4602*6236dae4SAndroid Build Coastguard Worker "              acceptable  version  is  set  by  tlsv1.0,  tlsv1.1,  tlsv1.2 or\n"
4603*6236dae4SAndroid Build Coastguard Worker "              tlsv1.3.\n"
4604*6236dae4SAndroid Build Coastguard Worker "\n"
4605*6236dae4SAndroid Build Coastguard Worker "              If the connection is done without TLS, this option  has  no  ef-\n"
4606*6236dae4SAndroid Build Coastguard Worker "              fect. This includes QUIC-using (HTTP/3) transfers.\n"
4607*6236dae4SAndroid Build Coastguard Worker "\n"
4608*6236dae4SAndroid Build Coastguard Worker "              default\n"
4609*6236dae4SAndroid Build Coastguard Worker "                     Use up to recommended TLS version.\n"
4610*6236dae4SAndroid Build Coastguard Worker "\n"
4611*6236dae4SAndroid Build Coastguard Worker "              1.0    Use up to TLSv1.0.\n"
4612*6236dae4SAndroid Build Coastguard Worker "              1.1    Use up to TLSv1.1.\n"
4613*6236dae4SAndroid Build Coastguard Worker "              1.2    Use up to TLSv1.2.\n"
4614*6236dae4SAndroid Build Coastguard Worker "              1.3    Use up to TLSv1.3.\n"
4615*6236dae4SAndroid Build Coastguard Worker "\n"
4616*6236dae4SAndroid Build Coastguard Worker , stdout);
4617*6236dae4SAndroid Build Coastguard Worker  fputs(
4618*6236dae4SAndroid Build Coastguard Worker "       Examples:\n"
4619*6236dae4SAndroid Build Coastguard Worker "        curl --tls-max 1.2 https://example.com\n"
4620*6236dae4SAndroid Build Coastguard Worker "        curl --tls-max 1.3 --tlsv1.2 https://example.com\n"
4621*6236dae4SAndroid Build Coastguard Worker "\n"
4622*6236dae4SAndroid Build Coastguard Worker "       See  also  --tlsv1.0, --tlsv1.1, --tlsv1.2 and --tlsv1.3. --tls-max re-\n"
4623*6236dae4SAndroid Build Coastguard Worker "       quires that the underlying libcurl was built to support TLS.  Added  in\n"
4624*6236dae4SAndroid Build Coastguard Worker "       7.54.0.\n"
4625*6236dae4SAndroid Build Coastguard Worker "\n"
4626*6236dae4SAndroid Build Coastguard Worker "       --tls13-ciphers <ciphersuite list>\n"
4627*6236dae4SAndroid Build Coastguard Worker "              (TLS)  Specifies which cipher suites to use in the connection if\n"
4628*6236dae4SAndroid Build Coastguard Worker "              it negotiates TLS 1.3. The list of ciphers suites  must  specify\n"
4629*6236dae4SAndroid Build Coastguard Worker , stdout);
4630*6236dae4SAndroid Build Coastguard Worker  fputs(
4631*6236dae4SAndroid Build Coastguard Worker "              valid  ciphers.  Read up on TLS 1.3 cipher suite details on this\n"
4632*6236dae4SAndroid Build Coastguard Worker "              URL:\n"
4633*6236dae4SAndroid Build Coastguard Worker "\n"
4634*6236dae4SAndroid Build Coastguard Worker "               https://curl.se/docs/ssl-ciphers.html\n"
4635*6236dae4SAndroid Build Coastguard Worker "\n"
4636*6236dae4SAndroid Build Coastguard Worker "              This option is currently used only when curl  is  built  to  use\n"
4637*6236dae4SAndroid Build Coastguard Worker "              OpenSSL 1.1.1 or later. If you are using a different SSL backend\n"
4638*6236dae4SAndroid Build Coastguard Worker "              you can try setting TLS 1.3 cipher suites by using the --ciphers\n"
4639*6236dae4SAndroid Build Coastguard Worker "              option.\n"
4640*6236dae4SAndroid Build Coastguard Worker "\n"
4641*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
4642*6236dae4SAndroid Build Coastguard Worker "\n"
4643*6236dae4SAndroid Build Coastguard Worker , stdout);
4644*6236dae4SAndroid Build Coastguard Worker  fputs(
4645*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4646*6236dae4SAndroid Build Coastguard Worker "               curl --tls13-ciphers TLS_AES_128_GCM_SHA256 https://example.com\n"
4647*6236dae4SAndroid Build Coastguard Worker "\n"
4648*6236dae4SAndroid Build Coastguard Worker "              Added in 7.61.0.\n"
4649*6236dae4SAndroid Build Coastguard Worker "\n"
4650*6236dae4SAndroid Build Coastguard Worker "       --tlsauthtype <type>\n"
4651*6236dae4SAndroid Build Coastguard Worker "              Set  TLS  authentication type. Currently, the only supported op-\n"
4652*6236dae4SAndroid Build Coastguard Worker "              tion  is  \"SRP\",  for  TLS-SRP  (RFC  5054).  If  --tlsuser  and\n"
4653*6236dae4SAndroid Build Coastguard Worker "              --tlspassword  are specified but --tlsauthtype is not, then this\n"
4654*6236dae4SAndroid Build Coastguard Worker "              option defaults to \"SRP\".  This option works only if the  under-\n"
4655*6236dae4SAndroid Build Coastguard Worker , stdout);
4656*6236dae4SAndroid Build Coastguard Worker  fputs(
4657*6236dae4SAndroid Build Coastguard Worker "              lying  libcurl  is  built  with  TLS-SRP support, which requires\n"
4658*6236dae4SAndroid Build Coastguard Worker "              OpenSSL or GnuTLS with TLS-SRP support.\n"
4659*6236dae4SAndroid Build Coastguard Worker "\n"
4660*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4661*6236dae4SAndroid Build Coastguard Worker "               curl --tlsauthtype SRP https://example.com\n"
4662*6236dae4SAndroid Build Coastguard Worker "\n"
4663*6236dae4SAndroid Build Coastguard Worker "       --tlspassword <string>\n"
4664*6236dae4SAndroid Build Coastguard Worker "              Set password for use with the TLS authentication  method  speci-\n"
4665*6236dae4SAndroid Build Coastguard Worker "              fied with --tlsauthtype. Requires that --tlsuser also be set.\n"
4666*6236dae4SAndroid Build Coastguard Worker "\n"
4667*6236dae4SAndroid Build Coastguard Worker "              This option does not work with TLS 1.3.\n"
4668*6236dae4SAndroid Build Coastguard Worker "\n"
4669*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4670*6236dae4SAndroid Build Coastguard Worker , stdout);
4671*6236dae4SAndroid Build Coastguard Worker  fputs(
4672*6236dae4SAndroid Build Coastguard Worker "               curl --tlspassword pwd --tlsuser user https://example.com\n"
4673*6236dae4SAndroid Build Coastguard Worker "\n"
4674*6236dae4SAndroid Build Coastguard Worker "       --tlsuser <name>\n"
4675*6236dae4SAndroid Build Coastguard Worker "              Set  username  for use with the TLS authentication method speci-\n"
4676*6236dae4SAndroid Build Coastguard Worker "              fied with --tlsauthtype. Requires  that  --tlspassword  also  is\n"
4677*6236dae4SAndroid Build Coastguard Worker "              set.\n"
4678*6236dae4SAndroid Build Coastguard Worker "\n"
4679*6236dae4SAndroid Build Coastguard Worker "              This option does not work with TLS 1.3.\n"
4680*6236dae4SAndroid Build Coastguard Worker "\n"
4681*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4682*6236dae4SAndroid Build Coastguard Worker "               curl --tlspassword pwd --tlsuser user https://example.com\n"
4683*6236dae4SAndroid Build Coastguard Worker "\n"
4684*6236dae4SAndroid Build Coastguard Worker "       --tlsv1.0\n"
4685*6236dae4SAndroid Build Coastguard Worker , stdout);
4686*6236dae4SAndroid Build Coastguard Worker  fputs(
4687*6236dae4SAndroid Build Coastguard Worker "              (TLS)  Forces curl to use TLS version 1.0 or later when connect-\n"
4688*6236dae4SAndroid Build Coastguard Worker "              ing to a remote TLS server.\n"
4689*6236dae4SAndroid Build Coastguard Worker "\n"
4690*6236dae4SAndroid Build Coastguard Worker "              In old versions of curl this  option  was  documented  to  allow\n"
4691*6236dae4SAndroid Build Coastguard Worker "              _only_  TLS  1.0, but behavior was inconsistent depending on the\n"
4692*6236dae4SAndroid Build Coastguard Worker "              TLS library. Use --tls-max if you want to set a maximum TLS ver-\n"
4693*6236dae4SAndroid Build Coastguard Worker "              sion.\n"
4694*6236dae4SAndroid Build Coastguard Worker "\n"
4695*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4696*6236dae4SAndroid Build Coastguard Worker "               curl --tlsv1.0 https://example.com\n"
4697*6236dae4SAndroid Build Coastguard Worker "\n"
4698*6236dae4SAndroid Build Coastguard Worker "              Added in 7.34.0.\n"
4699*6236dae4SAndroid Build Coastguard Worker "\n"
4700*6236dae4SAndroid Build Coastguard Worker , stdout);
4701*6236dae4SAndroid Build Coastguard Worker  fputs(
4702*6236dae4SAndroid Build Coastguard Worker "       --tlsv1.1\n"
4703*6236dae4SAndroid Build Coastguard Worker "              (TLS)  Forces curl to use TLS version 1.1 or later when connect-\n"
4704*6236dae4SAndroid Build Coastguard Worker "              ing to a remote TLS server.\n"
4705*6236dae4SAndroid Build Coastguard Worker "\n"
4706*6236dae4SAndroid Build Coastguard Worker "              In old versions of curl this  option  was  documented  to  allow\n"
4707*6236dae4SAndroid Build Coastguard Worker "              _only_  TLS  1.1, but behavior was inconsistent depending on the\n"
4708*6236dae4SAndroid Build Coastguard Worker "              TLS library. Use --tls-max if you want to set a maximum TLS ver-\n"
4709*6236dae4SAndroid Build Coastguard Worker "              sion.\n"
4710*6236dae4SAndroid Build Coastguard Worker "\n"
4711*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4712*6236dae4SAndroid Build Coastguard Worker "               curl --tlsv1.1 https://example.com\n"
4713*6236dae4SAndroid Build Coastguard Worker "\n"
4714*6236dae4SAndroid Build Coastguard Worker , stdout);
4715*6236dae4SAndroid Build Coastguard Worker  fputs(
4716*6236dae4SAndroid Build Coastguard Worker "              Added in 7.34.0.\n"
4717*6236dae4SAndroid Build Coastguard Worker "\n"
4718*6236dae4SAndroid Build Coastguard Worker "       --tlsv1.2\n"
4719*6236dae4SAndroid Build Coastguard Worker "              (TLS)  Forces curl to use TLS version 1.2 or later when connect-\n"
4720*6236dae4SAndroid Build Coastguard Worker "              ing to a remote TLS server.\n"
4721*6236dae4SAndroid Build Coastguard Worker "\n"
4722*6236dae4SAndroid Build Coastguard Worker "              In old versions of curl this  option  was  documented  to  allow\n"
4723*6236dae4SAndroid Build Coastguard Worker "              _only_  TLS  1.2, but behavior was inconsistent depending on the\n"
4724*6236dae4SAndroid Build Coastguard Worker "              TLS library. Use --tls-max if you want to set a maximum TLS ver-\n"
4725*6236dae4SAndroid Build Coastguard Worker "              sion.\n"
4726*6236dae4SAndroid Build Coastguard Worker "\n"
4727*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4728*6236dae4SAndroid Build Coastguard Worker , stdout);
4729*6236dae4SAndroid Build Coastguard Worker  fputs(
4730*6236dae4SAndroid Build Coastguard Worker "               curl --tlsv1.2 https://example.com\n"
4731*6236dae4SAndroid Build Coastguard Worker "\n"
4732*6236dae4SAndroid Build Coastguard Worker "              Added in 7.34.0.\n"
4733*6236dae4SAndroid Build Coastguard Worker "\n"
4734*6236dae4SAndroid Build Coastguard Worker "       --tlsv1.3\n"
4735*6236dae4SAndroid Build Coastguard Worker "              (TLS)  Forces curl to use TLS version 1.3 or later when connect-\n"
4736*6236dae4SAndroid Build Coastguard Worker "              ing to a remote TLS server.\n"
4737*6236dae4SAndroid Build Coastguard Worker "\n"
4738*6236dae4SAndroid Build Coastguard Worker "              If the connection is done without TLS, this option  has  no  ef-\n"
4739*6236dae4SAndroid Build Coastguard Worker "              fect. This includes QUIC-using (HTTP/3) transfers.\n"
4740*6236dae4SAndroid Build Coastguard Worker "\n"
4741*6236dae4SAndroid Build Coastguard Worker "              Note that TLS 1.3 is not supported by all TLS backends.\n"
4742*6236dae4SAndroid Build Coastguard Worker "\n"
4743*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4744*6236dae4SAndroid Build Coastguard Worker , stdout);
4745*6236dae4SAndroid Build Coastguard Worker  fputs(
4746*6236dae4SAndroid Build Coastguard Worker "               curl --tlsv1.3 https://example.com\n"
4747*6236dae4SAndroid Build Coastguard Worker "\n"
4748*6236dae4SAndroid Build Coastguard Worker "              Added in 7.52.0.\n"
4749*6236dae4SAndroid Build Coastguard Worker "\n"
4750*6236dae4SAndroid Build Coastguard Worker "       -1, --tlsv1\n"
4751*6236dae4SAndroid Build Coastguard Worker "              (SSL)  Tells curl to use at least TLS version 1.x when negotiat-\n"
4752*6236dae4SAndroid Build Coastguard Worker "              ing with a remote TLS server. That  means  TLS  version  1.0  or\n"
4753*6236dae4SAndroid Build Coastguard Worker "              higher\n"
4754*6236dae4SAndroid Build Coastguard Worker "\n"
4755*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4756*6236dae4SAndroid Build Coastguard Worker "               curl --tlsv1 https://example.com\n"
4757*6236dae4SAndroid Build Coastguard Worker "\n"
4758*6236dae4SAndroid Build Coastguard Worker "              See  also  --http1.1  and --http2. -1, --tlsv1 requires that the\n"
4759*6236dae4SAndroid Build Coastguard Worker , stdout);
4760*6236dae4SAndroid Build Coastguard Worker  fputs(
4761*6236dae4SAndroid Build Coastguard Worker "              underlying libcurl was built to support TLS. This  option  over-\n"
4762*6236dae4SAndroid Build Coastguard Worker "              rides --tlsv1.1 and --tlsv1.2 and --tlsv1.3.\n"
4763*6236dae4SAndroid Build Coastguard Worker "\n"
4764*6236dae4SAndroid Build Coastguard Worker "       --tr-encoding\n"
4765*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Request a compressed Transfer-Encoding response using one\n"
4766*6236dae4SAndroid Build Coastguard Worker "              of the algorithms curl supports, and uncompress the  data  while\n"
4767*6236dae4SAndroid Build Coastguard Worker "              receiving it.\n"
4768*6236dae4SAndroid Build Coastguard Worker "\n"
4769*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4770*6236dae4SAndroid Build Coastguard Worker "               curl --tr-encoding https://example.com\n"
4771*6236dae4SAndroid Build Coastguard Worker "\n"
4772*6236dae4SAndroid Build Coastguard Worker "       --trace-ascii <file>\n"
4773*6236dae4SAndroid Build Coastguard Worker , stdout);
4774*6236dae4SAndroid Build Coastguard Worker  fputs(
4775*6236dae4SAndroid Build Coastguard Worker "              Enables a full trace dump of all incoming and outgoing data, in-\n"
4776*6236dae4SAndroid Build Coastguard Worker "              cluding descriptive information, to the given output  file.  Use\n"
4777*6236dae4SAndroid Build Coastguard Worker "              \"-\" as filename to have the output sent to stdout.\n"
4778*6236dae4SAndroid Build Coastguard Worker "\n"
4779*6236dae4SAndroid Build Coastguard Worker "              This is similar to --trace, but leaves out the hex part and only\n"
4780*6236dae4SAndroid Build Coastguard Worker "              shows the ASCII part of the dump. It makes smaller  output  that\n"
4781*6236dae4SAndroid Build Coastguard Worker "              might be easier to read for untrained humans.\n"
4782*6236dae4SAndroid Build Coastguard Worker "\n"
4783*6236dae4SAndroid Build Coastguard Worker , stdout);
4784*6236dae4SAndroid Build Coastguard Worker  fputs(
4785*6236dae4SAndroid Build Coastguard Worker "              This option is global and does not need to be specified for each\n"
4786*6236dae4SAndroid Build Coastguard Worker "              use of -:, --next.\n"
4787*6236dae4SAndroid Build Coastguard Worker "\n"
4788*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
4789*6236dae4SAndroid Build Coastguard Worker "\n"
4790*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4791*6236dae4SAndroid Build Coastguard Worker "               curl --trace-ascii log.txt https://example.com\n"
4792*6236dae4SAndroid Build Coastguard Worker "\n"
4793*6236dae4SAndroid Build Coastguard Worker "              This option overrides --trace and -v, --verbose.\n"
4794*6236dae4SAndroid Build Coastguard Worker "\n"
4795*6236dae4SAndroid Build Coastguard Worker "       --trace-time\n"
4796*6236dae4SAndroid Build Coastguard Worker "              Prepends a time stamp to each trace or verbose  line  that  curl\n"
4797*6236dae4SAndroid Build Coastguard Worker "              displays.\n"
4798*6236dae4SAndroid Build Coastguard Worker "\n"
4799*6236dae4SAndroid Build Coastguard Worker , stdout);
4800*6236dae4SAndroid Build Coastguard Worker  fputs(
4801*6236dae4SAndroid Build Coastguard Worker "              This option is global and does not need to be specified for each\n"
4802*6236dae4SAndroid Build Coastguard Worker "              use of -:, --next.\n"
4803*6236dae4SAndroid Build Coastguard Worker "\n"
4804*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4805*6236dae4SAndroid Build Coastguard Worker "               curl --trace-time --trace-ascii output https://example.com\n"
4806*6236dae4SAndroid Build Coastguard Worker "\n"
4807*6236dae4SAndroid Build Coastguard Worker "       --trace <file>\n"
4808*6236dae4SAndroid Build Coastguard Worker "              Enables a full trace dump of all incoming and outgoing data, in-\n"
4809*6236dae4SAndroid Build Coastguard Worker "              cluding  descriptive  information, to the given output file. Use\n"
4810*6236dae4SAndroid Build Coastguard Worker "              \"-\" as filename to have the output sent to stdout.  Use  \"%\"  as\n"
4811*6236dae4SAndroid Build Coastguard Worker , stdout);
4812*6236dae4SAndroid Build Coastguard Worker  fputs(
4813*6236dae4SAndroid Build Coastguard Worker "              filename to have the output sent to stderr.\n"
4814*6236dae4SAndroid Build Coastguard Worker "\n"
4815*6236dae4SAndroid Build Coastguard Worker "              This option is global and does not need to be specified for each\n"
4816*6236dae4SAndroid Build Coastguard Worker "              use of -:, --next.\n"
4817*6236dae4SAndroid Build Coastguard Worker "\n"
4818*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
4819*6236dae4SAndroid Build Coastguard Worker "\n"
4820*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4821*6236dae4SAndroid Build Coastguard Worker "               curl --trace log.txt https://example.com\n"
4822*6236dae4SAndroid Build Coastguard Worker "\n"
4823*6236dae4SAndroid Build Coastguard Worker "              This option overrides -v, --verbose and --trace-ascii.\n"
4824*6236dae4SAndroid Build Coastguard Worker "\n"
4825*6236dae4SAndroid Build Coastguard Worker "       --unix-socket <path>\n"
4826*6236dae4SAndroid Build Coastguard Worker , stdout);
4827*6236dae4SAndroid Build Coastguard Worker  fputs(
4828*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Connect through this Unix domain socket, instead of using\n"
4829*6236dae4SAndroid Build Coastguard Worker "              the network.\n"
4830*6236dae4SAndroid Build Coastguard Worker "\n"
4831*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4832*6236dae4SAndroid Build Coastguard Worker "               curl --unix-socket socket-path https://example.com\n"
4833*6236dae4SAndroid Build Coastguard Worker "\n"
4834*6236dae4SAndroid Build Coastguard Worker "              Added in 7.40.0.\n"
4835*6236dae4SAndroid Build Coastguard Worker "\n"
4836*6236dae4SAndroid Build Coastguard Worker "       -T, --upload-file <file>\n"
4837*6236dae4SAndroid Build Coastguard Worker "              This  transfers  the  specified local file to the remote URL. If\n"
4838*6236dae4SAndroid Build Coastguard Worker "              there is no file part in the specified URL, curl will append the\n"
4839*6236dae4SAndroid Build Coastguard Worker "              local file name. NOTE that you must use a trailing / on the last\n"
4840*6236dae4SAndroid Build Coastguard Worker , stdout);
4841*6236dae4SAndroid Build Coastguard Worker  fputs(
4842*6236dae4SAndroid Build Coastguard Worker "              directory to really prove to Curl that there is no file name  or\n"
4843*6236dae4SAndroid Build Coastguard Worker "              curl will think that your last directory name is the remote file\n"
4844*6236dae4SAndroid Build Coastguard Worker "              name to use. That will most likely cause the upload operation to\n"
4845*6236dae4SAndroid Build Coastguard Worker "              fail. If this is used on an HTTP(S) server, the PUT command will\n"
4846*6236dae4SAndroid Build Coastguard Worker "              be used.\n"
4847*6236dae4SAndroid Build Coastguard Worker "\n"
4848*6236dae4SAndroid Build Coastguard Worker "              Use the file name \"-\" (a single dash) to use stdin instead of  a\n"
4849*6236dae4SAndroid Build Coastguard Worker "              given  file.   Alternately,  the file name \".\" (a single period)\n"
4850*6236dae4SAndroid Build Coastguard Worker , stdout);
4851*6236dae4SAndroid Build Coastguard Worker  fputs(
4852*6236dae4SAndroid Build Coastguard Worker "              may be specified instead of \"-\" to  use  stdin  in  non-blocking\n"
4853*6236dae4SAndroid Build Coastguard Worker "              mode  to  allow  reading  server output while stdin is being up-\n"
4854*6236dae4SAndroid Build Coastguard Worker "              loaded.\n"
4855*6236dae4SAndroid Build Coastguard Worker "\n"
4856*6236dae4SAndroid Build Coastguard Worker "              You can specify one -T, --upload-file for each URL on  the  com-\n"
4857*6236dae4SAndroid Build Coastguard Worker "              mand  line.  Each -T, --upload-file + URL pair specifies what to\n"
4858*6236dae4SAndroid Build Coastguard Worker "              upload and to where. curl also supports \"globbing\"  of  the  -T,\n"
4859*6236dae4SAndroid Build Coastguard Worker "              --upload-file  argument,  meaning  that  you can upload multiple\n"
4860*6236dae4SAndroid Build Coastguard Worker , stdout);
4861*6236dae4SAndroid Build Coastguard Worker  fputs(
4862*6236dae4SAndroid Build Coastguard Worker "              files to a single URL by using the same URL globbing style  sup-\n"
4863*6236dae4SAndroid Build Coastguard Worker "              ported in the URL.\n"
4864*6236dae4SAndroid Build Coastguard Worker "\n"
4865*6236dae4SAndroid Build Coastguard Worker "              When  uploading  to an SMTP server: the uploaded data is assumed\n"
4866*6236dae4SAndroid Build Coastguard Worker "              to be RFC 5322 formatted. It has to feature the necessary set of\n"
4867*6236dae4SAndroid Build Coastguard Worker "              headers  and  mail  body formatted correctly by the user as curl\n"
4868*6236dae4SAndroid Build Coastguard Worker "              will not transcode nor encode it further in any way.\n"
4869*6236dae4SAndroid Build Coastguard Worker "\n"
4870*6236dae4SAndroid Build Coastguard Worker "              Examples:\n"
4871*6236dae4SAndroid Build Coastguard Worker "               curl -T file https://example.com\n"
4872*6236dae4SAndroid Build Coastguard Worker , stdout);
4873*6236dae4SAndroid Build Coastguard Worker  fputs(
4874*6236dae4SAndroid Build Coastguard Worker "               curl -T \"img[1-1000].png\" ftp://ftp.example.com/\n"
4875*6236dae4SAndroid Build Coastguard Worker "               curl --upload-file \"{file1,file2}\" https://example.com\n"
4876*6236dae4SAndroid Build Coastguard Worker "\n"
4877*6236dae4SAndroid Build Coastguard Worker "       --url <url>\n"
4878*6236dae4SAndroid Build Coastguard Worker "              Specify a URL to fetch. This option is  mostly  handy  when  you\n"
4879*6236dae4SAndroid Build Coastguard Worker "              want to specify URL(s) in a config file.\n"
4880*6236dae4SAndroid Build Coastguard Worker "\n"
4881*6236dae4SAndroid Build Coastguard Worker "              If  the given URL is missing a scheme name (such as \"http://\" or\n"
4882*6236dae4SAndroid Build Coastguard Worker "              \"ftp://\" etc) then curl will make a guess based on the host.  If\n"
4883*6236dae4SAndroid Build Coastguard Worker , stdout);
4884*6236dae4SAndroid Build Coastguard Worker  fputs(
4885*6236dae4SAndroid Build Coastguard Worker "              the  outermost  sub-domain  name  matches DICT, FTP, IMAP, LDAP,\n"
4886*6236dae4SAndroid Build Coastguard Worker "              POP3 or SMTP then that protocol will  be  used,  otherwise  HTTP\n"
4887*6236dae4SAndroid Build Coastguard Worker "              will be used. Since 7.45.0 guessing can be disabled by setting a\n"
4888*6236dae4SAndroid Build Coastguard Worker "              default protocol, see --proto-default for details.\n"
4889*6236dae4SAndroid Build Coastguard Worker "\n"
4890*6236dae4SAndroid Build Coastguard Worker "              This option may be used any number of times.  To  control  where\n"
4891*6236dae4SAndroid Build Coastguard Worker "              this  URL  is written, use the -o, --output or the -O, --remote-\n"
4892*6236dae4SAndroid Build Coastguard Worker "              name options.\n"
4893*6236dae4SAndroid Build Coastguard Worker "\n"
4894*6236dae4SAndroid Build Coastguard Worker , stdout);
4895*6236dae4SAndroid Build Coastguard Worker  fputs(
4896*6236dae4SAndroid Build Coastguard Worker "              WARNING: On Windows, particular file://  accesses  can  be  con-\n"
4897*6236dae4SAndroid Build Coastguard Worker "              verted to network accesses by the operating system. Beware!\n"
4898*6236dae4SAndroid Build Coastguard Worker "\n"
4899*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4900*6236dae4SAndroid Build Coastguard Worker "               curl --url https://example.com\n"
4901*6236dae4SAndroid Build Coastguard Worker "\n"
4902*6236dae4SAndroid Build Coastguard Worker "       -B, --use-ascii\n"
4903*6236dae4SAndroid Build Coastguard Worker "              (FTP  LDAP) Enable ASCII transfer. For FTP, this can also be en-\n"
4904*6236dae4SAndroid Build Coastguard Worker "              forced by using a URL that  ends  with  \";type=A\".  This  option\n"
4905*6236dae4SAndroid Build Coastguard Worker "              causes data sent to stdout to be in text mode for win32 systems.\n"
4906*6236dae4SAndroid Build Coastguard Worker "\n"
4907*6236dae4SAndroid Build Coastguard Worker , stdout);
4908*6236dae4SAndroid Build Coastguard Worker  fputs(
4909*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4910*6236dae4SAndroid Build Coastguard Worker "               curl -B ftp://example.com/README\n"
4911*6236dae4SAndroid Build Coastguard Worker "\n"
4912*6236dae4SAndroid Build Coastguard Worker "       -A, --user-agent <name>\n"
4913*6236dae4SAndroid Build Coastguard Worker "              (HTTP) Specify the User-Agent string to send to the HTTP server.\n"
4914*6236dae4SAndroid Build Coastguard Worker "              To encode blanks in the string, surround the string with  single\n"
4915*6236dae4SAndroid Build Coastguard Worker "              quote  marks.  This header can also be set with the -H, --header\n"
4916*6236dae4SAndroid Build Coastguard Worker "              or the --proxy-header options.\n"
4917*6236dae4SAndroid Build Coastguard Worker "\n"
4918*6236dae4SAndroid Build Coastguard Worker "              If you give an empty argument to -A, --user-agent (\"\"), it  will\n"
4919*6236dae4SAndroid Build Coastguard Worker , stdout);
4920*6236dae4SAndroid Build Coastguard Worker  fputs(
4921*6236dae4SAndroid Build Coastguard Worker "              remove  the  header completely from the request. If you prefer a\n"
4922*6236dae4SAndroid Build Coastguard Worker "              blank header, you can set it to a single space (\" \").\n"
4923*6236dae4SAndroid Build Coastguard Worker "\n"
4924*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
4925*6236dae4SAndroid Build Coastguard Worker "\n"
4926*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4927*6236dae4SAndroid Build Coastguard Worker "               curl -A \"Agent 007\" https://example.com\n"
4928*6236dae4SAndroid Build Coastguard Worker "\n"
4929*6236dae4SAndroid Build Coastguard Worker "       -u, --user <user:password>\n"
4930*6236dae4SAndroid Build Coastguard Worker "              Specify the user name and password to use for server authentica-\n"
4931*6236dae4SAndroid Build Coastguard Worker "              tion. Overrides -n, --netrc and --netrc-optional.\n"
4932*6236dae4SAndroid Build Coastguard Worker "\n"
4933*6236dae4SAndroid Build Coastguard Worker , stdout);
4934*6236dae4SAndroid Build Coastguard Worker  fputs(
4935*6236dae4SAndroid Build Coastguard Worker "              If  you  simply  specify  the  user name, curl will prompt for a\n"
4936*6236dae4SAndroid Build Coastguard Worker "              password.\n"
4937*6236dae4SAndroid Build Coastguard Worker "\n"
4938*6236dae4SAndroid Build Coastguard Worker "              The user name and passwords are split up  on  the  first  colon,\n"
4939*6236dae4SAndroid Build Coastguard Worker "              which  makes  it impossible to use a colon in the user name with\n"
4940*6236dae4SAndroid Build Coastguard Worker "              this option. The password can, still.\n"
4941*6236dae4SAndroid Build Coastguard Worker "\n"
4942*6236dae4SAndroid Build Coastguard Worker "              On systems where it works, curl will hide the given option argu-\n"
4943*6236dae4SAndroid Build Coastguard Worker "              ment  from  process listings. This is not enough to protect cre-\n"
4944*6236dae4SAndroid Build Coastguard Worker , stdout);
4945*6236dae4SAndroid Build Coastguard Worker  fputs(
4946*6236dae4SAndroid Build Coastguard Worker "              dentials from possibly getting seen by other users on  the  same\n"
4947*6236dae4SAndroid Build Coastguard Worker "              system  as  they  will  still  be  visible  for  a moment before\n"
4948*6236dae4SAndroid Build Coastguard Worker "              cleared. Such sensitive data should be retrieved from a file in-\n"
4949*6236dae4SAndroid Build Coastguard Worker "              stead or similar and never used in clear text in a command line.\n"
4950*6236dae4SAndroid Build Coastguard Worker "              When  using  Kerberos  V5 with a Windows based server you should\n"
4951*6236dae4SAndroid Build Coastguard Worker "              include the Windows domain name in the user name, in  order  for\n"
4952*6236dae4SAndroid Build Coastguard Worker , stdout);
4953*6236dae4SAndroid Build Coastguard Worker  fputs(
4954*6236dae4SAndroid Build Coastguard Worker "              the  server  to successfully obtain a Kerberos Ticket. If you do\n"
4955*6236dae4SAndroid Build Coastguard Worker "              not, then the initial authentication handshake may fail.\n"
4956*6236dae4SAndroid Build Coastguard Worker "\n"
4957*6236dae4SAndroid Build Coastguard Worker "              When using NTLM, the user name can be specified  simply  as  the\n"
4958*6236dae4SAndroid Build Coastguard Worker "              user  name,  without the domain, if there is a single domain and\n"
4959*6236dae4SAndroid Build Coastguard Worker "              forest in your setup for example.\n"
4960*6236dae4SAndroid Build Coastguard Worker "\n"
4961*6236dae4SAndroid Build Coastguard Worker "              To specify the domain name use either Down-Level Logon  Name  or\n"
4962*6236dae4SAndroid Build Coastguard Worker , stdout);
4963*6236dae4SAndroid Build Coastguard Worker  fputs(
4964*6236dae4SAndroid Build Coastguard Worker "              UPN (User Principal Name) formats. For example, EXAMPLE\\user and\n"
4965*6236dae4SAndroid Build Coastguard Worker "              [email protected] respectively.\n"
4966*6236dae4SAndroid Build Coastguard Worker "\n"
4967*6236dae4SAndroid Build Coastguard Worker "              If you use a Windows SSPI-enabled curl binary and  perform  Ker-\n"
4968*6236dae4SAndroid Build Coastguard Worker "              beros  V5, Negotiate, NTLM or Digest authentication then you can\n"
4969*6236dae4SAndroid Build Coastguard Worker "              tell curl to select the user name and password from  your  envi-\n"
4970*6236dae4SAndroid Build Coastguard Worker "              ronment by specifying a single colon with this option: \"-u :\".\n"
4971*6236dae4SAndroid Build Coastguard Worker "\n"
4972*6236dae4SAndroid Build Coastguard Worker , stdout);
4973*6236dae4SAndroid Build Coastguard Worker  fputs(
4974*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
4975*6236dae4SAndroid Build Coastguard Worker "\n"
4976*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
4977*6236dae4SAndroid Build Coastguard Worker "               curl -u user:secret https://example.com\n"
4978*6236dae4SAndroid Build Coastguard Worker "\n"
4979*6236dae4SAndroid Build Coastguard Worker "       -v, --verbose\n"
4980*6236dae4SAndroid Build Coastguard Worker "              Makes  curl  verbose  during the operation. Useful for debugging\n"
4981*6236dae4SAndroid Build Coastguard Worker "              and seeing what's going on \"under the  hood\".  A  line  starting\n"
4982*6236dae4SAndroid Build Coastguard Worker "              with  '>'  means  \"header  data\" sent by curl, '<' means \"header\n"
4983*6236dae4SAndroid Build Coastguard Worker "              data\" received by curl that is hidden in  normal  cases,  and  a\n"
4984*6236dae4SAndroid Build Coastguard Worker , stdout);
4985*6236dae4SAndroid Build Coastguard Worker  fputs(
4986*6236dae4SAndroid Build Coastguard Worker "              line starting with '*' means additional info provided by curl.\n"
4987*6236dae4SAndroid Build Coastguard Worker "\n"
4988*6236dae4SAndroid Build Coastguard Worker "              If you only want HTTP headers in the output, -i, --include might\n"
4989*6236dae4SAndroid Build Coastguard Worker "              be the option you are looking for.\n"
4990*6236dae4SAndroid Build Coastguard Worker "\n"
4991*6236dae4SAndroid Build Coastguard Worker "              If you think this option still does not give you enough details,\n"
4992*6236dae4SAndroid Build Coastguard Worker "              consider using --trace or --trace-ascii instead.\n"
4993*6236dae4SAndroid Build Coastguard Worker "\n"
4994*6236dae4SAndroid Build Coastguard Worker "              This option is global and does not need to be specified for each\n"
4995*6236dae4SAndroid Build Coastguard Worker "              use of -:, --next.\n"
4996*6236dae4SAndroid Build Coastguard Worker "\n"
4997*6236dae4SAndroid Build Coastguard Worker , stdout);
4998*6236dae4SAndroid Build Coastguard Worker  fputs(
4999*6236dae4SAndroid Build Coastguard Worker "              Use -s, --silent to make curl really quiet.\n"
5000*6236dae4SAndroid Build Coastguard Worker "\n"
5001*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
5002*6236dae4SAndroid Build Coastguard Worker "               curl --verbose https://example.com\n"
5003*6236dae4SAndroid Build Coastguard Worker "\n"
5004*6236dae4SAndroid Build Coastguard Worker "              See also  -i,  --include.  This  option  overrides  --trace  and\n"
5005*6236dae4SAndroid Build Coastguard Worker "              --trace-ascii.\n"
5006*6236dae4SAndroid Build Coastguard Worker "\n"
5007*6236dae4SAndroid Build Coastguard Worker "       -V, --version\n"
5008*6236dae4SAndroid Build Coastguard Worker "              Displays information about curl and the libcurl version it uses.\n"
5009*6236dae4SAndroid Build Coastguard Worker "              The  first  line  includes the full version of curl, libcurl and\n"
5010*6236dae4SAndroid Build Coastguard Worker "              other 3rd party libraries linked with the executable.\n"
5011*6236dae4SAndroid Build Coastguard Worker "\n"
5012*6236dae4SAndroid Build Coastguard Worker , stdout);
5013*6236dae4SAndroid Build Coastguard Worker  fputs(
5014*6236dae4SAndroid Build Coastguard Worker "              The second line (starts with \"Protocols:\") shows  all  protocols\n"
5015*6236dae4SAndroid Build Coastguard Worker "              that libcurl reports to support.\n"
5016*6236dae4SAndroid Build Coastguard Worker "\n"
5017*6236dae4SAndroid Build Coastguard Worker "              The third line (starts with \"Features:\") shows specific features\n"
5018*6236dae4SAndroid Build Coastguard Worker "              libcurl reports to offer. Available features include:\n"
5019*6236dae4SAndroid Build Coastguard Worker "\n"
5020*6236dae4SAndroid Build Coastguard Worker "              alt-svc\n"
5021*6236dae4SAndroid Build Coastguard Worker "                     Support for the Alt-Svc: header is provided.\n"
5022*6236dae4SAndroid Build Coastguard Worker "\n"
5023*6236dae4SAndroid Build Coastguard Worker "              AsynchDNS\n"
5024*6236dae4SAndroid Build Coastguard Worker "                     This curl uses asynchronous name  resolves.  Asynchronous\n"
5025*6236dae4SAndroid Build Coastguard Worker , stdout);
5026*6236dae4SAndroid Build Coastguard Worker  fputs(
5027*6236dae4SAndroid Build Coastguard Worker "                     name  resolves can be done using either the c-ares or the\n"
5028*6236dae4SAndroid Build Coastguard Worker "                     threaded resolver backends.\n"
5029*6236dae4SAndroid Build Coastguard Worker "\n"
5030*6236dae4SAndroid Build Coastguard Worker "              brotli Support for automatic brotli compression over HTTP(S).\n"
5031*6236dae4SAndroid Build Coastguard Worker "\n"
5032*6236dae4SAndroid Build Coastguard Worker "              CharConv\n"
5033*6236dae4SAndroid Build Coastguard Worker "                     curl was built with support for character set conversions\n"
5034*6236dae4SAndroid Build Coastguard Worker "                     (like EBCDIC)\n"
5035*6236dae4SAndroid Build Coastguard Worker "\n"
5036*6236dae4SAndroid Build Coastguard Worker "              Debug  This  curl  uses a libcurl built with Debug. This enables\n"
5037*6236dae4SAndroid Build Coastguard Worker , stdout);
5038*6236dae4SAndroid Build Coastguard Worker  fputs(
5039*6236dae4SAndroid Build Coastguard Worker "                     more error-tracking and memory debugging etc.  For  curl-\n"
5040*6236dae4SAndroid Build Coastguard Worker "                     developers only!\n"
5041*6236dae4SAndroid Build Coastguard Worker "\n"
5042*6236dae4SAndroid Build Coastguard Worker "              gsasl  The  built-in  SASL authentication includes extensions to\n"
5043*6236dae4SAndroid Build Coastguard Worker "                     support SCRAM because libcurl was built with libgsasl.\n"
5044*6236dae4SAndroid Build Coastguard Worker "\n"
5045*6236dae4SAndroid Build Coastguard Worker "              GSS-API\n"
5046*6236dae4SAndroid Build Coastguard Worker "                     GSS-API is supported.\n"
5047*6236dae4SAndroid Build Coastguard Worker "\n"
5048*6236dae4SAndroid Build Coastguard Worker "              HSTS   HSTS support is present.\n"
5049*6236dae4SAndroid Build Coastguard Worker "\n"
5050*6236dae4SAndroid Build Coastguard Worker "              HTTP2  HTTP/2 support has been built-in.\n"
5051*6236dae4SAndroid Build Coastguard Worker "              HTTP3  HTTP/3 support has been built-in.\n"
5052*6236dae4SAndroid Build Coastguard Worker "\n"
5053*6236dae4SAndroid Build Coastguard Worker , stdout);
5054*6236dae4SAndroid Build Coastguard Worker  fputs(
5055*6236dae4SAndroid Build Coastguard Worker "              HTTPS-proxy\n"
5056*6236dae4SAndroid Build Coastguard Worker "                     This curl is built to support HTTPS proxy.\n"
5057*6236dae4SAndroid Build Coastguard Worker "\n"
5058*6236dae4SAndroid Build Coastguard Worker "              IDN    This curl supports IDN - international domain names.\n"
5059*6236dae4SAndroid Build Coastguard Worker "\n"
5060*6236dae4SAndroid Build Coastguard Worker "              IPv6   You can use IPv6 with this.\n"
5061*6236dae4SAndroid Build Coastguard Worker "\n"
5062*6236dae4SAndroid Build Coastguard Worker "              Kerberos\n"
5063*6236dae4SAndroid Build Coastguard Worker "                     Kerberos V5 authentication is supported.\n"
5064*6236dae4SAndroid Build Coastguard Worker "\n"
5065*6236dae4SAndroid Build Coastguard Worker "              Largefile\n"
5066*6236dae4SAndroid Build Coastguard Worker "                     This curl supports transfers of large files, files larger\n"
5067*6236dae4SAndroid Build Coastguard Worker "                     than 2GB.\n"
5068*6236dae4SAndroid Build Coastguard Worker "\n"
5069*6236dae4SAndroid Build Coastguard Worker , stdout);
5070*6236dae4SAndroid Build Coastguard Worker  fputs(
5071*6236dae4SAndroid Build Coastguard Worker "              libz   Automatic decompression (via gzip, deflate) of compressed\n"
5072*6236dae4SAndroid Build Coastguard Worker "                     files over HTTP is supported.\n"
5073*6236dae4SAndroid Build Coastguard Worker "\n"
5074*6236dae4SAndroid Build Coastguard Worker "              MultiSSL\n"
5075*6236dae4SAndroid Build Coastguard Worker "                     This curl supports multiple TLS backends.\n"
5076*6236dae4SAndroid Build Coastguard Worker "\n"
5077*6236dae4SAndroid Build Coastguard Worker "              NTLM   NTLM authentication is supported.\n"
5078*6236dae4SAndroid Build Coastguard Worker "\n"
5079*6236dae4SAndroid Build Coastguard Worker "              NTLM_WB\n"
5080*6236dae4SAndroid Build Coastguard Worker "                     NTLM delegation to winbind helper is supported.\n"
5081*6236dae4SAndroid Build Coastguard Worker "\n"
5082*6236dae4SAndroid Build Coastguard Worker "              PSL    PSL is short for Public Suffix List and means  that  this\n"
5083*6236dae4SAndroid Build Coastguard Worker , stdout);
5084*6236dae4SAndroid Build Coastguard Worker  fputs(
5085*6236dae4SAndroid Build Coastguard Worker "                     curl  has  been  built  with knowledge about \"public suf-\n"
5086*6236dae4SAndroid Build Coastguard Worker "                     fixes\".\n"
5087*6236dae4SAndroid Build Coastguard Worker "\n"
5088*6236dae4SAndroid Build Coastguard Worker "              SPNEGO SPNEGO authentication is supported.\n"
5089*6236dae4SAndroid Build Coastguard Worker "\n"
5090*6236dae4SAndroid Build Coastguard Worker "              SSL    SSL versions of various protocols are supported, such  as\n"
5091*6236dae4SAndroid Build Coastguard Worker "                     HTTPS, FTPS, POP3S and so on.\n"
5092*6236dae4SAndroid Build Coastguard Worker "\n"
5093*6236dae4SAndroid Build Coastguard Worker "              SSPI   SSPI is supported.\n"
5094*6236dae4SAndroid Build Coastguard Worker "\n"
5095*6236dae4SAndroid Build Coastguard Worker "              TLS-SRP\n"
5096*6236dae4SAndroid Build Coastguard Worker "                     SRP  (Secure Remote Password) authentication is supported\n"
5097*6236dae4SAndroid Build Coastguard Worker "                     for TLS.\n"
5098*6236dae4SAndroid Build Coastguard Worker "\n"
5099*6236dae4SAndroid Build Coastguard Worker "              TrackMemory\n"
5100*6236dae4SAndroid Build Coastguard Worker , stdout);
5101*6236dae4SAndroid Build Coastguard Worker  fputs(
5102*6236dae4SAndroid Build Coastguard Worker "                     Debug memory tracking is supported.\n"
5103*6236dae4SAndroid Build Coastguard Worker "\n"
5104*6236dae4SAndroid Build Coastguard Worker "              Unicode\n"
5105*6236dae4SAndroid Build Coastguard Worker "                     Unicode support on Windows.\n"
5106*6236dae4SAndroid Build Coastguard Worker "\n"
5107*6236dae4SAndroid Build Coastguard Worker "              UnixSockets\n"
5108*6236dae4SAndroid Build Coastguard Worker "                     Unix sockets support is provided.\n"
5109*6236dae4SAndroid Build Coastguard Worker "\n"
5110*6236dae4SAndroid Build Coastguard Worker "              zstd   Automatic decompression (via zstd)  of  compressed  files\n"
5111*6236dae4SAndroid Build Coastguard Worker "                     over HTTP is supported.\n"
5112*6236dae4SAndroid Build Coastguard Worker "\n"
5113*6236dae4SAndroid Build Coastguard Worker "       Example:\n"
5114*6236dae4SAndroid Build Coastguard Worker "        curl --version\n"
5115*6236dae4SAndroid Build Coastguard Worker "\n"
5116*6236dae4SAndroid Build Coastguard Worker "       -w, --write-out <format>\n"
5117*6236dae4SAndroid Build Coastguard Worker "              Make curl display information on stdout after a completed trans-\n"
5118*6236dae4SAndroid Build Coastguard Worker , stdout);
5119*6236dae4SAndroid Build Coastguard Worker  fputs(
5120*6236dae4SAndroid Build Coastguard Worker "              fer. The format is a string that may contain  plain  text  mixed\n"
5121*6236dae4SAndroid Build Coastguard Worker "              with  any  number of variables. The format can be specified as a\n"
5122*6236dae4SAndroid Build Coastguard Worker "              literal \"string\", or you can have curl read the  format  from  a\n"
5123*6236dae4SAndroid Build Coastguard Worker "              file  with  \"@filename\" and to tell curl to read the format from\n"
5124*6236dae4SAndroid Build Coastguard Worker "              stdin you write \"@-\".\n"
5125*6236dae4SAndroid Build Coastguard Worker "\n"
5126*6236dae4SAndroid Build Coastguard Worker "              The variables present in the output format will  be  substituted\n"
5127*6236dae4SAndroid Build Coastguard Worker , stdout);
5128*6236dae4SAndroid Build Coastguard Worker  fputs(
5129*6236dae4SAndroid Build Coastguard Worker "              by  the  value or text that curl thinks fit, as described below.\n"
5130*6236dae4SAndroid Build Coastguard Worker "              All variables are specified as %{variable_name} and to output  a\n"
5131*6236dae4SAndroid Build Coastguard Worker "              normal  % you just write them as %%. You can output a newline by\n"
5132*6236dae4SAndroid Build Coastguard Worker "              using \\n, a carriage return with \\r and a tab space with \\t.\n"
5133*6236dae4SAndroid Build Coastguard Worker "\n"
5134*6236dae4SAndroid Build Coastguard Worker "              The output will be written to standard output, but this  can  be\n"
5135*6236dae4SAndroid Build Coastguard Worker "              switched to standard error by using %{stderr}.\n"
5136*6236dae4SAndroid Build Coastguard Worker "\n"
5137*6236dae4SAndroid Build Coastguard Worker , stdout);
5138*6236dae4SAndroid Build Coastguard Worker  fputs(
5139*6236dae4SAndroid Build Coastguard Worker "              NOTE: The %-symbol is a special symbol in the win32-environment,\n"
5140*6236dae4SAndroid Build Coastguard Worker "              where all occurrences of % must be doubled when using  this  op-\n"
5141*6236dae4SAndroid Build Coastguard Worker "              tion.\n"
5142*6236dae4SAndroid Build Coastguard Worker "\n"
5143*6236dae4SAndroid Build Coastguard Worker "              The variables available are:\n"
5144*6236dae4SAndroid Build Coastguard Worker "\n"
5145*6236dae4SAndroid Build Coastguard Worker "              content_type   The  Content-Type  of  the requested document, if\n"
5146*6236dae4SAndroid Build Coastguard Worker "                             there was any.\n"
5147*6236dae4SAndroid Build Coastguard Worker "\n"
5148*6236dae4SAndroid Build Coastguard Worker "              errormsg       The error message. (Added in 7.75.0)\n"
5149*6236dae4SAndroid Build Coastguard Worker "\n"
5150*6236dae4SAndroid Build Coastguard Worker "              exitcode       The numerical exitcode of the transfer. (Added in\n"
5151*6236dae4SAndroid Build Coastguard Worker , stdout);
5152*6236dae4SAndroid Build Coastguard Worker  fputs(
5153*6236dae4SAndroid Build Coastguard Worker "                             7.75.0)\n"
5154*6236dae4SAndroid Build Coastguard Worker "\n"
5155*6236dae4SAndroid Build Coastguard Worker "              filename_effective\n"
5156*6236dae4SAndroid Build Coastguard Worker "                             The  ultimate  filename  that curl writes out to.\n"
5157*6236dae4SAndroid Build Coastguard Worker "                             This is only meaningful if curl is told to  write\n"
5158*6236dae4SAndroid Build Coastguard Worker "                             to  a  file  with  the  -O,  --remote-name or -o,\n"
5159*6236dae4SAndroid Build Coastguard Worker "                             --output option. It's most useful in  combination\n"
5160*6236dae4SAndroid Build Coastguard Worker "                             with the -J, --remote-header-name option.\n"
5161*6236dae4SAndroid Build Coastguard Worker "\n"
5162*6236dae4SAndroid Build Coastguard Worker , stdout);
5163*6236dae4SAndroid Build Coastguard Worker  fputs(
5164*6236dae4SAndroid Build Coastguard Worker "              ftp_entry_path The initial path curl ended up in when logging on\n"
5165*6236dae4SAndroid Build Coastguard Worker "                             to the remote FTP server.\n"
5166*6236dae4SAndroid Build Coastguard Worker "\n"
5167*6236dae4SAndroid Build Coastguard Worker "              http_code      The numerical response code that was found in the\n"
5168*6236dae4SAndroid Build Coastguard Worker "                             last retrieved HTTP(S) or FTP(s) transfer.\n"
5169*6236dae4SAndroid Build Coastguard Worker "\n"
5170*6236dae4SAndroid Build Coastguard Worker "              http_connect   The numerical code that was found in the last re-\n"
5171*6236dae4SAndroid Build Coastguard Worker "                             sponse (from a proxy) to a curl CONNECT request.\n"
5172*6236dae4SAndroid Build Coastguard Worker "\n"
5173*6236dae4SAndroid Build Coastguard Worker , stdout);
5174*6236dae4SAndroid Build Coastguard Worker  fputs(
5175*6236dae4SAndroid Build Coastguard Worker "              http_version   The  http  version  that  was  effectively  used.\n"
5176*6236dae4SAndroid Build Coastguard Worker "                             (Added in 7.50.0)\n"
5177*6236dae4SAndroid Build Coastguard Worker "\n"
5178*6236dae4SAndroid Build Coastguard Worker "              json           A JSON object with all available keys.\n"
5179*6236dae4SAndroid Build Coastguard Worker "\n"
5180*6236dae4SAndroid Build Coastguard Worker "              local_ip       The  IP  address of the local end of the most re-\n"
5181*6236dae4SAndroid Build Coastguard Worker "                             cently done connection - can be  either  IPv4  or\n"
5182*6236dae4SAndroid Build Coastguard Worker "                             IPv6.\n"
5183*6236dae4SAndroid Build Coastguard Worker "\n"
5184*6236dae4SAndroid Build Coastguard Worker "              local_port     The  local  port number of the most recently done\n"
5185*6236dae4SAndroid Build Coastguard Worker , stdout);
5186*6236dae4SAndroid Build Coastguard Worker  fputs(
5187*6236dae4SAndroid Build Coastguard Worker "                             connection.\n"
5188*6236dae4SAndroid Build Coastguard Worker "\n"
5189*6236dae4SAndroid Build Coastguard Worker "              method         The http method used in the most recent HTTP  re-\n"
5190*6236dae4SAndroid Build Coastguard Worker "                             quest. (Added in 7.72.0)\n"
5191*6236dae4SAndroid Build Coastguard Worker "\n"
5192*6236dae4SAndroid Build Coastguard Worker "              num_connects   Number  of new connects made in the recent trans-\n"
5193*6236dae4SAndroid Build Coastguard Worker "                             fer.\n"
5194*6236dae4SAndroid Build Coastguard Worker "\n"
5195*6236dae4SAndroid Build Coastguard Worker "              num_headers    The number of response headers in the most recent\n"
5196*6236dae4SAndroid Build Coastguard Worker "                             request (restarted at each\n"
5197*6236dae4SAndroid Build Coastguard Worker , stdout);
5198*6236dae4SAndroid Build Coastguard Worker  fputs(
5199*6236dae4SAndroid Build Coastguard Worker "                              redirect).  Note  that  the status line IS NOT a\n"
5200*6236dae4SAndroid Build Coastguard Worker "                             header. (Added in 7.73.0)\n"
5201*6236dae4SAndroid Build Coastguard Worker "\n"
5202*6236dae4SAndroid Build Coastguard Worker "              num_redirects  Number of redirects that were followed in the re-\n"
5203*6236dae4SAndroid Build Coastguard Worker "                             quest.\n"
5204*6236dae4SAndroid Build Coastguard Worker "\n"
5205*6236dae4SAndroid Build Coastguard Worker "              onerror        The  rest  of  the  output  is  only shown if the\n"
5206*6236dae4SAndroid Build Coastguard Worker "                             transfer returned  a  non-zero  error  (Added  in\n"
5207*6236dae4SAndroid Build Coastguard Worker "                             7.75.0)\n"
5208*6236dae4SAndroid Build Coastguard Worker "\n"
5209*6236dae4SAndroid Build Coastguard Worker "              proxy_ssl_verify_result\n"
5210*6236dae4SAndroid Build Coastguard Worker , stdout);
5211*6236dae4SAndroid Build Coastguard Worker  fputs(
5212*6236dae4SAndroid Build Coastguard Worker "                             The result of the HTTPS proxy's SSL peer certifi-\n"
5213*6236dae4SAndroid Build Coastguard Worker "                             cate verification that was requested. 0 means the\n"
5214*6236dae4SAndroid Build Coastguard Worker "                             verification was successful. (Added in 7.52.0)\n"
5215*6236dae4SAndroid Build Coastguard Worker "\n"
5216*6236dae4SAndroid Build Coastguard Worker "              redirect_url   When an HTTP request was made without -L, --loca-\n"
5217*6236dae4SAndroid Build Coastguard Worker "                             tion to follow redirects (or when --max-redirs is\n"
5218*6236dae4SAndroid Build Coastguard Worker "                             met),  this  variable  will show the actual URL a\n"
5219*6236dae4SAndroid Build Coastguard Worker , stdout);
5220*6236dae4SAndroid Build Coastguard Worker  fputs(
5221*6236dae4SAndroid Build Coastguard Worker "                             redirect would have gone to.\n"
5222*6236dae4SAndroid Build Coastguard Worker "\n"
5223*6236dae4SAndroid Build Coastguard Worker "              referer        The Referer: header, if there was any. (Added  in\n"
5224*6236dae4SAndroid Build Coastguard Worker "                             7.76.0)\n"
5225*6236dae4SAndroid Build Coastguard Worker "\n"
5226*6236dae4SAndroid Build Coastguard Worker "              remote_ip      The  remote  IP address of the most recently done\n"
5227*6236dae4SAndroid Build Coastguard Worker "                             connection - can be either IPv4 or IPv6.\n"
5228*6236dae4SAndroid Build Coastguard Worker "\n"
5229*6236dae4SAndroid Build Coastguard Worker "              remote_port    The remote port number of the most recently  done\n"
5230*6236dae4SAndroid Build Coastguard Worker "                             connection.\n"
5231*6236dae4SAndroid Build Coastguard Worker "\n"
5232*6236dae4SAndroid Build Coastguard Worker , stdout);
5233*6236dae4SAndroid Build Coastguard Worker  fputs(
5234*6236dae4SAndroid Build Coastguard Worker "              response_code  The numerical response code that was found in the\n"
5235*6236dae4SAndroid Build Coastguard Worker "                             last transfer (formerly known as \"http_code\").\n"
5236*6236dae4SAndroid Build Coastguard Worker "\n"
5237*6236dae4SAndroid Build Coastguard Worker "              scheme         The URL scheme (sometimes called  protocol)  that\n"
5238*6236dae4SAndroid Build Coastguard Worker "                             was effectively used. (Added in 7.52.0)\n"
5239*6236dae4SAndroid Build Coastguard Worker "\n"
5240*6236dae4SAndroid Build Coastguard Worker "              size_download  The  total  amount of bytes that were downloaded.\n"
5241*6236dae4SAndroid Build Coastguard Worker "                             This is the size of the body/data that was trans-\n"
5242*6236dae4SAndroid Build Coastguard Worker , stdout);
5243*6236dae4SAndroid Build Coastguard Worker  fputs(
5244*6236dae4SAndroid Build Coastguard Worker "                             ferred, excluding headers.\n"
5245*6236dae4SAndroid Build Coastguard Worker "\n"
5246*6236dae4SAndroid Build Coastguard Worker "              size_header    The total amount of bytes of the downloaded head-\n"
5247*6236dae4SAndroid Build Coastguard Worker "                             ers.\n"
5248*6236dae4SAndroid Build Coastguard Worker "\n"
5249*6236dae4SAndroid Build Coastguard Worker "              size_request   The total amount of bytes that were sent  in  the\n"
5250*6236dae4SAndroid Build Coastguard Worker "                             HTTP request.\n"
5251*6236dae4SAndroid Build Coastguard Worker "\n"
5252*6236dae4SAndroid Build Coastguard Worker "              size_upload    The  total  amount  of  bytes that were uploaded.\n"
5253*6236dae4SAndroid Build Coastguard Worker "                             This is the size of the body/data that was trans-\n"
5254*6236dae4SAndroid Build Coastguard Worker , stdout);
5255*6236dae4SAndroid Build Coastguard Worker  fputs(
5256*6236dae4SAndroid Build Coastguard Worker "                             ferred, excluding headers.\n"
5257*6236dae4SAndroid Build Coastguard Worker "\n"
5258*6236dae4SAndroid Build Coastguard Worker "              speed_download The average download speed that curl measured for\n"
5259*6236dae4SAndroid Build Coastguard Worker "                             the complete download. Bytes per second.\n"
5260*6236dae4SAndroid Build Coastguard Worker "\n"
5261*6236dae4SAndroid Build Coastguard Worker "              speed_upload   The average upload speed that curl  measured  for\n"
5262*6236dae4SAndroid Build Coastguard Worker "                             the complete upload. Bytes per second.\n"
5263*6236dae4SAndroid Build Coastguard Worker "\n"
5264*6236dae4SAndroid Build Coastguard Worker "              ssl_verify_result\n"
5265*6236dae4SAndroid Build Coastguard Worker "                             The  result of the SSL peer certificate verifica-\n"
5266*6236dae4SAndroid Build Coastguard Worker , stdout);
5267*6236dae4SAndroid Build Coastguard Worker  fputs(
5268*6236dae4SAndroid Build Coastguard Worker "                             tion that was requested. 0 means the verification\n"
5269*6236dae4SAndroid Build Coastguard Worker "                             was successful.\n"
5270*6236dae4SAndroid Build Coastguard Worker "\n"
5271*6236dae4SAndroid Build Coastguard Worker "              stderr         From  this  point  on, the -w, --write-out output\n"
5272*6236dae4SAndroid Build Coastguard Worker "                             will be written  to  standard  error.  (Added  in\n"
5273*6236dae4SAndroid Build Coastguard Worker "                             7.63.0)\n"
5274*6236dae4SAndroid Build Coastguard Worker "\n"
5275*6236dae4SAndroid Build Coastguard Worker "              stdout         From  this  point  on, the -w, --write-out output\n"
5276*6236dae4SAndroid Build Coastguard Worker "                             will be written to standard output.  This is  the\n"
5277*6236dae4SAndroid Build Coastguard Worker , stdout);
5278*6236dae4SAndroid Build Coastguard Worker  fputs(
5279*6236dae4SAndroid Build Coastguard Worker "                             default,  but  can  be  used to switch back after\n"
5280*6236dae4SAndroid Build Coastguard Worker "                             switching to stderr.  (Added in 7.63.0)\n"
5281*6236dae4SAndroid Build Coastguard Worker "\n"
5282*6236dae4SAndroid Build Coastguard Worker "              time_appconnect\n"
5283*6236dae4SAndroid Build Coastguard Worker "                             The time, in seconds, it took from the start  un-\n"
5284*6236dae4SAndroid Build Coastguard Worker "                             til  the SSL/SSH/etc connect/handshake to the re-\n"
5285*6236dae4SAndroid Build Coastguard Worker "                             mote host was completed.\n"
5286*6236dae4SAndroid Build Coastguard Worker "\n"
5287*6236dae4SAndroid Build Coastguard Worker "              time_connect   The time, in seconds, it took from the start  un-\n"
5288*6236dae4SAndroid Build Coastguard Worker , stdout);
5289*6236dae4SAndroid Build Coastguard Worker  fputs(
5290*6236dae4SAndroid Build Coastguard Worker "                             til the TCP connect to the remote host (or proxy)\n"
5291*6236dae4SAndroid Build Coastguard Worker "                             was completed.\n"
5292*6236dae4SAndroid Build Coastguard Worker "\n"
5293*6236dae4SAndroid Build Coastguard Worker "              time_namelookup\n"
5294*6236dae4SAndroid Build Coastguard Worker "                             The time, in seconds, it took from the start  un-\n"
5295*6236dae4SAndroid Build Coastguard Worker "                             til the name resolving was completed.\n"
5296*6236dae4SAndroid Build Coastguard Worker "\n"
5297*6236dae4SAndroid Build Coastguard Worker "              time_pretransfer\n"
5298*6236dae4SAndroid Build Coastguard Worker "                             The  time, in seconds, it took from the start un-\n"
5299*6236dae4SAndroid Build Coastguard Worker "                             til the file transfer was just  about  to  begin.\n"
5300*6236dae4SAndroid Build Coastguard Worker , stdout);
5301*6236dae4SAndroid Build Coastguard Worker  fputs(
5302*6236dae4SAndroid Build Coastguard Worker "                             This includes all pre-transfer commands and nego-\n"
5303*6236dae4SAndroid Build Coastguard Worker "                             tiations that are specific to the particular pro-\n"
5304*6236dae4SAndroid Build Coastguard Worker "                             tocol(s) involved.\n"
5305*6236dae4SAndroid Build Coastguard Worker "\n"
5306*6236dae4SAndroid Build Coastguard Worker "              time_redirect  The time, in seconds, it took for all redirection\n"
5307*6236dae4SAndroid Build Coastguard Worker "                             steps including name lookup, connect, pretransfer\n"
5308*6236dae4SAndroid Build Coastguard Worker "                             and  transfer  before  the  final transaction was\n"
5309*6236dae4SAndroid Build Coastguard Worker , stdout);
5310*6236dae4SAndroid Build Coastguard Worker  fputs(
5311*6236dae4SAndroid Build Coastguard Worker "                             started. time_redirect shows the complete  execu-\n"
5312*6236dae4SAndroid Build Coastguard Worker "                             tion time for multiple redirections.\n"
5313*6236dae4SAndroid Build Coastguard Worker "\n"
5314*6236dae4SAndroid Build Coastguard Worker "              time_starttransfer\n"
5315*6236dae4SAndroid Build Coastguard Worker "                             The  time, in seconds, it took from the start un-\n"
5316*6236dae4SAndroid Build Coastguard Worker "                             til the first byte was just about  to  be  trans-\n"
5317*6236dae4SAndroid Build Coastguard Worker "                             ferred.  This  includes time_pretransfer and also\n"
5318*6236dae4SAndroid Build Coastguard Worker "                             the time the server needed to calculate  the  re-\n"
5319*6236dae4SAndroid Build Coastguard Worker , stdout);
5320*6236dae4SAndroid Build Coastguard Worker  fputs(
5321*6236dae4SAndroid Build Coastguard Worker "                             sult.\n"
5322*6236dae4SAndroid Build Coastguard Worker "\n"
5323*6236dae4SAndroid Build Coastguard Worker "              time_total     The  total time, in seconds, that the full opera-\n"
5324*6236dae4SAndroid Build Coastguard Worker "                             tion lasted.\n"
5325*6236dae4SAndroid Build Coastguard Worker "\n"
5326*6236dae4SAndroid Build Coastguard Worker "              url            The URL that was fetched. (Added in 7.75.0)\n"
5327*6236dae4SAndroid Build Coastguard Worker "\n"
5328*6236dae4SAndroid Build Coastguard Worker "              urlnum         The URL index number of this transfer, 0-indexed.\n"
5329*6236dae4SAndroid Build Coastguard Worker "                             De-globbed  URLs  share  the same index number as\n"
5330*6236dae4SAndroid Build Coastguard Worker "                             the origin globbed URL. (Added in 7.75.0)\n"
5331*6236dae4SAndroid Build Coastguard Worker "\n"
5332*6236dae4SAndroid Build Coastguard Worker , stdout);
5333*6236dae4SAndroid Build Coastguard Worker  fputs(
5334*6236dae4SAndroid Build Coastguard Worker "              url_effective  The URL that was fetched last. This is most mean-\n"
5335*6236dae4SAndroid Build Coastguard Worker "                             ingful  if you have told curl to follow location:\n"
5336*6236dae4SAndroid Build Coastguard Worker "                             headers.\n"
5337*6236dae4SAndroid Build Coastguard Worker "\n"
5338*6236dae4SAndroid Build Coastguard Worker "              If this option is used several times, the last one will be used.\n"
5339*6236dae4SAndroid Build Coastguard Worker "\n"
5340*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
5341*6236dae4SAndroid Build Coastguard Worker "               curl -w '%{http_code}\\n' https://example.com\n"
5342*6236dae4SAndroid Build Coastguard Worker "\n"
5343*6236dae4SAndroid Build Coastguard Worker "       --xattr\n"
5344*6236dae4SAndroid Build Coastguard Worker "              When saving output to a file, this option tells  curl  to  store\n"
5345*6236dae4SAndroid Build Coastguard Worker , stdout);
5346*6236dae4SAndroid Build Coastguard Worker  fputs(
5347*6236dae4SAndroid Build Coastguard Worker "              certain  file  metadata  in extended file attributes. Currently,\n"
5348*6236dae4SAndroid Build Coastguard Worker "              the URL is stored in the xdg.origin.url attribute and, for HTTP,\n"
5349*6236dae4SAndroid Build Coastguard Worker "              the  content  type  is stored in the mime_type attribute. If the\n"
5350*6236dae4SAndroid Build Coastguard Worker "              file system does not support extended attributes, a  warning  is\n"
5351*6236dae4SAndroid Build Coastguard Worker "              issued.\n"
5352*6236dae4SAndroid Build Coastguard Worker "\n"
5353*6236dae4SAndroid Build Coastguard Worker "              Example:\n"
5354*6236dae4SAndroid Build Coastguard Worker "               curl --xattr -o storage https://example.com\n"
5355*6236dae4SAndroid Build Coastguard Worker "\n"
5356*6236dae4SAndroid Build Coastguard Worker "FILES\n"
5357*6236dae4SAndroid Build Coastguard Worker "       ~/.curlrc\n"
5358*6236dae4SAndroid Build Coastguard Worker , stdout);
5359*6236dae4SAndroid Build Coastguard Worker  fputs(
5360*6236dae4SAndroid Build Coastguard Worker "              Default config file, see -K, --config for details.\n"
5361*6236dae4SAndroid Build Coastguard Worker "\n"
5362*6236dae4SAndroid Build Coastguard Worker "ENVIRONMENT\n"
5363*6236dae4SAndroid Build Coastguard Worker "       The environment variables can be specified in lower case or upper case.\n"
5364*6236dae4SAndroid Build Coastguard Worker "       The lower case version has precedence. http_proxy is an exception as it\n"
5365*6236dae4SAndroid Build Coastguard Worker "       is only available in lower case.\n"
5366*6236dae4SAndroid Build Coastguard Worker "\n"
5367*6236dae4SAndroid Build Coastguard Worker "       Using  an  environment variable to set the proxy has the same effect as\n"
5368*6236dae4SAndroid Build Coastguard Worker "       using the -x, --proxy option.\n"
5369*6236dae4SAndroid Build Coastguard Worker "\n"
5370*6236dae4SAndroid Build Coastguard Worker "       http_proxy [protocol://]<host>[:port]\n"
5371*6236dae4SAndroid Build Coastguard Worker "              Sets the proxy server to use for HTTP.\n"
5372*6236dae4SAndroid Build Coastguard Worker , stdout);
5373*6236dae4SAndroid Build Coastguard Worker  fputs(
5374*6236dae4SAndroid Build Coastguard Worker "       HTTPS_PROXY [protocol://]<host>[:port]\n"
5375*6236dae4SAndroid Build Coastguard Worker "              Sets the proxy server to use for HTTPS.\n"
5376*6236dae4SAndroid Build Coastguard Worker "\n"
5377*6236dae4SAndroid Build Coastguard Worker "       [url-protocol]_PROXY [protocol://]<host>[:port]\n"
5378*6236dae4SAndroid Build Coastguard Worker "              Sets the proxy server to use for [url-protocol], where the  pro-\n"
5379*6236dae4SAndroid Build Coastguard Worker "              tocol  is  a  protocol  that curl supports and as specified in a\n"
5380*6236dae4SAndroid Build Coastguard Worker "              URL. FTP, FTPS, POP3, IMAP, SMTP, LDAP, etc.\n"
5381*6236dae4SAndroid Build Coastguard Worker "\n"
5382*6236dae4SAndroid Build Coastguard Worker "       ALL_PROXY [protocol://]<host>[:port]\n"
5383*6236dae4SAndroid Build Coastguard Worker "              Sets the proxy server to use if no  protocol-specific  proxy  is\n"
5384*6236dae4SAndroid Build Coastguard Worker , stdout);
5385*6236dae4SAndroid Build Coastguard Worker  fputs(
5386*6236dae4SAndroid Build Coastguard Worker "              set.\n"
5387*6236dae4SAndroid Build Coastguard Worker "\n"
5388*6236dae4SAndroid Build Coastguard Worker "       NO_PROXY <comma-separated list of hosts/domains>\n"
5389*6236dae4SAndroid Build Coastguard Worker "              list  of host names that should not go through any proxy. If set\n"
5390*6236dae4SAndroid Build Coastguard Worker "              to an asterisk '*' only, it matches all hosts. Each name in this\n"
5391*6236dae4SAndroid Build Coastguard Worker "              list is matched as either a domain name which contains the host-\n"
5392*6236dae4SAndroid Build Coastguard Worker "              name, or the hostname itself.\n"
5393*6236dae4SAndroid Build Coastguard Worker "\n"
5394*6236dae4SAndroid Build Coastguard Worker "              This environment variable disables use of the  proxy  even  when\n"
5395*6236dae4SAndroid Build Coastguard Worker , stdout);
5396*6236dae4SAndroid Build Coastguard Worker  fputs(
5397*6236dae4SAndroid Build Coastguard Worker "              specified  with  the  -x,  --proxy  option. That is NO_PROXY=di-\n"
5398*6236dae4SAndroid Build Coastguard Worker "              rect.example.com  curl  -x  http://proxy.example.com  http://di-\n"
5399*6236dae4SAndroid Build Coastguard Worker "              rect.example.com   accesses   the   target   URL  directly,  and\n"
5400*6236dae4SAndroid Build Coastguard Worker "              NO_PROXY=direct.example.com  curl  -x   http://proxy.example.com\n"
5401*6236dae4SAndroid Build Coastguard Worker "              http://somewhere.example.com accesses the target URL through the\n"
5402*6236dae4SAndroid Build Coastguard Worker "              proxy.\n"
5403*6236dae4SAndroid Build Coastguard Worker "\n"
5404*6236dae4SAndroid Build Coastguard Worker "              The list of host names can also  be  include  numerical  IP  ad-\n"
5405*6236dae4SAndroid Build Coastguard Worker , stdout);
5406*6236dae4SAndroid Build Coastguard Worker  fputs(
5407*6236dae4SAndroid Build Coastguard Worker "              dresses,  and IPv6 versions should then be given without enclos-\n"
5408*6236dae4SAndroid Build Coastguard Worker "              ing brackets.\n"
5409*6236dae4SAndroid Build Coastguard Worker "\n"
5410*6236dae4SAndroid Build Coastguard Worker "              IPv6 numerical addresses are compared as strings, so  they  will\n"
5411*6236dae4SAndroid Build Coastguard Worker "              only  match  if  the  representations are the same: \"::1\" is the\n"
5412*6236dae4SAndroid Build Coastguard Worker "              same as \"::0:1\" but they do not match.\n"
5413*6236dae4SAndroid Build Coastguard Worker "\n"
5414*6236dae4SAndroid Build Coastguard Worker "       CURL_SSL_BACKEND <TLS backend>\n"
5415*6236dae4SAndroid Build Coastguard Worker "              If curl was built with support for \"MultiSSL\", meaning  that  it\n"
5416*6236dae4SAndroid Build Coastguard Worker , stdout);
5417*6236dae4SAndroid Build Coastguard Worker  fputs(
5418*6236dae4SAndroid Build Coastguard Worker "              has  built-in  support for more than one TLS backend, this envi-\n"
5419*6236dae4SAndroid Build Coastguard Worker "              ronment variable can be set to the case insensitive name of  the\n"
5420*6236dae4SAndroid Build Coastguard Worker "              particular  backend  to use when curl is invoked. Setting a name\n"
5421*6236dae4SAndroid Build Coastguard Worker "              that is not a built-in alternative will make curl stay with  the\n"
5422*6236dae4SAndroid Build Coastguard Worker "              default.\n"
5423*6236dae4SAndroid Build Coastguard Worker "\n"
5424*6236dae4SAndroid Build Coastguard Worker "              SSL  backend  names  (case-insensitive): bearssl, gnutls, gskit,\n"
5425*6236dae4SAndroid Build Coastguard Worker "              mbedtls, mesalink, nss, openssl, rustls, schannel, secure-trans-\n"
5426*6236dae4SAndroid Build Coastguard Worker , stdout);
5427*6236dae4SAndroid Build Coastguard Worker  fputs(
5428*6236dae4SAndroid Build Coastguard Worker "              port, wolfssl\n"
5429*6236dae4SAndroid Build Coastguard Worker "\n"
5430*6236dae4SAndroid Build Coastguard Worker "       QLOGDIR <directory name>\n"
5431*6236dae4SAndroid Build Coastguard Worker "              If  curl was built with HTTP/3 support, setting this environment\n"
5432*6236dae4SAndroid Build Coastguard Worker "              variable to a local directory will make curl  produce  qlogs  in\n"
5433*6236dae4SAndroid Build Coastguard Worker "              that  directory,  using  file  names named after the destination\n"
5434*6236dae4SAndroid Build Coastguard Worker "              connection id (in hex). Do note  that  these  files  can  become\n"
5435*6236dae4SAndroid Build Coastguard Worker "              rather large. Works with both QUIC backends.\n"
5436*6236dae4SAndroid Build Coastguard Worker "\n"
5437*6236dae4SAndroid Build Coastguard Worker "       SSLKEYLOGFILE <file name>\n"
5438*6236dae4SAndroid Build Coastguard Worker , stdout);
5439*6236dae4SAndroid Build Coastguard Worker  fputs(
5440*6236dae4SAndroid Build Coastguard Worker "              If  you  set this environment variable to a file name, curl will\n"
5441*6236dae4SAndroid Build Coastguard Worker "              store TLS secrets from its connections in that file when invoked\n"
5442*6236dae4SAndroid Build Coastguard Worker "              to enable you to analyze the TLS traffic in real time using net-\n"
5443*6236dae4SAndroid Build Coastguard Worker "              work analyzing tools such as Wireshark. This works with the fol-\n"
5444*6236dae4SAndroid Build Coastguard Worker "              lowing  TLS  backends: OpenSSL, libressl, BoringSSL, GnuTLS, NSS\n"
5445*6236dae4SAndroid Build Coastguard Worker "              and wolfSSL.\n"
5446*6236dae4SAndroid Build Coastguard Worker "\n"
5447*6236dae4SAndroid Build Coastguard Worker "PROXY PROTOCOL PREFIXES\n"
5448*6236dae4SAndroid Build Coastguard Worker , stdout);
5449*6236dae4SAndroid Build Coastguard Worker  fputs(
5450*6236dae4SAndroid Build Coastguard Worker "       The proxy string may be specified with a protocol:// prefix to  specify\n"
5451*6236dae4SAndroid Build Coastguard Worker "       alternative proxy protocols.\n"
5452*6236dae4SAndroid Build Coastguard Worker "\n"
5453*6236dae4SAndroid Build Coastguard Worker "       If  no  protocol is specified in the proxy string or if the string does\n"
5454*6236dae4SAndroid Build Coastguard Worker "       not match a supported one, the proxy will be treated as an HTTP proxy.\n"
5455*6236dae4SAndroid Build Coastguard Worker "\n"
5456*6236dae4SAndroid Build Coastguard Worker "       The supported proxy protocol prefixes are as follows:\n"
5457*6236dae4SAndroid Build Coastguard Worker "\n"
5458*6236dae4SAndroid Build Coastguard Worker "       http://\n"
5459*6236dae4SAndroid Build Coastguard Worker "              Makes it use it as an HTTP proxy. The default if no scheme  pre-\n"
5460*6236dae4SAndroid Build Coastguard Worker "              fix is used.\n"
5461*6236dae4SAndroid Build Coastguard Worker "\n"
5462*6236dae4SAndroid Build Coastguard Worker "       https://\n"
5463*6236dae4SAndroid Build Coastguard Worker , stdout);
5464*6236dae4SAndroid Build Coastguard Worker  fputs(
5465*6236dae4SAndroid Build Coastguard Worker "              Makes it treated as an HTTPS proxy.\n"
5466*6236dae4SAndroid Build Coastguard Worker "\n"
5467*6236dae4SAndroid Build Coastguard Worker "       socks4://\n"
5468*6236dae4SAndroid Build Coastguard Worker "              Makes it the equivalent of --socks4\n"
5469*6236dae4SAndroid Build Coastguard Worker "\n"
5470*6236dae4SAndroid Build Coastguard Worker "       socks4a://\n"
5471*6236dae4SAndroid Build Coastguard Worker "              Makes it the equivalent of --socks4a\n"
5472*6236dae4SAndroid Build Coastguard Worker "\n"
5473*6236dae4SAndroid Build Coastguard Worker "       socks5://\n"
5474*6236dae4SAndroid Build Coastguard Worker "              Makes it the equivalent of --socks5\n"
5475*6236dae4SAndroid Build Coastguard Worker "\n"
5476*6236dae4SAndroid Build Coastguard Worker "       socks5h://\n"
5477*6236dae4SAndroid Build Coastguard Worker "              Makes it the equivalent of --socks5-hostname\n"
5478*6236dae4SAndroid Build Coastguard Worker "\n"
5479*6236dae4SAndroid Build Coastguard Worker "EXIT CODES\n"
5480*6236dae4SAndroid Build Coastguard Worker "       There  are a bunch of different error codes and their corresponding er-\n"
5481*6236dae4SAndroid Build Coastguard Worker , stdout);
5482*6236dae4SAndroid Build Coastguard Worker  fputs(
5483*6236dae4SAndroid Build Coastguard Worker "       ror messages that may appear under error conditions.  At  the  time  of\n"
5484*6236dae4SAndroid Build Coastguard Worker "       this writing, the exit codes are:\n"
5485*6236dae4SAndroid Build Coastguard Worker "\n"
5486*6236dae4SAndroid Build Coastguard Worker "       1      Unsupported protocol. This build of curl has no support for this\n"
5487*6236dae4SAndroid Build Coastguard Worker "              protocol.\n"
5488*6236dae4SAndroid Build Coastguard Worker "\n"
5489*6236dae4SAndroid Build Coastguard Worker "       2      Failed to initialize.\n"
5490*6236dae4SAndroid Build Coastguard Worker "\n"
5491*6236dae4SAndroid Build Coastguard Worker "       3      URL malformed. The syntax was not correct.\n"
5492*6236dae4SAndroid Build Coastguard Worker "\n"
5493*6236dae4SAndroid Build Coastguard Worker "       4      A feature or option that was needed to perform the  desired  re-\n"
5494*6236dae4SAndroid Build Coastguard Worker "              quest  was not enabled or was explicitly disabled at build-time.\n"
5495*6236dae4SAndroid Build Coastguard Worker , stdout);
5496*6236dae4SAndroid Build Coastguard Worker  fputs(
5497*6236dae4SAndroid Build Coastguard Worker "              To make curl able to do this, you probably need another build of\n"
5498*6236dae4SAndroid Build Coastguard Worker "              libcurl!\n"
5499*6236dae4SAndroid Build Coastguard Worker "\n"
5500*6236dae4SAndroid Build Coastguard Worker "       5      Could  not  resolve proxy. The given proxy host could not be re-\n"
5501*6236dae4SAndroid Build Coastguard Worker "              solved.\n"
5502*6236dae4SAndroid Build Coastguard Worker "\n"
5503*6236dae4SAndroid Build Coastguard Worker "       6      Could not resolve host. The given remote host could not  be  re-\n"
5504*6236dae4SAndroid Build Coastguard Worker "              solved.\n"
5505*6236dae4SAndroid Build Coastguard Worker "\n"
5506*6236dae4SAndroid Build Coastguard Worker "       7      Failed to connect to host.\n"
5507*6236dae4SAndroid Build Coastguard Worker "\n"
5508*6236dae4SAndroid Build Coastguard Worker "       8      Weird server reply. The server sent data curl could not parse.\n"
5509*6236dae4SAndroid Build Coastguard Worker "\n"
5510*6236dae4SAndroid Build Coastguard Worker , stdout);
5511*6236dae4SAndroid Build Coastguard Worker  fputs(
5512*6236dae4SAndroid Build Coastguard Worker "       9      FTP  access  denied. The server denied login or denied access to\n"
5513*6236dae4SAndroid Build Coastguard Worker "              the particular resource or directory you wanted to  reach.  Most\n"
5514*6236dae4SAndroid Build Coastguard Worker "              often  you tried to change to a directory that does not exist on\n"
5515*6236dae4SAndroid Build Coastguard Worker "              the server.\n"
5516*6236dae4SAndroid Build Coastguard Worker "\n"
5517*6236dae4SAndroid Build Coastguard Worker "       10     FTP accept failed. While waiting for the server to connect  back\n"
5518*6236dae4SAndroid Build Coastguard Worker "              when  an active FTP session is used, an error code was sent over\n"
5519*6236dae4SAndroid Build Coastguard Worker "              the control connection or similar.\n"
5520*6236dae4SAndroid Build Coastguard Worker "\n"
5521*6236dae4SAndroid Build Coastguard Worker , stdout);
5522*6236dae4SAndroid Build Coastguard Worker  fputs(
5523*6236dae4SAndroid Build Coastguard Worker "       11     FTP weird PASS reply. Curl could not parse the reply sent to the\n"
5524*6236dae4SAndroid Build Coastguard Worker "              PASS request.\n"
5525*6236dae4SAndroid Build Coastguard Worker "\n"
5526*6236dae4SAndroid Build Coastguard Worker "       12     During  an  active  FTP  session while waiting for the server to\n"
5527*6236dae4SAndroid Build Coastguard Worker "              connect back to curl, the timeout expired.\n"
5528*6236dae4SAndroid Build Coastguard Worker "\n"
5529*6236dae4SAndroid Build Coastguard Worker "       13     FTP weird PASV reply, Curl could not parse the reply sent to the\n"
5530*6236dae4SAndroid Build Coastguard Worker "              PASV request.\n"
5531*6236dae4SAndroid Build Coastguard Worker "\n"
5532*6236dae4SAndroid Build Coastguard Worker "       14     FTP  weird  227  format.  Curl  could not parse the 227-line the\n"
5533*6236dae4SAndroid Build Coastguard Worker "              server sent.\n"
5534*6236dae4SAndroid Build Coastguard Worker "\n"
5535*6236dae4SAndroid Build Coastguard Worker , stdout);
5536*6236dae4SAndroid Build Coastguard Worker  fputs(
5537*6236dae4SAndroid Build Coastguard Worker "       15     FTP cannot use host. Could not resolve the host IP we got in the\n"
5538*6236dae4SAndroid Build Coastguard Worker "              227-line.\n"
5539*6236dae4SAndroid Build Coastguard Worker "\n"
5540*6236dae4SAndroid Build Coastguard Worker "       16     HTTP/2 error. A problem was detected in the HTTP2 framing layer.\n"
5541*6236dae4SAndroid Build Coastguard Worker "              This is somewhat generic and can be one out of several problems,\n"
5542*6236dae4SAndroid Build Coastguard Worker "              see the error message for details.\n"
5543*6236dae4SAndroid Build Coastguard Worker "\n"
5544*6236dae4SAndroid Build Coastguard Worker "       17     FTP  could  not  set binary. Could not change transfer method to\n"
5545*6236dae4SAndroid Build Coastguard Worker "              binary.\n"
5546*6236dae4SAndroid Build Coastguard Worker "\n"
5547*6236dae4SAndroid Build Coastguard Worker "       18     Partial file. Only a part of the file was transferred.\n"
5548*6236dae4SAndroid Build Coastguard Worker "\n"
5549*6236dae4SAndroid Build Coastguard Worker , stdout);
5550*6236dae4SAndroid Build Coastguard Worker  fputs(
5551*6236dae4SAndroid Build Coastguard Worker "       19     FTP could not download/access the given file, the RETR (or simi-\n"
5552*6236dae4SAndroid Build Coastguard Worker "              lar) command failed.\n"
5553*6236dae4SAndroid Build Coastguard Worker "\n"
5554*6236dae4SAndroid Build Coastguard Worker "       21     FTP quote error. A quote command returned error from the server.\n"
5555*6236dae4SAndroid Build Coastguard Worker "       22     HTTP  page not retrieved. The requested url was not found or re-\n"
5556*6236dae4SAndroid Build Coastguard Worker "              turned another error with the  HTTP  error  code  being  400  or\n"
5557*6236dae4SAndroid Build Coastguard Worker "              above. This return code only appears if -f, --fail is used.\n"
5558*6236dae4SAndroid Build Coastguard Worker "\n"
5559*6236dae4SAndroid Build Coastguard Worker , stdout);
5560*6236dae4SAndroid Build Coastguard Worker  fputs(
5561*6236dae4SAndroid Build Coastguard Worker "       23     Write  error. Curl could not write data to a local filesystem or\n"
5562*6236dae4SAndroid Build Coastguard Worker "              similar.\n"
5563*6236dae4SAndroid Build Coastguard Worker "\n"
5564*6236dae4SAndroid Build Coastguard Worker "       25     FTP could not STOR file. The server denied the  STOR  operation,\n"
5565*6236dae4SAndroid Build Coastguard Worker "              used for FTP uploading.\n"
5566*6236dae4SAndroid Build Coastguard Worker "\n"
5567*6236dae4SAndroid Build Coastguard Worker "       26     Read error. Various reading problems.\n"
5568*6236dae4SAndroid Build Coastguard Worker "\n"
5569*6236dae4SAndroid Build Coastguard Worker "       27     Out of memory. A memory allocation request failed.\n"
5570*6236dae4SAndroid Build Coastguard Worker "\n"
5571*6236dae4SAndroid Build Coastguard Worker "       28     Operation timeout. The specified time-out period was reached ac-\n"
5572*6236dae4SAndroid Build Coastguard Worker "              cording to the conditions.\n"
5573*6236dae4SAndroid Build Coastguard Worker "\n"
5574*6236dae4SAndroid Build Coastguard Worker , stdout);
5575*6236dae4SAndroid Build Coastguard Worker  fputs(
5576*6236dae4SAndroid Build Coastguard Worker "       30     FTP PORT failed. The PORT command failed. Not  all  FTP  servers\n"
5577*6236dae4SAndroid Build Coastguard Worker "              support  the  PORT  command, try doing a transfer using PASV in-\n"
5578*6236dae4SAndroid Build Coastguard Worker "              stead!\n"
5579*6236dae4SAndroid Build Coastguard Worker "\n"
5580*6236dae4SAndroid Build Coastguard Worker "       31     FTP could not use REST. The REST command failed. This command is\n"
5581*6236dae4SAndroid Build Coastguard Worker "              used for resumed FTP transfers.\n"
5582*6236dae4SAndroid Build Coastguard Worker "\n"
5583*6236dae4SAndroid Build Coastguard Worker "       33     HTTP range error. The range \"command\" did not work.\n"
5584*6236dae4SAndroid Build Coastguard Worker "\n"
5585*6236dae4SAndroid Build Coastguard Worker "       34     HTTP post error. Internal post-request generation error.\n"
5586*6236dae4SAndroid Build Coastguard Worker "\n"
5587*6236dae4SAndroid Build Coastguard Worker , stdout);
5588*6236dae4SAndroid Build Coastguard Worker  fputs(
5589*6236dae4SAndroid Build Coastguard Worker "       35     SSL connect error. The SSL handshaking failed.\n"
5590*6236dae4SAndroid Build Coastguard Worker "\n"
5591*6236dae4SAndroid Build Coastguard Worker "       36     Bad download resume. Could not continue an earlier aborted down-\n"
5592*6236dae4SAndroid Build Coastguard Worker "              load.\n"
5593*6236dae4SAndroid Build Coastguard Worker "\n"
5594*6236dae4SAndroid Build Coastguard Worker "       37     FILE could not read file. Failed to open the file. Permissions?\n"
5595*6236dae4SAndroid Build Coastguard Worker "\n"
5596*6236dae4SAndroid Build Coastguard Worker "       38     LDAP cannot bind. LDAP bind operation failed.\n"
5597*6236dae4SAndroid Build Coastguard Worker "\n"
5598*6236dae4SAndroid Build Coastguard Worker "       39     LDAP search failed.\n"
5599*6236dae4SAndroid Build Coastguard Worker "\n"
5600*6236dae4SAndroid Build Coastguard Worker "       41     Function not found. A required LDAP function was not found.\n"
5601*6236dae4SAndroid Build Coastguard Worker "\n"
5602*6236dae4SAndroid Build Coastguard Worker "       42     Aborted by callback. An application told curl to abort the oper-\n"
5603*6236dae4SAndroid Build Coastguard Worker , stdout);
5604*6236dae4SAndroid Build Coastguard Worker  fputs(
5605*6236dae4SAndroid Build Coastguard Worker "              ation.\n"
5606*6236dae4SAndroid Build Coastguard Worker "\n"
5607*6236dae4SAndroid Build Coastguard Worker "       43     Internal error. A function was called with a bad parameter.\n"
5608*6236dae4SAndroid Build Coastguard Worker "\n"
5609*6236dae4SAndroid Build Coastguard Worker "       45     Interface  error.  A  specified  outgoing interface could not be\n"
5610*6236dae4SAndroid Build Coastguard Worker "              used.\n"
5611*6236dae4SAndroid Build Coastguard Worker "\n"
5612*6236dae4SAndroid Build Coastguard Worker "       47     Too many redirects. When following redirects, curl hit the maxi-\n"
5613*6236dae4SAndroid Build Coastguard Worker "              mum amount.\n"
5614*6236dae4SAndroid Build Coastguard Worker "\n"
5615*6236dae4SAndroid Build Coastguard Worker "       48     Unknown  option  specified  to  libcurl. This indicates that you\n"
5616*6236dae4SAndroid Build Coastguard Worker "              passed a weird option to curl that was passed on to libcurl  and\n"
5617*6236dae4SAndroid Build Coastguard Worker , stdout);
5618*6236dae4SAndroid Build Coastguard Worker  fputs(
5619*6236dae4SAndroid Build Coastguard Worker "              rejected. Read up in the manual!\n"
5620*6236dae4SAndroid Build Coastguard Worker "\n"
5621*6236dae4SAndroid Build Coastguard Worker "       49     Malformed telnet option.\n"
5622*6236dae4SAndroid Build Coastguard Worker "\n"
5623*6236dae4SAndroid Build Coastguard Worker "       51     The peer's SSL certificate or SSH MD5 fingerprint was not OK.\n"
5624*6236dae4SAndroid Build Coastguard Worker "\n"
5625*6236dae4SAndroid Build Coastguard Worker "       52     The  server  did not reply anything, which here is considered an\n"
5626*6236dae4SAndroid Build Coastguard Worker "              error.\n"
5627*6236dae4SAndroid Build Coastguard Worker "\n"
5628*6236dae4SAndroid Build Coastguard Worker "       53     SSL crypto engine not found.\n"
5629*6236dae4SAndroid Build Coastguard Worker "\n"
5630*6236dae4SAndroid Build Coastguard Worker "       54     Cannot set SSL crypto engine as default.\n"
5631*6236dae4SAndroid Build Coastguard Worker "\n"
5632*6236dae4SAndroid Build Coastguard Worker "       55     Failed sending network data.\n"
5633*6236dae4SAndroid Build Coastguard Worker "\n"
5634*6236dae4SAndroid Build Coastguard Worker "       56     Failure in receiving network data.\n"
5635*6236dae4SAndroid Build Coastguard Worker "\n"
5636*6236dae4SAndroid Build Coastguard Worker , stdout);
5637*6236dae4SAndroid Build Coastguard Worker  fputs(
5638*6236dae4SAndroid Build Coastguard Worker "       58     Problem with the local certificate.\n"
5639*6236dae4SAndroid Build Coastguard Worker "       59     Could not use specified SSL cipher.\n"
5640*6236dae4SAndroid Build Coastguard Worker "\n"
5641*6236dae4SAndroid Build Coastguard Worker "       60     Peer certificate cannot be authenticated with known CA  certifi-\n"
5642*6236dae4SAndroid Build Coastguard Worker "              cates.\n"
5643*6236dae4SAndroid Build Coastguard Worker "\n"
5644*6236dae4SAndroid Build Coastguard Worker "       61     Unrecognized transfer encoding.\n"
5645*6236dae4SAndroid Build Coastguard Worker "\n"
5646*6236dae4SAndroid Build Coastguard Worker "       62     Invalid LDAP URL.\n"
5647*6236dae4SAndroid Build Coastguard Worker "\n"
5648*6236dae4SAndroid Build Coastguard Worker "       63     Maximum file size exceeded.\n"
5649*6236dae4SAndroid Build Coastguard Worker "\n"
5650*6236dae4SAndroid Build Coastguard Worker "       64     Requested FTP SSL level failed.\n"
5651*6236dae4SAndroid Build Coastguard Worker "\n"
5652*6236dae4SAndroid Build Coastguard Worker "       65     Sending the data requires a rewind that failed.\n"
5653*6236dae4SAndroid Build Coastguard Worker "\n"
5654*6236dae4SAndroid Build Coastguard Worker "       66     Failed to initialise SSL Engine.\n"
5655*6236dae4SAndroid Build Coastguard Worker "\n"
5656*6236dae4SAndroid Build Coastguard Worker , stdout);
5657*6236dae4SAndroid Build Coastguard Worker  fputs(
5658*6236dae4SAndroid Build Coastguard Worker "       67     The  user  name,  password, or similar was not accepted and curl\n"
5659*6236dae4SAndroid Build Coastguard Worker "              failed to log in.\n"
5660*6236dae4SAndroid Build Coastguard Worker "\n"
5661*6236dae4SAndroid Build Coastguard Worker "       68     File not found on TFTP server.\n"
5662*6236dae4SAndroid Build Coastguard Worker "\n"
5663*6236dae4SAndroid Build Coastguard Worker "       69     Permission problem on TFTP server.\n"
5664*6236dae4SAndroid Build Coastguard Worker "\n"
5665*6236dae4SAndroid Build Coastguard Worker "       70     Out of disk space on TFTP server.\n"
5666*6236dae4SAndroid Build Coastguard Worker "\n"
5667*6236dae4SAndroid Build Coastguard Worker "       71     Illegal TFTP operation.\n"
5668*6236dae4SAndroid Build Coastguard Worker "\n"
5669*6236dae4SAndroid Build Coastguard Worker "       72     Unknown TFTP transfer ID.\n"
5670*6236dae4SAndroid Build Coastguard Worker "\n"
5671*6236dae4SAndroid Build Coastguard Worker "       73     File already exists (TFTP).\n"
5672*6236dae4SAndroid Build Coastguard Worker "\n"
5673*6236dae4SAndroid Build Coastguard Worker "       74     No such user (TFTP).\n"
5674*6236dae4SAndroid Build Coastguard Worker "\n"
5675*6236dae4SAndroid Build Coastguard Worker "       75     Character conversion failed.\n"
5676*6236dae4SAndroid Build Coastguard Worker "\n"
5677*6236dae4SAndroid Build Coastguard Worker , stdout);
5678*6236dae4SAndroid Build Coastguard Worker  fputs(
5679*6236dae4SAndroid Build Coastguard Worker "       76     Character conversion functions required.\n"
5680*6236dae4SAndroid Build Coastguard Worker "\n"
5681*6236dae4SAndroid Build Coastguard Worker "       77     Problem reading the SSL CA cert (path? access rights?).\n"
5682*6236dae4SAndroid Build Coastguard Worker "\n"
5683*6236dae4SAndroid Build Coastguard Worker "       78     The resource referenced in the URL does not exist.\n"
5684*6236dae4SAndroid Build Coastguard Worker "\n"
5685*6236dae4SAndroid Build Coastguard Worker "       79     An unspecified error occurred during the SSH session.\n"
5686*6236dae4SAndroid Build Coastguard Worker "\n"
5687*6236dae4SAndroid Build Coastguard Worker "       80     Failed to shut down the SSL connection.\n"
5688*6236dae4SAndroid Build Coastguard Worker "\n"
5689*6236dae4SAndroid Build Coastguard Worker "       82     Could not load CRL file, missing or wrong format.\n"
5690*6236dae4SAndroid Build Coastguard Worker "\n"
5691*6236dae4SAndroid Build Coastguard Worker "       83     Issuer check failed.\n"
5692*6236dae4SAndroid Build Coastguard Worker "\n"
5693*6236dae4SAndroid Build Coastguard Worker "       84     The FTP PRET command failed.\n"
5694*6236dae4SAndroid Build Coastguard Worker "\n"
5695*6236dae4SAndroid Build Coastguard Worker , stdout);
5696*6236dae4SAndroid Build Coastguard Worker  fputs(
5697*6236dae4SAndroid Build Coastguard Worker "       85     Mismatch of RTSP CSeq numbers.\n"
5698*6236dae4SAndroid Build Coastguard Worker "\n"
5699*6236dae4SAndroid Build Coastguard Worker "       86     Mismatch of RTSP Session Identifiers.\n"
5700*6236dae4SAndroid Build Coastguard Worker "\n"
5701*6236dae4SAndroid Build Coastguard Worker "       87     Unable to parse FTP file list.\n"
5702*6236dae4SAndroid Build Coastguard Worker "\n"
5703*6236dae4SAndroid Build Coastguard Worker "       88     FTP chunk callback reported error.\n"
5704*6236dae4SAndroid Build Coastguard Worker "\n"
5705*6236dae4SAndroid Build Coastguard Worker "       89     No connection available, the session will be queued.\n"
5706*6236dae4SAndroid Build Coastguard Worker "\n"
5707*6236dae4SAndroid Build Coastguard Worker "       90     SSL public key does not matched pinned public key.\n"
5708*6236dae4SAndroid Build Coastguard Worker "\n"
5709*6236dae4SAndroid Build Coastguard Worker "       91     Invalid SSL certificate status.\n"
5710*6236dae4SAndroid Build Coastguard Worker "\n"
5711*6236dae4SAndroid Build Coastguard Worker "       92     Stream error in HTTP/2 framing layer.\n"
5712*6236dae4SAndroid Build Coastguard Worker "\n"
5713*6236dae4SAndroid Build Coastguard Worker "       93     An API function was called from inside a callback.\n"
5714*6236dae4SAndroid Build Coastguard Worker "\n"
5715*6236dae4SAndroid Build Coastguard Worker , stdout);
5716*6236dae4SAndroid Build Coastguard Worker  fputs(
5717*6236dae4SAndroid Build Coastguard Worker "       94     An authentication function returned an error.\n"
5718*6236dae4SAndroid Build Coastguard Worker "\n"
5719*6236dae4SAndroid Build Coastguard Worker "       95     A problem was detected in the HTTP/3  layer.  This  is  somewhat\n"
5720*6236dae4SAndroid Build Coastguard Worker "              generic  and  can  be one out of several problems, see the error\n"
5721*6236dae4SAndroid Build Coastguard Worker "              message for details.\n"
5722*6236dae4SAndroid Build Coastguard Worker "\n"
5723*6236dae4SAndroid Build Coastguard Worker "       96     QUIC connection error. This error may be caused by  an  SSL  li-\n"
5724*6236dae4SAndroid Build Coastguard Worker "              brary error. QUIC is the protocol used for HTTP/3 transfers.\n"
5725*6236dae4SAndroid Build Coastguard Worker "\n"
5726*6236dae4SAndroid Build Coastguard Worker "       XX     More error codes will appear here in future releases. The exist-\n"
5727*6236dae4SAndroid Build Coastguard Worker , stdout);
5728*6236dae4SAndroid Build Coastguard Worker  fputs(
5729*6236dae4SAndroid Build Coastguard Worker "              ing ones are meant to never change.\n"
5730*6236dae4SAndroid Build Coastguard Worker "\n"
5731*6236dae4SAndroid Build Coastguard Worker "AUTHORS / CONTRIBUTORS\n"
5732*6236dae4SAndroid Build Coastguard Worker "       Daniel Stenberg is the main author, but the whole list of  contributors\n"
5733*6236dae4SAndroid Build Coastguard Worker "       is found in the separate THANKS file.\n"
5734*6236dae4SAndroid Build Coastguard Worker "\n"
5735*6236dae4SAndroid Build Coastguard Worker "WWW\n"
5736*6236dae4SAndroid Build Coastguard Worker "       https://curl.se\n"
5737*6236dae4SAndroid Build Coastguard Worker "\n"
5738*6236dae4SAndroid Build Coastguard Worker "SEE ALSO\n"
5739*6236dae4SAndroid Build Coastguard Worker "       ftp(1), wget(1)\n"
5740*6236dae4SAndroid Build Coastguard Worker "\n"
5741*6236dae4SAndroid Build Coastguard Worker , stdout) ;
5742*6236dae4SAndroid Build Coastguard Worker }
5743*6236dae4SAndroid Build Coastguard Worker #else /* !USE_MANUAL */
5744*6236dae4SAndroid Build Coastguard Worker /* built-in manual is disabled, blank function */
5745*6236dae4SAndroid Build Coastguard Worker #include "tool_hugehelp.h"
hugehelp(void)5746*6236dae4SAndroid Build Coastguard Worker void hugehelp(void) {}
5747*6236dae4SAndroid Build Coastguard Worker #endif /* USE_MANUAL */
5748*6236dae4SAndroid Build Coastguard Worker #else
5749*6236dae4SAndroid Build Coastguard Worker /*
5750*6236dae4SAndroid Build Coastguard Worker  * NEVER EVER edit this manually, fix the mkhelp.pl script instead!
5751*6236dae4SAndroid Build Coastguard Worker  */
5752*6236dae4SAndroid Build Coastguard Worker #ifdef USE_MANUAL
5753*6236dae4SAndroid Build Coastguard Worker #include "tool_hugehelp.h"
5754*6236dae4SAndroid Build Coastguard Worker #include <zlib.h>
5755*6236dae4SAndroid Build Coastguard Worker #include "memdebug.h" /* keep this as LAST include */
5756*6236dae4SAndroid Build Coastguard Worker static const unsigned char hugehelpgz[] = {
5757*6236dae4SAndroid Build Coastguard Worker   /* This mumbo-jumbo is the huge help text compressed with gzip.
5758*6236dae4SAndroid Build Coastguard Worker      Thanks to this operation, the size of this data shrank from 212255
5759*6236dae4SAndroid Build Coastguard Worker      to 55802 bytes. You can disable the use of compressed help
5760*6236dae4SAndroid Build Coastguard Worker      texts by NOT passing -c to the mkhelp.pl tool. */
5761*6236dae4SAndroid Build Coastguard Worker   0x1f, 0x8b, 0x08, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x03, 0xed, 0xbd,
5762*6236dae4SAndroid Build Coastguard Worker   0x79, 0x7b, 0xdb, 0x46, 0x96, 0x2f, 0xfc, 0x7f, 0x3e, 0x05, 0x86, 0xfd,
5763*6236dae4SAndroid Build Coastguard Worker   0xf4, 0x95, 0x34, 0x4d, 0x50, 0xbb, 0x17, 0x45, 0xc9, 0x44, 0x91, 0xe5,
5764*6236dae4SAndroid Build Coastguard Worker   0x58, 0x13, 0xd9, 0x52, 0x9b, 0x72, 0x92, 0x9e, 0x24, 0x8f, 0x1f, 0x90,
5765*6236dae4SAndroid Build Coastguard Worker   0x84, 0x24, 0x44, 0x24, 0xc0, 0x06, 0x40, 0x2d, 0xe9, 0xe9, 0xf7, 0xb3,
5766*6236dae4SAndroid Build Coastguard Worker   0xbf, 0x67, 0xad, 0x2a, 0xa0, 0x8a, 0x94, 0xa8, 0x6c, 0x3d, 0xf7, 0xce,
5767*6236dae4SAndroid Build Coastguard Worker   0xdc, 0xdb, 0x8e, 0x2d, 0x01, 0x85, 0xaa, 0x53, 0xa7, 0x4e, 0x9d, 0xf5,
5768*6236dae4SAndroid Build Coastguard Worker   0x77, 0xa2, 0xe8, 0xa1, 0xff, 0xfb, 0x48, 0xff, 0xfb, 0x08, 0xff, 0x07,
5769*6236dae4SAndroid Build Coastguard Worker   0xff, 0xfd, 0x24, 0x8a, 0xce, 0xca, 0xe2, 0xa7, 0x74, 0x58, 0x87, 0x9f,
5770*6236dae4SAndroid Build Coastguard Worker   0xfd, 0xf8, 0xf1, 0xbf, 0x23, 0xfe, 0x7f, 0xf0, 0xce, 0x0f, 0xf0, 0xdf,
5771*6236dae4SAndroid Build Coastguard Worker   0x4f, 0x16, 0x8e, 0xbd, 0x1e, 0xd9, 0x17, 0xfe, 0xfb, 0xe3, 0x5a, 0xf4,
5772*6236dae4SAndroid Build Coastguard Worker   0xd0, 0x0b, 0xff, 0x1d, 0xad, 0xd2, 0x0b, 0x1f, 0xe5, 0x0b, 0xfb, 0xf8,
5773*6236dae4SAndroid Build Coastguard Worker   0xf7, 0x8f, 0x1f, 0x17, 0x7f, 0xe4, 0x07, 0x9c, 0x15, 0xfe, 0xb1, 0x8e,
5774*6236dae4SAndroid Build Coastguard Worker   0xef, 0xfd, 0xf0, 0x11, 0xff, 0x0a, 0x3f, 0xf9, 0xe4, 0x93, 0x77, 0x07,
5775*6236dae4SAndroid Build Coastguard Worker   0x6f, 0x8f, 0xf4, 0xd5, 0xe1, 0xac, 0x1c, 0x47, 0x71, 0x54, 0x97, 0x49,
5776*6236dae4SAndroid Build Coastguard Worker   0x5e, 0x5d, 0xa4, 0x65, 0x94, 0x44, 0x1f, 0xde, 0x9f, 0x7c, 0xf2, 0x49,
5777*6236dae4SAndroid Build Coastguard Worker   0xff, 0x6f, 0xef, 0x4e, 0xcf, 0xfa, 0xc7, 0xfd, 0xc6, 0x63, 0xdf, 0x17,
5778*6236dae4SAndroid Build Coastguard Worker   0xd3, 0x3a, 0x2b, 0xf2, 0x0a, 0xa6, 0x0f, 0x0f, 0x55, 0x3f, 0x7e, 0xf2,
5779*6236dae4SAndroid Build Coastguard Worker   0xc9, 0xab, 0xa3, 0xfe, 0xe1, 0xfb, 0xe3, 0xb3, 0xf3, 0xe3, 0xd3, 0x77,
5780*6236dae4SAndroid Build Coastguard Worker   0x8d, 0x27, 0xa3, 0xac, 0x8a, 0x60, 0xa8, 0xba, 0x28, 0xc6, 0xd1, 0x45,
5781*6236dae4SAndroid Build Coastguard Worker   0x51, 0x9a, 0xe1, 0xcb, 0x2c, 0xbf, 0x8c, 0x46, 0x49, 0x9d, 0x44, 0x17,
5782*6236dae4SAndroid Build Coastguard Worker   0x65, 0x31, 0x89, 0xf0, 0x37, 0x05, 0x3c, 0x57, 0xa5, 0xe5, 0x4d, 0x5a,
5783*6236dae4SAndroid Build Coastguard Worker   0xf6, 0xa2, 0xe3, 0x3a, 0xaa, 0x66, 0xd3, 0x69, 0x51, 0xd6, 0x95, 0x0e,
5784*6236dae4SAndroid Build Coastguard Worker   0x57, 0x5f, 0xa5, 0x55, 0x1a, 0x4d, 0xcb, 0xa2, 0x2e, 0x86, 0xc5, 0xb8,
5785*6236dae4SAndroid Build Coastguard Worker   0xda, 0x8b, 0x5e, 0x1d, 0x1f, 0x9e, 0x77, 0xa3, 0xd7, 0xc7, 0x27, 0x47,
5786*6236dae4SAndroid Build Coastguard Worker   0xf0, 0xe7, 0xf9, 0x19, 0xfd, 0xd1, 0xef, 0x46, 0x5f, 0x9d, 0x9e, 0xbd,
5787*6236dae4SAndroid Build Coastguard Worker   0x39, 0x7a, 0xaf, 0xff, 0x85, 0x1f, 0x44, 0x6f, 0xce, 0xf1, 0xb7, 0xf4,
5788*6236dae4SAndroid Build Coastguard Worker   0x9f, 0x7e, 0x57, 0x87, 0x3b, 0x7e, 0x7b, 0x80, 0x3f, 0xc4, 0xff, 0xe0,
5789*6236dae4SAndroid Build Coastguard Worker   0x33, 0x27, 0xaf, 0xe8, 0x9f, 0xf8, 0x1f, 0xf8, 0xe7, 0xdb, 0xbf, 0x9e,
5790*6236dae4SAndroid Build Coastguard Worker   0xc3, 0xd0, 0x67, 0xa7, 0x67, 0xdb, 0xfc, 0x27, 0xfc, 0xe8, 0xfd, 0xf9,
5791*6236dae4SAndroid Build Coastguard Worker   0xdb, 0x33, 0xfe, 0x93, 0xfe, 0xd1, 0x87, 0x7f, 0xf4, 0x0f, 0xcf, 0xcc,
5792*6236dae4SAndroid Build Coastguard Worker   0x70, 0x7d, 0x9a, 0x41, 0xff, 0xed, 0x97, 0xf4, 0x47, 0x1f, 0xff, 0xe4,
5793*6236dae4SAndroid Build Coastguard Worker   0x1f, 0xd0, 0x9c, 0xce, 0x8f, 0x4e, 0xde, 0x1d, 0x9d, 0xe3, 0x2a, 0xcf,
5794*6236dae4SAndroid Build Coastguard Worker   0xe1, 0xb9, 0x5e, 0x74, 0x7e, 0x95, 0x46, 0xc3, 0x62, 0x32, 0x49, 0xf2,
5795*6236dae4SAndroid Build Coastguard Worker   0x11, 0x53, 0x68, 0x94, 0x56, 0xd9, 0x65, 0x9e, 0x8e, 0xcc, 0x62, 0x8b,
5796*6236dae4SAndroid Build Coastguard Worker   0xe8, 0xb6, 0x28, 0xaf, 0xa3, 0xdb, 0xac, 0xbe, 0x2a, 0x66, 0x75, 0x34,
5797*6236dae4SAndroid Build Coastguard Worker   0x03, 0xc2, 0x44, 0x59, 0x5e, 0xa7, 0x65, 0x32, 0x44, 0xca, 0xf7, 0x3e,
5798*6236dae4SAndroid Build Coastguard Worker   0x69, 0x50, 0xb9, 0xb8, 0x00, 0x92, 0x56, 0x40, 0xbf, 0xc1, 0xac, 0x1a,
5799*6236dae4SAndroid Build Coastguard Worker   0x17, 0xc9, 0x08, 0x7e, 0x80, 0xaf, 0x5c, 0xcc, 0xc6, 0x40, 0xf0, 0x6c,
5800*6236dae4SAndroid Build Coastguard Worker   0x78, 0x5d, 0x45, 0xe3, 0xec, 0x9a, 0x88, 0x77, 0x77, 0xaf, 0x84, 0xed,
5801*6236dae4SAndroid Build Coastguard Worker   0xf2, 0xa0, 0xc9, 0x0c, 0x08, 0x9b, 0xc7, 0xe6, 0xc3, 0xd9, 0x30, 0xc1,
5802*6236dae4SAndroid Build Coastguard Worker   0x0f, 0x10, 0x35, 0xa3, 0xd9, 0x14, 0x47, 0xeb, 0x12, 0xe9, 0xa2, 0x69,
5803*6236dae4SAndroid Build Coastguard Worker   0x51, 0xc1, 0x4b, 0xfd, 0xfe, 0x09, 0x4c, 0x3d, 0xcf, 0x53, 0x9a, 0x47,
5804*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x85, 0x7f, 0x14, 0xd7, 0x59, 0x0a, 0x7f, 0xb9, 0xc8, 0xc6, 0x69,
5805*6236dae4SAndroid Build Coastguard Worker   0xc4, 0x1b, 0x6c, 0x86, 0x43, 0x46, 0x2a, 0xd3, 0x6a, 0x36, 0x49, 0x23,
5806*6236dae4SAndroid Build Coastguard Worker   0x5c, 0xeb, 0xa4, 0x28, 0xd3, 0x5e, 0x74, 0x50, 0x45, 0xf7, 0xc5, 0x0c,
5807*6236dae4SAndroid Build Coastguard Worker   0xd6, 0x36, 0x1e, 0xc3, 0x86, 0xa7, 0xd1, 0x20, 0x1d, 0x17, 0xb7, 0x5d,
5808*6236dae4SAndroid Build Coastguard Worker   0xdc, 0xe0, 0x28, 0x9f, 0x4d, 0x06, 0xf0, 0x0a, 0x4c, 0xff, 0x22, 0x4d,
5809*6236dae4SAndroid Build Coastguard Worker   0xea, 0x19, 0xbc, 0x4a, 0x8f, 0xe9, 0x70, 0x93, 0x04, 0x56, 0x01, 0xef,
5810*6236dae4SAndroid Build Coastguard Worker   0x96, 0xd1, 0x55, 0x0a, 0xab, 0xac, 0xa6, 0x59, 0xfe, 0x6f, 0x4d, 0x4a,
5811*6236dae4SAndroid Build Coastguard Worker   0x00, 0x31, 0xa7, 0xc5, 0x6d, 0x5a, 0xa6, 0xa3, 0x68, 0x70, 0x1f, 0xc1,
5812*6236dae4SAndroid Build Coastguard Worker   0xb2, 0x07, 0xcc, 0x86, 0xc8, 0x7b, 0x51, 0x02, 0x1f, 0x34, 0x1c, 0x18,
5813*6236dae4SAndroid Build Coastguard Worker   0x97, 0xe9, 0x38, 0xa9, 0xe1, 0x39, 0xf3, 0xa9, 0x1e, 0x6c, 0x63, 0x9a,
5814*6236dae4SAndroid Build Coastguard Worker   0xea, 0x70, 0xf2, 0xea, 0xea, 0xf6, 0x1a, 0xbd, 0x3c, 0x4a, 0xeb, 0x24,
5815*6236dae4SAndroid Build Coastguard Worker   0x1b, 0x57, 0x40, 0x78, 0x3c, 0x16, 0xf2, 0x0c, 0xee, 0x23, 0x9e, 0x80,
5816*6236dae4SAndroid Build Coastguard Worker   0x28, 0xaa, 0xee, 0xf3, 0x3a, 0xb9, 0xa3, 0xcf, 0x0b, 0x87, 0xc6, 0xa3,
5817*6236dae4SAndroid Build Coastguard Worker   0x74, 0x9a, 0xe6, 0xa3, 0x34, 0xaf, 0x7b, 0xd1, 0xdf, 0x60, 0xb9, 0x17,
5818*6236dae4SAndroid Build Coastguard Worker   0x19, 0x10, 0x20, 0x91, 0x71, 0xe0, 0xb3, 0xb0, 0xe5, 0xc3, 0x32, 0xa3,
5819*6236dae4SAndroid Build Coastguard Worker   0x73, 0xa4, 0xc3, 0x65, 0x79, 0xf4, 0xfe, 0xf5, 0x61, 0xb4, 0xfd, 0xf2,
5820*6236dae4SAndroid Build Coastguard Worker   0xc5, 0x33, 0xbb, 0xc1, 0xf8, 0xee, 0x30, 0xc9, 0x61, 0xb1, 0xe9, 0x30,
5821*6236dae4SAndroid Build Coastguard Worker   0xbb, 0xb8, 0x8f, 0x26, 0xb3, 0x71, 0x9d, 0x4d, 0x81, 0xd4, 0x78, 0xf2,
5822*6236dae4SAndroid Build Coastguard Worker   0x90, 0xa5, 0xa6, 0x09, 0x9c, 0x12, 0x24, 0x19, 0xfd, 0x80, 0x96, 0x7d,
5823*6236dae4SAndroid Build Coastguard Worker   0x5b, 0x66, 0x35, 0x1e, 0x30, 0xfa, 0x1d, 0x4c, 0x2e, 0xb5, 0xc7, 0x08,
5824*6236dae4SAndroid Build Coastguard Worker   0x39, 0x0a, 0xbe, 0x33, 0x00, 0x46, 0x02, 0xe2, 0xe2, 0xa6, 0xfc, 0x7d,
5825*6236dae4SAndroid Build Coastguard Worker   0x56, 0xd0, 0xc3, 0x48, 0x7f, 0x5c, 0x4b, 0x52, 0xc1, 0x44, 0xf6, 0x3e,
5826*6236dae4SAndroid Build Coastguard Worker   0xb1, 0x22, 0xa5, 0x73, 0x55, 0xd7, 0xd3, 0xbd, 0xf5, 0xf5, 0x2a, 0xab,
5827*6236dae4SAndroid Build Coastguard Worker   0xd3, 0xde, 0x3f, 0x8a, 0x3c, 0xed, 0xd6, 0xb7, 0x45, 0xb7, 0xbe, 0x2a,
5828*6236dae4SAndroid Build Coastguard Worker   0xd3, 0xf4, 0x9f, 0x3d, 0x60, 0xe3, 0x8e, 0x79, 0x16, 0x66, 0x73, 0x2f,
5829*6236dae4SAndroid Build Coastguard Worker   0xd3, 0xbd, 0x4c, 0xe1, 0x08, 0xa7, 0x7f, 0x9f, 0xa5, 0x39, 0x7e, 0x07,
5830*6236dae4SAndroid Build Coastguard Worker   0x66, 0x97, 0x8c, 0xa7, 0x57, 0x09, 0xec, 0x6f, 0x0a, 0x0c, 0x89, 0xe7,
5831*6236dae4SAndroid Build Coastguard Worker   0x1c, 0x78, 0x06, 0xe7, 0x3a, 0xab, 0xf0, 0xdb, 0xdf, 0xff, 0x18, 0xf8,
5832*6236dae4SAndroid Build Coastguard Worker   0xec, 0x05, 0x7d, 0x15, 0xfe, 0xec, 0xa5, 0x77, 0xc9, 0x04, 0x96, 0x8c,
5833*6236dae4SAndroid Build Coastguard Worker   0x1f, 0x5b, 0x47, 0x36, 0xfb, 0x7e, 0x33, 0xde, 0xdc, 0xd8, 0xf8, 0xb1,
5834*6236dae4SAndroid Build Coastguard Worker   0x57, 0xdf, 0xd5, 0x9d, 0x47, 0xbe, 0xb1, 0xb1, 0xe1, 0xbc, 0x83, 0x0f,
5835*6236dae4SAndroid Build Coastguard Worker   0xaf, 0x22, 0x25, 0xa2, 0x31, 0xf0, 0x11, 0x4e, 0xe0, 0xe7, 0xb4, 0x2c,
5836*6236dae4SAndroid Build Coastguard Worker   0xaa, 0xb5, 0x47, 0x8e, 0x95, 0xc4, 0x3f, 0xb7, 0xbe, 0xfd, 0x2e, 0xad,
5837*6236dae4SAndroid Build Coastguard Worker   0x88, 0x95, 0xec, 0x8a, 0xa3, 0xa4, 0x04, 0x76, 0x2e, 0x8c, 0x1c, 0x4b,
5838*6236dae4SAndroid Build Coastguard Worker   0xe1, 0x18, 0x0d, 0xe0, 0x24, 0x2b, 0x7d, 0xe0, 0xf0, 0xc1, 0xd3, 0x20,
5839*6236dae4SAndroid Build Coastguard Worker   0xec, 0x12, 0x38, 0xbe, 0x39, 0xbc, 0x90, 0xa7, 0x77, 0xb5, 0x73, 0xfc,
5840*6236dae4SAndroid Build Coastguard Worker   0xd3, 0x64, 0x78, 0x15, 0x15, 0xb0, 0x27, 0x65, 0x68, 0x2b, 0xdc, 0x29,
5841*6236dae4SAndroid Build Coastguard Worker   0x25, 0xe5, 0xf0, 0x2a, 0xbb, 0x01, 0x9a, 0xbc, 0x7c, 0xf9, 0x2c, 0x86,
5842*6236dae4SAndroid Build Coastguard Worker   0x3f, 0x5e, 0xfe, 0xb8, 0x7e, 0x53, 0x8c, 0x81, 0x44, 0x3b, 0x3f, 0xae,
5843*6236dae4SAndroid Build Coastguard Worker   0xe3, 0xfe, 0xff, 0x23, 0xe9, 0x0e, 0xba, 0xc3, 0x7f, 0xf6, 0xae, 0xea,
5844*6236dae4SAndroid Build Coastguard Worker   0xc9, 0xb8, 0x33, 0x97, 0xad, 0x92, 0x1c, 0xfe, 0x37, 0x29, 0x66, 0x79,
5845*6236dae4SAndroid Build Coastguard Worker   0x6d, 0x58, 0xa9, 0xc8, 0x89, 0x27, 0x54, 0x50, 0x8d, 0xb3, 0x1c, 0x0e,
5846*6236dae4SAndroid Build Coastguard Worker   0x2f, 0xf2, 0x3c, 0x72, 0x18, 0x1e, 0x5e, 0x38, 0xb9, 0xf6, 0xa0, 0xd7,
5847*6236dae4SAndroid Build Coastguard Worker   0xc3, 0x2b, 0xa4, 0x00, 0xf0, 0x56, 0x22, 0x64, 0xa8, 0x33, 0x58, 0x1b,
5848*6236dae4SAndroid Build Coastguard Worker   0xbc, 0x9a, 0x93, 0xec, 0xa2, 0xb1, 0xf8, 0x6b, 0x19, 0x3c, 0x58, 0x94,
5849*6236dae4SAndroid Build Coastguard Worker   0x23, 0x14, 0xf4, 0xad, 0x69, 0x98, 0xb3, 0xec, 0x7c, 0x33, 0xd2, 0xcb,
5850*6236dae4SAndroid Build Coastguard Worker   0x06, 0x7f, 0x40, 0x13, 0x9b, 0x64, 0x77, 0x30, 0x02, 0xfe, 0x13, 0xbf,
5851*6236dae4SAndroid Build Coastguard Worker   0x06, 0x13, 0xe7, 0xd1, 0x22, 0x9c, 0x31, 0x7d, 0x46, 0xdf, 0xb7, 0x67,
5852*6236dae4SAndroid Build Coastguard Worker   0x19, 0xa6, 0xde, 0x58, 0x3a, 0x7d, 0xd4, 0x2e, 0x3e, 0x82, 0xed, 0x9b,
5853*6236dae4SAndroid Build Coastguard Worker   0xc2, 0x5b, 0x33, 0x14, 0xb1, 0x7c, 0x51, 0xc1, 0x30, 0x20, 0x29, 0x2e,
5854*6236dae4SAndroid Build Coastguard Worker   0x61, 0x67, 0x60, 0x37, 0x90, 0x9b, 0x71, 0xb3, 0xee, 0xa3, 0x77, 0xc0,
5855*6236dae4SAndroid Build Coastguard Worker   0x34, 0x2c, 0xa5, 0x1c, 0xa6, 0x1f, 0xa7, 0x75, 0xfd, 0xf0, 0x46, 0x59,
5856*6236dae4SAndroid Build Coastguard Worker   0xce, 0xdd, 0xdb, 0x0c, 0x30, 0xef, 0xbc, 0x37, 0x80, 0xdb, 0xf6, 0xb6,
5857*6236dae4SAndroid Build Coastguard Worker   0x5a, 0x8f, 0x7f, 0x0b, 0x32, 0xdb, 0x1e, 0x1d, 0x98, 0xc1, 0x3f, 0xfe,
5858*6236dae4SAndroid Build Coastguard Worker   0xe9, 0xf0, 0xde, 0x2d, 0xfe, 0x36, 0xcb, 0x6f, 0x8a, 0x6b, 0x20, 0x13,
5859*6236dae4SAndroid Build Coastguard Worker   0xdd, 0xaf, 0x49, 0x93, 0xa2, 0x28, 0xa4, 0x26, 0xd3, 0xda, 0xdc, 0x5e,
5860*6236dae4SAndroid Build Coastguard Worker   0xc8, 0x94, 0xf0, 0xa3, 0x41, 0x32, 0x18, 0xdf, 0x47, 0x57, 0xc9, 0x4d,
5861*6236dae4SAndroid Build Coastguard Worker   0x8a, 0x6b, 0x9e, 0x02, 0xb7, 0x22, 0x15, 0xe0, 0x16, 0x19, 0x93, 0x60,
5862*6236dae4SAndroid Build Coastguard Worker   0x10, 0xd1, 0x31, 0x2a, 0x66, 0x03, 0x10, 0x3f, 0x28, 0x36, 0x98, 0x38,
5863*6236dae4SAndroid Build Coastguard Worker   0xc9, 0x4d, 0x91, 0x8d, 0xf0, 0x51, 0x1d, 0xae, 0xba, 0x4a, 0xe1, 0x15,
5864*6236dae4SAndroid Build Coastguard Worker   0xfa, 0x30, 0xdd, 0x59, 0x20, 0x6d, 0x71, 0xa6, 0x74, 0xe0, 0xb2, 0x1a,
5865*6236dae4SAndroid Build Coastguard Worker   0xaf, 0x3f, 0x90, 0x93, 0xc9, 0xb8, 0x2a, 0xa2, 0xe8, 0xb2, 0xc0, 0xb3,
5866*6236dae4SAndroid Build Coastguard Worker   0x42, 0xd2, 0x99, 0x98, 0x1d, 0x36, 0xe6, 0x2a, 0xc1, 0x4b, 0x0e, 0xee,
5867*6236dae4SAndroid Build Coastguard Worker   0x33, 0x73, 0x1a, 0xca, 0x94, 0x04, 0x35, 0xed, 0x56, 0x32, 0xee, 0xf2,
5868*6236dae4SAndroid Build Coastguard Worker   0x65, 0x86, 0xef, 0x08, 0xad, 0xa2, 0x95, 0xff, 0xb3, 0xd2, 0x8d, 0x56,
5869*6236dae4SAndroid Build Coastguard Worker   0xfe, 0x63, 0x85, 0x78, 0x62, 0xe5, 0xdf, 0x57, 0xec, 0x5e, 0x83, 0xae,
5870*6236dae4SAndroid Build Coastguard Worker   0x76, 0x93, 0x8d, 0x52, 0x66, 0x8b, 0xe3, 0xb3, 0x9b, 0x67, 0xd1, 0xcf,
5871*6236dae4SAndroid Build Coastguard Worker   0x70, 0xda, 0x60, 0x5a, 0xa3, 0xf4, 0x4e, 0x99, 0x52, 0xd7, 0x06, 0x6f,
5872*6236dae4SAndroid Build Coastguard Worker   0x47, 0x20, 0x94, 0x93, 0x29, 0x7c, 0x6b, 0x9a, 0x96, 0x43, 0xe0, 0xe0,
5873*6236dae4SAndroid Build Coastguard Worker   0xe4, 0x12, 0x78, 0x16, 0x6e, 0x66, 0x1d, 0x0e, 0xc7, 0xc7, 0x57, 0x78,
5874*6236dae4SAndroid Build Coastguard Worker   0x59, 0x20, 0x42, 0xa3, 0x3c, 0x99, 0xc0, 0xa9, 0x38, 0xc1, 0x19, 0x65,
5875*6236dae4SAndroid Build Coastguard Worker   0x79, 0x60, 0x3b, 0xbf, 0xbf, 0x48, 0x5f, 0x6c, 0xec, 0xed, 0x6d, 0xff,
5876*6236dae4SAndroid Build Coastguard Worker   0x79, 0x6b, 0x37, 0xad, 0xaf, 0x36, 0x7e, 0x5c, 0xb7, 0x9b, 0x78, 0x7c,
5877*6236dae4SAndroid Build Coastguard Worker   0x41, 0x84, 0x57, 0x26, 0xd4, 0x69, 0xe0, 0x7d, 0xaf, 0x97, 0x08, 0x0c,
5878*6236dae4SAndroid Build Coastguard Worker   0x00, 0x7f, 0x4f, 0x2f, 0xb2, 0xbb, 0xae, 0x2a, 0x54, 0x7c, 0xf2, 0x12,
5879*6236dae4SAndroid Build Coastguard Worker   0x60, 0x38, 0xd8, 0x41, 0x14, 0x15, 0x3a, 0xdc, 0xe5, 0x2c, 0xad, 0x80,
5880*6236dae4SAndroid Build Coastguard Worker   0x96, 0xb7, 0x57, 0x49, 0x1d, 0x99, 0x01, 0x78, 0x6f, 0x27, 0xd9, 0xe5,
5881*6236dae4SAndroid Build Coastguard Worker   0x55, 0x1d, 0xdd, 0x26, 0x78, 0x17, 0x81, 0x6a, 0x45, 0x43, 0xe0, 0xb5,
5882*6236dae4SAndroid Build Coastguard Worker   0x0f, 0x97, 0xd0, 0x45, 0x02, 0xf7, 0x09, 0xee, 0x22, 0xdd, 0xf1, 0x20,
5883*6236dae4SAndroid Build Coastguard Worker   0xa1, 0x2c, 0xd5, 0xef, 0x65, 0x4b, 0x8c, 0xce, 0x15, 0x0d, 0x92, 0x0a,
5884*6236dae4SAndroid Build Coastguard Worker   0x8f, 0x6e, 0x0e, 0x22, 0xa2, 0x06, 0xa5, 0x61, 0x86, 0xff, 0xba, 0x02,
5885*6236dae4SAndroid Build Coastguard Worker   0xb5, 0x80, 0xa8, 0x20, 0x13, 0xa5, 0x7b, 0xf4, 0x35, 0x6e, 0x28, 0xee,
5886*6236dae4SAndroid Build Coastguard Worker   0x8e, 0xd1, 0x04, 0x60, 0x9b, 0xba, 0xb2, 0xd1, 0xe6, 0x8d, 0x0a, 0x8e,
5887*6236dae4SAndroid Build Coastguard Worker   0x1d, 0x08, 0x28, 0xc3, 0x1b, 0x28, 0x73, 0x7b, 0x1d, 0x5e, 0x27, 0xcd,
5888*6236dae4SAndroid Build Coastguard Worker   0x31, 0xa9, 0x48, 0x75, 0x20, 0x6d, 0x01, 0x26, 0xef, 0x2c, 0x16, 0x88,
5889*6236dae4SAndroid Build Coastguard Worker   0x96, 0x5c, 0xa3, 0x8e, 0xd2, 0xd2, 0x84, 0xe8, 0xb5, 0x51, 0x01, 0x6c,
5890*6236dae4SAndroid Build Coastguard Worker   0x06, 0xb3, 0x05, 0xa1, 0x8c, 0x2b, 0x43, 0x51, 0x4b, 0x54, 0x21, 0x36,
5891*6236dae4SAndroid Build Coastguard Worker   0x87, 0x31, 0xf1, 0x87, 0x59, 0x8d, 0x37, 0x0e, 0x29, 0xb9, 0x30, 0x5f,
5892*6236dae4SAndroid Build Coastguard Worker   0x20, 0x0a, 0xe9, 0x61, 0x20, 0xb0, 0x9d, 0xf5, 0xd3, 0x15, 0x0a, 0xcf,
5893*6236dae4SAndroid Build Coastguard Worker   0x46, 0x37, 0xc9, 0x38, 0x03, 0x65, 0x35, 0x35, 0x6f, 0xd1, 0x75, 0x3f,
5894*6236dae4SAndroid Build Coastguard Worker   0x44, 0x65, 0x69, 0x0c, 0x27, 0x66, 0x58, 0x94, 0x25, 0x1a, 0x04, 0xb8,
5895*6236dae4SAndroid Build Coastguard Worker   0x83, 0x03, 0x16, 0xa5, 0x93, 0x14, 0xb4, 0x0c, 0x97, 0x9c, 0x19, 0x5e,
5896*6236dae4SAndroid Build Coastguard Worker   0x6f, 0x20, 0x65, 0x40, 0x6d, 0x21, 0x39, 0x02, 0xea, 0x05, 0xc9, 0x7e,
5897*6236dae4SAndroid Build Coastguard Worker   0x5a, 0x38, 0xcd, 0x0e, 0xc7, 0x1e, 0x0e, 0xd3, 0x69, 0x5d, 0x85, 0xd6,
5898*6236dae4SAndroid Build Coastguard Worker   0xa4, 0x1b, 0x0e, 0xd3, 0x29, 0x53, 0xa4, 0xbc, 0xab, 0x85, 0x11, 0x5d,
5899*6236dae4SAndroid Build Coastguard Worker   0x8d, 0x62, 0x40, 0x8a, 0x98, 0xaa, 0x39, 0xa0, 0x98, 0x55, 0x85, 0xd5,
5900*6236dae4SAndroid Build Coastguard Worker   0xa1, 0x91, 0x37, 0x40, 0x98, 0x11, 0xcd, 0x27, 0x38, 0x51, 0x7c, 0xb8,
5901*6236dae4SAndroid Build Coastguard Worker   0xe2, 0xb3, 0x4a, 0x02, 0x1a, 0x37, 0x92, 0xb5, 0x70, 0xfe, 0x2e, 0x5e,
5902*6236dae4SAndroid Build Coastguard Worker   0x61, 0x40, 0x4f, 0x33, 0x38, 0x7c, 0xd5, 0xec, 0x29, 0x7e, 0x1e, 0x6d,
5903*6236dae4SAndroid Build Coastguard Worker   0x00, 0xb8, 0xd7, 0x47, 0xd5, 0x15, 0xe8, 0x66, 0x95, 0x9c, 0xed, 0x6c,
5904*6236dae4SAndroid Build Coastguard Worker   0x02, 0x3c, 0x73, 0x83, 0xfb, 0x3b, 0x4d, 0xd3, 0x51, 0x2f, 0x3a, 0xbd,
5905*6236dae4SAndroid Build Coastguard Worker   0x40, 0xd9, 0x5a, 0xc2, 0xa4, 0x6b, 0xfa, 0x35, 0xde, 0x2d, 0x40, 0xb7,
5906*6236dae4SAndroid Build Coastguard Worker   0x11, 0x1e, 0x45, 0xab, 0xfe, 0xf0, 0x54, 0x9c, 0x3b, 0x82, 0xe4, 0x79,
5907*6236dae4SAndroid Build Coastguard Worker   0x02, 0x3f, 0x81, 0xd9, 0x8e, 0x9b, 0x17, 0x11, 0x9d, 0x44, 0x90, 0xe1,
5908*6236dae4SAndroid Build Coastguard Worker   0x38, 0xbd, 0x41, 0x1a, 0x11, 0x27, 0x0e, 0xd2, 0xfa, 0x36, 0x4d, 0xcd,
5909*6236dae4SAndroid Build Coastguard Worker   0x70, 0x55, 0x0a, 0xb7, 0x1f, 0x6e, 0x1a, 0x2b, 0x86, 0x20, 0x0e, 0x59,
5910*6236dae4SAndroid Build Coastguard Worker   0xb5, 0x45, 0xf2, 0x9e, 0x7e, 0x38, 0x3f, 0xfb, 0x70, 0xee, 0x1c, 0x44,
5911*6236dae4SAndroid Build Coastguard Worker   0x1c, 0xa7, 0x2e, 0xc6, 0x23, 0x66, 0xf9, 0xdb, 0xac, 0x02, 0x6e, 0x65,
5912*6236dae4SAndroid Build Coastguard Worker   0xe2, 0x83, 0x2a, 0x85, 0x62, 0x0e, 0xaf, 0x83, 0x74, 0x98, 0xc2, 0x45,
5913*6236dae4SAndroid Build Coastguard Worker   0x3b, 0x62, 0xbb, 0x05, 0x36, 0xa2, 0xaa, 0x41, 0x16, 0xf2, 0x91, 0xc2,
5914*6236dae4SAndroid Build Coastguard Worker   0xb9, 0xe8, 0x70, 0x30, 0x1f, 0xda, 0xeb, 0x72, 0x36, 0x24, 0xa5, 0x00,
5915*6236dae4SAndroid Build Coastguard Worker   0x39, 0x48, 0xf7, 0xbe, 0x22, 0xe1, 0x8a, 0xdb, 0x40, 0x83, 0x80, 0x1c,
5916*6236dae4SAndroid Build Coastguard Worker   0x41, 0xb3, 0x67, 0x0c, 0x53, 0x1b, 0xd3, 0xfa, 0xbb, 0x22, 0xd5, 0x1d,
5917*6236dae4SAndroid Build Coastguard Worker   0x69, 0x1a, 0x17, 0xdd, 0x28, 0x8e, 0xe1, 0x43, 0x28, 0x90, 0x61, 0x9f,
5918*6236dae4SAndroid Build Coastguard Worker   0xe3, 0x53, 0xfc, 0x77, 0x99, 0x4e, 0x40, 0xfe, 0xc6, 0x74, 0xf0, 0xe4,
5919*6236dae4SAndroid Build Coastguard Worker   0x82, 0xec, 0xe1, 0x42, 0xac, 0xd5, 0x75, 0x09, 0x73, 0x05, 0xfa, 0xe9,
5920*6236dae4SAndroid Build Coastguard Worker   0xce, 0xe9, 0x70, 0xac, 0x25, 0xe2, 0x9c, 0x8c, 0xa9, 0x17, 0xb8, 0xe8,
5921*6236dae4SAndroid Build Coastguard Worker   0xbb, 0xc8, 0x8e, 0x55, 0x36, 0xc9, 0xc6, 0x49, 0x09, 0x3b, 0x95, 0xc3,
5922*6236dae4SAndroid Build Coastguard Worker   0x36, 0x56, 0x96, 0x09, 0x8a, 0xa9, 0x63, 0x30, 0x28, 0xff, 0xc1, 0xad,
5923*6236dae4SAndroid Build Coastguard Worker   0x53, 0xd2, 0xc5, 0x21, 0x6b, 0x4c, 0x27, 0x2d, 0x3e, 0x1e, 0xa1, 0xac,
5924*6236dae4SAndroid Build Coastguard Worker   0x47, 0x42, 0xc3, 0xbe, 0x00, 0x2b, 0xc0, 0x2b, 0x86, 0xd8, 0x51, 0x67,
5925*6236dae4SAndroid Build Coastguard Worker   0x06, 0x12, 0xb9, 0x04, 0x71, 0x90, 0x8f, 0x3a, 0x32, 0x19, 0x10, 0xb1,
5926*6236dae4SAndroid Build Coastguard Worker   0x39, 0x1e, 0x4b, 0xe6, 0xd8, 0x0a, 0x2f, 0x5a, 0xa3, 0xc4, 0xf2, 0xa6,
5927*6236dae4SAndroid Build Coastguard Worker   0xe0, 0x59, 0x8c, 0x98, 0x30, 0x7c, 0x86, 0xe5, 0x0b, 0x11, 0x5c, 0x83,
5928*6236dae4SAndroid Build Coastguard Worker   0x05, 0xa9, 0x75, 0xa4, 0xb8, 0xf3, 0xdf, 0x81, 0xb2, 0xf9, 0x18, 0x25,
5929*6236dae4SAndroid Build Coastguard Worker   0x64, 0x7a, 0x37, 0x1d, 0x67, 0xc3, 0xac, 0x1e, 0x1b, 0x6d, 0x23, 0xa9,
5930*6236dae4SAndroid Build Coastguard Worker   0xf0, 0xa2, 0x44, 0x9b, 0x0b, 0x0f, 0xe3, 0x28, 0x1d, 0xa1, 0x11, 0x04,
5931*6236dae4SAndroid Build Coastguard Worker   0x3f, 0x09, 0x69, 0x21, 0xb0, 0xa6, 0xb3, 0xf7, 0xa7, 0xe7, 0xa7, 0x87,
5932*6236dae4SAndroid Build Coastguard Worker   0xa7, 0x27, 0x4d, 0x9b, 0x58, 0xed, 0xd5, 0x88, 0x74, 0xdc, 0x62, 0x66,
5933*6236dae4SAndroid Build Coastguard Worker   0x2d, 0x01, 0x38, 0x82, 0xa8, 0xa6, 0xc3, 0xee, 0xc1, 0x85, 0x43, 0xd6,
5934*6236dae4SAndroid Build Coastguard Worker   0x02, 0x5c, 0x1e, 0x13, 0xb0, 0x60, 0xa3, 0x0a, 0x74, 0xa6, 0x09, 0x09,
5935*6236dae4SAndroid Build Coastguard Worker   0x4c, 0xd0, 0x49, 0xcc, 0xea, 0x50, 0x69, 0xcb, 0x86, 0x33, 0xa0, 0x3c,
5936*6236dae4SAndroid Build Coastguard Worker   0x08, 0x90, 0x0c, 0x78, 0x72, 0x92, 0xdc, 0xbb, 0xaa, 0x24, 0xd1, 0x16,
5937*6236dae4SAndroid Build Coastguard Worker   0x8d, 0x19, 0x4b, 0x5f, 0xb4, 0x85, 0xe1, 0x3f, 0x27, 0x48, 0x27, 0x94,
5938*6236dae4SAndroid Build Coastguard Worker   0x72, 0x63, 0x30, 0xca, 0x66, 0x53, 0xb4, 0x21, 0x61, 0xdb, 0x98, 0xa3,
5939*6236dae4SAndroid Build Coastguard Worker   0xe0, 0xc4, 0xe1, 0x32, 0x60, 0x6d, 0xb8, 0x8e, 0x04, 0xf5, 0x6f, 0xfb,
5940*6236dae4SAndroid Build Coastguard Worker   0x3e, 0x5a, 0xd1, 0xf0, 0x9f, 0xf7, 0xc8, 0xa2, 0x38, 0x59, 0xa6, 0x70,
5941*6236dae4SAndroid Build Coastguard Worker   0x24, 0x8c, 0xc9, 0x27, 0xb3, 0xa7, 0x37, 0x90, 0xd9, 0x47, 0x9d, 0x0f,
5942*6236dae4SAndroid Build Coastguard Worker   0x8a, 0xad, 0x0a, 0x3f, 0xd2, 0x72, 0x43, 0xe0, 0x6b, 0x78, 0x83, 0xe1,
5943*6236dae4SAndroid Build Coastguard Worker   0x9a, 0x99, 0x5f, 0xc7, 0xf7, 0xac, 0x05, 0x93, 0x86, 0x52, 0xce, 0xf2,
5944*6236dae4SAndroid Build Coastguard Worker   0x9c, 0x67, 0x16, 0xbd, 0xcd, 0x86, 0xa0, 0x7f, 0xc3, 0xad, 0x12, 0x7d,
5945*6236dae4SAndroid Build Coastguard Worker   0x0b, 0x57, 0x73, 0x71, 0x0b, 0xfb, 0x3a, 0xb3, 0x56, 0xa4, 0x31, 0x8f,
5946*6236dae4SAndroid Build Coastguard Worker   0xd8, 0x48, 0xc9, 0xe1, 0x18, 0x03, 0x87, 0x7d, 0x78, 0x77, 0x18, 0x25,
5947*6236dae4SAndroid Build Coastguard Worker   0x53, 0x20, 0x32, 0x6a, 0xca, 0x24, 0xab, 0xd0, 0x64, 0x76, 0xd6, 0x74,
5948*6236dae4SAndroid Build Coastguard Worker   0x7e, 0xb6, 0xda, 0x5f, 0x93, 0x39, 0x9b, 0xdd, 0x61, 0xfd, 0xf0, 0x35,
5949*6236dae4SAndroid Build Coastguard Worker   0x8a, 0xc8, 0x73, 0xe5, 0xff, 0x33, 0xbd, 0x2c, 0x59, 0x0b, 0x80, 0x55,
5950*6236dae4SAndroid Build Coastguard Worker   0x93, 0x12, 0x0c, 0xd2, 0x24, 0xb9, 0xae, 0x5a, 0x93, 0x20, 0x7e, 0x40,
5951*6236dae4SAndroid Build Coastguard Worker   0x55, 0x10, 0xe8, 0xf1, 0x2d, 0x3e, 0x8e, 0x9c, 0x6f, 0xac, 0x74, 0x9c,
5952*6236dae4SAndroid Build Coastguard Worker   0xe2, 0xf9, 0x49, 0xdf, 0x4e, 0x82, 0xbd, 0x10, 0x30, 0x8f, 0xd6, 0x30,
5953*6236dae4SAndroid Build Coastguard Worker   0xef, 0x53, 0x30, 0xcc, 0x61, 0x18, 0x21, 0xad, 0x79, 0x1e, 0x6f, 0x61,
5954*6236dae4SAndroid Build Coastguard Worker   0xff, 0xe9, 0x26, 0x83, 0xd1, 0x4d, 0x4d, 0x53, 0x35, 0xac, 0xe6, 0xaa,
5955*6236dae4SAndroid Build Coastguard Worker   0xc8, 0x37, 0xb0, 0xb7, 0x89, 0x0a, 0x84, 0xa6, 0x64, 0x6a, 0x5c, 0x9e,
5956*6236dae4SAndroid Build Coastguard Worker   0x34, 0x0c, 0x2e, 0x04, 0x1e, 0x8d, 0x36, 0x7a, 0x2f, 0xbb, 0xd1, 0x66,
5957*6236dae4SAndroid Build Coastguard Worker   0x6f, 0x03, 0xff, 0xd8, 0xec, 0x46, 0x5b, 0x34, 0xd2, 0x76, 0xc4, 0x36,
5958*6236dae4SAndroid Build Coastguard Worker   0xac, 0x6c, 0x12, 0x33, 0xa3, 0x73, 0xf6, 0x1b, 0x22, 0x40, 0x55, 0x23,
5959*6236dae4SAndroid Build Coastguard Worker   0xbd, 0x0c, 0xe7, 0x1c, 0x1e, 0xc7, 0xfd, 0xe2, 0xaf, 0xf3, 0x83, 0xca,
5960*6236dae4SAndroid Build Coastguard Worker   0x3e, 0x60, 0xf9, 0x6c, 0x0c, 0x3c, 0xc3, 0xc6, 0x99, 0x1e, 0x24, 0x11,
5961*6236dae4SAndroid Build Coastguard Worker   0xc9, 0xa8, 0xba, 0x77, 0x80, 0x49, 0x72, 0x74, 0x4e, 0x74, 0xa2, 0x14,
5962*6236dae4SAndroid Build Coastguard Worker   0x9f, 0x65, 0x25, 0xb2, 0x35, 0x1c, 0x9c, 0x84, 0x47, 0x6d, 0x12, 0x7a,
5963*6236dae4SAndroid Build Coastguard Worker   0x7d, 0xe6, 0x10, 0x1d, 0xbf, 0x05, 0xd7, 0xdf, 0x28, 0xc3, 0x35, 0x15,
5964*6236dae4SAndroid Build Coastguard Worker   0x78, 0x6f, 0xd3, 0xc9, 0x62, 0x89, 0x07, 0xe3, 0x77, 0x79, 0x23, 0x9c,
5965*6236dae4SAndroid Build Coastguard Worker   0xf1, 0x1b, 0x23, 0xa3, 0x23, 0xc9, 0xdb, 0x3f, 0xfa, 0xa1, 0x12, 0x7e,
5966*6236dae4SAndroid Build Coastguard Worker   0xbb, 0x17, 0xbd, 0x92, 0xa5, 0x10, 0x99, 0xf1, 0xe2, 0xa5, 0x07, 0x40,
5967*6236dae4SAndroid Build Coastguard Worker   0x9b, 0x07, 0x15, 0x39, 0xea, 0x54, 0xb3, 0x41, 0x9b, 0xe0, 0xe8, 0x38,
5968*6236dae4SAndroid Build Coastguard Worker   0x18, 0xa4, 0x1d, 0x76, 0x99, 0xd5, 0xc5, 0x14, 0x0c, 0xea, 0xdb, 0x2b,
5969*6236dae4SAndroid Build Coastguard Worker   0xe4, 0x68, 0xf6, 0xd7, 0xc0, 0x38, 0xeb, 0xe8, 0xac, 0xc1, 0xf1, 0x74,
5970*6236dae4SAndroid Build Coastguard Worker   0x94, 0x29, 0xe8, 0xec, 0x59, 0x75, 0xd5, 0xc1, 0x7d, 0x4c, 0xda, 0xfb,
5971*6236dae4SAndroid Build Coastguard Worker   0x87, 0x23, 0xf4, 0xf8, 0xab, 0xf4, 0x7d, 0x58, 0x02, 0xde, 0x20, 0x0d,
5972*6236dae4SAndroid Build Coastguard Worker   0xeb, 0x35, 0x5a, 0xbd, 0x4f, 0xeb, 0x35, 0x47, 0xb1, 0x3e, 0x3d, 0xdb,
5973*6236dae4SAndroid Build Coastguard Worker   0xf6, 0x69, 0xe6, 0x2e, 0x85, 0x95, 0x0a, 0xbc, 0xbf, 0xa7, 0xc5, 0x74,
5974*6236dae4SAndroid Build Coastguard Worker   0x3b, 0x52, 0xad, 0x82, 0x35, 0x23, 0xd5, 0x41, 0x12, 0xda, 0x69, 0xb3,
5975*6236dae4SAndroid Build Coastguard Worker   0x4b, 0xad, 0xe1, 0x16, 0xec, 0x19, 0x7a, 0xe2, 0xfc, 0xef, 0xa3, 0x43,
5976*6236dae4SAndroid Build Coastguard Worker   0x06, 0x84, 0x18, 0x5c, 0x53, 0x70, 0x2d, 0xbe, 0x05, 0xa1, 0x94, 0x5c,
5977*6236dae4SAndroid Build Coastguard Worker   0xe2, 0x9b, 0xe6, 0x80, 0xd3, 0xc5, 0x38, 0x2d, 0xb3, 0x09, 0x9c, 0x11,
5978*6236dae4SAndroid Build Coastguard Worker   0xb8, 0xd6, 0x58, 0x6f, 0xa0, 0xcb, 0x90, 0x67, 0xd7, 0x26, 0x34, 0x9a,
5979*6236dae4SAndroid Build Coastguard Worker   0x1e, 0x13, 0xd2, 0x95, 0xe0, 0x52, 0x48, 0x58, 0xe9, 0xb0, 0x6c, 0xc1,
5980*6236dae4SAndroid Build Coastguard Worker   0x6b, 0x45, 0x93, 0xc6, 0x99, 0x56, 0xff, 0xcc, 0xdb, 0x70, 0xfa, 0x21,
5981*6236dae4SAndroid Build Coastguard Worker   0x1c, 0x2e, 0xf3, 0x8a, 0x73, 0x10, 0xfa, 0x87, 0x67, 0xfe, 0x09, 0xef,
5982*6236dae4SAndroid Build Coastguard Worker   0xf7, 0xdf, 0x18, 0x06, 0xd9, 0x82, 0xed, 0x9e, 0x5a, 0x75, 0xce, 0x79,
5983*6236dae4SAndroid Build Coastguard Worker   0x13, 0x3d, 0x74, 0xde, 0x9b, 0xf8, 0xc3, 0xd5, 0x51, 0x99, 0x80, 0x28,
5984*6236dae4SAndroid Build Coastguard Worker   0xdd, 0x5d, 0x13, 0x0d, 0x0b, 0xc9, 0xde, 0x18, 0xd2, 0x19, 0xe4, 0xed,
5985*6236dae4SAndroid Build Coastguard Worker   0x97, 0x46, 0x48, 0xda, 0x41, 0xde, 0x7e, 0x69, 0x9e, 0xdd, 0x24, 0x4e,
5986*6236dae4SAndroid Build Coastguard Worker   0x67, 0xc6, 0xa2, 0xf5, 0xeb, 0x1a, 0xdc, 0x31, 0x42, 0x32, 0xeb, 0xc3,
5987*6236dae4SAndroid Build Coastguard Worker   0xd4, 0x30, 0x82, 0xdc, 0xe5, 0xa2, 0x76, 0xa0, 0xe1, 0x8d, 0xaf, 0x34,
5988*6236dae4SAndroid Build Coastguard Worker   0x19, 0xa2, 0x12, 0x39, 0x83, 0x36, 0x18, 0xb1, 0x44, 0x6b, 0xb8, 0x6f,
5989*6236dae4SAndroid Build Coastguard Worker   0x17, 0x1d, 0x33, 0xf1, 0xaf, 0x9e, 0x83, 0xd9, 0x89, 0x63, 0xd0, 0x6a,
5990*6236dae4SAndroid Build Coastguard Worker   0xe0, 0x53, 0xe4, 0x94, 0xc0, 0x23, 0x92, 0x8e, 0xf3, 0x94, 0xd5, 0x73,
5991*6236dae4SAndroid Build Coastguard Worker   0x32, 0x38, 0x50, 0x58, 0x59, 0x6f, 0xea, 0x0d, 0x2a, 0xbc, 0x55, 0xe5,
5992*6236dae4SAndroid Build Coastguard Worker   0xf8, 0xe1, 0x94, 0xfb, 0x48, 0xa1, 0x21, 0x05, 0x04, 0x67, 0x67, 0x6c,
5993*6236dae4SAndroid Build Coastguard Worker   0x2b, 0xfc, 0x01, 0x8a, 0xa6, 0x8a, 0x14, 0x54, 0x50, 0x02, 0xc9, 0x0b,
5994*6236dae4SAndroid Build Coastguard Worker   0x31, 0x12, 0x4d, 0xa4, 0xe2, 0xa7, 0x1c, 0x05, 0xce, 0xe8, 0xa3, 0xb4,
5995*6236dae4SAndroid Build Coastguard Worker   0x5c, 0x1e, 0xca, 0xe5, 0x99, 0x73, 0x67, 0x23, 0x45, 0xde, 0xd0, 0x8f,
5996*6236dae4SAndroid Build Coastguard Worker   0x0c, 0xb7, 0xd0, 0xe8, 0xbc, 0x05, 0xa2, 0x7f, 0x7c, 0xf5, 0xfe, 0xa8,
5997*6236dae4SAndroid Build Coastguard Worker   0xdf, 0x8f, 0xde, 0x1e, 0x9d, 0x1f, 0xbd, 0x6f, 0x28, 0x21, 0x79, 0x51,
5998*6236dae4SAndroid Build Coastguard Worker   0x4e, 0xc8, 0x24, 0x19, 0x65, 0xd5, 0x74, 0x9c, 0xdc, 0xa3, 0xad, 0x02,
5999*6236dae4SAndroid Build Coastguard Worker   0xd2, 0xf3, 0xb2, 0x44, 0xc5, 0x67, 0x92, 0xa2, 0x73, 0x63, 0x34, 0x23,
6000*6236dae4SAndroid Build Coastguard Worker   0x63, 0x1c, 0x44, 0x32, 0x2c, 0x5f, 0x7c, 0xb8, 0x68, 0x0f, 0x93, 0xe3,
6001*6236dae4SAndroid Build Coastguard Worker   0xd7, 0x5e, 0xe1, 0x74, 0x4d, 0x8a, 0x43, 0x08, 0x2f, 0x43, 0xeb, 0xb9,
6002*6236dae4SAndroid Build Coastguard Worker   0xc7, 0x13, 0x83, 0xca, 0x6b, 0xd7, 0xd1, 0x20, 0x49, 0xcf, 0xe7, 0x79,
6003*6236dae4SAndroid Build Coastguard Worker   0x82, 0xd1, 0x05, 0xc7, 0x0b, 0x25, 0x06, 0x1e, 0x42, 0xe3, 0x81, 0x49,
6004*6236dae4SAndroid Build Coastguard Worker   0x2f, 0xea, 0x6e, 0x04, 0xfb, 0xc1, 0xce, 0xef, 0xf6, 0x9c, 0x74, 0xb6,
6005*6236dae4SAndroid Build Coastguard Worker   0xd6, 0xff, 0x3b, 0xb8, 0xaf, 0xc5, 0x3f, 0xc9, 0x53, 0xe1, 0x2f, 0x18,
6006*6236dae4SAndroid Build Coastguard Worker   0x8d, 0x8d, 0x36, 0x26, 0x8f, 0xe4, 0xb1, 0x29, 0xd1, 0x15, 0xd8, 0x6c,
6007*6236dae4SAndroid Build Coastguard Worker   0xc4, 0xc3, 0x57, 0xb3, 0x0b, 0xb2, 0x44, 0xa3, 0xd5, 0xeb, 0x6e, 0xf4,
6008*6236dae4SAndroid Build Coastguard Worker   0xb6, 0x1b, 0x7d, 0xd5, 0x8d, 0xd0, 0x9f, 0xbf, 0x46, 0xef, 0x6d, 0x6e,
6009*6236dae4SAndroid Build Coastguard Worker   0x6c, 0xed, 0xb0, 0x25, 0x6b, 0x78, 0xec, 0xb5, 0xe3, 0x4b, 0xd8, 0xbc,
6010*6236dae4SAndroid Build Coastguard Worker   0x46, 0x21, 0xc1, 0x0f, 0xe1, 0xe0, 0xbd, 0x68, 0xf3, 0x2d, 0xff, 0x64,
6011*6236dae4SAndroid Build Coastguard Worker   0xe7, 0xc5, 0xee, 0xf3, 0x67, 0xf2, 0xc3, 0x96, 0x66, 0xab, 0xf3, 0x27,
6012*6236dae4SAndroid Build Coastguard Worker   0xf3, 0x46, 0xcd, 0x03, 0x9c, 0x37, 0x6a, 0x7a, 0x59, 0x0e, 0x3a, 0x14,
6013*6236dae4SAndroid Build Coastguard Worker   0xd8, 0x85, 0x62, 0x6c, 0xa3, 0x41, 0x06, 0x93, 0xbf, 0x60, 0xd3, 0x5c,
6014*6236dae4SAndroid Build Coastguard Worker   0xfc, 0x34, 0xcd, 0xa0, 0x09, 0xbc, 0x0c, 0x4c, 0x00, 0xac, 0x60, 0x36,
6015*6236dae4SAndroid Build Coastguard Worker   0x89, 0xbd, 0x5d, 0x35, 0x4e, 0x24, 0x19, 0x20, 0xff, 0xa3, 0xb6, 0x4a,
6016*6236dae4SAndroid Build Coastguard Worker   0x3a, 0x5a, 0xe8, 0x6b, 0xc6, 0xb1, 0x03, 0x6f, 0xc0, 0xdc, 0x92, 0xc1,
6017*6236dae4SAndroid Build Coastguard Worker   0x58, 0x4c, 0x98, 0x16, 0xdd, 0x41, 0x7f, 0xb6, 0x2a, 0x38, 0x3c, 0x7b,
6018*6236dae4SAndroid Build Coastguard Worker   0x5b, 0xcc, 0x50, 0xdd, 0xc4, 0x07, 0x40, 0x7b, 0xc4, 0x17, 0x98, 0xa7,
6019*6236dae4SAndroid Build Coastguard Worker   0x8d, 0xff, 0x3d, 0xbb, 0x93, 0xfb, 0xb8, 0x31, 0x0a, 0x4c, 0x0d, 0xfe,
6020*6236dae4SAndroid Build Coastguard Worker   0x39, 0x05, 0x56, 0xe2, 0xe9, 0xf4, 0xda, 0x2e, 0x0e, 0x32, 0xde, 0x3d,
6021*6236dae4SAndroid Build Coastguard Worker   0x4e, 0x44, 0xc1, 0x42, 0x4a, 0xc8, 0xd9, 0x69, 0x9f, 0x82, 0x23, 0x60,
6022*6236dae4SAndroid Build Coastguard Worker   0x92, 0xc1, 0x40, 0x7f, 0x9f, 0x01, 0x0b, 0x01, 0x53, 0xe2, 0x8b, 0x68,
6023*6236dae4SAndroid Build Coastguard Worker   0x77, 0x38, 0x56, 0x3f, 0xf0, 0x1e, 0x5d, 0xc4, 0x62, 0x8e, 0xc9, 0x27,
6024*6236dae4SAndroid Build Coastguard Worker   0xc5, 0x34, 0xa2, 0xdb, 0xd0, 0xb5, 0xa1, 0xd8, 0x0d, 0x65, 0xde, 0x89,
6025*6236dae4SAndroid Build Coastguard Worker   0x56, 0x3f, 0x5f, 0xeb, 0x92, 0x39, 0x65, 0x2c, 0x2b, 0xc7, 0xaa, 0x12,
6026*6236dae4SAndroid Build Coastguard Worker   0x5b, 0xc7, 0x39, 0x95, 0x57, 0x14, 0x98, 0x21, 0xff, 0x14, 0xde, 0x84,
6027*6236dae4SAndroid Build Coastguard Worker   0xa0, 0x6a, 0xc2, 0xb9, 0x82, 0x8f, 0xd8, 0xc0, 0x08, 0xd2, 0x8f, 0x6c,
6028*6236dae4SAndroid Build Coastguard Worker   0x39, 0xbb, 0x4d, 0x56, 0x37, 0x9e, 0x02, 0x3d, 0x0b, 0x4b, 0x3a, 0xb4,
6029*6236dae4SAndroid Build Coastguard Worker   0xb5, 0x1b, 0x44, 0x6a, 0xef, 0x99, 0x47, 0x34, 0x74, 0xa7, 0x50, 0x1c,
6030*6236dae4SAndroid Build Coastguard Worker   0xce, 0x90, 0x2d, 0xea, 0x0c, 0x92, 0xb2, 0x63, 0x8d, 0x49, 0x3e, 0x97,
6031*6236dae4SAndroid Build Coastguard Worker   0x78, 0x3a, 0xca, 0xf4, 0x92, 0xec, 0x05, 0xa6, 0x2c, 0xae, 0xf2, 0x4f,
6032*6236dae4SAndroid Build Coastguard Worker   0xce, 0x2a, 0x75, 0x80, 0x78, 0x80, 0x8f, 0x64, 0x15, 0x87, 0x50, 0x2e,
6033*6236dae4SAndroid Build Coastguard Worker   0x40, 0x01, 0xc5, 0x03, 0xa3, 0x2e, 0x58, 0x72, 0xc8, 0x09, 0xb7, 0x04,
6034*6236dae4SAndroid Build Coastguard Worker   0x98, 0xc5, 0x71, 0xcd, 0xc2, 0x31, 0x41, 0x55, 0x9e, 0x55, 0x1f, 0x7c,
6035*6236dae4SAndroid Build Coastguard Worker   0x32, 0xae, 0xd0, 0x24, 0xad, 0x80, 0xf6, 0xe8, 0x3e, 0x9e, 0x4a, 0x84,
6036*6236dae4SAndroid Build Coastguard Worker   0xea, 0x94, 0xc2, 0x81, 0xc6, 0x4a, 0x3a, 0x15, 0x1d, 0x95, 0x44, 0xb0,
6037*6236dae4SAndroid Build Coastguard Worker   0xa8, 0x4d, 0x39, 0x99, 0x81, 0xf5, 0x2d, 0x7c, 0x38, 0x81, 0xed, 0x82,
6038*6236dae4SAndroid Build Coastguard Worker   0xc3, 0xf6, 0x16, 0x09, 0x85, 0xca, 0x37, 0x2e, 0x4b, 0xd5, 0x5a, 0xe2,
6039*6236dae4SAndroid Build Coastguard Worker   0x8a, 0x0c, 0xcf, 0xbc, 0xd5, 0x65, 0x93, 0xd1, 0x28, 0x23, 0x4b, 0x66,
6040*6236dae4SAndroid Build Coastguard Worker   0x8c, 0xee, 0x99, 0x59, 0x4a, 0x0e, 0x74, 0x21, 0xea, 0xc4, 0xdd, 0x46,
6041*6236dae4SAndroid Build Coastguard Worker   0x14, 0x1e, 0x57, 0x68, 0xa6, 0x80, 0x2e, 0x45, 0x8e, 0x84, 0x18, 0xbf,
6042*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x21, 0x85, 0x71, 0x12, 0xe9, 0xb7, 0xe4, 0x53, 0xb0, 0x8e, 0x91,
6043*6236dae4SAndroid Build Coastguard Worker   0xeb, 0x5a, 0xec, 0x92, 0xf1, 0x65, 0xfd, 0xdc, 0xa4, 0x30, 0xb4, 0x55,
6044*6236dae4SAndroid Build Coastguard Worker   0xbe, 0x04, 0x76, 0x1b, 0x7d, 0x81, 0xe2, 0x80, 0x20, 0x4f, 0x0e, 0x1d,
6045*6236dae4SAndroid Build Coastguard Worker   0xd7, 0x8a, 0xa7, 0xd6, 0x05, 0xda, 0xe2, 0x93, 0x97, 0x57, 0xfa, 0xa8,
6046*6236dae4SAndroid Build Coastguard Worker   0xe3, 0x15, 0x4a, 0xd0, 0xaf, 0x00, 0xba, 0x32, 0xc6, 0x8a, 0x46, 0xea,
6047*6236dae4SAndroid Build Coastguard Worker   0xb4, 0x28, 0x4a, 0x16, 0x64, 0xe3, 0x02, 0xf8, 0xb8, 0xc3, 0x1e, 0x57,
6048*6236dae4SAndroid Build Coastguard Worker   0x99, 0x36, 0xce, 0x1a, 0x67, 0x89, 0x14, 0xe7, 0x00, 0xaa, 0x55, 0x9b,
6049*6236dae4SAndroid Build Coastguard Worker   0xcc, 0xa4, 0x85, 0x5e, 0xd5, 0x83, 0x53, 0x73, 0x6e, 0x71, 0xa2, 0x91,
6050*6236dae4SAndroid Build Coastguard Worker   0x5e, 0xfb, 0x4a, 0x79, 0x76, 0x55, 0x14, 0xc4, 0xd2, 0x74, 0x18, 0xc9,
6051*6236dae4SAndroid Build Coastguard Worker   0xdd, 0xee, 0xd0, 0x9e, 0x87, 0xa9, 0xc4, 0xa1, 0xde, 0x22, 0x54, 0x94,
6052*6236dae4SAndroid Build Coastguard Worker   0x4d, 0x48, 0x71, 0x22, 0x6e, 0x31, 0x1b, 0x64, 0x43, 0x1b, 0x01, 0x57,
6053*6236dae4SAndroid Build Coastguard Worker   0xee, 0x7d, 0x38, 0x20, 0x90, 0xb0, 0xc7, 0xd2, 0xcc, 0x8b, 0x9c, 0x20,
6054*6236dae4SAndroid Build Coastguard Worker   0x27, 0xb4, 0x96, 0xf8, 0x26, 0xc2, 0x23, 0x98, 0xc3, 0x2a, 0x13, 0xfc,
6055*6236dae4SAndroid Build Coastguard Worker   0xc5, 0xc9, 0x8d, 0x73, 0x94, 0x30, 0x10, 0x95, 0xa3, 0xa3, 0xad, 0x4b,
6056*6236dae4SAndroid Build Coastguard Worker   0x43, 0x0c, 0x8a, 0x62, 0x9c, 0x26, 0x76, 0x79, 0x78, 0x1f, 0xa4, 0x39,
6057*6236dae4SAndroid Build Coastguard Worker   0x72, 0xbc, 0xec, 0x2a, 0x88, 0x84, 0xa9, 0x91, 0xb7, 0xa0, 0xf1, 0x46,
6058*6236dae4SAndroid Build Coastguard Worker   0xc9, 0x65, 0x92, 0x19, 0x9e, 0x93, 0xd3, 0x31, 0x8a, 0xf4, 0xe1, 0xbc,
6059*6236dae4SAndroid Build Coastguard Worker   0x90, 0xe7, 0x71, 0xbb, 0xd0, 0x87, 0x27, 0x72, 0x6b, 0x56, 0xf1, 0x11,
6060*6236dae4SAndroid Build Coastguard Worker   0x82, 0x55, 0x81, 0xe4, 0xa9, 0xac, 0x93, 0x86, 0xfc, 0x9e, 0xc6, 0x51,
6061*6236dae4SAndroid Build Coastguard Worker   0x44, 0x9e, 0x5e, 0x74, 0x9a, 0x92, 0xf0, 0x25, 0x17, 0x28, 0x8c, 0xd8,
6062*6236dae4SAndroid Build Coastguard Worker   0xe9, 0x45, 0x6f, 0x8a, 0x5b, 0xb4, 0x31, 0xbb, 0xec, 0xa2, 0xce, 0x30,
6063*6236dae4SAndroid Build Coastguard Worker   0x7e, 0x5b, 0xc1, 0x13, 0x60, 0x17, 0x81, 0x5e, 0x0f, 0xb4, 0x24, 0xf7,
6064*6236dae4SAndroid Build Coastguard Worker   0x19, 0xfd, 0xcc, 0x89, 0x72, 0x00, 0x97, 0xdf, 0xf2, 0x71, 0xd4, 0x45,
6065*6236dae4SAndroid Build Coastguard Worker   0x98, 0xdd, 0xbc, 0x68, 0x9d, 0x8a, 0x38, 0x4e, 0x06, 0xa0, 0xdc, 0xc2,
6066*6236dae4SAndroid Build Coastguard Worker   0xe4, 0xe2, 0x59, 0x9e, 0xdd, 0xc5, 0x55, 0x31, 0xbc, 0x86, 0xc5, 0xee,
6067*6236dae4SAndroid Build Coastguard Worker   0x4f, 0x93, 0xfa, 0xea, 0xf3, 0x96, 0xde, 0xb2, 0x8a, 0x32, 0x7a, 0x2d,
6068*6236dae4SAndroid Build Coastguard Worker   0x8a, 0x0e, 0xd9, 0xdf, 0x88, 0x12, 0xa7, 0x64, 0x5e, 0x06, 0x2a, 0xc9,
6069*6236dae4SAndroid Build Coastguard Worker   0x28, 0xd1, 0x07, 0x18, 0x05, 0xf8, 0x04, 0x34, 0x37, 0xd8, 0x3a, 0x1a,
6070*6236dae4SAndroid Build Coastguard Worker   0xac, 0xab, 0x62, 0xaa, 0x35, 0x1c, 0x85, 0xa6, 0x8d, 0x29, 0x0f, 0x6c,
6071*6236dae4SAndroid Build Coastguard Worker   0x89, 0x46, 0x7b, 0x14, 0xbd, 0x2b, 0xea, 0x74, 0x0f, 0xff, 0x0d, 0xe2,
6072*6236dae4SAndroid Build Coastguard Worker   0xa1, 0xa6, 0xa5, 0xc8, 0x8d, 0x05, 0x33, 0x62, 0x41, 0x87, 0xfc, 0x95,
6073*6236dae4SAndroid Build Coastguard Worker   0xf8, 0xb6, 0x10, 0x7f, 0x5f, 0x3e, 0x1a, 0xa9, 0x13, 0x5a, 0xb7, 0x28,
6074*6236dae4SAndroid Build Coastguard Worker   0x5a, 0xf9, 0x62, 0xa5, 0x1b, 0x5d, 0x31, 0x39, 0x69, 0x40, 0x5e, 0x23,
6075*6236dae4SAndroid Build Coastguard Worker   0xec, 0xfc, 0x25, 0x18, 0xcf, 0x79, 0xdd, 0x1e, 0xee, 0x8a, 0xae, 0x40,
6076*6236dae4SAndroid Build Coastguard Worker   0x64, 0x77, 0x8e, 0x83, 0x10, 0xf1, 0xc5, 0x0e, 0x35, 0xa1, 0x89, 0xde,
6077*6236dae4SAndroid Build Coastguard Worker   0x27, 0xad, 0xd7, 0x8e, 0x98, 0x7b, 0xf7, 0xda, 0x79, 0x18, 0x9c, 0x54,
6078*6236dae4SAndroid Build Coastguard Worker   0x11, 0x26, 0x36, 0xff, 0x87, 0xd6, 0x87, 0xb1, 0x82, 0xaa, 0x19, 0xfb,
6079*6236dae4SAndroid Build Coastguard Worker   0x69, 0x7f, 0xe1, 0x60, 0x84, 0xe2, 0x01, 0xa8, 0xfb, 0xbc, 0xb7, 0xbb,
6080*6236dae4SAndroid Build Coastguard Worker   0xdd, 0xdb, 0x68, 0x6c, 0xe5, 0xb8, 0x8e, 0xab, 0x9b, 0x61, 0xb4, 0x4f,
6081*6236dae4SAndroid Build Coastguard Worker   0x8e, 0x5f, 0x64, 0xb0, 0xe0, 0x16, 0x82, 0x9a, 0x4f, 0x77, 0x9a, 0xf0,
6082*6236dae4SAndroid Build Coastguard Worker   0x06, 0xb3, 0x3d, 0x13, 0x59, 0x47, 0x20, 0xc7, 0x1c, 0x05, 0xeb, 0x70,
6083*6236dae4SAndroid Build Coastguard Worker   0xe2, 0x3d, 0xba, 0x8a, 0x02, 0x9a, 0xac, 0xf9, 0x0e, 0x58, 0x76, 0x19,
6084*6236dae4SAndroid Build Coastguard Worker   0xea, 0xf5, 0x35, 0x29, 0x2b, 0xe9, 0x5d, 0xc6, 0x46, 0xa7, 0x0e, 0x37,
6085*6236dae4SAndroid Build Coastguard Worker   0x84, 0x83, 0x9e, 0xca, 0x95, 0x4c, 0x82, 0x84, 0xbc, 0x34, 0x83, 0xf6,
6086*6236dae4SAndroid Build Coastguard Worker   0x70, 0x28, 0x2a, 0x7a, 0xd1, 0xc1, 0x05, 0xe9, 0x12, 0xe6, 0x7e, 0x19,
6087*6236dae4SAndroid Build Coastguard Worker   0x19, 0xed, 0x92, 0x53, 0x03, 0x78, 0x30, 0x19, 0x81, 0x7c, 0x8c, 0x23,
6088*6236dae4SAndroid Build Coastguard Worker   0x91, 0xf6, 0x73, 0x67, 0x47, 0x67, 0x17, 0x35, 0xad, 0x0c, 0x77, 0x13,
6089*6236dae4SAndroid Build Coastguard Worker   0x03, 0x02, 0x20, 0x01, 0x27, 0xc5, 0x88, 0xbc, 0xcb, 0xde, 0x1e, 0xf6,
6090*6236dae4SAndroid Build Coastguard Worker   0x4d, 0x30, 0xb0, 0xd3, 0x71, 0x06, 0x59, 0xc5, 0xd0, 0x30, 0xb0, 0x40,
6091*6236dae4SAndroid Build Coastguard Worker   0x7e, 0x59, 0x5f, 0xad, 0xd9, 0x70, 0x97, 0x1a, 0xda, 0x30, 0x11, 0x36,
6092*6236dae4SAndroid Build Coastguard Worker   0x5b, 0xda, 0x7c, 0x4e, 0xb9, 0x0a, 0xb4, 0xff, 0x3f, 0xcd, 0xaa, 0x9a,
6093*6236dae4SAndroid Build Coastguard Worker   0x7c, 0xe4, 0x72, 0xaf, 0xf2, 0x4a, 0x60, 0x66, 0x93, 0x74, 0x52, 0x94,
6094*6236dae4SAndroid Build Coastguard Worker   0xf7, 0xde, 0x44, 0x8e, 0x2f, 0x98, 0xed, 0x64, 0xa3, 0xb2, 0x8a, 0x85,
6095*6236dae4SAndroid Build Coastguard Worker   0xa9, 0x46, 0x8b, 0x51, 0xad, 0xae, 0xba, 0x8d, 0x68, 0x10, 0x29, 0x23,
6096*6236dae4SAndroid Build Coastguard Worker   0xc6, 0xcc, 0x6a, 0xd3, 0x83, 0x02, 0x80, 0x22, 0x3f, 0xd9, 0xc7, 0x3e,
6097*6236dae4SAndroid Build Coastguard Worker   0x90, 0xd0, 0xde, 0x38, 0xa9, 0x6a, 0xba, 0x84, 0x95, 0xac, 0xf4, 0x21,
6098*6236dae4SAndroid Build Coastguard Worker   0x14, 0xc7, 0xbc, 0xac, 0xa5, 0xf9, 0x5c, 0x36, 0x1e, 0xfe, 0x87, 0xf1,
6099*6236dae4SAndroid Build Coastguard Worker   0xca, 0x25, 0xf9, 0xfa, 0xd9, 0x4e, 0x6f, 0xb3, 0xc1, 0xd7, 0xf9, 0x3d,
6100*6236dae4SAndroid Build Coastguard Worker   0x66, 0xa7, 0x84, 0xc5, 0x11, 0xda, 0x7a, 0x95, 0xb5, 0xf4, 0xb2, 0xcb,
6101*6236dae4SAndroid Build Coastguard Worker   0x59, 0x49, 0x9a, 0xa0, 0x24, 0xb4, 0x68, 0x1e, 0x0b, 0xea, 0x2e, 0x57,
6102*6236dae4SAndroid Build Coastguard Worker   0x05, 0x25, 0x83, 0xc0, 0x9d, 0x97, 0x8e, 0x2f, 0xba, 0x01, 0x7f, 0x9e,
6103*6236dae4SAndroid Build Coastguard Worker   0x4a, 0x6b, 0x14, 0xae, 0x68, 0x47, 0xd0, 0x50, 0x79, 0x2a, 0x5a, 0x26,
6104*6236dae4SAndroid Build Coastguard Worker   0xfa, 0x2d, 0x23, 0xcc, 0x7d, 0x88, 0x86, 0xe3, 0x24, 0x9b, 0x88, 0x15,
6105*6236dae4SAndroid Build Coastguard Worker   0x2b, 0xc6, 0x72, 0xcf, 0x73, 0x40, 0x70, 0x7c, 0x83, 0x0c, 0xef, 0x01,
6106*6236dae4SAndroid Build Coastguard Worker   0x86, 0x57, 0xca, 0x0a, 0x2f, 0x50, 0xf6, 0x75, 0x88, 0x72, 0xcb, 0x7e,
6107*6236dae4SAndroid Build Coastguard Worker   0x84, 0xab, 0x74, 0x78, 0xad, 0x72, 0x50, 0x35, 0xc3, 0xb6, 0x74, 0xc3,
6108*6236dae4SAndroid Build Coastguard Worker   0x34, 0x17, 0x8a, 0xe1, 0xd4, 0x57, 0xe8, 0x50, 0x2e, 0xc0, 0x4c, 0xc5,
6109*6236dae4SAndroid Build Coastguard Worker   0x10, 0x2d, 0x98, 0x6b, 0xb3, 0x21, 0x59, 0x71, 0x28, 0x14, 0xe1, 0x5a,
6110*6236dae4SAndroid Build Coastguard Worker   0x2d, 0x93, 0x48, 0x65, 0x29, 0x28, 0x4b, 0x60, 0xb4, 0x8d, 0xe2, 0xba,
6111*6236dae4SAndroid Build Coastguard Worker   0xcc, 0xa6, 0xc1, 0xd9, 0x91, 0x0f, 0x44, 0xae, 0x67, 0x57, 0x91, 0xac,
6112*6236dae4SAndroid Build Coastguard Worker   0xc4, 0x25, 0x43, 0x11, 0x17, 0x8e, 0xc1, 0x0c, 0x5b, 0xd4, 0x6c, 0xb3,
6113*6236dae4SAndroid Build Coastguard Worker   0x38, 0xd1, 0xb6, 0x8b, 0xce, 0x27, 0xb8, 0xd1, 0xf5, 0xe6, 0x1e, 0x89,
6114*6236dae4SAndroid Build Coastguard Worker   0x1f, 0x1d, 0x76, 0x10, 0xac, 0xac, 0x6c, 0x88, 0xda, 0x68, 0x3c, 0xca,
6115*6236dae4SAndroid Build Coastguard Worker   0x2e, 0x53, 0x4c, 0x1f, 0xc2, 0x3b, 0xb3, 0x1e, 0x83, 0x02, 0x13, 0x38,
6116*6236dae4SAndroid Build Coastguard Worker   0x31, 0xf0, 0xab, 0xf4, 0xb2, 0xa8, 0x51, 0x5d, 0xf0, 0x18, 0x8f, 0x3d,
6117*6236dae4SAndroid Build Coastguard Worker   0x83, 0x86, 0x27, 0xd4, 0x3d, 0xe5, 0xaa, 0x4e, 0x19, 0xab, 0xcd, 0xf0,
6118*6236dae4SAndroid Build Coastguard Worker   0x79, 0x31, 0x95, 0x99, 0xf3, 0xc9, 0x3e, 0x6f, 0xef, 0x3a, 0x8c, 0x36,
6119*6236dae4SAndroid Build Coastguard Worker   0x24, 0x8b, 0x07, 0xb5, 0x3b, 0x55, 0x2e, 0x55, 0x2b, 0x47, 0xf1, 0x82,
6120*6236dae4SAndroid Build Coastguard Worker   0x8a, 0x6c, 0x7d, 0x9b, 0x0d, 0x53, 0xf5, 0x6b, 0x9a, 0xcc, 0x82, 0x71,
6121*6236dae4SAndroid Build Coastguard Worker   0xe6, 0xdf, 0x1a, 0x13, 0x3c, 0xe1, 0xf8, 0x1e, 0xeb, 0xce, 0x18, 0xa2,
6122*6236dae4SAndroid Build Coastguard Worker   0xbb, 0xcd, 0x50, 0xb7, 0x3e, 0xbe, 0x90, 0x6b, 0x0e, 0xcf, 0x2f, 0x5f,
6123*6236dae4SAndroid Build Coastguard Worker   0x2d, 0x49, 0x99, 0x51, 0x3c, 0x12, 0x03, 0xf8, 0xea, 0x22, 0x09, 0x9d,
6124*6236dae4SAndroid Build Coastguard Worker   0x58, 0x9e, 0x37, 0xbd, 0x2e, 0xd6, 0x86, 0xb5, 0x32, 0xe8, 0xb8, 0x5e,
6125*6236dae4SAndroid Build Coastguard Worker   0x90, 0x97, 0xc4, 0xa3, 0x13, 0x89, 0xc5, 0xcb, 0x94, 0x22, 0xb7, 0xac,
6126*6236dae4SAndroid Build Coastguard Worker   0xa5, 0xcc, 0x50, 0x55, 0xc4, 0x64, 0xaf, 0xa5, 0x8f, 0xb3, 0x10, 0x9b,
6127*6236dae4SAndroid Build Coastguard Worker   0xdf, 0x86, 0xed, 0xde, 0x9b, 0xde, 0x8e, 0x1e, 0x73, 0xa8, 0xfb, 0x69,
6128*6236dae4SAndroid Build Coastguard Worker   0xca, 0xe6, 0x04, 0xd9, 0x1e, 0x77, 0xf7, 0x3a, 0x52, 0x57, 0x79, 0x82,
6129*6236dae4SAndroid Build Coastguard Worker   0x15, 0x37, 0xe1, 0x0a, 0xe7, 0xcc, 0x27, 0xf8, 0x04, 0x58, 0x5a, 0xa9,
6130*6236dae4SAndroid Build Coastguard Worker   0xc7, 0x1c, 0xab, 0x68, 0x76, 0xa1, 0x77, 0x6b, 0x4d, 0x93, 0x1f, 0x52,
6131*6236dae4SAndroid Build Coastguard Worker   0x49, 0xff, 0x30, 0x59, 0x6a, 0x24, 0x34, 0x51, 0xec, 0x8a, 0x5c, 0xe0,
6132*6236dae4SAndroid Build Coastguard Worker   0x71, 0xc2, 0x97, 0x04, 0xd8, 0x20, 0x98, 0xd3, 0x21, 0x49, 0x6b, 0x7a,
6133*6236dae4SAndroid Build Coastguard Worker   0x0e, 0xe0, 0x18, 0xa0, 0xb3, 0x4c, 0xd3, 0xa7, 0x30, 0x57, 0x41, 0x76,
6134*6236dae4SAndroid Build Coastguard Worker   0x50, 0xc4, 0x00, 0x3d, 0x8e, 0x36, 0x5e, 0x6b, 0x38, 0xe4, 0x45, 0xba,
6135*6236dae4SAndroid Build Coastguard Worker   0xfe, 0xba, 0xac, 0xc9, 0xb1, 0x34, 0x1d, 0x72, 0xe2, 0x82, 0x68, 0x37,
6136*6236dae4SAndroid Build Coastguard Worker   0x7c, 0x05, 0xd2, 0x24, 0x2f, 0xc6, 0xc9, 0x25, 0x9f, 0xc3, 0xec, 0x32,
6137*6236dae4SAndroid Build Coastguard Worker   0x2f, 0xca, 0xb4, 0xbd, 0x58, 0x10, 0x1c, 0x55, 0x01, 0x77, 0x0f, 0x79,
6138*6236dae4SAndroid Build Coastguard Worker   0xf3, 0xd8, 0x6f, 0x54, 0x45, 0xab, 0xc0, 0xb3, 0xe3, 0x19, 0x29, 0x22,
6139*6236dae4SAndroid Build Coastguard Worker   0xa7, 0xb0, 0xb0, 0x7e, 0xff, 0xcd, 0xda, 0xb2, 0x1b, 0xca, 0x94, 0x8a,
6140*6236dae4SAndroid Build Coastguard Worker   0x69, 0x15, 0x1c, 0xda, 0x51, 0x6a, 0x47, 0x17, 0x5e, 0xf2, 0x89, 0x2b,
6141*6236dae4SAndroid Build Coastguard Worker   0x89, 0x6f, 0x2b, 0xb0, 0xee, 0x2e, 0x6f, 0x76, 0x40, 0x7b, 0xe2, 0x84,
6142*6236dae4SAndroid Build Coastguard Worker   0x8a, 0x72, 0xf3, 0xfb, 0x3d, 0xfd, 0xeb, 0xd6, 0xf7, 0x7b, 0x60, 0x7f,
6143*6236dae4SAndroid Build Coastguard Worker   0x02, 0x5f, 0x7e, 0xbf, 0x87, 0x73, 0x85, 0x43, 0xf3, 0xe3, 0x8f, 0x3f,
6144*6236dae4SAndroid Build Coastguard Worker   0x7e, 0xee, 0x33, 0x66, 0x74, 0xf0, 0x6d, 0x3f, 0xfa, 0x66, 0x87, 0x12,
6145*6236dae4SAndroid Build Coastguard Worker   0x2a, 0x28, 0xe3, 0xae, 0x2d, 0xab, 0x25, 0x1f, 0x43, 0xef, 0x7d, 0x6f,
6146*6236dae4SAndroid Build Coastguard Worker   0x75, 0x64, 0xcb, 0xe9, 0x57, 0x8d, 0x06, 0xc7, 0x46, 0x14, 0x28, 0x58,
6147*6236dae4SAndroid Build Coastguard Worker   0x2c, 0x4c, 0x49, 0x0b, 0x97, 0x80, 0xf0, 0xbd, 0x68, 0x37, 0x97, 0x05,
6148*6236dae4SAndroid Build Coastguard Worker   0xec, 0xe8, 0xd5, 0xc4, 0xf7, 0xef, 0xe5, 0xbc, 0x47, 0xe4, 0x79, 0x9f,
6149*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x97, 0x2c, 0xa6, 0x9b, 0x93, 0x12, 0x11, 0x1c, 0x9c, 0x0c, 0x2f,
6150*6236dae4SAndroid Build Coastguard Worker   0x7b, 0xc1, 0x4c, 0x1c, 0xfd, 0x08, 0x0c, 0x11, 0x30, 0xa7, 0x93, 0xe9,
6151*6236dae4SAndroid Build Coastguard Worker   0x15, 0x72, 0x3f, 0x7c, 0xd4, 0x57, 0x8b, 0xe9, 0x82, 0xa8, 0xc0, 0x34,
6152*6236dae4SAndroid Build Coastguard Worker   0xc7, 0x1c, 0x9e, 0x61, 0x31, 0x1e, 0x73, 0x74, 0x3f, 0x5a, 0xe5, 0xcf,
6153*6236dae4SAndroid Build Coastguard Worker   0xc4, 0xc3, 0x62, 0x94, 0xae, 0xf1, 0xac, 0x6b, 0xfb, 0x71, 0x52, 0x52,
6154*6236dae4SAndroid Build Coastguard Worker   0xb2, 0x36, 0x43, 0x16, 0x93, 0xac, 0xae, 0x35, 0xfb, 0x87, 0x2c, 0x91,
6155*6236dae4SAndroid Build Coastguard Worker   0x7c, 0x44, 0x93, 0x09, 0xae, 0x43, 0xb6, 0xed, 0x91, 0x0b, 0xb9, 0x98,
6156*6236dae4SAndroid Build Coastguard Worker   0xe5, 0x3c, 0x31, 0xdc, 0x8b, 0xf6, 0x8d, 0x85, 0x7b, 0x43, 0x94, 0x07,
6157*6236dae4SAndroid Build Coastguard Worker   0x4d, 0x6e, 0x5c, 0xcc, 0x46, 0xd1, 0xaa, 0x0c, 0xde, 0x9e, 0xbe, 0x7e,
6158*6236dae4SAndroid Build Coastguard Worker   0x53, 0xe6, 0xaf, 0x33, 0x0e, 0x89, 0xc2, 0x85, 0xf3, 0x7f, 0x48, 0x86,
6159*6236dae4SAndroid Build Coastguard Worker   0x19, 0xd6, 0xed, 0xc0, 0x5f, 0xf7, 0x92, 0xc9, 0xcf, 0x7b, 0x29, 0x68,
6160*6236dae4SAndroid Build Coastguard Worker   0x3d, 0xf1, 0xd6, 0x5e, 0x5a, 0x75, 0x54, 0xb2, 0x75, 0xae, 0xd3, 0x7b,
6161*6236dae4SAndroid Build Coastguard Worker   0xe0, 0x5d, 0xe0, 0x85, 0xba, 0xb3, 0xa4, 0xd2, 0xf2, 0x7c, 0xb7, 0xa9,
6162*6236dae4SAndroid Build Coastguard Worker   0x8c, 0x93, 0x78, 0x7b, 0x8c, 0xca, 0x82, 0x4a, 0x07, 0x79, 0xbf, 0xbe,
6163*6236dae4SAndroid Build Coastguard Worker   0x64, 0x81, 0xd8, 0xe4, 0x3a, 0xe3, 0x5a, 0xc1, 0x6c, 0x8f, 0xf6, 0x6d,
6164*6236dae4SAndroid Build Coastguard Worker   0x83, 0xc2, 0x04, 0x93, 0x68, 0x7a, 0x46, 0xdd, 0xc0, 0x27, 0x35, 0x97,
6165*6236dae4SAndroid Build Coastguard Worker   0x87, 0x2f, 0xac, 0x96, 0xfe, 0x38, 0x23, 0xaf, 0x30, 0x51, 0xb0, 0x3d,
6166*6236dae4SAndroid Build Coastguard Worker   0x1c, 0x06, 0xc5, 0x4d, 0x70, 0x5c, 0x8d, 0xd7, 0x8c, 0x2c, 0x75, 0x14,
6167*6236dae4SAndroid Build Coastguard Worker   0x86, 0x25, 0xa6, 0x4f, 0xa1, 0x13, 0x2a, 0xbd, 0xc9, 0x8a, 0x59, 0x05,
6168*6236dae4SAndroid Build Coastguard Worker   0xa3, 0x80, 0xa2, 0xa0, 0x63, 0x23, 0x6f, 0x78, 0x6e, 0xee, 0x9a, 0x52,
6169*6236dae4SAndroid Build Coastguard Worker   0xbe, 0xc1, 0x58, 0xc6, 0xac, 0x64, 0x8a, 0xe1, 0x87, 0x75, 0xb2, 0xd5,
6170*6236dae4SAndroid Build Coastguard Worker   0x6a, 0x86, 0xee, 0xf9, 0xca, 0xe8, 0x04, 0x78, 0x21, 0xb4, 0x67, 0xc7,
6171*6236dae4SAndroid Build Coastguard Worker   0x6a, 0x03, 0xa6, 0x3d, 0x58, 0xed, 0x60, 0xed, 0x37, 0xbd, 0xf6, 0x66,
6172*6236dae4SAndroid Build Coastguard Worker   0xc4, 0x92, 0x7b, 0x98, 0x28, 0x84, 0xf1, 0x73, 0x73, 0x65, 0x3d, 0xe5,
6173*6236dae4SAndroid Build Coastguard Worker   0xde, 0xa3, 0x37, 0x5d, 0xf6, 0x00, 0xdd, 0x3f, 0x2d, 0x6b, 0x36, 0xd5,
6174*6236dae4SAndroid Build Coastguard Worker   0x3c, 0x2b, 0xed, 0xfc, 0xa4, 0x1f, 0xe2, 0x92, 0x66, 0xe2, 0x24, 0xbe,
6175*6236dae4SAndroid Build Coastguard Worker   0x8f, 0xaa, 0x59, 0xa2, 0xd7, 0x11, 0x3c, 0x05, 0xdb, 0xe4, 0xf8, 0x4a,
6176*6236dae4SAndroid Build Coastguard Worker   0x5c, 0x0f, 0xfe, 0x34, 0xc5, 0x2c, 0x4b, 0x96, 0x9c, 0x7c, 0xd7, 0xa1,
6177*6236dae4SAndroid Build Coastguard Worker   0xc6, 0x83, 0x96, 0x02, 0x9a, 0x46, 0x26, 0xa1, 0xe3, 0xf0, 0xc0, 0x1d,
6178*6236dae4SAndroid Build Coastguard Worker   0x97, 0xd2, 0x78, 0xda, 0x37, 0xa6, 0xf3, 0xfb, 0xd5, 0x6a, 0x8d, 0x55,
6179*6236dae4SAndroid Build Coastguard Worker   0x9e, 0x01, 0x99, 0x31, 0x67, 0x47, 0x6f, 0xc9, 0x2b, 0x95, 0x00, 0x43,
6180*6236dae4SAndroid Build Coastguard Worker   0xbe, 0xd3, 0x00, 0x84, 0x66, 0x63, 0x63, 0xd0, 0xb8, 0x91, 0xa6, 0x66,
6181*6236dae4SAndroid Build Coastguard Worker   0x8d, 0x3e, 0xca, 0x86, 0x66, 0x9e, 0xa5, 0xa9, 0x71, 0xda, 0x65, 0x46,
6182*6236dae4SAndroid Build Coastguard Worker   0x19, 0x4b, 0x6d, 0x0e, 0xae, 0xef, 0xa7, 0x92, 0x6c, 0x35, 0xab, 0x1a,
6183*6236dae4SAndroid Build Coastguard Worker   0x2e, 0x61, 0xe3, 0x1f, 0xaa, 0xc9, 0xbe, 0x47, 0x6f, 0x95, 0x33, 0xa6,
6184*6236dae4SAndroid Build Coastguard Worker   0xb7, 0xf5, 0x34, 0x2d, 0xd4, 0x1a, 0x2f, 0xf3, 0xec, 0x67, 0xb1, 0x7e,
6185*6236dae4SAndroid Build Coastguard Worker   0xd3, 0xfc, 0x26, 0x2b, 0x8b, 0x9c, 0x04, 0x1f, 0x05, 0xcf, 0x07, 0x62,
6186*6236dae4SAndroid Build Coastguard Worker   0xfb, 0x81, 0x62, 0xbc, 0x72, 0xf8, 0xe1, 0xfd, 0xc9, 0xc7, 0xc3, 0x83,
6187*6236dae4SAndroid Build Coastguard Worker   0x8f, 0x5f, 0x7e, 0x78, 0xf7, 0xea, 0xe4, 0x68, 0xa5, 0x9d, 0x92, 0x70,
6188*6236dae4SAndroid Build Coastguard Worker   0xc1, 0xe1, 0x20, 0xbc, 0xca, 0x2b, 0xf4, 0x79, 0xa8, 0x3d, 0xc1, 0x23,
6189*6236dae4SAndroid Build Coastguard Worker   0x73, 0x0a, 0x0e, 0x99, 0xf8, 0x94, 0x36, 0x46, 0x7f, 0x23, 0x19, 0x2a,
6190*6236dae4SAndroid Build Coastguard Worker   0x04, 0x6f, 0xdf, 0xfb, 0x33, 0x34, 0x12, 0x7b, 0x0d, 0x3b, 0x5d, 0xcf,
6191*6236dae4SAndroid Build Coastguard Worker   0xa0, 0xf8, 0xe2, 0x74, 0x82, 0x41, 0x39, 0x7e, 0x2b, 0xc9, 0x13, 0x8e,
6192*6236dae4SAndroid Build Coastguard Worker   0xdf, 0xc7, 0xc9, 0x20, 0x9b, 0xd5, 0x05, 0xec, 0x91, 0x90, 0x91, 0x02,
6193*6236dae4SAndroid Build Coastguard Worker   0xd9, 0x9a, 0x17, 0x1f, 0xc1, 0x7c, 0x02, 0xdb, 0x5d, 0x59, 0x33, 0x78,
6194*6236dae4SAndroid Build Coastguard Worker   0x14, 0xad, 0xe0, 0x48, 0xc0, 0xbf, 0xb1, 0x4c, 0x72, 0x58, 0xd6, 0x2b,
6195*6236dae4SAndroid Build Coastguard Worker   0xdd, 0x28, 0xcd, 0xe8, 0xc4, 0x69, 0x7a, 0x2f, 0xca, 0x72, 0x72, 0xb7,
6196*6236dae4SAndroid Build Coastguard Worker   0x7b, 0x39, 0x02, 0x18, 0x3b, 0x4f, 0x98, 0xaf, 0x7b, 0xe9, 0x5d, 0x4a,
6197*6236dae4SAndroid Build Coastguard Worker   0x47, 0x5a, 0xde, 0x3a, 0x9c, 0x95, 0x24, 0x26, 0xbe, 0x05, 0xeb, 0x05,
6198*6236dae4SAndroid Build Coastguard Worker   0x2f, 0x9c, 0x57, 0x1a, 0x6c, 0xd7, 0x87, 0x40, 0x7b, 0x6c, 0x5f, 0x0b,
6199*6236dae4SAndroid Build Coastguard Worker   0xc5, 0x98, 0x54, 0x00, 0xf2, 0x8f, 0x92, 0x37, 0xfb, 0xec, 0xe0, 0xfc,
6200*6236dae4SAndroid Build Coastguard Worker   0x4d, 0xc8, 0x92, 0x76, 0x12, 0xa2, 0x84, 0x15, 0xc9, 0x2b, 0x50, 0xd5,
6201*6236dae4SAndroid Build Coastguard Worker   0x72, 0x40, 0xde, 0xf5, 0xfb, 0x11, 0x15, 0x35, 0x8c, 0xb3, 0x41, 0x99,
6202*6236dae4SAndroid Build Coastguard Worker   0xe0, 0x37, 0xf1, 0xc7, 0xf8, 0x53, 0x60, 0xeb, 0xd6, 0x70, 0x67, 0x5f,
6203*6236dae4SAndroid Build Coastguard Worker   0x1f, 0xf6, 0xff, 0xb4, 0xb9, 0x89, 0x2e, 0x84, 0x19, 0xd0, 0x65, 0x15,
6204*6236dae4SAndroid Build Coastguard Worker   0x5e, 0xc9, 0x2b, 0x38, 0x99, 0x93, 0x5e, 0x55, 0xac, 0x49, 0x8e, 0x14,
6205*6236dae4SAndroid Build Coastguard Worker   0xdb, 0x0f, 0xc9, 0x0d, 0x28, 0xe7, 0xc4, 0x47, 0xca, 0xd4, 0x73, 0xf2,
6206*6236dae4SAndroid Build Coastguard Worker   0x26, 0x4c, 0xa5, 0x07, 0xc8, 0x0b, 0x50, 0xef, 0xc7, 0xbe, 0x37, 0x60,
6207*6236dae4SAndroid Build Coastguard Worker   0x35, 0x3b, 0xed, 0x33, 0x5b, 0x4d, 0x92, 0x21, 0xfc, 0x15, 0x5d, 0x7f,
6208*6236dae4SAndroid Build Coastguard Worker   0x6b, 0x26, 0xd3, 0xcb, 0x9c, 0x30, 0x5d, 0x55, 0x9f, 0xcd, 0x57, 0xca,
6209*6236dae4SAndroid Build Coastguard Worker   0x6d, 0xa1, 0x32, 0x0f, 0x5f, 0x2a, 0xe4, 0xed, 0xc3, 0x65, 0x83, 0xfc,
6210*6236dae4SAndroid Build Coastguard Worker   0xc4, 0x0e, 0x83, 0x64, 0x78, 0x7d, 0x9b, 0x94, 0x23, 0xf6, 0xf5, 0x03,
6211*6236dae4SAndroid Build Coastguard Worker   0xc7, 0x0c, 0xb2, 0x71, 0x56, 0xdf, 0xb3, 0x47, 0xad, 0xad, 0x67, 0x70,
6212*6236dae4SAndroid Build Coastguard Worker   0xd2, 0x2e, 0x12, 0x10, 0xce, 0xd1, 0x65, 0x96, 0xa3, 0x6b, 0x82, 0xfc,
6213*6236dae4SAndroid Build Coastguard Worker   0x0b, 0x59, 0xed, 0x3a, 0xd3, 0xc8, 0xa6, 0xb2, 0xea, 0xb4, 0xf9, 0x76,
6214*6236dae4SAndroid Build Coastguard Worker   0x40, 0x8f, 0xa6, 0x73, 0x44, 0xd3, 0xb4, 0xbc, 0xab, 0x62, 0xd0, 0x15,
6215*6236dae4SAndroid Build Coastguard Worker   0x52, 0xca, 0x3e, 0x51, 0x75, 0x0f, 0xda, 0xfb, 0x24, 0x64, 0x51, 0xd2,
6216*6236dae4SAndroid Build Coastguard Worker   0xe5, 0x1e, 0x7d, 0x9d, 0xde, 0x0f, 0xaf, 0x50, 0xdc, 0x19, 0x49, 0xc9,
6217*6236dae4SAndroid Build Coastguard Worker   0x9e, 0xc5, 0x14, 0x5d, 0x4b, 0x6c, 0xbb, 0x66, 0x1a, 0x1e, 0x4b, 0x25,
6218*6236dae4SAndroid Build Coastguard Worker   0xc2, 0xc9, 0x57, 0x94, 0xaf, 0xa3, 0xf1, 0xfb, 0x6a, 0xb6, 0xe3, 0x10,
6219*6236dae4SAndroid Build Coastguard Worker   0x2b, 0x55, 0x43, 0x24, 0xd3, 0x97, 0xfc, 0x4d, 0xec, 0xc3, 0xcf, 0xf3,
6220*6236dae4SAndroid Build Coastguard Worker   0x3c, 0x1d, 0xcb, 0xf6, 0x9d, 0x2f, 0xda, 0x00, 0xf3, 0x2c, 0x4c, 0x59,
6221*6236dae4SAndroid Build Coastguard Worker   0xd2, 0xa1, 0x5a, 0xc3, 0x3d, 0xe7, 0xac, 0xf3, 0xa4, 0xd6, 0xcb, 0x4e,
6222*6236dae4SAndroid Build Coastguard Worker   0xeb, 0x5c, 0x9e, 0xf7, 0x9e, 0x6d, 0x98, 0x5f, 0xf5, 0xe6, 0x7e, 0xc6,
6223*6236dae4SAndroid Build Coastguard Worker   0x3b, 0x4d, 0xa5, 0xdd, 0xf4, 0xe6, 0x9e, 0x73, 0xa8, 0x83, 0x36, 0x19,
6224*6236dae4SAndroid Build Coastguard Worker   0xf7, 0x58, 0xb6, 0xf8, 0x53, 0x63, 0x31, 0x51, 0x48, 0xb2, 0x35, 0x9c,
6225*6236dae4SAndroid Build Coastguard Worker   0x6b, 0x94, 0xeb, 0x1d, 0x26, 0xeb, 0x58, 0x01, 0xa5, 0xb2, 0x40, 0xef,
6226*6236dae4SAndroid Build Coastguard Worker   0xca, 0x45, 0x54, 0x16, 0xb0, 0xd7, 0x8d, 0xfd, 0x5c, 0x65, 0x2d, 0xa6,
6227*6236dae4SAndroid Build Coastguard Worker   0x7d, 0x4c, 0x44, 0x9a, 0x3b, 0x84, 0x59, 0x7b, 0xa2, 0xcb, 0x6c, 0xae,
6228*6236dae4SAndroid Build Coastguard Worker   0xcb, 0x6b, 0x59, 0xa5, 0x52, 0x6e, 0xf1, 0xc3, 0x03, 0x32, 0xa5, 0x1e,
6229*6236dae4SAndroid Build Coastguard Worker   0x74, 0x75, 0xe1, 0x0b, 0x24, 0xfa, 0xf7, 0x41, 0x36, 0xfe, 0xf2, 0x5b,
6230*6236dae4SAndroid Build Coastguard Worker   0xdf, 0xc9, 0x46, 0xf2, 0x2f, 0x42, 0x61, 0xf0, 0xc6, 0xed, 0xff, 0x56,
6231*6236dae4SAndroid Build Coastguard Worker   0xaf, 0x79, 0x9c, 0x44, 0x45, 0x4e, 0x9a, 0x41, 0xaa, 0x86, 0x14, 0x29,
6232*6236dae4SAndroid Build Coastguard Worker   0xeb, 0x12, 0x76, 0xf2, 0x5d, 0x11, 0x94, 0x6a, 0xc8, 0x91, 0x89, 0xbd,
6233*6236dae4SAndroid Build Coastguard Worker   0x4e, 0xb4, 0x9a, 0xf6, 0x2e, 0x61, 0xbc, 0x0e, 0x8e, 0xb3, 0xb9, 0x87,
6234*6236dae4SAndroid Build Coastguard Worker   0x7f, 0x6e, 0xd1, 0x9f, 0xdb, 0x9d, 0x35, 0x29, 0x6a, 0x73, 0xf7, 0x13,
6235*6236dae4SAndroid Build Coastguard Worker   0x55, 0x84, 0xf6, 0x05, 0xc7, 0x61, 0x7b, 0xab, 0x31, 0x74, 0x39, 0x1c,
6236*6236dae4SAndroid Build Coastguard Worker   0x35, 0x4f, 0x9a, 0xb1, 0xa1, 0x7b, 0xc2, 0x5b, 0xe7, 0x2b, 0x87, 0x4a,
6237*6236dae4SAndroid Build Coastguard Worker   0x86, 0x09, 0x7b, 0x58, 0x6f, 0x52, 0x76, 0xf1, 0xc2, 0xca, 0x30, 0x21,
6238*6236dae4SAndroid Build Coastguard Worker   0x31, 0x1d, 0x39, 0x91, 0x86, 0xe1, 0xc7, 0x32, 0xbd, 0x4a, 0xaa, 0xab,
6239*6236dae4SAndroid Build Coastguard Worker   0x68, 0x56, 0x33, 0x67, 0xc3, 0x61, 0x68, 0x0f, 0x37, 0x1d, 0x67, 0x36,
6240*6236dae4SAndroid Build Coastguard Worker   0x70, 0x20, 0x9f, 0xee, 0xa9, 0xef, 0xc9, 0xee, 0x22, 0x07, 0x4b, 0xc7,
6241*6236dae4SAndroid Build Coastguard Worker   0xc5, 0xad, 0x3e, 0x13, 0x4b, 0xc9, 0x59, 0x48, 0xd7, 0x80, 0xdd, 0x24,
6242*6236dae4SAndroid Build Coastguard Worker   0x4f, 0x30, 0x3e, 0xe6, 0x66, 0x6c, 0x4f, 0x50, 0xf7, 0xc5, 0x7a, 0x38,
6243*6236dae4SAndroid Build Coastguard Worker   0x90, 0x9b, 0x17, 0x40, 0x31, 0xf4, 0x2a, 0x8d, 0x69, 0xdf, 0xd0, 0xa5,
6244*6236dae4SAndroid Build Coastguard Worker   0x37, 0x0b, 0x64, 0x53, 0x1a, 0xb6, 0xcb, 0x2e, 0x24, 0xca, 0x23, 0xff,
6245*6236dae4SAndroid Build Coastguard Worker   0xa6, 0x4b, 0x5a, 0x54, 0xba, 0x8a, 0xb3, 0xba, 0xdb, 0xfa, 0xdc, 0xc3,
6246*6236dae4SAndroid Build Coastguard Worker   0xe7, 0x45, 0xa5, 0xae, 0x51, 0x9f, 0x64, 0xb1, 0x1c, 0x5b, 0xd5, 0xc3,
6247*6236dae4SAndroid Build Coastguard Worker   0x22, 0xee, 0x8a, 0x90, 0x13, 0x95, 0xdd, 0xec, 0xbf, 0xfd, 0xc9, 0xa3,
6248*6236dae4SAndroid Build Coastguard Worker   0x59, 0xad, 0x93, 0xf7, 0x62, 0xdd, 0x1e, 0x84, 0x07, 0x8e, 0x1f, 0xd0,
6249*6236dae4SAndroid Build Coastguard Worker   0x22, 0xc6, 0xc0, 0xd2, 0xac, 0x7a, 0xc4, 0xe9, 0x73, 0xee, 0x08, 0x7e,
6250*6236dae4SAndroid Build Coastguard Worker   0x47, 0x63, 0xc4, 0x92, 0xc1, 0xe3, 0x92, 0xd6, 0x77, 0xdc, 0x58, 0x96,
6251*6236dae4SAndroid Build Coastguard Worker   0x3b, 0x74, 0xce, 0x6c, 0x9f, 0x07, 0x7a, 0x2f, 0x0e, 0xe0, 0xd5, 0xe4,
6252*6236dae4SAndroid Build Coastguard Worker   0x3a, 0xe9, 0x45, 0xa7, 0x87, 0xfd, 0x33, 0xfc, 0xc4, 0x14, 0xb3, 0x96,
6253*6236dae4SAndroid Build Coastguard Worker   0xd6, 0x30, 0xa5, 0xa9, 0x35, 0x5c, 0x7a, 0x57, 0xa7, 0x79, 0xd5, 0xa8,
6254*6236dae4SAndroid Build Coastguard Worker   0xf7, 0x9c, 0xbb, 0x81, 0x1a, 0xc6, 0xd4, 0x3c, 0xcc, 0x46, 0xba, 0x11,
6255*6236dae4SAndroid Build Coastguard Worker   0xe5, 0x3b, 0x51, 0x15, 0x43, 0xc4, 0x87, 0xd8, 0xfb, 0xd0, 0x14, 0x48,
6256*6236dae4SAndroid Build Coastguard Worker   0x39, 0x5a, 0x33, 0x8e, 0xe8, 0xae, 0x72, 0x99, 0xc9, 0x59, 0xa8, 0x66,
6257*6236dae4SAndroid Build Coastguard Worker   0x97, 0x68, 0x8b, 0x55, 0xea, 0xc6, 0x32, 0x5f, 0x00, 0x6a, 0xf8, 0x9a,
6258*6236dae4SAndroid Build Coastguard Worker   0x8d, 0x2c, 0xdb, 0x44, 0x5d, 0xc0, 0x7a, 0xc4, 0x6a, 0x24, 0xd2, 0xe8,
6259*6236dae4SAndroid Build Coastguard Worker   0xf2, 0xc2, 0x8e, 0x8a, 0xf9, 0x54, 0x54, 0x96, 0x99, 0x51, 0x94, 0x9f,
6260*6236dae4SAndroid Build Coastguard Worker   0x13, 0xec, 0x03, 0x3a, 0x0b, 0x6f, 0x8a, 0x1a, 0x90, 0x17, 0x52, 0x8a,
6261*6236dae4SAndroid Build Coastguard Worker   0x39, 0xcf, 0xbb, 0x3d, 0x64, 0x8d, 0x12, 0xcf, 0x13, 0x45, 0x4a, 0x33,
6262*6236dae4SAndroid Build Coastguard Worker   0xe4, 0x09, 0xd4, 0xef, 0xd9, 0x6a, 0xc7, 0xf1, 0x8c, 0x64, 0xf9, 0x2a,
6263*6236dae4SAndroid Build Coastguard Worker   0x9f, 0x61, 0xbe, 0xa3, 0xaf, 0x3c, 0xa0, 0x0e, 0x88, 0xb7, 0x22, 0x12,
6264*6236dae4SAndroid Build Coastguard Worker   0x70, 0x69, 0x36, 0xb5, 0x0c, 0xb7, 0xa4, 0x3f, 0x61, 0x67, 0xb3, 0xe9,
6265*6236dae4SAndroid Build Coastguard Worker   0x4f, 0xa0, 0x91, 0xc0, 0xfa, 0x49, 0xa3, 0x7d, 0xfc, 0xf3, 0xc1, 0xdb,
6266*6236dae4SAndroid Build Coastguard Worker   0x83, 0x93, 0xcf, 0xf0, 0x79, 0x49, 0xe1, 0x60, 0x19, 0x2f, 0x7e, 0xeb,
6267*6236dae4SAndroid Build Coastguard Worker   0xa8, 0x79, 0x91, 0x78, 0x57, 0x37, 0x31, 0x6f, 0x0f, 0xe5, 0x73, 0x37,
6268*6236dae4SAndroid Build Coastguard Worker   0x7a, 0x85, 0x55, 0xd4, 0x47, 0xef, 0xbe, 0x22, 0x8e, 0x3a, 0xdb, 0xdc,
6269*6236dae4SAndroid Build Coastguard Worker   0xa2, 0x60, 0xb9, 0x31, 0x9d, 0x46, 0xf4, 0x91, 0xaa, 0x67, 0xaa, 0x27,
6270*6236dae4SAndroid Build Coastguard Worker   0xf0, 0xae, 0xf2, 0x32, 0xb6, 0xf1, 0xee, 0xea, 0x92, 0xb8, 0x47, 0x8f,
6271*6236dae4SAndroid Build Coastguard Worker   0x12, 0x55, 0xf3, 0x8c, 0xfe, 0xf0, 0xcb, 0xdb, 0x50, 0x14, 0xe7, 0xc5,
6272*6236dae4SAndroid Build Coastguard Worker   0xff, 0x66, 0x19, 0xba, 0x94, 0x85, 0x7f, 0xd4, 0x95, 0x77, 0xf1, 0xbf,
6273*6236dae4SAndroid Build Coastguard Worker   0xd7, 0xe9, 0xbd, 0xb8, 0xb4, 0xe1, 0x6f, 0x34, 0xb8, 0xb3, 0x87, 0xe6,
6274*6236dae4SAndroid Build Coastguard Worker   0xc9, 0x68, 0xdf, 0xa1, 0xfe, 0xf7, 0xc6, 0xc3, 0xf0, 0xe3, 0xd3, 0x54,
6275*6236dae4SAndroid Build Coastguard Worker   0x82, 0xf0, 0x96, 0xe2, 0x42, 0x42, 0x7e, 0x4e, 0x9b, 0x70, 0x4b, 0x4b,
6276*6236dae4SAndroid Build Coastguard Worker   0xa5, 0x3b, 0x8e, 0x2b, 0xe2, 0xa9, 0x6e, 0x1e, 0xcf, 0x65, 0x92, 0x1b,
6277*6236dae4SAndroid Build Coastguard Worker   0x45, 0x2f, 0xe6, 0x4a, 0x2f, 0x4a, 0xbc, 0x6e, 0x6f, 0xea, 0xb0, 0x18,
6278*6236dae4SAndroid Build Coastguard Worker   0x7b, 0x97, 0x7d, 0xc3, 0x1d, 0x40, 0x56, 0xd2, 0x96, 0x5c, 0xf0, 0x64,
6279*6236dae4SAndroid Build Coastguard Worker   0x22, 0xb3, 0x4c, 0x14, 0xdb, 0xa4, 0x7d, 0x6a, 0x8d, 0xa5, 0x42, 0x4a,
6280*6236dae4SAndroid Build Coastguard Worker   0xad, 0x55, 0x0d, 0xf0, 0x4d, 0x7e, 0x91, 0x52, 0x82, 0x68, 0x6a, 0xac,
6281*6236dae4SAndroid Build Coastguard Worker   0x7f, 0xf6, 0x22, 0x6b, 0x47, 0x84, 0x8c, 0x2a, 0x60, 0x1a, 0xe3, 0xbd,
6282*6236dae4SAndroid Build Coastguard Worker   0xd1, 0x3c, 0x66, 0x25, 0x5b, 0xc3, 0x41, 0x0f, 0xc2, 0xb8, 0xcc, 0x44,
6283*6236dae4SAndroid Build Coastguard Worker   0xeb, 0x96, 0xda, 0xd1, 0xf6, 0x70, 0x9a, 0x9d, 0x25, 0x3e, 0x7c, 0x29,
6284*6236dae4SAndroid Build Coastguard Worker   0xa1, 0x22, 0x7e, 0x55, 0x86, 0x65, 0xbe, 0x46, 0xfb, 0xbe, 0xe3, 0x90,
6285*6236dae4SAndroid Build Coastguard Worker   0xa4, 0x13, 0xda, 0x0a, 0x75, 0x4f, 0xf3, 0xd9, 0xcc, 0x6e, 0x90, 0x74,
6286*6236dae4SAndroid Build Coastguard Worker   0xca, 0x3b, 0xa4, 0xa5, 0xf0, 0x96, 0x36, 0x0c, 0x8a, 0x22, 0xc7, 0xff,
6287*6236dae4SAndroid Build Coastguard Worker   0xe6, 0x18, 0x49, 0xf8, 0xb7, 0x00, 0x37, 0x3a, 0xec, 0x65, 0x38, 0x90,
6288*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x70, 0x24, 0x9c, 0x4d, 0x1a, 0x1c, 0xd6, 0x3b, 0x4a, 0x35, 0xfa,
6289*6236dae4SAndroid Build Coastguard Worker   0xf8, 0xfe, 0x51, 0x66, 0xb2, 0x6a, 0x60, 0x6a, 0x0d, 0x3b, 0x26, 0xb2,
6290*6236dae4SAndroid Build Coastguard Worker   0x67, 0x43, 0xb6, 0x19, 0x04, 0x6e, 0x9b, 0x1a, 0x53, 0xef, 0x98, 0x77,
6291*6236dae4SAndroid Build Coastguard Worker   0x31, 0xfe, 0x95, 0x0d, 0xaf, 0xb9, 0x52, 0xe9, 0xa2, 0x6d, 0xc6, 0x99,
6292*6236dae4SAndroid Build Coastguard Worker   0x02, 0x3d, 0x2e, 0x2e, 0x0d, 0x6c, 0x01, 0x59, 0xe8, 0x18, 0x9b, 0x43,
6293*6236dae4SAndroid Build Coastguard Worker   0x9e, 0x44, 0xf5, 0x04, 0x38, 0xc0, 0xf8, 0xf6, 0x83, 0xbe, 0x1b, 0x98,
6294*6236dae4SAndroid Build Coastguard Worker   0xeb, 0xc7, 0x57, 0xc7, 0xef, 0xa3, 0x55, 0xb4, 0x6b, 0xda, 0xae, 0x03,
6295*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x6f, 0xd6, 0xd3, 0x7a, 0xb8, 0x3e, 0xbd, 0xce, 0xd6, 0xc1, 0x84,
6296*6236dae4SAndroid Build Coastguard Worker   0x1f, 0x0d, 0xd6, 0x8c, 0x69, 0x4a, 0x9f, 0x43, 0x2e, 0x34, 0xe6, 0xbe,
6297*6236dae4SAndroid Build Coastguard Worker   0xda, 0xfb, 0x64, 0xf0, 0xb7, 0xf9, 0xcd, 0x71, 0x00, 0x30, 0xd6, 0x85,
6298*6236dae4SAndroid Build Coastguard Worker   0xb1, 0xfc, 0x25, 0x6a, 0x48, 0x0c, 0x4d, 0x51, 0x77, 0xce, 0x24, 0xa3,
6299*6236dae4SAndroid Build Coastguard Worker   0x60, 0x7d, 0xca, 0xb1, 0xc1, 0xfb, 0x62, 0xd6, 0x3e, 0xab, 0x5c, 0xe6,
6300*6236dae4SAndroid Build Coastguard Worker   0x28, 0xee, 0x31, 0x76, 0x8b, 0xa9, 0x0b, 0x5c, 0x6e, 0x35, 0xab, 0xfe,
6301*6236dae4SAndroid Build Coastguard Worker   0x77, 0xb1, 0xaa, 0x32, 0x21, 0x54, 0x0c, 0xb8, 0x39, 0x47, 0xe8, 0xb5,
6302*6236dae4SAndroid Build Coastguard Worker   0x0d, 0x24, 0xd0, 0x83, 0xbe, 0xde, 0x5b, 0xef, 0x44, 0xa6, 0x8e, 0x14,
6303*6236dae4SAndroid Build Coastguard Worker   0xa8, 0xcc, 0xe5, 0xd2, 0x26, 0x97, 0x01, 0x58, 0xec, 0x62, 0x56, 0x19,
6304*6236dae4SAndroid Build Coastguard Worker   0xb7, 0x73, 0x62, 0xf6, 0xab, 0x17, 0x92, 0xd4, 0xce, 0x76, 0x1a, 0xa5,
6305*6236dae4SAndroid Build Coastguard Worker   0x13, 0x8c, 0x03, 0x3a, 0x58, 0xae, 0x0f, 0x44, 0x26, 0x45, 0x5b, 0xd5,
6306*6236dae4SAndroid Build Coastguard Worker   0xf9, 0xa1, 0x13, 0x39, 0x75, 0x88, 0x8d, 0x72, 0x44, 0xf1, 0x9f, 0x69,
6307*6236dae4SAndroid Build Coastguard Worker   0x38, 0x57, 0x6e, 0x17, 0x50, 0x1c, 0xcc, 0x19, 0x1e, 0xa5, 0xe3, 0x6c,
6308*6236dae4SAndroid Build Coastguard Worker   0x92, 0x91, 0x45, 0xeb, 0x4e, 0xc1, 0xdb, 0x8a, 0xe6, 0x94, 0x7e, 0xf0,
6309*6236dae4SAndroid Build Coastguard Worker   0xa7, 0xa4, 0xd5, 0xbd, 0x09, 0xfe, 0x1a, 0xa6, 0x44, 0x7e, 0x46, 0x2e,
6310*6236dae4SAndroid Build Coastguard Worker   0xbd, 0x0c, 0xfb, 0x22, 0x9a, 0x13, 0x32, 0xf5, 0xc1, 0x0b, 0x32, 0x81,
6311*6236dae4SAndroid Build Coastguard Worker   0xcc, 0x59, 0x9a, 0x67, 0xcb, 0x58, 0x47, 0x93, 0x1e, 0x7a, 0x16, 0x6a,
6312*6236dae4SAndroid Build Coastguard Worker   0xd1, 0xf4, 0x7a, 0x58, 0x6d, 0x6e, 0xb6, 0x6f, 0xd0, 0xca, 0x72, 0x94,
6313*6236dae4SAndroid Build Coastguard Worker   0x78, 0x45, 0x12, 0xc3, 0x98, 0x1f, 0xde, 0x1f, 0x47, 0xab, 0x88, 0x18,
6314*6236dae4SAndroid Build Coastguard Worker   0xf1, 0x7c, 0x77, 0x73, 0x6b, 0x4d, 0xed, 0x3a, 0x71, 0x90, 0xce, 0xb9,
6315*6236dae4SAndroid Build Coastguard Worker   0x90, 0xef, 0xc9, 0xdd, 0xe7, 0x1e, 0x40, 0x54, 0xa5, 0x45, 0x31, 0xb2,
6316*6236dae4SAndroid Build Coastguard Worker   0x43, 0x8f, 0x52, 0x0c, 0xce, 0xf4, 0xa2, 0x03, 0x8d, 0x02, 0x0d, 0x52,
6317*6236dae4SAndroid Build Coastguard Worker   0x98, 0xa4, 0x47, 0x71, 0x5b, 0xba, 0xcb, 0xb3, 0x07, 0x1b, 0xd1, 0x98,
6318*6236dae4SAndroid Build Coastguard Worker   0x0a, 0x98, 0x5f, 0x0f, 0x3c, 0x50, 0x0b, 0xed, 0xdc, 0x59, 0x4b, 0x66,
6319*6236dae4SAndroid Build Coastguard Worker   0x51, 0x32, 0xc7, 0xbf, 0x86, 0xeb, 0x62, 0x24, 0x0d, 0x52, 0x5e, 0xba,
6320*6236dae4SAndroid Build Coastguard Worker   0x2a, 0x70, 0xd0, 0xe6, 0x11, 0x62, 0x89, 0xe8, 0x35, 0xe9, 0x40, 0x98,
6321*6236dae4SAndroid Build Coastguard Worker   0xa9, 0xd7, 0xde, 0x40, 0x99, 0x53, 0x07, 0x2f, 0x92, 0x9c, 0xb4, 0x86,
6322*6236dae4SAndroid Build Coastguard Worker   0xc4, 0x0e, 0x6a, 0xa8, 0xef, 0x2a, 0x04, 0xcd, 0x51, 0xfd, 0xc0, 0x06,
6323*6236dae4SAndroid Build Coastguard Worker   0x31, 0x0e, 0xa8, 0x44, 0xe1, 0x21, 0x7f, 0x27, 0xd7, 0x5d, 0x53, 0x7c,
6324*6236dae4SAndroid Build Coastguard Worker   0xca, 0xf6, 0xe0, 0xde, 0x8b, 0x2f, 0x76, 0x90, 0x4a, 0x95, 0x1c, 0xcb,
6325*6236dae4SAndroid Build Coastguard Worker   0xdb, 0x44, 0x1f, 0xf7, 0xee, 0x71, 0x78, 0x7d, 0x5d, 0x2f, 0x21, 0xba,
6326*6236dae4SAndroid Build Coastguard Worker   0x85, 0xd4, 0x8b, 0xcb, 0xfe, 0x34, 0x2c, 0xfb, 0x40, 0xff, 0xd9, 0xb5,
6327*6236dae4SAndroid Build Coastguard Worker   0xb8, 0xcf, 0x48, 0x77, 0x37, 0x29, 0x79, 0xbe, 0x07, 0x5e, 0x2f, 0xfe,
6328*6236dae4SAndroid Build Coastguard Worker   0x98, 0xaa, 0x2f, 0x5b, 0x3e, 0x0b, 0x24, 0x82, 0x73, 0xe1, 0x91, 0xf4,
6329*6236dae4SAndroid Build Coastguard Worker   0xe3, 0xfc, 0x77, 0x92, 0x78, 0xe1, 0xf8, 0x00, 0x72, 0x2a, 0x07, 0x2d,
6330*6236dae4SAndroid Build Coastguard Worker   0x96, 0x92, 0x81, 0x21, 0x3f, 0x25, 0x89, 0xc0, 0x27, 0x49, 0xc0, 0x07,
6331*6236dae4SAndroid Build Coastguard Worker   0x3c, 0x79, 0x87, 0xde, 0x8d, 0x5d, 0x19, 0x65, 0xc8, 0xea, 0x6a, 0x14,
6332*6236dae4SAndroid Build Coastguard Worker   0x0f, 0x25, 0xc2, 0xf9, 0x86, 0x57, 0xc9, 0xc5, 0x27, 0x52, 0x1c, 0xd3,
6333*6236dae4SAndroid Build Coastguard Worker   0x52, 0xe7, 0xc8, 0x5d, 0x06, 0xc7, 0x65, 0xf5, 0x44, 0x8a, 0x69, 0xce,
6334*6236dae4SAndroid Build Coastguard Worker   0x5e, 0x7f, 0xe7, 0xd4, 0x66, 0x79, 0x1e, 0x0c, 0x72, 0xef, 0x7d, 0x6a,
6335*6236dae4SAndroid Build Coastguard Worker   0x72, 0x71, 0xc0, 0xf0, 0xc1, 0xac, 0xde, 0x4c, 0xb2, 0xe3, 0xd9, 0xf9,
6336*6236dae4SAndroid Build Coastguard Worker   0x46, 0x39, 0x49, 0x6b, 0x36, 0xf1, 0x1b, 0x49, 0xdd, 0xd9, 0xa7, 0xdf,
6337*6236dae4SAndroid Build Coastguard Worker   0xb5, 0x43, 0x83, 0x52, 0x32, 0xfd, 0xf9, 0x0f, 0xfc, 0x6b, 0x96, 0xb1,
6338*6236dae4SAndroid Build Coastguard Worker   0xf0, 0xaf, 0xfa, 0x6a, 0x36, 0x19, 0xc0, 0x7e, 0xe6, 0xf5, 0xe7, 0x9d,
6339*6236dae4SAndroid Build Coastguard Worker   0x88, 0x13, 0x5e, 0x2e, 0x84, 0x9e, 0x0b, 0xac, 0xe3, 0x4c, 0x93, 0x68,
6340*6236dae4SAndroid Build Coastguard Worker   0xd4, 0x63, 0xdb, 0xa0, 0x1a, 0xcf, 0x4e, 0x41, 0x02, 0x6c, 0x2e, 0x33,
6341*6236dae4SAndroid Build Coastguard Worker   0x6c, 0x1e, 0x47, 0x08, 0x3c, 0x55, 0xef, 0x03, 0xb0, 0xe7, 0x0f, 0x6f,
6342*6236dae4SAndroid Build Coastguard Worker   0xff, 0xf6, 0xc3, 0xcb, 0xed, 0x9d, 0xe4, 0x79, 0x32, 0x7c, 0x76, 0xf1,
6343*6236dae4SAndroid Build Coastguard Worker   0x22, 0xd9, 0x1d, 0xed, 0x3e, 0x7f, 0xb9, 0xf5, 0x62, 0x37, 0x79, 0xbe,
6344*6236dae4SAndroid Build Coastguard Worker   0x73, 0x91, 0x3c, 0xdb, 0x4c, 0x37, 0x5f, 0x5e, 0x6c, 0x6d, 0x8f, 0x46,
6345*6236dae4SAndroid Build Coastguard Worker   0x17, 0xe9, 0x8b, 0xd1, 0xf3, 0xa4, 0xd3, 0x23, 0x2b, 0x51, 0xa7, 0xee,
6346*6236dae4SAndroid Build Coastguard Worker   0x8b, 0x5a, 0x8d, 0x93, 0x26, 0x51, 0xff, 0xcd, 0x41, 0xbc, 0x19, 0x5d,
6347*6236dae4SAndroid Build Coastguard Worker   0xa5, 0x77, 0x7a, 0xc0, 0x9a, 0x39, 0x4e, 0x08, 0x5b, 0x44, 0xcb, 0x99,
6348*6236dae4SAndroid Build Coastguard Worker   0xbf, 0x58, 0x05, 0x0c, 0xc2, 0xea, 0x12, 0x74, 0x16, 0x91, 0x06, 0xcc,
6349*6236dae4SAndroid Build Coastguard Worker   0x54, 0x54, 0xb2, 0x72, 0xfe, 0xb1, 0xf1, 0xca, 0xee, 0x69, 0x24, 0x04,
6350*6236dae4SAndroid Build Coastguard Worker   0xd7, 0xd5, 0x3e, 0xfc, 0x27, 0xe8, 0xf0, 0x78, 0x9b, 0x0c, 0xaf, 0xa8,
6351*6236dae4SAndroid Build Coastguard Worker   0x38, 0x5b, 0x1e, 0xec, 0x73, 0x0c, 0xbd, 0x1b, 0xc9, 0x5f, 0xd0, 0xf7,
6352*6236dae4SAndroid Build Coastguard Worker   0xee, 0x8c, 0xf1, 0x55, 0x59, 0xcc, 0xa6, 0x67, 0xc5, 0x38, 0x1b, 0xde,
6353*6236dae4SAndroid Build Coastguard Worker   0x2f, 0x1a, 0xce, 0x7d, 0xac, 0xf1, 0x8b, 0x23, 0x16, 0xe1, 0x59, 0x95,
6354*6236dae4SAndroid Build Coastguard Worker   0xfe, 0x2b, 0xd8, 0x6c, 0x44, 0x6b, 0x12, 0x07, 0xac, 0xe3, 0xc2, 0xff,
6355*6236dae4SAndroid Build Coastguard Worker   0x96, 0xb7, 0xda, 0xac, 0xb0, 0x7f, 0xd0, 0x6c, 0x8b, 0x87, 0xd9, 0xf4,
6356*6236dae4SAndroid Build Coastguard Worker   0x0a, 0x13, 0x6f, 0xf6, 0x29, 0xd1, 0x1a, 0x63, 0x69, 0xfc, 0x83, 0xb0,
6357*6236dae4SAndroid Build Coastguard Worker   0xb9, 0xd6, 0x97, 0xc3, 0x5e, 0x09, 0xab, 0xe8, 0xdb, 0xa2, 0xcc, 0x65,
6358*6236dae4SAndroid Build Coastguard Worker   0x5a, 0x63, 0xaf, 0x2e, 0x40, 0x49, 0xf0, 0xcf, 0x3c, 0x1f, 0xa9, 0xfd,
6359*6236dae4SAndroid Build Coastguard Worker   0x10, 0x0b, 0x12, 0x55, 0xe4, 0xd9, 0x7d, 0x23, 0xbf, 0xea, 0x49, 0xad,
6360*6236dae4SAndroid Build Coastguard Worker   0xf6, 0x6c, 0xca, 0x28, 0x09, 0x14, 0x80, 0xe1, 0xdf, 0xb5, 0xcf, 0x30,
6361*6236dae4SAndroid Build Coastguard Worker   0x4e, 0x5e, 0x98, 0x91, 0x2b, 0xfd, 0x61, 0xb3, 0x3e, 0xbc, 0x3f, 0xd9,
6362*6236dae4SAndroid Build Coastguard Worker   0x6b, 0x13, 0xc9, 0x10, 0x92, 0x62, 0x74, 0x55, 0xba, 0x3e, 0x2a, 0x86,
6363*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x7a, 0x55, 0x8d, 0x95, 0x10, 0x84, 0x20, 0xf4, 0x47, 0x33, 0x82,
6364*6236dae4SAndroid Build Coastguard Worker   0x50, 0xe6, 0xe8, 0xf0, 0xd5, 0x9b, 0xa3, 0x18, 0xfe, 0xec, 0x1f, 0xc4,
6365*6236dae4SAndroid Build Coastguard Worker   0x07, 0x47, 0xfd, 0xad, 0xdd, 0x67, 0xf1, 0xe1, 0xe1, 0xdb, 0x17, 0x0f,
6366*6236dae4SAndroid Build Coastguard Worker   0xf9, 0x01, 0x8b, 0x09, 0x89, 0xdb, 0x74, 0x14, 0x57, 0x95, 0x97, 0x58,
6367*6236dae4SAndroid Build Coastguard Worker   0x8a, 0xa5, 0x98, 0x9c, 0x61, 0x76, 0x24, 0xb9, 0xd1, 0x74, 0x3f, 0xc7,
6368*6236dae4SAndroid Build Coastguard Worker   0xb0, 0x75, 0x58, 0x3d, 0xa9, 0x2f, 0xd3, 0xde, 0x99, 0xcc, 0x0b, 0x93,
6369*6236dae4SAndroid Build Coastguard Worker   0xd4, 0xd9, 0x0d, 0xa8, 0x8f, 0x89, 0x5c, 0x34, 0x9f, 0xba, 0xfe, 0x32,
6370*6236dae4SAndroid Build Coastguard Worker   0x34, 0x03, 0x8a, 0xd2, 0x14, 0xf5, 0x13, 0x58, 0xc9, 0xd2, 0x64, 0x68,
6371*6236dae4SAndroid Build Coastguard Worker   0x2c, 0x24, 0xaa, 0x16, 0x64, 0x6f, 0x05, 0xf2, 0xc7, 0x9f, 0xb5, 0x5c,
6372*6236dae4SAndroid Build Coastguard Worker   0x4c, 0x66, 0xb0, 0x70, 0xde, 0x8a, 0x3a, 0x2d, 0x93, 0xc8, 0x3e, 0x69,
6373*6236dae4SAndroid Build Coastguard Worker   0x3d, 0x78, 0x8a, 0x2e, 0x60, 0x8c, 0x3b, 0x93, 0x6e, 0x55, 0x2d, 0xaa,
6374*6236dae4SAndroid Build Coastguard Worker   0x62, 0x67, 0xf5, 0xb7, 0x19, 0x93, 0x46, 0xa8, 0x06, 0xfe, 0x80, 0x0b,
6375*6236dae4SAndroid Build Coastguard Worker   0x01, 0xd1, 0x8b, 0xde, 0x70, 0x0a, 0x56, 0x5b, 0xe1, 0x10, 0x80, 0xad,
6376*6236dae4SAndroid Build Coastguard Worker   0xb9, 0x09, 0xdd, 0x73, 0x58, 0x73, 0x9e, 0x83, 0x34, 0x9a, 0xe5, 0x36,
6377*6236dae4SAndroid Build Coastguard Worker   0x0e, 0x17, 0xf9, 0xd7, 0x8d, 0xc2, 0x48, 0xd8, 0xa8, 0x64, 0x99, 0x32,
6378*6236dae4SAndroid Build Coastguard Worker   0xfc, 0x01, 0xa8, 0x5e, 0x65, 0x59, 0x94, 0xbd, 0x00, 0x53, 0x58, 0x36,
6379*6236dae4SAndroid Build Coastguard Worker   0x88, 0xbd, 0xfb, 0x61, 0x31, 0x5b, 0x80, 0xcd, 0x83, 0x3f, 0xa6, 0xa4,
6380*6236dae4SAndroid Build Coastguard Worker   0x54, 0x4b, 0xf7, 0xa7, 0x33, 0xca, 0xe2, 0xa3, 0xf1, 0x35, 0x39, 0x11,
6381*6236dae4SAndroid Build Coastguard Worker   0x40, 0x0b, 0xca, 0x2e, 0xc3, 0xc9, 0x29, 0x36, 0x3b, 0xbe, 0xc6, 0x32,
6382*6236dae4SAndroid Build Coastguard Worker   0x1e, 0xcd, 0x3c, 0xc1, 0x3a, 0x58, 0xf1, 0x1d, 0x68, 0xf2, 0x58, 0xc5,
6383*6236dae4SAndroid Build Coastguard Worker   0xea, 0x9a, 0x66, 0x9d, 0xb4, 0xa0, 0xb8, 0x1c, 0x44, 0xae, 0xe6, 0x2b,
6384*6236dae4SAndroid Build Coastguard Worker   0x98, 0xb4, 0x1c, 0x99, 0x14, 0x40, 0xf3, 0x8d, 0x46, 0x66, 0x3a, 0x62,
6385*6236dae4SAndroid Build Coastguard Worker   0xc4, 0x11, 0x93, 0xb5, 0x8d, 0x7a, 0x0c, 0xbf, 0x58, 0xd5, 0x3e, 0x04,
6386*6236dae4SAndroid Build Coastguard Worker   0x5c, 0xd6, 0xa6, 0xdb, 0xe9, 0xb4, 0x01, 0x5b, 0x90, 0x11, 0x8e, 0x5e,
6387*6236dae4SAndroid Build Coastguard Worker   0x42, 0x95, 0x6e, 0x21, 0x05, 0xae, 0x70, 0x12, 0x1c, 0x68, 0x40, 0x5f,
6388*6236dae4SAndroid Build Coastguard Worker   0xb5, 0xa9, 0x4d, 0xad, 0x83, 0x22, 0xcf, 0x90, 0xde, 0x07, 0xb7, 0x01,
6389*6236dae4SAndroid Build Coastguard Worker   0x68, 0x37, 0x58, 0x84, 0x85, 0x58, 0x89, 0xe3, 0xc2, 0xea, 0xd1, 0x52,
6390*6236dae4SAndroid Build Coastguard Worker   0x9b, 0x8f, 0xe9, 0x90, 0x3d, 0xef, 0x7a, 0xc6, 0x33, 0x65, 0x2b, 0x86,
6391*6236dae4SAndroid Build Coastguard Worker   0x38, 0x68, 0xc7, 0x3f, 0xa0, 0xa3, 0x32, 0xd0, 0xe4, 0x12, 0xab, 0x54,
6392*6236dae4SAndroid Build Coastguard Worker   0xc9, 0xee, 0x05, 0x3d, 0x80, 0x52, 0xa8, 0xc6, 0xd0, 0x55, 0x19, 0x01,
6393*6236dae4SAndroid Build Coastguard Worker   0xb3, 0x09, 0x8c, 0x17, 0xd7, 0xdd, 0x69, 0x04, 0xa7, 0x2a, 0xa4, 0xd8,
6394*6236dae4SAndroid Build Coastguard Worker   0x02, 0x27, 0x8a, 0xf3, 0xe4, 0x39, 0xb6, 0x4f, 0x82, 0x81, 0xe8, 0x6a,
6395*6236dae4SAndroid Build Coastguard Worker   0xd8, 0x9c, 0x49, 0x65, 0xcb, 0xd7, 0x2a, 0x3f, 0xd4, 0x6f, 0xa9, 0x19,
6396*6236dae4SAndroid Build Coastguard Worker   0x74, 0x52, 0x78, 0xb5, 0x80, 0x34, 0x93, 0x32, 0xd5, 0x4f, 0xe4, 0x45,
6397*6236dae4SAndroid Build Coastguard Worker   0x7b, 0x56, 0x32, 0x8f, 0xd8, 0x77, 0xd9, 0x99, 0x72, 0x37, 0x67, 0x02,
6398*6236dae4SAndroid Build Coastguard Worker   0x5a, 0xf6, 0x66, 0xb6, 0x39, 0x2c, 0x2f, 0x52, 0xfb, 0x80, 0xf5, 0x25,
6399*6236dae4SAndroid Build Coastguard Worker   0xd8, 0x3d, 0x24, 0x9f, 0x92, 0x14, 0x91, 0xf3, 0xbc, 0xf7, 0x18, 0x30,
6400*6236dae4SAndroid Build Coastguard Worker   0xe5, 0xb3, 0xb5, 0x6e, 0x30, 0xff, 0xca, 0x0c, 0x66, 0x93, 0xc4, 0x11,
6401*6236dae4SAndroid Build Coastguard Worker   0x9e, 0x66, 0x5c, 0x54, 0x1a, 0x6a, 0x84, 0x0d, 0x64, 0x2c, 0x35, 0x46,
6402*6236dae4SAndroid Build Coastguard Worker   0x41, 0x30, 0x08, 0x6b, 0xad, 0xe1, 0xf8, 0x19, 0xde, 0x9e, 0x0b, 0xa3,
6403*6236dae4SAndroid Build Coastguard Worker   0x51, 0x8a, 0x3f, 0xc2, 0x62, 0xbf, 0x51, 0x65, 0xb4, 0x71, 0x19, 0xc0,
6404*6236dae4SAndroid Build Coastguard Worker   0xe4, 0x7e, 0xf8, 0x01, 0x94, 0xc2, 0x1f, 0x3a, 0xed, 0xd9, 0xfd, 0x00,
6405*6236dae4SAndroid Build Coastguard Worker   0xb2, 0xe9, 0x07, 0xe0, 0xc5, 0x1f, 0xb8, 0x7e, 0xf7, 0x87, 0x1b, 0xb4,
6406*6236dae4SAndroid Build Coastguard Worker   0xf5, 0x31, 0xdc, 0x51, 0x8d, 0x31, 0x4a, 0xca, 0xd6, 0x54, 0xd3, 0xf9,
6407*6236dae4SAndroid Build Coastguard Worker   0xca, 0x28, 0x77, 0x84, 0x64, 0x75, 0xe9, 0x79, 0x02, 0x30, 0x2c, 0x38,
6408*6236dae4SAndroid Build Coastguard Worker   0x8f, 0xa2, 0x5c, 0x04, 0x01, 0xbb, 0x37, 0x9b, 0xe4, 0x62, 0x92, 0x32,
6409*6236dae4SAndroid Build Coastguard Worker   0xaf, 0x92, 0x14, 0x60, 0x84, 0xd8, 0x68, 0xe5, 0x4f, 0x2b, 0x0e, 0x67,
6410*6236dae4SAndroid Build Coastguard Worker   0x75, 0x43, 0x9e, 0xc0, 0x32, 0x65, 0x3d, 0x8c, 0xb4, 0x89, 0xcc, 0xd1,
6411*6236dae4SAndroid Build Coastguard Worker   0x24, 0x14, 0x21, 0x8e, 0xfc, 0x0c, 0x9c, 0x7c, 0xe0, 0x5f, 0xa9, 0xa7,
6412*6236dae4SAndroid Build Coastguard Worker   0x18, 0x09, 0xe2, 0x9a, 0xe9, 0xc2, 0x7a, 0x10, 0xb0, 0x74, 0x7c, 0x7a,
6413*6236dae4SAndroid Build Coastguard Worker   0x75, 0x5f, 0xe1, 0x15, 0x24, 0xf3, 0x31, 0x9a, 0x1a, 0x4e, 0x31, 0x98,
6414*6236dae4SAndroid Build Coastguard Worker   0x45, 0xa6, 0xc2, 0x90, 0xf7, 0x18, 0x1f, 0x21, 0x6b, 0x1b, 0x05, 0x62,
6415*6236dae4SAndroid Build Coastguard Worker   0x43, 0x92, 0xc2, 0x7c, 0x56, 0xe2, 0x15, 0x13, 0x03, 0x96, 0xe4, 0x33,
6416*6236dae4SAndroid Build Coastguard Worker   0xaf, 0x24, 0x4e, 0x25, 0x87, 0x93, 0xf8, 0xef, 0x7d, 0xd2, 0xc9, 0x20,
6417*6236dae4SAndroid Build Coastguard Worker   0x2f, 0xdc, 0x4a, 0x03, 0x0b, 0x61, 0x88, 0xf0, 0x06, 0x9a, 0x12, 0xe3,
6418*6236dae4SAndroid Build Coastguard Worker   0xca, 0x82, 0x6e, 0x14, 0xf0, 0x33, 0x52, 0x45, 0x02, 0x17, 0xb2, 0xe8,
6419*6236dae4SAndroid Build Coastguard Worker   0x5a, 0xd0, 0x09, 0x66, 0x83, 0x97, 0x71, 0x4c, 0xc0, 0xb2, 0x53, 0x06,
6420*6236dae4SAndroid Build Coastguard Worker   0x83, 0x45, 0x16, 0xa1, 0x34, 0x9e, 0x7b, 0x2c, 0x94, 0x9e, 0x8e, 0x3d,
6421*6236dae4SAndroid Build Coastguard Worker   0xf9, 0x2b, 0x19, 0xf3, 0x0a, 0xa7, 0x87, 0x07, 0x1e, 0x41, 0x49, 0x6f,
6422*6236dae4SAndroid Build Coastguard Worker   0x73, 0x81, 0x8d, 0xec, 0x17, 0xe4, 0x8c, 0x1b, 0x52, 0x42, 0x90, 0xe4,
6423*6236dae4SAndroid Build Coastguard Worker   0x9e, 0x49, 0xc9, 0x75, 0xc0, 0xf8, 0xc7, 0x6b, 0xdb, 0xd3, 0x4f, 0x71,
6424*6236dae4SAndroid Build Coastguard Worker   0x3e, 0x9f, 0x31, 0xae, 0x9e, 0xa7, 0xa5, 0x76, 0xda, 0x0f, 0x53, 0x8d,
6425*6236dae4SAndroid Build Coastguard Worker   0x80, 0x75, 0x6a, 0x0b, 0x18, 0x22, 0xcd, 0x61, 0x55, 0x52, 0x5d, 0xe3,
6426*6236dae4SAndroid Build Coastguard Worker   0xbf, 0x73, 0xc6, 0x29, 0x17, 0x3c, 0x8b, 0x76, 0xb0, 0xc6, 0x75, 0x39,
6427*6236dae4SAndroid Build Coastguard Worker   0x55, 0x20, 0x43, 0xc6, 0x66, 0x2b, 0x3a, 0xac, 0x61, 0xf3, 0xfd, 0x32,
6428*6236dae4SAndroid Build Coastguard Worker   0x0a, 0x58, 0xd0, 0x35, 0xd6, 0x45, 0xac, 0xc8, 0x5c, 0x02, 0x2f, 0xb4,
6429*6236dae4SAndroid Build Coastguard Worker   0x98, 0xb6, 0x8a, 0xcf, 0xbc, 0x67, 0x2a, 0x71, 0xe4, 0xae, 0x0c, 0x8d,
6430*6236dae4SAndroid Build Coastguard Worker   0x9f, 0x55, 0x3c, 0x23, 0x89, 0x52, 0xf0, 0x06, 0xfb, 0xd9, 0x70, 0x22,
6431*6236dae4SAndroid Build Coastguard Worker   0x0e, 0xa6, 0x63, 0x82, 0x75, 0xd5, 0xaa, 0x51, 0x52, 0x3e, 0x3d, 0x42,
6432*6236dae4SAndroid Build Coastguard Worker   0x6e, 0xae, 0x51, 0x36, 0x3e, 0x85, 0xa8, 0x31, 0xbb, 0xf1, 0xcd, 0xe9,
6433*6236dae4SAndroid Build Coastguard Worker   0xdb, 0xa3, 0xb0, 0x23, 0x1d, 0x6f, 0x84, 0xb4, 0x6e, 0xbf, 0xbf, 0x65,
6434*6236dae4SAndroid Build Coastguard Worker   0xdf, 0xff, 0xee, 0xd5, 0x57, 0x1f, 0x0f, 0x4f, 0xdf, 0xbd, 0x3e, 0xfe,
6435*6236dae4SAndroid Build Coastguard Worker   0xea, 0xc1, 0x51, 0xa2, 0x55, 0x55, 0x41, 0xdb, 0xc9, 0x4c, 0xbd, 0xe7,
6436*6236dae4SAndroid Build Coastguard Worker   0xdb, 0xbd, 0x8d, 0xb5, 0xf6, 0x57, 0xb6, 0xed, 0x57, 0x96, 0x9d, 0xe0,
6437*6236dae4SAndroid Build Coastguard Worker   0xce, 0x1a, 0x1c, 0x97, 0x3c, 0x96, 0x6c, 0xc8, 0x3d, 0xb2, 0xbf, 0x2e,
6438*6236dae4SAndroid Build Coastguard Worker   0xd3, 0x7a, 0x7a, 0x3b, 0xcb, 0x46, 0x5c, 0x2d, 0x26, 0x2a, 0xe0, 0x55,
6439*6236dae4SAndroid Build Coastguard Worker   0xa1, 0xf9, 0x8a, 0xe8, 0x4a, 0x6a, 0x0f, 0xb3, 0xbb, 0xa6, 0x69, 0x4b,
6440*6236dae4SAndroid Build Coastguard Worker   0x3c, 0xc4, 0xc1, 0xd9, 0xd9, 0xab, 0x83, 0xf3, 0x83, 0x39, 0x1f, 0x7d,
6441*6236dae4SAndroid Build Coastguard Worker   0xd6, 0x7a, 0xba, 0xf3, 0xa1, 0x7f, 0xf4, 0xfe, 0xec, 0xfd, 0x29, 0x42,
6442*6236dae4SAndroid Build Coastguard Worker   0x6b, 0xfd, 0x70, 0x30, 0x45, 0xcc, 0x31, 0x0e, 0x5e, 0xbf, 0x02, 0x8d,
6443*6236dae4SAndroid Build Coastguard Worker   0xae, 0x33, 0x67, 0x90, 0xe7, 0x6b, 0x28, 0xa7, 0x22, 0x4d, 0xe4, 0xd4,
6444*6236dae4SAndroid Build Coastguard Worker   0x28, 0x7c, 0x99, 0xb2, 0xcf, 0x27, 0xea, 0x21, 0x47, 0x97, 0x43, 0x61,
6445*6236dae4SAndroid Build Coastguard Worker   0x8d, 0xbc, 0xb1, 0x88, 0xae, 0xef, 0xfe, 0x67, 0x5e, 0x96, 0xf0, 0x56,
6446*6236dae4SAndroid Build Coastguard Worker   0xda, 0xce, 0xd2, 0x54, 0x87, 0xda, 0x38, 0x4a, 0xef, 0xd2, 0xe1, 0xac,
6447*6236dae4SAndroid Build Coastguard Worker   0xd6, 0x73, 0x40, 0x4c, 0x84, 0xa8, 0x7d, 0xed, 0x9d, 0xc2, 0x22, 0xdf,
6448*6236dae4SAndroid Build Coastguard Worker   0x98, 0x2a, 0xb6, 0xc5, 0x83, 0x43, 0xd0, 0x21, 0x12, 0x4e, 0x63, 0xb9,
6449*6236dae4SAndroid Build Coastguard Worker   0x40, 0xb0, 0x91, 0x40, 0x62, 0x2a, 0x58, 0x32, 0xb3, 0x15, 0xef, 0x9d,
6450*6236dae4SAndroid Build Coastguard Worker   0xef, 0x21, 0xa1, 0xe8, 0x1a, 0x81, 0x48, 0xf2, 0x94, 0x3c, 0xb1, 0xf7,
6451*6236dae4SAndroid Build Coastguard Worker   0x27, 0x38, 0xa2, 0xb1, 0x2a, 0xb9, 0x91, 0x58, 0xff, 0xb1, 0xf7, 0x50,
6452*6236dae4SAndroid Build Coastguard Worker   0x6d, 0x14, 0x6f, 0x91, 0xfe, 0x61, 0xd9, 0xe1, 0xa8, 0xbe, 0x9d, 0xf6,
6453*6236dae4SAndroid Build Coastguard Worker   0x91, 0x64, 0x24, 0x08, 0x78, 0x08, 0x27, 0x8d, 0x24, 0x17, 0xc0, 0x5c,
6454*6236dae4SAndroid Build Coastguard Worker   0x3f, 0xa3, 0x30, 0x4e, 0x2e, 0x91, 0x09, 0x3f, 0x43, 0x6c, 0x26, 0x2c,
6455*6236dae4SAndroid Build Coastguard Worker   0xc9, 0xc2, 0x7f, 0xad, 0x6f, 0xf6, 0x36, 0x3a, 0xfe, 0xe4, 0x51, 0x3a,
6456*6236dae4SAndroid Build Coastguard Worker   0x08, 0x0a, 0x8d, 0x04, 0x57, 0x51, 0x3a, 0xd6, 0x45, 0xf1, 0xe0, 0xfc,
6457*6236dae4SAndroid Build Coastguard Worker   0x58, 0xae, 0x81, 0xfe, 0x3a, 0x85, 0xf1, 0x83, 0x53, 0x89, 0x4f, 0xbd,
6458*6236dae4SAndroid Build Coastguard Worker   0xeb, 0x11, 0xf3, 0xed, 0x4b, 0x15, 0x92, 0x20, 0x23, 0xf3, 0x82, 0x30,
6459*6236dae4SAndroid Build Coastguard Worker   0x6c, 0x80, 0xe1, 0xc6, 0xe3, 0x06, 0x8c, 0x71, 0x27, 0x4c, 0xe6, 0x9c,
6460*6236dae4SAndroid Build Coastguard Worker   0x4a, 0xa0, 0xd2, 0x36, 0xb5, 0x43, 0x79, 0x16, 0x22, 0xc2, 0x5c, 0xfd,
6461*6236dae4SAndroid Build Coastguard Worker   0xcf, 0x64, 0x93, 0x93, 0xd1, 0x6f, 0xb8, 0xc0, 0xfe, 0x5c, 0x04, 0x5b,
6462*6236dae4SAndroid Build Coastguard Worker   0xa0, 0x5e, 0x77, 0xf9, 0x04, 0x0b, 0xe7, 0x76, 0x7e, 0x44, 0xfa, 0x1d,
6463*6236dae4SAndroid Build Coastguard Worker   0x7b, 0x5d, 0x62, 0x9c, 0x18, 0xea, 0xc1, 0xfb, 0x17, 0x82, 0xa3, 0x9e,
6464*6236dae4SAndroid Build Coastguard Worker   0x8c, 0x05, 0x37, 0xc6, 0x73, 0xea, 0xbc, 0x4d, 0xee, 0xb2, 0xc9, 0x6c,
6465*6236dae4SAndroid Build Coastguard Worker   0x12, 0xd1, 0x62, 0x58, 0xcb, 0x96, 0x27, 0x35, 0x6e, 0x85, 0xbe, 0x40,
6466*6236dae4SAndroid Build Coastguard Worker   0x4e, 0x03, 0xc3, 0x39, 0x61, 0x1a, 0xa8, 0xf1, 0xed, 0x04, 0x6e, 0x34,
6467*6236dae4SAndroid Build Coastguard Worker   0xb8, 0xff, 0xd5, 0x6b, 0x20, 0xc5, 0xfb, 0x93, 0xac, 0xae, 0x5a, 0x3e,
6468*6236dae4SAndroid Build Coastguard Worker   0x21, 0xd0, 0x44, 0x12, 0xcc, 0xbd, 0x51, 0x80, 0x18, 0xbe, 0xbf, 0x5c,
6469*6236dae4SAndroid Build Coastguard Worker   0xc8, 0xcd, 0x06, 0xf2, 0xa6, 0xaa, 0x8f, 0x4e, 0xaa, 0x79, 0x5a, 0x66,
6470*6236dae4SAndroid Build Coastguard Worker   0xc5, 0xc8, 0x9c, 0x49, 0x54, 0x60, 0xb3, 0x7c, 0x06, 0xbb, 0xc8, 0x01,
6471*6236dae4SAndroid Build Coastguard Worker   0x8b, 0x5a, 0x7f, 0xe3, 0x79, 0xa1, 0xb1, 0xd4, 0x2d, 0xea, 0x53, 0x55,
6472*6236dae4SAndroid Build Coastguard Worker   0xa4, 0x26, 0x8f, 0x3f, 0xef, 0x6d, 0x6f, 0x21, 0x20, 0x9c, 0x6b, 0x43,
6473*6236dae4SAndroid Build Coastguard Worker   0x0b, 0x40, 0x29, 0x5a, 0xea, 0xd9, 0x44, 0x91, 0x37, 0xaa, 0xde, 0xef,
6474*6236dae4SAndroid Build Coastguard Worker   0xe3, 0x13, 0xaa, 0x16, 0x30, 0x43, 0x63, 0x7b, 0xb7, 0x36, 0x82, 0xfc,
6475*6236dae4SAndroid Build Coastguard Worker   0xf0, 0xb8, 0x97, 0xb7, 0x7b, 0x9b, 0x3b, 0xcb, 0xf9, 0x14, 0xa9, 0x72,
6476*6236dae4SAndroid Build Coastguard Worker   0x65, 0x92, 0xdc, 0xd1, 0x10, 0xbd, 0x10, 0xdb, 0x15, 0xd1, 0xfe, 0x9b,
6477*6236dae4SAndroid Build Coastguard Worker   0xd3, 0xfe, 0xf9, 0xe6, 0xde, 0xd9, 0xe9, 0x7b, 0xf8, 0x13, 0xff, 0xbe,
6478*6236dae4SAndroid Build Coastguard Worker   0x45, 0x7f, 0xdf, 0xfa, 0xbc, 0x3d, 0xec, 0x6b, 0x49, 0xc8, 0xd7, 0x52,
6479*6236dae4SAndroid Build Coastguard Worker   0x61, 0x46, 0xea, 0x44, 0x9d, 0x4e, 0xec, 0x3d, 0x67, 0x20, 0x34, 0x2f,
6480*6236dae4SAndroid Build Coastguard Worker   0x50, 0xee, 0x2b, 0x07, 0x05, 0x34, 0x29, 0xe7, 0x53, 0x9a, 0xb3, 0xdb,
6481*6236dae4SAndroid Build Coastguard Worker   0x8b, 0xfc, 0xbc, 0xe0, 0xac, 0x56, 0x7d, 0x52, 0xc0, 0x72, 0x14, 0x86,
6482*6236dae4SAndroid Build Coastguard Worker   0xa7, 0xed, 0x73, 0x61, 0xb0, 0x13, 0x29, 0x0e, 0x66, 0xcf, 0x05, 0x68,
6483*6236dae4SAndroid Build Coastguard Worker   0x3b, 0x98, 0x15, 0xda, 0xfc, 0xd5, 0x70, 0x0c, 0xd6, 0x4e, 0x8a, 0xb9,
6484*6236dae4SAndroid Build Coastguard Worker   0x5e, 0xa3, 0x94, 0x23, 0x8b, 0xf8, 0x93, 0x90, 0xa9, 0x26, 0xb5, 0xc7,
6485*6236dae4SAndroid Build Coastguard Worker   0x25, 0x43, 0x2a, 0xb6, 0x66, 0x46, 0x47, 0x45, 0x03, 0x9a, 0x30, 0x9f,
6486*6236dae4SAndroid Build Coastguard Worker   0x84, 0x50, 0xec, 0x14, 0x3a, 0xa2, 0x3d, 0x1c, 0x25, 0xd2, 0xbb, 0x1e,
6487*6236dae4SAndroid Build Coastguard Worker   0x56, 0x85, 0x04, 0x7d, 0x77, 0x7a, 0x1e, 0x25, 0x17, 0x17, 0x8a, 0x1c,
6488*6236dae4SAndroid Build Coastguard Worker   0x44, 0xc5, 0x53, 0xa8, 0xb1, 0xaf, 0x93, 0xff, 0x46, 0xe3, 0xd0, 0x55,
6489*6236dae4SAndroid Build Coastguard Worker   0x00, 0x97, 0x80, 0xee, 0xce, 0xf3, 0x93, 0xfe, 0x3a, 0x3a, 0x58, 0x39,
6490*6236dae4SAndroid Build Coastguard Worker   0xfd, 0xb5, 0xff, 0xee, 0xb8, 0xdb, 0x08, 0xd2, 0xb8, 0xa9, 0x69, 0x6b,
6491*6236dae4SAndroid Build Coastguard Worker   0x68, 0x0c, 0x0a, 0x7e, 0x78, 0x9b, 0x76, 0x8e, 0x0e, 0x60, 0xa0, 0x41,
6492*6236dae4SAndroid Build Coastguard Worker   0x7b, 0x51, 0x87, 0x36, 0xb4, 0xc3, 0x50, 0x57, 0x1d, 0xda, 0xd7, 0x0e,
6493*6236dae4SAndroid Build Coastguard Worker   0x57, 0xe9, 0x90, 0xad, 0x48, 0xf3, 0x45, 0xe4, 0xdf, 0x7b, 0x1f, 0xf8,
6494*6236dae4SAndroid Build Coastguard Worker   0x82, 0xdc, 0x51, 0x08, 0x9f, 0x86, 0xaa, 0x5f, 0x07, 0x0d, 0x35, 0x5c,
6495*6236dae4SAndroid Build Coastguard Worker   0x18, 0x2d, 0xaa, 0x23, 0x03, 0x6f, 0xf1, 0xc0, 0x34, 0x2e, 0xfc, 0x1d,
6496*6236dae4SAndroid Build Coastguard Worker   0x87, 0x25, 0xa6, 0x1d, 0xa4, 0x21, 0x6b, 0x95, 0xbe, 0x63, 0x87, 0x36,
6497*6236dae4SAndroid Build Coastguard Worker   0x63, 0xc3, 0xc4, 0x28, 0x1e, 0xc7, 0x4f, 0x29, 0x73, 0x80, 0xc8, 0x43,
6498*6236dae4SAndroid Build Coastguard Worker   0xdb, 0x37, 0xbb, 0xc4, 0x04, 0x99, 0x76, 0xe1, 0xba, 0x9d, 0x88, 0xe7,
6499*6236dae4SAndroid Build Coastguard Worker   0x89, 0x84, 0xeb, 0x09, 0x7e, 0xdb, 0x71, 0xbc, 0x2b, 0xb5, 0x57, 0xef,
6500*6236dae4SAndroid Build Coastguard Worker   0x43, 0x59, 0xe8, 0xa5, 0x9a, 0x74, 0x3a, 0xa1, 0xaa, 0xf0, 0x75, 0x1c,
6501*6236dae4SAndroid Build Coastguard Worker   0x13, 0xdf, 0x9f, 0x24, 0x78, 0xcf, 0x9a, 0xd0, 0xa7, 0x16, 0x08, 0xeb,
6502*6236dae4SAndroid Build Coastguard Worker   0x41, 0x22, 0xa0, 0x67, 0xc1, 0xc3, 0x14, 0x33, 0x9c, 0xe2, 0xa5, 0xed,
6503*6236dae4SAndroid Build Coastguard Worker   0xe1, 0xb8, 0x43, 0x01, 0x5e, 0x0c, 0x52, 0x9d, 0xd6, 0xd9, 0xdc, 0x7a,
6504*6236dae4SAndroid Build Coastguard Worker   0xde, 0xdb, 0x80, 0xff, 0x07, 0xfb, 0x22, 0x9e, 0x1b, 0x82, 0x44, 0xb7,
6505*6236dae4SAndroid Build Coastguard Worker   0xc0, 0xd7, 0xe6, 0xc9, 0xf4, 0xae, 0xcd, 0x92, 0x2c, 0x3e, 0x8a, 0xf2,
6506*6236dae4SAndroid Build Coastguard Worker   0xb2, 0xd3, 0x7b, 0xf4, 0x35, 0x8a, 0x1b, 0x69, 0xae, 0xd0, 0x64, 0x24,
6507*6236dae4SAndroid Build Coastguard Worker   0x3f, 0xd1, 0x33, 0x5e, 0xce, 0x9e, 0x76, 0x5d, 0xaa, 0x24, 0x72, 0x44,
6508*6236dae4SAndroid Build Coastguard Worker   0xda, 0xde, 0xce, 0xce, 0xf6, 0x9e, 0xfe, 0x1b, 0xce, 0xd3, 0xde, 0x0b,
6509*6236dae4SAndroid Build Coastguard Worker   0xf8, 0xc1, 0x92, 0xf1, 0x14, 0xac, 0x58, 0x1d, 0xdf, 0xb0, 0x1d, 0x14,
6510*6236dae4SAndroid Build Coastguard Worker   0xbf, 0x41, 0x49, 0xc8, 0x05, 0xb3, 0xbd, 0x46, 0x52, 0xe3, 0xcb, 0x86,
6511*6236dae4SAndroid Build Coastguard Worker   0xc7, 0xf9, 0x50, 0x4c, 0x64, 0xba, 0x9b, 0x62, 0x38, 0x7b, 0xfb, 0xc5,
6512*6236dae4SAndroid Build Coastguard Worker   0xc5, 0x05, 0x68, 0xc3, 0xed, 0x3b, 0xf8, 0x50, 0x1e, 0x59, 0x7f, 0x2f,
6513*6236dae4SAndroid Build Coastguard Worker   0x2d, 0x44, 0x4c, 0x15, 0x62, 0x13, 0xe3, 0x3a, 0x4a, 0xea, 0xa6, 0x8c,
6514*6236dae4SAndroid Build Coastguard Worker   0xe4, 0xe1, 0x7a, 0xa1, 0xf2, 0xe1, 0xc6, 0x13, 0x6c, 0x81, 0x31, 0xeb,
6515*6236dae4SAndroid Build Coastguard Worker   0x13, 0x52, 0x8f, 0x07, 0x40, 0xb7, 0x00, 0xb6, 0xa4, 0xba, 0xce, 0xa6,
6516*6236dae4SAndroid Build Coastguard Worker   0x53, 0xb4, 0x29, 0xa9, 0x6d, 0x00, 0x1e, 0x13, 0x13, 0xa5, 0xa6, 0x64,
6517*6236dae4SAndroid Build Coastguard Worker   0x09, 0xc6, 0xb6, 0x95, 0xcc, 0x61, 0xaa, 0xea, 0xd5, 0x68, 0xf6, 0x20,
6518*6236dae4SAndroid Build Coastguard Worker   0xbd, 0xf0, 0x63, 0xad, 0x9c, 0x3c, 0xed, 0xa2, 0xec, 0x09, 0x40, 0xd8,
6519*6236dae4SAndroid Build Coastguard Worker   0x08, 0x11, 0xf5, 0xf2, 0x84, 0x25, 0x1a, 0xde, 0xad, 0x16, 0x83, 0x4a,
6520*6236dae4SAndroid Build Coastguard Worker   0x80, 0x0e, 0xba, 0x01, 0x69, 0x63, 0x2b, 0xc7, 0x8d, 0x1f, 0xb4, 0x7f,
6521*6236dae4SAndroid Build Coastguard Worker   0xfc, 0x5f, 0x47, 0x16, 0xd4, 0xdb, 0xa0, 0x66, 0x73, 0xad, 0x5e, 0xa8,
6522*6236dae4SAndroid Build Coastguard Worker   0xa4, 0x32, 0xea, 0xc4, 0x87, 0x51, 0x4c, 0x38, 0xa3, 0x4e, 0x3e, 0x57,
6523*6236dae4SAndroid Build Coastguard Worker   0xd1, 0xf2, 0xda, 0x93, 0x35, 0x85, 0x37, 0x27, 0x03, 0x26, 0xae, 0x23,
6524*6236dae4SAndroid Build Coastguard Worker   0x0a, 0x91, 0x7f, 0x11, 0x49, 0x17, 0x18, 0x26, 0xb6, 0xa9, 0xf0, 0xc6,
6525*6236dae4SAndroid Build Coastguard Worker   0x03, 0x59, 0x4b, 0x39, 0xbf, 0x5b, 0x32, 0xc7, 0xda, 0xf8, 0x7a, 0x96,
6526*6236dae4SAndroid Build Coastguard Worker   0xa3, 0x4e, 0x4e, 0x0a, 0xa2, 0x57, 0x4f, 0xa6, 0x98, 0x1f, 0x0c, 0xc0,
6527*6236dae4SAndroid Build Coastguard Worker   0x36, 0xab, 0x7f, 0xaf, 0x10, 0xe5, 0x3c, 0x2d, 0x04, 0x28, 0xf5, 0x78,
6528*6236dae4SAndroid Build Coastguard Worker   0xad, 0xe3, 0x30, 0xda, 0xd9, 0xd8, 0x58, 0xee, 0xa4, 0x95, 0x84, 0xfa,
6529*6236dae4SAndroid Build Coastguard Worker   0x8d, 0x1d, 0x29, 0x9c, 0x93, 0x34, 0xe4, 0x93, 0x84, 0x1d, 0x78, 0xe2,
6530*6236dae4SAndroid Build Coastguard Worker   0x9f, 0x92, 0x92, 0x5d, 0xf7, 0x73, 0x11, 0x80, 0xd6, 0x8c, 0xe3, 0x0a,
6531*6236dae4SAndroid Build Coastguard Worker   0xab, 0xce, 0x28, 0x4a, 0x49, 0x0c, 0x69, 0x20, 0xfa, 0x74, 0x83, 0xd9,
6532*6236dae4SAndroid Build Coastguard Worker   0x4b, 0x46, 0x79, 0xd9, 0xd2, 0xde, 0xa7, 0x2d, 0xd6, 0x08, 0xac, 0x87,
6533*6236dae4SAndroid Build Coastguard Worker   0xb2, 0x15, 0x0c, 0x5c, 0x8f, 0xc5, 0xa7, 0xe8, 0x61, 0x10, 0xda, 0x40,
6534*6236dae4SAndroid Build Coastguard Worker   0xa7, 0x27, 0xa4, 0x88, 0xd2, 0x28, 0xd2, 0x13, 0xc2, 0x53, 0x2b, 0xb2,
6535*6236dae4SAndroid Build Coastguard Worker   0x3c, 0x66, 0x2c, 0x1c, 0x79, 0x90, 0xe2, 0xe4, 0xd8, 0x7b, 0x41, 0x8e,
6536*6236dae4SAndroid Build Coastguard Worker   0x00, 0x33, 0x05, 0xfb, 0x5b, 0x6a, 0x2d, 0x07, 0x27, 0xc5, 0x81, 0xbe,
6537*6236dae4SAndroid Build Coastguard Worker   0x19, 0x04, 0x24, 0x96, 0x1c, 0x23, 0x30, 0x9a, 0xcd, 0xd7, 0xc9, 0x39,
6538*6236dae4SAndroid Build Coastguard Worker   0x7a, 0x0d, 0x46, 0x51, 0x8e, 0x71, 0x19, 0x0e, 0xad, 0xe8, 0x96, 0xe3,
6539*6236dae4SAndroid Build Coastguard Worker   0x64, 0xeb, 0x34, 0x0f, 0x55, 0xbe, 0x36, 0xe2, 0x10, 0xf2, 0x9c, 0xe3,
6540*6236dae4SAndroid Build Coastguard Worker   0x29, 0x7b, 0x97, 0xd6, 0x92, 0x14, 0xc6, 0x73, 0x97, 0x8c, 0x15, 0x29,
6541*6236dae4SAndroid Build Coastguard Worker   0x88, 0x85, 0x49, 0xf8, 0xa8, 0xc4, 0xe4, 0x0f, 0x31, 0x5e, 0x3f, 0xba,
6542*6236dae4SAndroid Build Coastguard Worker   0x43, 0x38, 0x3f, 0x83, 0x81, 0xee, 0xd1, 0xff, 0xdd, 0x85, 0xc3, 0xd7,
6543*6236dae4SAndroid Build Coastguard Worker   0x51, 0x67, 0x3c, 0x4f, 0x3f, 0x2c, 0x86, 0x74, 0x42, 0x16, 0x8f, 0x3e,
6544*6236dae4SAndroid Build Coastguard Worker   0x78, 0xd1, 0x04, 0xe0, 0x98, 0xa5, 0x2c, 0x14, 0x21, 0x50, 0x29, 0x11,
6545*6236dae4SAndroid Build Coastguard Worker   0x93, 0x1d, 0x87, 0xb4, 0x06, 0xcd, 0x49, 0x0b, 0x15, 0x78, 0x3b, 0x08,
6546*6236dae4SAndroid Build Coastguard Worker   0x1b, 0x98, 0x1e, 0x57, 0x8e, 0x0c, 0x86, 0x8e, 0x4c, 0x14, 0x44, 0xbf,
6547*6236dae4SAndroid Build Coastguard Worker   0x18, 0xbb, 0xb7, 0x09, 0xb1, 0x9a, 0xf9, 0x44, 0xa8, 0x5a, 0xcc, 0xc9,
6548*6236dae4SAndroid Build Coastguard Worker   0x6d, 0x8e, 0x07, 0x96, 0x9d, 0x2d, 0x8c, 0x60, 0xd0, 0xa5, 0x2c, 0x0f,
6549*6236dae4SAndroid Build Coastguard Worker   0x21, 0xcf, 0xdb, 0x2e, 0x00, 0x82, 0xb7, 0x61, 0x00, 0xcc, 0x6b, 0x72,
6550*6236dae4SAndroid Build Coastguard Worker   0xbf, 0x15, 0x5d, 0x91, 0x3a, 0xb7, 0x57, 0x85, 0xe7, 0x55, 0x67, 0x0b,
6551*6236dae4SAndroid Build Coastguard Worker   0xcb, 0x22, 0xab, 0x08, 0xa0, 0x12, 0x0e, 0x88, 0x45, 0x06, 0x14, 0x6c,
6552*6236dae4SAndroid Build Coastguard Worker   0xb8, 0xa1, 0xfa, 0x85, 0x46, 0xa8, 0x0f, 0xb4, 0xd9, 0x34, 0xa1, 0x6a,
6553*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x20, 0x4c, 0xcd, 0x0d, 0xae, 0x03, 0xc4, 0xcc, 0xa0, 0xa8, 0x84,
6554*6236dae4SAndroid Build Coastguard Worker   0x73, 0x10, 0x6c, 0x04, 0x98, 0x2d, 0x29, 0xe9, 0x56, 0x10, 0xbc, 0x50,
6555*6236dae4SAndroid Build Coastguard Worker   0xbc, 0x3c, 0xa8, 0x56, 0x72, 0x9e, 0x06, 0xca, 0x20, 0x88, 0xa8, 0x03,
6556*6236dae4SAndroid Build Coastguard Worker   0x47, 0x37, 0x19, 0x42, 0xff, 0x20, 0x63, 0x81, 0xbe, 0x83, 0x7e, 0x7a,
6557*6236dae4SAndroid Build Coastguard Worker   0x66, 0x24, 0x1a, 0x97, 0x01, 0x41, 0xaf, 0x32, 0x07, 0x21, 0x08, 0x8e,
6558*6236dae4SAndroid Build Coastguard Worker   0xe4, 0x95, 0xa7, 0x94, 0x55, 0x59, 0x3d, 0x4b, 0xea, 0xc7, 0x95, 0x93,
6559*6236dae4SAndroid Build Coastguard Worker   0xcc, 0x93, 0x95, 0x2c, 0x2c, 0xdd, 0x34, 0xf4, 0x40, 0xbc, 0x89, 0x38,
6560*6236dae4SAndroid Build Coastguard Worker   0xfa, 0x97, 0x08, 0xd3, 0x21, 0x67, 0xca, 0xc4, 0xe4, 0x87, 0x99, 0x67,
6561*6236dae4SAndroid Build Coastguard Worker   0xdf, 0x3f, 0xee, 0xcd, 0x78, 0x40, 0x2e, 0xf7, 0x98, 0xfb, 0xc7, 0x2d,
6562*6236dae4SAndroid Build Coastguard Worker   0xf4, 0x13, 0xb8, 0xec, 0xb7, 0x8f, 0xd2, 0xe1, 0xbf, 0x1f, 0x10, 0xa7,
6563*6236dae4SAndroid Build Coastguard Worker   0x67, 0x89, 0x84, 0xaa, 0x5d, 0x40, 0x4f, 0x02, 0x75, 0x90, 0xab, 0x57,
6564*6236dae4SAndroid Build Coastguard Worker   0x2b, 0x9c, 0x79, 0x4c, 0xd5, 0x8c, 0x8e, 0x03, 0xa9, 0x47, 0x14, 0x7a,
6565*6236dae4SAndroid Build Coastguard Worker   0x06, 0x4a, 0x8d, 0xef, 0xed, 0x80, 0x0e, 0xe6, 0x82, 0xe9, 0x3d, 0x61,
6566*6236dae4SAndroid Build Coastguard Worker   0x3b, 0x75, 0x98, 0x2f, 0x78, 0x79, 0x94, 0x9d, 0x3e, 0xd8, 0x46, 0xfc,
6567*6236dae4SAndroid Build Coastguard Worker   0xcd, 0xbd, 0x8e, 0x04, 0x5b, 0x7b, 0x46, 0x03, 0xe2, 0xb1, 0xb5, 0x38,
6568*6236dae4SAndroid Build Coastguard Worker   0x57, 0x4b, 0xf2, 0x24, 0x94, 0x41, 0x52, 0xab, 0x3d, 0x1c, 0xb6, 0x09,
6569*6236dae4SAndroid Build Coastguard Worker   0xdc, 0xfc, 0xec, 0x9b, 0x83, 0x93, 0x0f, 0x47, 0x9b, 0x9f, 0x46, 0xf8,
6570*6236dae4SAndroid Build Coastguard Worker   0xaf, 0x2d, 0xfe, 0xd7, 0x56, 0x27, 0xc4, 0x49, 0x20, 0x5a, 0x57, 0x3e,
6571*6236dae4SAndroid Build Coastguard Worker   0x5b, 0x89, 0xaa, 0xfb, 0xc9, 0xa0, 0x18, 0x1b, 0x5e, 0x12, 0x52, 0x68,
6572*6236dae4SAndroid Build Coastguard Worker   0xc8, 0xb7, 0x2b, 0x0a, 0x8f, 0x81, 0xa0, 0x92, 0x18, 0x4e, 0xfb, 0xa2,
6573*6236dae4SAndroid Build Coastguard Worker   0xa9, 0x24, 0x0d, 0x5a, 0x85, 0x24, 0x05, 0x9c, 0x5d, 0x30, 0x0a, 0xdc,
6574*6236dae4SAndroid Build Coastguard Worker   0xed, 0x91, 0x91, 0xbd, 0x14, 0x78, 0x3e, 0x9f, 0x9b, 0x9a, 0x4e, 0x57,
6575*6236dae4SAndroid Build Coastguard Worker   0xa9, 0x8a, 0xa3, 0xca, 0x95, 0x24, 0x22, 0xf0, 0xf8, 0x56, 0x24, 0xd6,
6576*6236dae4SAndroid Build Coastguard Worker   0x75, 0x43, 0x36, 0x24, 0xe6, 0xb2, 0x40, 0x4a, 0x00, 0x81, 0x83, 0x9b,
6577*6236dae4SAndroid Build Coastguard Worker   0x16, 0x78, 0xfc, 0xb6, 0xe4, 0x79, 0x23, 0xe2, 0xdb, 0xbd, 0xa2, 0x52,
6578*6236dae4SAndroid Build Coastguard Worker   0xe1, 0xcd, 0xa3, 0x57, 0x06, 0xad, 0x1a, 0xdf, 0x6d, 0x0f, 0x37, 0x10,
6579*6236dae4SAndroid Build Coastguard Worker   0x35, 0xcf, 0x01, 0x56, 0x3d, 0x21, 0xc8, 0x2c, 0x4d, 0x18, 0xb3, 0x91,
6580*6236dae4SAndroid Build Coastguard Worker   0x03, 0x14, 0x71, 0xa3, 0xc2, 0xf5, 0xad, 0x39, 0x6d, 0xe9, 0x54, 0x7a,
6581*6236dae4SAndroid Build Coastguard Worker   0x28, 0x66, 0x78, 0xd4, 0x08, 0x5f, 0x73, 0x2c, 0xa4, 0x67, 0x83, 0x73,
6582*6236dae4SAndroid Build Coastguard Worker   0x63, 0x0b, 0xc2, 0x42, 0x5a, 0x30, 0x25, 0xc0, 0x4d, 0xbc, 0x7c, 0xd1,
6583*6236dae4SAndroid Build Coastguard Worker   0x1c, 0xd4, 0xee, 0x55, 0xb8, 0x94, 0xd6, 0xdc, 0x14, 0x08, 0xdd, 0x3e,
6584*6236dae4SAndroid Build Coastguard Worker   0xda, 0x16, 0x27, 0x69, 0xa3, 0x5a, 0x14, 0xcb, 0x3a, 0x37, 0xf1, 0x2e,
6585*6236dae4SAndroid Build Coastguard Worker   0x2e, 0xf4, 0x28, 0x9c, 0x99, 0x98, 0x9c, 0x02, 0x57, 0x63, 0x10, 0x5e,
6586*6236dae4SAndroid Build Coastguard Worker   0xc5, 0xa4, 0xf2, 0x71, 0xe2, 0x05, 0x10, 0xe8, 0xc0, 0x29, 0x4e, 0x0f,
6587*6236dae4SAndroid Build Coastguard Worker   0xe6, 0xf1, 0x18, 0xee, 0x87, 0xef, 0xdf, 0x8f, 0xd3, 0x35, 0x35, 0xdb,
6588*6236dae4SAndroid Build Coastguard Worker   0xf4, 0xa6, 0x5e, 0x7f, 0x5b, 0xfc, 0x0c, 0x93, 0x4f, 0xe4, 0x23, 0xa1,
6589*6236dae4SAndroid Build Coastguard Worker   0xeb, 0x5e, 0xae, 0xef, 0xb9, 0x33, 0xb7, 0xf2, 0x8f, 0xc1, 0x46, 0x5c,
6590*6236dae4SAndroid Build Coastguard Worker   0xd1, 0xd1, 0xf0, 0x5b, 0x60, 0x8b, 0x12, 0x52, 0x63, 0xa9, 0x82, 0xc4,
6591*6236dae4SAndroid Build Coastguard Worker   0xe3, 0x1f, 0x51, 0x4c, 0xb4, 0x9d, 0x9a, 0x7b, 0x9b, 0x2b, 0x49, 0x80,
6592*6236dae4SAndroid Build Coastguard Worker   0x9f, 0x0b, 0x49, 0x1c, 0x34, 0x8c, 0x26, 0x37, 0x66, 0xdb, 0x23, 0xdc,
6593*6236dae4SAndroid Build Coastguard Worker   0x56, 0x07, 0xe7, 0xdf, 0xa1, 0x2e, 0x48, 0xa9, 0x43, 0x2f, 0x77, 0x57,
6594*6236dae4SAndroid Build Coastguard Worker   0x18, 0xec, 0xdd, 0xa9, 0x9e, 0xe1, 0xd4, 0xf1, 0x91, 0x57, 0x10, 0x44,
6595*6236dae4SAndroid Build Coastguard Worker   0xa0, 0x9f, 0x0d, 0x8c, 0x34, 0x51, 0x22, 0x34, 0x4f, 0x15, 0xbd, 0xe5,
6596*6236dae4SAndroid Build Coastguard Worker   0x8c, 0xb8, 0x46, 0xa2, 0x8d, 0x51, 0x42, 0xd9, 0x10, 0x49, 0x7d, 0xd0,
6597*6236dae4SAndroid Build Coastguard Worker   0x7d, 0xb2, 0xe3, 0x69, 0xd1, 0x60, 0xfb, 0x4a, 0x32, 0x10, 0x81, 0x82,
6598*6236dae4SAndroid Build Coastguard Worker   0xd0, 0x15, 0x2a, 0x6f, 0x63, 0x4e, 0x96, 0x9d, 0xb6, 0xa4, 0x93, 0xac,
6599*6236dae4SAndroid Build Coastguard Worker   0x12, 0xce, 0x5e, 0xb0, 0xc8, 0x80, 0x09, 0xcc, 0x08, 0x5a, 0x68, 0xb0,
6600*6236dae4SAndroid Build Coastguard Worker   0x0f, 0x62, 0x1e, 0xa8, 0x22, 0xe6, 0xe0, 0xba, 0x7f, 0xec, 0x7e, 0xb6,
6601*6236dae4SAndroid Build Coastguard Worker   0x67, 0xa8, 0xa2, 0xcc, 0xe2, 0x47, 0x02, 0xc3, 0x8c, 0xf1, 0x18, 0x9f,
6602*6236dae4SAndroid Build Coastguard Worker   0x78, 0xc8, 0xc8, 0x2a, 0x2b, 0xee, 0xa6, 0x65, 0x4a, 0x3f, 0x06, 0xa0,
6603*6236dae4SAndroid Build Coastguard Worker   0x3b, 0x05, 0xce, 0x40, 0x62, 0xe3, 0x8d, 0xd2, 0x9c, 0xc5, 0x4f, 0xff,
6604*6236dae4SAndroid Build Coastguard Worker   0x1d, 0x49, 0xdb, 0x1a, 0x7e, 0x8d, 0xb4, 0x04, 0x07, 0x15, 0xbb, 0x2a,
6605*6236dae4SAndroid Build Coastguard Worker   0x44, 0x04, 0xd1, 0x17, 0x1a, 0x2c, 0x4b, 0xd6, 0xfb, 0xb0, 0xeb, 0x57,
6606*6236dae4SAndroid Build Coastguard Worker   0x1c, 0x5b, 0x5e, 0x72, 0x83, 0x47, 0x0d, 0x65, 0x52, 0x94, 0xcb, 0x00,
6607*6236dae4SAndroid Build Coastguard Worker   0x9f, 0x3d, 0x70, 0xc9, 0x0f, 0x64, 0xa6, 0x73, 0xb3, 0x38, 0x1f, 0x7e,
6608*6236dae4SAndroid Build Coastguard Worker   0x0b, 0xae, 0xfb, 0x07, 0xc6, 0x70, 0xbc, 0xb1, 0x74, 0xc1, 0xc4, 0xa3,
6609*6236dae4SAndroid Build Coastguard Worker   0xcc, 0xcb, 0x24, 0x6b, 0x00, 0xca, 0x81, 0x00, 0xfb, 0x49, 0x01, 0xae,
6610*6236dae4SAndroid Build Coastguard Worker   0xac, 0x1c, 0x6e, 0xf4, 0x60, 0x92, 0xa0, 0xb8, 0x91, 0x82, 0xed, 0x53,
6611*6236dae4SAndroid Build Coastguard Worker   0x4d, 0x1f, 0x92, 0xb3, 0x90, 0xa7, 0x58, 0x8a, 0x9e, 0x50, 0xe7, 0x10,
6612*6236dae4SAndroid Build Coastguard Worker   0xf4, 0x2a, 0x39, 0x25, 0xcb, 0x19, 0xb0, 0x5c, 0x39, 0xbc, 0x22, 0x5c,
6613*6236dae4SAndroid Build Coastguard Worker   0x14, 0xf4, 0x62, 0xa5, 0x23, 0xbe, 0xba, 0xc2, 0xc1, 0x62, 0x1e, 0x55,
6614*6236dae4SAndroid Build Coastguard Worker   0xd4, 0x0d, 0x19, 0x04, 0x77, 0x19, 0x2f, 0x53, 0xf8, 0xbd, 0x4a, 0x22,
6615*6236dae4SAndroid Build Coastguard Worker   0xfa, 0x28, 0x4e, 0xd7, 0xcc, 0x37, 0x38, 0x5c, 0x97, 0x74, 0xdc, 0x2b,
6616*6236dae4SAndroid Build Coastguard Worker   0x72, 0xee, 0xa5, 0xe3, 0xca, 0x5e, 0x07, 0x66, 0x95, 0xf6, 0x5e, 0x20,
6617*6236dae4SAndroid Build Coastguard Worker   0xdb, 0x3c, 0x2f, 0xe6, 0x03, 0xbb, 0x30, 0x4e, 0xcb, 0x85, 0x37, 0x35,
6618*6236dae4SAndroid Build Coastguard Worker   0xc4, 0x57, 0xe4, 0xd9, 0xa1, 0x15, 0x88, 0x2c, 0x7d, 0xaf, 0x28, 0x79,
6619*6236dae4SAndroid Build Coastguard Worker   0x0b, 0x86, 0x73, 0x4c, 0x1d, 0x83, 0xa0, 0xd7, 0xe6, 0xac, 0x43, 0xd1,
6620*6236dae4SAndroid Build Coastguard Worker   0xf4, 0x71, 0x33, 0xe9, 0x6e, 0x9d, 0x80, 0xf0, 0x67, 0x02, 0x4c, 0xd0,
6621*6236dae4SAndroid Build Coastguard Worker   0xe3, 0xbc, 0xf1, 0x7c, 0x77, 0x03, 0x2f, 0x3d, 0xc4, 0xdb, 0xe5, 0x4b,
6622*6236dae4SAndroid Build Coastguard Worker   0x40, 0xc4, 0x36, 0x87, 0x2d, 0x3d, 0xcf, 0x50, 0x61, 0x76, 0x4d, 0x80,
6623*6236dae4SAndroid Build Coastguard Worker   0xfe, 0xdc, 0x65, 0xdc, 0xda, 0x66, 0x8b, 0xe8, 0x55, 0x41, 0x20, 0x0a,
6624*6236dae4SAndroid Build Coastguard Worker   0xea, 0xf6, 0x8b, 0xa1, 0xce, 0x38, 0xbe, 0xa8, 0xbd, 0x63, 0xe8, 0x70,
6625*6236dae4SAndroid Build Coastguard Worker   0xda, 0xd2, 0x8e, 0x3a, 0xfb, 0xaa, 0xdd, 0x0a, 0x53, 0xec, 0xbe, 0xfe,
6626*6236dae4SAndroid Build Coastguard Worker   0x78, 0x36, 0xc7, 0x27, 0x63, 0xa2, 0xc5, 0x3e, 0xfe, 0xe9, 0x29, 0xb0,
6627*6236dae4SAndroid Build Coastguard Worker   0x04, 0x2d, 0x88, 0x19, 0xaf, 0x18, 0x9f, 0x16, 0x4c, 0x45, 0x2d, 0x4b,
6628*6236dae4SAndroid Build Coastguard Worker   0x51, 0x87, 0xbb, 0x90, 0x84, 0xab, 0xd7, 0xb4, 0x81, 0x53, 0x10, 0x9b,
6629*6236dae4SAndroid Build Coastguard Worker   0x00, 0x9d, 0x27, 0x06, 0x8d, 0xde, 0x66, 0x51, 0x3a, 0x1d, 0xb0, 0x1a,
6630*6236dae4SAndroid Build Coastguard Worker   0x51, 0x24, 0x8c, 0x9a, 0x31, 0x27, 0x53, 0x85, 0x89, 0xe7, 0x2c, 0x42,
6631*6236dae4SAndroid Build Coastguard Worker   0x51, 0xcf, 0xba, 0xd4, 0x0a, 0x4e, 0x9e, 0x32, 0x68, 0x08, 0x75, 0xcc,
6632*6236dae4SAndroid Build Coastguard Worker   0x66, 0xd9, 0xa1, 0x23, 0x80, 0xb1, 0xfb, 0xf0, 0x87, 0x20, 0x5c, 0xbb,
6633*6236dae4SAndroid Build Coastguard Worker   0x0e, 0x8a, 0x63, 0xc0, 0x8c, 0xd2, 0xdc, 0x8a, 0x8d, 0x67, 0x3b, 0x3b,
6634*6236dae4SAndroid Build Coastguard Worker   0x0b, 0xa5, 0x77, 0x4d, 0xe6, 0x2d, 0x66, 0xdb, 0x0d, 0x6b, 0x38, 0xaf,
6635*6236dae4SAndroid Build Coastguard Worker   0xe2, 0x10, 0x44, 0x3d, 0x54, 0x34, 0xd7, 0x3f, 0x3c, 0x17, 0xbe, 0xbd,
6636*6236dae4SAndroid Build Coastguard Worker   0xc1, 0x1b, 0xcf, 0x9f, 0x3f, 0x8f, 0xe2, 0x73, 0x66, 0x13, 0x66, 0x73,
6637*6236dae4SAndroid Build Coastguard Worker   0x3f, 0x1f, 0x38, 0x4f, 0x6f, 0x17, 0x78, 0x71, 0x91, 0x89, 0x5d, 0xae,
6638*6236dae4SAndroid Build Coastguard Worker   0x5d, 0x84, 0x70, 0x37, 0x2c, 0xc7, 0x17, 0x0c, 0xc7, 0x49, 0x6d, 0x5c,
6639*6236dae4SAndroid Build Coastguard Worker   0x18, 0x19, 0xfc, 0x06, 0x13, 0xf4, 0xa3, 0x93, 0xd7, 0x1c, 0xaf, 0x3a,
6640*6236dae4SAndroid Build Coastguard Worker   0x7c, 0x8f, 0x7f, 0x43, 0xad, 0x80, 0x3d, 0x94, 0x04, 0xa2, 0x41, 0xed,
6641*6236dae4SAndroid Build Coastguard Worker   0xa8, 0x29, 0x36, 0xf2, 0xf6, 0x9b, 0x36, 0xd0, 0xc1, 0xea, 0x69, 0x7f,
6642*6236dae4SAndroid Build Coastguard Worker   0x7d, 0xfb, 0xe5, 0xc6, 0x5a, 0xa0, 0xdc, 0x06, 0x3b, 0xc5, 0x24, 0x8e,
6643*6236dae4SAndroid Build Coastguard Worker   0x2b, 0x79, 0x23, 0x90, 0x2b, 0xf2, 0x20, 0xc5, 0x60, 0xc6, 0x40, 0x20,
6644*6236dae4SAndroid Build Coastguard Worker   0xd6, 0x6e, 0x16, 0x01, 0x5d, 0xe2, 0x93, 0xf8, 0xd0, 0x02, 0x7c, 0x36,
6645*6236dae4SAndroid Build Coastguard Worker   0xed, 0x28, 0x2a, 0xf7, 0x31, 0xcb, 0x05, 0xa7, 0x6a, 0x59, 0x0a, 0x88,
6646*6236dae4SAndroid Build Coastguard Worker   0x5c, 0xf0, 0x87, 0xf7, 0x29, 0xf6, 0x1e, 0x0c, 0xc2, 0x3f, 0x9d, 0x64,
6647*6236dae4SAndroid Build Coastguard Worker   0x54, 0x63, 0x9b, 0x30, 0x12, 0xad, 0xea, 0x59, 0x88, 0xdb, 0xd2, 0x2c,
6648*6236dae4SAndroid Build Coastguard Worker   0x8e, 0xa1, 0x47, 0x12, 0xee, 0xaf, 0x37, 0x48, 0x43, 0x21, 0xe1, 0x0a,
6649*6236dae4SAndroid Build Coastguard Worker   0x41, 0x31, 0x29, 0x31, 0x9b, 0x52, 0x9d, 0xfe, 0x78, 0x2e, 0x65, 0x4a,
6650*6236dae4SAndroid Build Coastguard Worker   0x96, 0xe9, 0x4f, 0x18, 0xab, 0x7e, 0x4c, 0x90, 0x7e, 0x56, 0x62, 0xcb,
6651*6236dae4SAndroid Build Coastguard Worker   0xc8, 0x7d, 0x93, 0x3f, 0x4e, 0xa5, 0x0b, 0x8f, 0xa9, 0x8d, 0xd7, 0x10,
6652*6236dae4SAndroid Build Coastguard Worker   0x8f, 0x8d, 0x3e, 0xf2, 0x50, 0xc8, 0x8a, 0x14, 0xb7, 0xd2, 0x9e, 0x37,
6653*6236dae4SAndroid Build Coastguard Worker   0xfd, 0xfe, 0x89, 0x27, 0x69, 0xa4, 0xf8, 0xca, 0x04, 0x17, 0x29, 0xc1,
6654*6236dae4SAndroid Build Coastguard Worker   0x28, 0x19, 0xa2, 0xc5, 0x47, 0xe6, 0x5a, 0x41, 0x3d, 0xb9, 0x5f, 0xec,
6655*6236dae4SAndroid Build Coastguard Worker   0x6c, 0x6d, 0x75, 0xa3, 0xdd, 0xde, 0xa6, 0x0b, 0xa7, 0x93, 0x8c, 0x3d,
6656*6236dae4SAndroid Build Coastguard Worker   0xb4, 0x42, 0xc9, 0x7c, 0xf7, 0x30, 0x76, 0xa8, 0x2d, 0xb7, 0x45, 0xd9,
6657*6236dae4SAndroid Build Coastguard Worker   0x11, 0x60, 0x1d, 0xad, 0xcf, 0x45, 0x2b, 0x3d, 0x04, 0xcb, 0xd1, 0xf9,
6658*6236dae4SAndroid Build Coastguard Worker   0x6e, 0x6b, 0x77, 0x77, 0xf3, 0xe5, 0xde, 0x59, 0xbc, 0xbb, 0xb5, 0x89,
6659*6236dae4SAndroid Build Coastguard Worker   0x18, 0x3b, 0x6c, 0x81, 0xd8, 0xa4, 0x52, 0xb7, 0x3c, 0x34, 0xca, 0x46,
6660*6236dae4SAndroid Build Coastguard Worker   0x8c, 0xb1, 0x38, 0x1e, 0xdf, 0x87, 0xf3, 0xc4, 0x3a, 0xc5, 0x34, 0xcd,
6661*6236dae4SAndroid Build Coastguard Worker   0xab, 0x6a, 0x1c, 0x55, 0x1f, 0xb9, 0xd0, 0x7c, 0xbd, 0xfa, 0xc8, 0x6e,
6662*6236dae4SAndroid Build Coastguard Worker   0x84, 0x8e, 0xc0, 0xe2, 0x64, 0x01, 0x1d, 0xd5, 0xec, 0x8c, 0x88, 0xed,
6663*6236dae4SAndroid Build Coastguard Worker   0xc4, 0x54, 0xb2, 0x6a, 0xa7, 0x75, 0xdd, 0x07, 0x36, 0x99, 0xdb, 0x50,
6664*6236dae4SAndroid Build Coastguard Worker   0x37, 0xc1, 0x6c, 0x5f, 0x35, 0x34, 0x59, 0x5f, 0x59, 0x3d, 0x3a, 0x5c,
6665*6236dae4SAndroid Build Coastguard Worker   0xe3, 0x4d, 0xd3, 0xbd, 0xb4, 0x15, 0xde, 0x3c, 0xd3, 0x2e, 0x17, 0xea,
6666*6236dae4SAndroid Build Coastguard Worker   0xf9, 0x37, 0x4f, 0x96, 0x93, 0x99, 0x8b, 0xc1, 0x42, 0x74, 0x60, 0xcb,
6667*6236dae4SAndroid Build Coastguard Worker   0xb2, 0xd8, 0x37, 0xa2, 0x80, 0x91, 0xcd, 0xd6, 0x73, 0x73, 0xcf, 0x83,
6668*6236dae4SAndroid Build Coastguard Worker   0x20, 0xf8, 0xd1, 0x8c, 0xf4, 0xba, 0x50, 0x56, 0xe2, 0x32, 0x1a, 0x85,
6669*6236dae4SAndroid Build Coastguard Worker   0x90, 0xc3, 0xb6, 0x9d, 0x9e, 0x5a, 0xc5, 0xa4, 0x6d, 0x21, 0xe5, 0x2c,
6670*6236dae4SAndroid Build Coastguard Worker   0x7d, 0x6c, 0xf8, 0x73, 0xbc, 0xef, 0xcb, 0x42, 0x91, 0xb6, 0xfa, 0x02,
6671*6236dae4SAndroid Build Coastguard Worker   0xa0, 0x9f, 0x27, 0x4e, 0xaa, 0x61, 0x96, 0xb1, 0x37, 0x6b, 0x8e, 0x13,
6672*6236dae4SAndroid Build Coastguard Worker   0x4b, 0x8b, 0x16, 0x08, 0xa6, 0x9e, 0xa0, 0x8d, 0xb2, 0x84, 0x73, 0xc6,
6673*6236dae4SAndroid Build Coastguard Worker   0x6c, 0x93, 0x91, 0x65, 0x97, 0xe1, 0x7c, 0xfa, 0x8b, 0x47, 0xe8, 0x2c,
6674*6236dae4SAndroid Build Coastguard Worker   0xf4, 0x38, 0x7a, 0x3f, 0x40, 0xa3, 0x5a, 0x34, 0x55, 0x81, 0x78, 0xc1,
6675*6236dae4SAndroid Build Coastguard Worker   0xe6, 0x76, 0xd2, 0x66, 0xc9, 0x38, 0x2c, 0xaa, 0xb6, 0x49, 0x8e, 0x6d,
6676*6236dae4SAndroid Build Coastguard Worker   0x40, 0x09, 0x18, 0x3d, 0x00, 0x52, 0x2b, 0xed, 0x2a, 0x09, 0x2c, 0xa5,
6677*6236dae4SAndroid Build Coastguard Worker   0x2a, 0x50, 0x02, 0xce, 0xb3, 0x91, 0xb9, 0x59, 0x8d, 0xf1, 0xc8, 0x19,
6678*6236dae4SAndroid Build Coastguard Worker   0x15, 0x5b, 0x72, 0xa1, 0xbf, 0xe8, 0x2a, 0x48, 0x4e, 0xdd, 0xf4, 0xa8,
6679*6236dae4SAndroid Build Coastguard Worker   0x25, 0x01, 0xa7, 0x02, 0xb7, 0x8a, 0x8e, 0x28, 0x01, 0x50, 0x3a, 0xd1,
6680*6236dae4SAndroid Build Coastguard Worker   0x15, 0xdc, 0x36, 0x9e, 0x9c, 0x78, 0x26, 0x1f, 0x56, 0x5a, 0xa6, 0x23,
6681*6236dae4SAndroid Build Coastguard Worker   0x30, 0xaa, 0xd9, 0x80, 0xb6, 0xa1, 0x57, 0xa0, 0xb0, 0x4e, 0xef, 0x30,
6682*6236dae4SAndroid Build Coastguard Worker   0x1b, 0x87, 0xef, 0x06, 0xb8, 0xdf, 0xd1, 0x1a, 0xab, 0xa4, 0x31, 0x6e,
6683*6236dae4SAndroid Build Coastguard Worker   0x59, 0x66, 0x18, 0x3f, 0x81, 0x99, 0xd5, 0xb3, 0x32, 0x97, 0xd0, 0x07,
6684*6236dae4SAndroid Build Coastguard Worker   0xda, 0xb9, 0x74, 0x34, 0x46, 0x01, 0xfc, 0xa6, 0x21, 0x5d, 0xe2, 0x95,
6685*6236dae4SAndroid Build Coastguard Worker   0x29, 0x4b, 0x24, 0xd3, 0x9c, 0x70, 0xec, 0x3d, 0xda, 0x50, 0xb7, 0x6b,
6686*6236dae4SAndroid Build Coastguard Worker   0x9a, 0x9c, 0xf6, 0xa0, 0xa9, 0x9b, 0xd9, 0xab, 0xe8, 0x01, 0xe2, 0x8a,
6687*6236dae4SAndroid Build Coastguard Worker   0x6a, 0x06, 0x52, 0x2f, 0x1a, 0x1e, 0xcb, 0x6a, 0x7e, 0x62, 0xc4, 0xfa,
6688*6236dae4SAndroid Build Coastguard Worker   0x5d, 0x7c, 0x7b, 0x7b, 0x1b, 0xe3, 0x55, 0x8a, 0xf9, 0xc7, 0x52, 0x49,
6689*6236dae4SAndroid Build Coastguard Worker   0xdc, 0x6b, 0xf4, 0x91, 0xe2, 0xf3, 0x49, 0x34, 0x44, 0x99, 0xe3, 0x67,
6690*6236dae4SAndroid Build Coastguard Worker   0x32, 0x38, 0xc9, 0xe0, 0xe5, 0x20, 0xab, 0x09, 0xb2, 0x42, 0x98, 0x8b,
6691*6236dae4SAndroid Build Coastguard Worker   0x5e, 0x13, 0xc1, 0x22, 0xd3, 0x21, 0xbf, 0x85, 0xc6, 0x63, 0x02, 0xf7,
6692*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x5d, 0x0b, 0x02, 0xe2, 0x0e, 0xeb, 0x14, 0x81, 0x7d, 0xb0, 0x2d,
6693*6236dae4SAndroid Build Coastguard Worker   0xe0, 0x5e, 0x14, 0xbf, 0x89, 0x3a, 0x87, 0xb2, 0xda, 0x73, 0x78, 0x62,
6694*6236dae4SAndroid Build Coastguard Worker   0xaf, 0xb9, 0x16, 0x7e, 0x38, 0xd8, 0x52, 0x30, 0xe8, 0x37, 0x6d, 0xa2,
6695*6236dae4SAndroid Build Coastguard Worker   0x8a, 0x58, 0x98, 0xfe, 0xc0, 0x15, 0x5d, 0xe0, 0x4e, 0xdb, 0xb4, 0xdf,
6696*6236dae4SAndroid Build Coastguard Worker   0x50, 0x13, 0x0c, 0x4c, 0xb9, 0xe7, 0x00, 0x0f, 0x03, 0x7c, 0xd3, 0xd2,
6697*6236dae4SAndroid Build Coastguard Worker   0x13, 0x4c, 0xdd, 0xe2, 0xf6, 0x91, 0x24, 0x34, 0x7e, 0xe1, 0x09, 0x17,
6698*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x7e, 0x61, 0x1c, 0xb4, 0x8f, 0x38, 0xe6, 0x65, 0x72, 0xfb, 0xb0,
6699*6236dae4SAndroid Build Coastguard Worker   0x38, 0x72, 0x4e, 0xb8, 0x6d, 0x42, 0x8c, 0xd9, 0xf5, 0xb6, 0xed, 0x11,
6700*6236dae4SAndroid Build Coastguard Worker   0xc5, 0x4d, 0xb4, 0xb0, 0x25, 0xd4, 0x6e, 0x8f, 0xbb, 0xc5, 0x5b, 0x1c,
6701*6236dae4SAndroid Build Coastguard Worker   0x02, 0x36, 0x15, 0xc4, 0xd7, 0xf8, 0xc5, 0xc3, 0xcd, 0x5c, 0xaa, 0x85,
6702*6236dae4SAndroid Build Coastguard Worker   0x4b, 0xc7, 0x65, 0x74, 0xb0, 0xc1, 0x58, 0xd1, 0x59, 0x22, 0xd9, 0xcc,
6703*6236dae4SAndroid Build Coastguard Worker   0xbe, 0xfa, 0x45, 0x52, 0xe3, 0xff, 0xef, 0x2c, 0x17, 0x04, 0xb6, 0xdb,
6704*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x48, 0xaf, 0x08, 0x09, 0x7e, 0x73, 0x7c, 0x1e, 0x21, 0x51, 0x2d,
6705*6236dae4SAndroid Build Coastguard Worker   0xb9, 0xbb, 0x46, 0x0a, 0xc9, 0xa1, 0xe5, 0x40, 0x9e, 0x43, 0x77, 0x69,
6706*6236dae4SAndroid Build Coastguard Worker   0x9d, 0x14, 0xba, 0xd5, 0xb9, 0xe3, 0x11, 0xca, 0x24, 0xc5, 0x86, 0x96,
6707*6236dae4SAndroid Build Coastguard Worker   0xa8, 0x54, 0x5a, 0xe2, 0x89, 0xa6, 0xb2, 0xd3, 0x58, 0x7b, 0x33, 0xfb,
6708*6236dae4SAndroid Build Coastguard Worker   0x46, 0x18, 0x69, 0xb6, 0x87, 0x5f, 0x1d, 0x53, 0xd1, 0x1a, 0x5c, 0x42,
6709*6236dae4SAndroid Build Coastguard Worker   0xb9, 0x20, 0xd2, 0xf1, 0xfc, 0xa9, 0x2d, 0xb2, 0xf5, 0x04, 0x5f, 0x66,
6710*6236dae4SAndroid Build Coastguard Worker   0xb9, 0xea, 0x12, 0x49, 0xd4, 0xe8, 0xaa, 0xd4, 0x48, 0x8a, 0x17, 0xd5,
6711*6236dae4SAndroid Build Coastguard Worker   0x2b, 0xb1, 0x95, 0x49, 0x5c, 0x77, 0x68, 0xfa, 0x4b, 0xab, 0xce, 0x98,
6712*6236dae4SAndroid Build Coastguard Worker   0xd8, 0x9a, 0xdc, 0x20, 0xbd, 0xe8, 0xeb, 0xaa, 0xd5, 0x25, 0x95, 0x5a,
6713*6236dae4SAndroid Build Coastguard Worker   0xc8, 0xb8, 0xad, 0x5e, 0x05, 0xa4, 0x3d, 0x98, 0xd4, 0x27, 0xfe, 0x2e,
6714*6236dae4SAndroid Build Coastguard Worker   0xf5, 0x8b, 0x19, 0xe4, 0xf3, 0x6d, 0x36, 0x71, 0xcc, 0xd1, 0x56, 0x0c,
6715*6236dae4SAndroid Build Coastguard Worker   0xc2, 0x90, 0x2e, 0x6d, 0xb4, 0xc7, 0x26, 0x5c, 0x05, 0x8c, 0x42, 0x85,
6716*6236dae4SAndroid Build Coastguard Worker   0x22, 0xb5, 0xc6, 0x38, 0x87, 0x5b, 0xe7, 0x3f, 0xa5, 0xa4, 0x0d, 0xae,
6717*6236dae4SAndroid Build Coastguard Worker   0x06, 0x32, 0xc4, 0x14, 0xfa, 0xc4, 0x1d, 0xcc, 0x34, 0xaf, 0x93, 0xc2,
6718*6236dae4SAndroid Build Coastguard Worker   0xa7, 0xf0, 0x70, 0x98, 0x8c, 0xf4, 0x19, 0x7a, 0x41, 0xbe, 0x90, 0x10,
6719*6236dae4SAndroid Build Coastguard Worker   0x0f, 0xd6, 0x72, 0xba, 0x99, 0x32, 0xe2, 0x0a, 0x66, 0x65, 0x50, 0xea,
6720*6236dae4SAndroid Build Coastguard Worker   0xfd, 0x91, 0x0c, 0xe1, 0xe1, 0x38, 0x6d, 0xcb, 0xa1, 0x1e, 0x73, 0xdc,
6721*6236dae4SAndroid Build Coastguard Worker   0x30, 0x41, 0xaf, 0xd3, 0x20, 0x05, 0x42, 0xfe, 0x5b, 0x9b, 0x78, 0x9f,
6722*6236dae4SAndroid Build Coastguard Worker   0x3d, 0x4c, 0xbd, 0x65, 0xc9, 0xb7, 0x98, 0x7a, 0xdc, 0xb2, 0x52, 0x2b,
6723*6236dae4SAndroid Build Coastguard Worker   0xa2, 0x3e, 0x73, 0x42, 0x5b, 0x94, 0x53, 0xcb, 0x5e, 0x65, 0x13, 0xe2,
6724*6236dae4SAndroid Build Coastguard Worker   0x0a, 0x8a, 0x53, 0xe4, 0xd0, 0xcf, 0x7e, 0xad, 0x5d, 0x27, 0x66, 0xa4,
6725*6236dae4SAndroid Build Coastguard Worker   0x84, 0x41, 0x9c, 0x7c, 0x78, 0x38, 0xf6, 0x7b, 0xd3, 0xde, 0xbb, 0xdd,
6726*6236dae4SAndroid Build Coastguard Worker   0x27, 0xb4, 0x71, 0x13, 0x8e, 0x40, 0x01, 0x1f, 0xe0, 0xff, 0x9a, 0x99,
6727*6236dae4SAndroid Build Coastguard Worker   0x79, 0x40, 0xb5, 0x3b, 0x71, 0x78, 0x38, 0x05, 0xf5, 0x10, 0x3f, 0x9e,
6728*6236dae4SAndroid Build Coastguard Worker   0xb7, 0x3e, 0x73, 0x07, 0x3c, 0x7e, 0x71, 0x94, 0x1d, 0xce, 0x2d, 0xec,
6729*6236dae4SAndroid Build Coastguard Worker   0x34, 0xa8, 0xa9, 0xe9, 0x59, 0x9c, 0x43, 0xb1, 0xea, 0x47, 0xdc, 0xf4,
6730*6236dae4SAndroid Build Coastguard Worker   0xf8, 0x48, 0x23, 0x0c, 0x6e, 0x47, 0xa7, 0xba, 0xcf, 0x5a, 0xb7, 0x49,
6731*6236dae4SAndroid Build Coastguard Worker   0x30, 0x04, 0x03, 0xa7, 0x5b, 0x4f, 0x77, 0x39, 0x9b, 0xbb, 0xc7, 0xba,
6732*6236dae4SAndroid Build Coastguard Worker   0x77, 0xd8, 0x8a, 0x32, 0xb8, 0x77, 0xff, 0x37, 0xad, 0x8f, 0xf8, 0xd9,
6733*6236dae4SAndroid Build Coastguard Worker   0xb2, 0x01, 0x26, 0x11, 0x54, 0xd2, 0x4a, 0x08, 0x0b, 0x2b, 0x23, 0x2a,
6734*6236dae4SAndroid Build Coastguard Worker   0x49, 0x45, 0x5d, 0x66, 0xce, 0xec, 0x08, 0x49, 0x0c, 0xb5, 0x3f, 0x4c,
6735*6236dae4SAndroid Build Coastguard Worker   0xea, 0x1a, 0xb3, 0x3d, 0x9b, 0x71, 0xa1, 0xea, 0x67, 0x56, 0x6b, 0x63,
6736*6236dae4SAndroid Build Coastguard Worker   0x0f, 0x95, 0x29, 0xe2, 0x46, 0x26, 0x5c, 0xc0, 0xa9, 0x86, 0x33, 0xc3,
6737*6236dae4SAndroid Build Coastguard Worker   0x4c, 0x39, 0x97, 0xfd, 0xfc, 0xcb, 0xda, 0xbd, 0x6a, 0xed, 0x25, 0x48,
6738*6236dae4SAndroid Build Coastguard Worker   0x93, 0xbb, 0x81, 0xc5, 0x2d, 0xba, 0xac, 0xc3, 0xaf, 0x7e, 0xc6, 0xff,
6739*6236dae4SAndroid Build Coastguard Worker   0xa5, 0xab, 0x6c, 0xf9, 0xb7, 0x0d, 0xf3, 0x3c, 0xe1, 0x5d, 0x7a, 0x8f,
6740*6236dae4SAndroid Build Coastguard Worker   0x62, 0x89, 0x8b, 0xb4, 0x84, 0x80, 0x7a, 0xa0, 0xfd, 0x75, 0x44, 0xdd,
6741*6236dae4SAndroid Build Coastguard Worker   0x70, 0x94, 0x03, 0xfb, 0xc8, 0x7c, 0xb5, 0x80, 0x5a, 0x81, 0xaf, 0xc1,
6742*6236dae4SAndroid Build Coastguard Worker   0xb8, 0x58, 0xed, 0xd0, 0x04, 0x1d, 0xa4, 0x37, 0x19, 0x29, 0x0a, 0x9b,
6743*6236dae4SAndroid Build Coastguard Worker   0xb6, 0x7a, 0x69, 0xea, 0xa1, 0xd0, 0xac, 0xa6, 0x89, 0xbb, 0x11, 0x24,
6744*6236dae4SAndroid Build Coastguard Worker   0xca, 0x0c, 0x22, 0x9f, 0x56, 0x34, 0x28, 0x8b, 0xdb, 0x8a, 0x4c, 0x0d,
6745*6236dae4SAndroid Build Coastguard Worker   0xf5, 0xb5, 0x27, 0xec, 0x16, 0xbe, 0xf2, 0x10, 0x9d, 0x80, 0x1c, 0x63,
6746*6236dae4SAndroid Build Coastguard Worker   0xd3, 0xf6, 0xe7, 0xcd, 0xf9, 0xdb, 0x13, 0xee, 0xe1, 0xc9, 0xe0, 0x42,
6747*6236dae4SAndroid Build Coastguard Worker   0x58, 0xe5, 0x2e, 0xd3, 0x9d, 0x0d, 0x26, 0x59, 0x8d, 0x1a, 0x62, 0xcd,
6748*6236dae4SAndroid Build Coastguard Worker   0xd2, 0x5b, 0x2f, 0x04, 0x0f, 0x01, 0x89, 0xb2, 0x96, 0xc4, 0x7b, 0x31,
6749*6236dae4SAndroid Build Coastguard Worker   0x0d, 0x25, 0x73, 0x88, 0x91, 0xe0, 0xe0, 0x08, 0x3b, 0xd6, 0xcd, 0xf2,
6750*6236dae4SAndroid Build Coastguard Worker   0x76, 0x4c, 0x74, 0xc8, 0x79, 0xcd, 0xa4, 0xcb, 0xbe, 0xc6, 0xad, 0xc0,
6751*6236dae4SAndroid Build Coastguard Worker   0x47, 0x02, 0x2e, 0x17, 0xa3, 0x28, 0xa2, 0x87, 0x67, 0x4c, 0x8d, 0xc9,
6752*6236dae4SAndroid Build Coastguard Worker   0x0c, 0xed, 0x50, 0xf3, 0x35, 0x57, 0x35, 0xa1, 0x1e, 0x27, 0x4d, 0x6d,
6753*6236dae4SAndroid Build Coastguard Worker   0xd7, 0x43, 0x05, 0x32, 0xda, 0xaf, 0xed, 0x18, 0xeb, 0x2a, 0xc0, 0xa8,
6754*6236dae4SAndroid Build Coastguard Worker   0x7a, 0xa1, 0x0a, 0x28, 0x59, 0x27, 0xb3, 0x12, 0xdd, 0xfc, 0xac, 0xdb,
6755*6236dae4SAndroid Build Coastguard Worker   0x77, 0x03, 0xb5, 0xa3, 0xa2, 0x83, 0xa9, 0xbb, 0xdd, 0x64, 0x6f, 0x35,
6756*6236dae4SAndroid Build Coastguard Worker   0x6c, 0x02, 0x6d, 0x8b, 0x89, 0x63, 0x3b, 0x42, 0x2b, 0xc0, 0x23, 0x8c,
6757*6236dae4SAndroid Build Coastguard Worker   0x30, 0x4c, 0x65, 0xc1, 0xb4, 0x9b, 0xc0, 0x67, 0x30, 0x3a, 0x9a, 0x7b,
6758*6236dae4SAndroid Build Coastguard Worker   0xe8, 0x12, 0xc5, 0xd1, 0xdb, 0xe7, 0x22, 0x68, 0x3c, 0xd9, 0xbe, 0xb1,
6759*6236dae4SAndroid Build Coastguard Worker   0x95, 0x6d, 0x13, 0xaa, 0x5e, 0x4e, 0x02, 0x5a, 0x26, 0x68, 0x65, 0xea,
6760*6236dae4SAndroid Build Coastguard Worker   0x13, 0x5a, 0x34, 0x63, 0x99, 0x7e, 0x40, 0x5b, 0x62, 0x9b, 0x5d, 0x27,
6761*6236dae4SAndroid Build Coastguard Worker   0x17, 0x27, 0xc3, 0x40, 0x9e, 0x9b, 0xf7, 0x64, 0x62, 0xf6, 0xd1, 0x24,
6762*6236dae4SAndroid Build Coastguard Worker   0x2d, 0x2f, 0xb9, 0x9c, 0x96, 0x1b, 0x90, 0x04, 0x3d, 0x5e, 0x49, 0xd3,
6763*6236dae4SAndroid Build Coastguard Worker   0xff, 0xf7, 0x7f, 0x62, 0x56, 0x22, 0xa8, 0x1a, 0x63, 0x86, 0x85, 0x74,
6764*6236dae4SAndroid Build Coastguard Worker   0x02, 0x92, 0xb9, 0x12, 0x8f, 0x58, 0x58, 0x8d, 0x92, 0x1c, 0x28, 0x01,
6765*6236dae4SAndroid Build Coastguard Worker   0x27, 0xd6, 0xcf, 0x3b, 0x1e, 0x8f, 0x3f, 0x1b, 0x17, 0xb3, 0xea, 0x7e,
6766*6236dae4SAndroid Build Coastguard Worker   0x25, 0x92, 0x96, 0xcd, 0xd2, 0xe5, 0xb4, 0x66, 0xcc, 0x2c, 0xda, 0x4b,
6767*6236dae4SAndroid Build Coastguard Worker   0xd8, 0xdf, 0x59, 0x7e, 0xad, 0x7a, 0x00, 0x56, 0xdc, 0x92, 0x17, 0xeb,
6768*6236dae4SAndroid Build Coastguard Worker   0xba, 0x4d, 0xfe, 0x15, 0xe7, 0x63, 0xff, 0xc7, 0x1d, 0x3b, 0x48, 0x65,
6769*6236dae4SAndroid Build Coastguard Worker   0x82, 0xec, 0x62, 0xa7, 0xc8, 0xe3, 0xbc, 0x22, 0x36, 0x75, 0x23, 0x99,
6770*6236dae4SAndroid Build Coastguard Worker   0xdb, 0xa7, 0x51, 0x73, 0x3e, 0xcc, 0x80, 0x78, 0x5f, 0x72, 0xd3, 0x17,
6771*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x9f, 0xb1, 0xe9, 0xa9, 0x24, 0x69, 0xe6, 0x14, 0x51, 0x8b, 0x5b,
6772*6236dae4SAndroid Build Coastguard Worker   0x80, 0xae, 0x5b, 0xc9, 0x3d, 0x89, 0xa2, 0xb3, 0x82, 0xbb, 0x52, 0xda,
6773*6236dae4SAndroid Build Coastguard Worker   0x9b, 0x38, 0x69, 0xf4, 0xb5, 0xb8, 0x28, 0x8a, 0x41, 0x52, 0xae, 0x78,
6774*6236dae4SAndroid Build Coastguard Worker   0xb5, 0x24, 0x38, 0x6d, 0x6a, 0xbb, 0x37, 0x48, 0xb9, 0x9d, 0x1f, 0x67,
6775*6236dae4SAndroid Build Coastguard Worker   0x7a, 0x58, 0x01, 0xfa, 0x05, 0xbf, 0xd9, 0xe3, 0xe0, 0x99, 0xeb, 0x0e,
6776*6236dae4SAndroid Build Coastguard Worker   0x09, 0x65, 0x39, 0x8e, 0x47, 0x76, 0xea, 0x51, 0x63, 0x1e, 0x54, 0x51,
6777*6236dae4SAndroid Build Coastguard Worker   0x89, 0xdb, 0xd4, 0xb5, 0x8e, 0x1b, 0xf5, 0xdb, 0x50, 0xe1, 0x75, 0x7a,
6778*6236dae4SAndroid Build Coastguard Worker   0x1b, 0x07, 0xe0, 0x33, 0x6c, 0x94, 0x14, 0xcb, 0x23, 0x30, 0x15, 0x9d,
6779*6236dae4SAndroid Build Coastguard Worker   0xd2, 0xa0, 0xd5, 0x57, 0x22, 0xa9, 0x1b, 0xd6, 0x65, 0xf2, 0x85, 0x53,
6780*6236dae4SAndroid Build Coastguard Worker   0x5e, 0xef, 0xe7, 0x60, 0x86, 0xe4, 0x88, 0x95, 0x1b, 0xce, 0x29, 0x24,
6781*6236dae4SAndroid Build Coastguard Worker   0xa1, 0x24, 0x95, 0x44, 0x4b, 0x5a, 0xce, 0xa3, 0xa8, 0xc3, 0x6a, 0x30,
6782*6236dae4SAndroid Build Coastguard Worker   0xfc, 0x6b, 0x09, 0xab, 0xb9, 0xf9, 0x1a, 0xfe, 0xb3, 0x2e, 0x8a, 0xf1,
6783*6236dae4SAndroid Build Coastguard Worker   0x67, 0xc3, 0xc9, 0x08, 0xc9, 0xb0, 0xd4, 0x40, 0x8f, 0xf3, 0x54, 0x38,
6784*6236dae4SAndroid Build Coastguard Worker   0xf7, 0x2a, 0x5f, 0xac, 0x4d, 0xd9, 0xd6, 0x0d, 0xd8, 0xd8, 0xad, 0xfb,
6785*6236dae4SAndroid Build Coastguard Worker   0x76, 0x41, 0x1c, 0xdf, 0xf6, 0x73, 0xb1, 0x17, 0x00, 0xbf, 0x7e, 0x4c,
6786*6236dae4SAndroid Build Coastguard Worker   0x03, 0x5f, 0x11, 0x7f, 0x90, 0x72, 0x1f, 0x9f, 0xd3, 0x4f, 0xa4, 0x6b,
6787*6236dae4SAndroid Build Coastguard Worker   0x5b, 0xe0, 0xf8, 0x34, 0x8c, 0xfe, 0x74, 0x9c, 0x5e, 0xf2, 0x6e, 0xed,
6788*6236dae4SAndroid Build Coastguard Worker   0x9f, 0x1c, 0x7d, 0x73, 0x74, 0xe2, 0x5d, 0xed, 0x5f, 0xf5, 0xfb, 0xeb,
6789*6236dae4SAndroid Build Coastguard Worker   0xd7, 0x69, 0x39, 0x48, 0xcb, 0xa2, 0x5a, 0xc3, 0xe5, 0x61, 0xc4, 0x0e,
6790*6236dae4SAndroid Build Coastguard Worker   0x9f, 0x34, 0x09, 0xfe, 0xce, 0x8d, 0x77, 0x2b, 0xb8, 0x98, 0x99, 0xf8,
6791*6236dae4SAndroid Build Coastguard Worker   0xfd, 0x3d, 0x9f, 0x21, 0xd6, 0x8a, 0xf1, 0x27, 0xa5, 0x9b, 0x21, 0x95,
6792*6236dae4SAndroid Build Coastguard Worker   0xf7, 0x4b, 0xd5, 0x0a, 0xdd, 0xdf, 0xc3, 0x32, 0xa5, 0x88, 0x44, 0x12,
6793*6236dae4SAndroid Build Coastguard Worker   0xc0, 0xea, 0x26, 0xf0, 0xc4, 0x28, 0x7a, 0xc5, 0x4c, 0xca, 0x65, 0x94,
6794*6236dae4SAndroid Build Coastguard Worker   0x28, 0xc1, 0xed, 0x2a, 0xbc, 0x57, 0xa6, 0x84, 0x50, 0x16, 0xbd, 0x92,
6795*6236dae4SAndroid Build Coastguard Worker   0x8f, 0x12, 0x14, 0x0c, 0x92, 0x89, 0x11, 0xbe, 0xd9, 0x76, 0x3c, 0xfd,
6796*6236dae4SAndroid Build Coastguard Worker   0x3a, 0x3e, 0xe8, 0xc7, 0xaf, 0x8e, 0x4e, 0x8e, 0xbe, 0x3a, 0x38, 0x3f,
6797*6236dae4SAndroid Build Coastguard Worker   0x72, 0xfa, 0xec, 0x61, 0xad, 0x75, 0x50, 0xf9, 0x34, 0xa9, 0x8f, 0x5f,
6798*6236dae4SAndroid Build Coastguard Worker   0x0b, 0x65, 0x22, 0xd3, 0x99, 0x2c, 0xaa, 0x33, 0x6e, 0x64, 0x6c, 0x9b,
6799*6236dae4SAndroid Build Coastguard Worker   0x84, 0x24, 0x68, 0xae, 0xd6, 0x54, 0x20, 0x12, 0x1e, 0x0e, 0x4e, 0xf7,
6800*6236dae4SAndroid Build Coastguard Worker   0x78, 0x22, 0x53, 0xf5, 0x56, 0x90, 0x8c, 0x41, 0xed, 0xa9, 0xa2, 0x0f,
6801*6236dae4SAndroid Build Coastguard Worker   0x39, 0xd6, 0x91, 0x66, 0x06, 0xcb, 0x85, 0x57, 0xef, 0xba, 0x24, 0x2d,
6802*6236dae4SAndroid Build Coastguard Worker   0x69, 0x1b, 0x5d, 0xe1, 0x7f, 0x9d, 0xf8, 0x9d, 0xe7, 0xd8, 0x53, 0xdd,
6803*6236dae4SAndroid Build Coastguard Worker   0xd3, 0x32, 0x50, 0x07, 0xb7, 0xa7, 0xf3, 0x90, 0x37, 0x8f, 0x9a, 0x37,
6804*6236dae4SAndroid Build Coastguard Worker   0x86, 0xdd, 0x4a, 0x0a, 0xa0, 0x45, 0xfa, 0xdf, 0x2b, 0x7a, 0xb0, 0xd5,
6805*6236dae4SAndroid Build Coastguard Worker   0x04, 0xcc, 0x01, 0x4b, 0xca, 0x6d, 0x83, 0xb0, 0x00, 0x46, 0x25, 0xa9,
6806*6236dae4SAndroid Build Coastguard Worker   0x2d, 0xd5, 0xf0, 0x2a, 0x9d, 0x18, 0xf4, 0x65, 0x4c, 0xff, 0xa4, 0x1c,
6807*6236dae4SAndroid Build Coastguard Worker   0x43, 0x86, 0x6b, 0x11, 0x94, 0x58, 0x12, 0xa9, 0x83, 0x94, 0xdc, 0x2e,
6808*6236dae4SAndroid Build Coastguard Worker   0xd4, 0x87, 0xde, 0x4f, 0x2d, 0xab, 0xa9, 0x47, 0x52, 0x49, 0x15, 0x89,
6809*6236dae4SAndroid Build Coastguard Worker   0x94, 0xc1, 0x4d, 0x40, 0x43, 0x3d, 0x01, 0x1a, 0x30, 0x79, 0x99, 0x7e,
6810*6236dae4SAndroid Build Coastguard Worker   0x1e, 0x26, 0xe2, 0x9b, 0x4c, 0xbc, 0x7c, 0x6a, 0xdb, 0x62, 0xcc, 0x24,
6811*6236dae4SAndroid Build Coastguard Worker   0x0f, 0x70, 0x9e, 0x02, 0xfd, 0x88, 0x5b, 0x10, 0x8b, 0x69, 0x86, 0x33,
6812*6236dae4SAndroid Build Coastguard Worker   0x5c, 0xc6, 0xe7, 0xdb, 0xde, 0x57, 0x62, 0x72, 0x8b, 0xa5, 0x42, 0xd5,
6813*6236dae4SAndroid Build Coastguard Worker   0xfc, 0xa1, 0x7a, 0xc5, 0x5f, 0xdc, 0xeb, 0x8c, 0x77, 0x75, 0x39, 0xaf,
6814*6236dae4SAndroid Build Coastguard Worker   0xa4, 0x21, 0x43, 0xd7, 0x34, 0x3e, 0x93, 0x61, 0x58, 0x2c, 0x4a, 0xf7,
6815*6236dae4SAndroid Build Coastguard Worker   0x4f, 0x2d, 0x3c, 0x0d, 0xa7, 0xe6, 0x3a, 0x72, 0xb1, 0xd1, 0x23, 0x14,
6816*6236dae4SAndroid Build Coastguard Worker   0x5b, 0xc3, 0xe9, 0x5f, 0xfd, 0xf6, 0xb0, 0x06, 0xc0, 0x23, 0x4e, 0xa7,
6817*6236dae4SAndroid Build Coastguard Worker   0x5e, 0x3b, 0xad, 0xd5, 0xd7, 0xda, 0x76, 0xcf, 0x28, 0xf9, 0x0a, 0xf7,
6818*6236dae4SAndroid Build Coastguard Worker   0x21, 0xb9, 0x27, 0xea, 0x73, 0x3a, 0x3a, 0x7b, 0x7f, 0x4e, 0x1f, 0x39,
6819*6236dae4SAndroid Build Coastguard Worker   0xc1, 0xbf, 0x48, 0x7a, 0x5b, 0x15, 0xc2, 0x51, 0x97, 0x56, 0xbe, 0x98,
6820*6236dae4SAndroid Build Coastguard Worker   0x42, 0x9c, 0x52, 0x3a, 0x90, 0xc9, 0xb2, 0xd5, 0xaa, 0x17, 0x2e, 0xb0,
6821*6236dae4SAndroid Build Coastguard Worker   0x92, 0x36, 0x68, 0x72, 0xe4, 0x69, 0xd7, 0xbc, 0x5a, 0xda, 0x1a, 0xeb,
6822*6236dae4SAndroid Build Coastguard Worker   0x2d, 0x4d, 0x05, 0x04, 0xce, 0x41, 0xa0, 0x6e, 0x69, 0x16, 0x5c, 0x25,
6823*6236dae4SAndroid Build Coastguard Worker   0xa6, 0x09, 0x06, 0xa7, 0xf8, 0x4b, 0xd4, 0xfc, 0x85, 0x27, 0xe7, 0x5c,
6824*6236dae4SAndroid Build Coastguard Worker   0x2f, 0x16, 0xde, 0x1c, 0x87, 0xc4, 0xb7, 0xa2, 0x32, 0xbb, 0xbc, 0x82,
6825*6236dae4SAndroid Build Coastguard Worker   0x9d, 0x80, 0x79, 0xf4, 0xec, 0x3a, 0xf9, 0x13, 0x1c, 0x15, 0xa2, 0x2e,
6826*6236dae4SAndroid Build Coastguard Worker   0x13, 0x7e, 0x3a, 0x01, 0xea, 0xcf, 0xb6, 0xfa, 0x58, 0xeb, 0x3c, 0xb9,
6827*6236dae4SAndroid Build Coastguard Worker   0xb2, 0xcc, 0x64, 0xf6, 0x74, 0x05, 0xde, 0x96, 0x41, 0xcb, 0xa8, 0x00,
6828*6236dae4SAndroid Build Coastguard Worker   0x97, 0x13, 0x7c, 0xbc, 0x38, 0x3b, 0x15, 0xf8, 0x76, 0xb5, 0xf5, 0xf4,
6829*6236dae4SAndroid Build Coastguard Worker   0xbd, 0xf4, 0xab, 0x60, 0xcd, 0x5c, 0x3b, 0x4a, 0x26, 0xd4, 0x99, 0x85,
6830*6236dae4SAndroid Build Coastguard Worker   0xcc, 0xcb, 0x01, 0xab, 0x92, 0x62, 0x27, 0xe6, 0x81, 0x83, 0x0c, 0x84,
6831*6236dae4SAndroid Build Coastguard Worker   0x57, 0x21, 0xca, 0x0b, 0x95, 0x6d, 0x0b, 0x58, 0x53, 0xc8, 0x1b, 0x6d,
6832*6236dae4SAndroid Build Coastguard Worker   0x78, 0xe4, 0xf4, 0x0e, 0xad, 0xb5, 0x0c, 0x83, 0x87, 0x32, 0x15, 0x26,
6833*6236dae4SAndroid Build Coastguard Worker   0x0e, 0xf5, 0x0c, 0x17, 0x7e, 0x2b, 0x42, 0x5c, 0xc5, 0x22, 0xcb, 0x89,
6834*6236dae4SAndroid Build Coastguard Worker   0x92, 0x36, 0x58, 0x70, 0x5e, 0xc1, 0x8a, 0x09, 0x7e, 0x51, 0x0d, 0xbd,
6835*6236dae4SAndroid Build Coastguard Worker   0xd3, 0x9c, 0xe6, 0xf8, 0xec, 0xe6, 0x59, 0x33, 0x3d, 0x8a, 0x0d, 0x0b,
6836*6236dae4SAndroid Build Coastguard Worker   0x52, 0xc8, 0x80, 0xaa, 0xed, 0x52, 0x7d, 0x2e, 0x63, 0x86, 0x6f, 0xd3,
6837*6236dae4SAndroid Build Coastguard Worker   0x74, 0xd1, 0x05, 0x69, 0x32, 0x0c, 0x91, 0x77, 0xbc, 0xef, 0xbf, 0xa2,
6838*6236dae4SAndroid Build Coastguard Worker   0xc9, 0x91, 0x69, 0x41, 0x6f, 0x90, 0x24, 0x41, 0x0c, 0xdb, 0x4b, 0x6d,
6839*6236dae4SAndroid Build Coastguard Worker   0xfe, 0xce, 0xbc, 0x3c, 0x48, 0xe1, 0x8b, 0x19, 0xa2, 0xd8, 0x35, 0x82,
6840*6236dae4SAndroid Build Coastguard Worker   0x6d, 0x5e, 0x6a, 0x16, 0xf0, 0xdf, 0xf0, 0x4a, 0xed, 0x65, 0x7c, 0x91,
6841*6236dae4SAndroid Build Coastguard Worker   0x72, 0x90, 0xf0, 0x05, 0xc2, 0x14, 0xaa, 0xf9, 0x46, 0xe7, 0xbc, 0x8b,
6842*6236dae4SAndroid Build Coastguard Worker   0xf8, 0x8c, 0x14, 0x18, 0xcc, 0x2e, 0xe2, 0x4a, 0xeb, 0xa2, 0xf4, 0xd3,
6843*6236dae4SAndroid Build Coastguard Worker   0x69, 0x87, 0x06, 0xb3, 0x57, 0x1f, 0x4d, 0xaa, 0x9b, 0xa5, 0xc3, 0x51,
6844*6236dae4SAndroid Build Coastguard Worker   0xce, 0x16, 0x2c, 0x4e, 0xf1, 0xb1, 0x4f, 0x56, 0x37, 0x41, 0x79, 0xf1,
6845*6236dae4SAndroid Build Coastguard Worker   0x48, 0x81, 0xd1, 0xff, 0xc6, 0xa4, 0xc1, 0x8a, 0x60, 0xf0, 0xc0, 0xb6,
6846*6236dae4SAndroid Build Coastguard Worker   0x11, 0x90, 0x47, 0x88, 0xf4, 0x68, 0x49, 0x21, 0x02, 0x1e, 0xa4, 0x83,
6847*6236dae4SAndroid Build Coastguard Worker   0x1f, 0x88, 0x44, 0x69, 0x61, 0x84, 0x05, 0x7c, 0x5f, 0x24, 0xc4, 0xd9,
6848*6236dae4SAndroid Build Coastguard Worker   0x41, 0xff, 0x9b, 0x96, 0x6c, 0xf0, 0xa4, 0x01, 0xec, 0x89, 0x17, 0x26,
6849*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x5e, 0x35, 0x38, 0x56, 0xf0, 0xd0, 0x54, 0x37, 0x8f, 0x39, 0x34,
6850*6236dae4SAndroid Build Coastguard Worker   0x30, 0x11, 0xef, 0xd0, 0x78, 0xa4, 0x5d, 0x74, 0x68, 0x02, 0xbb, 0x7d,
6851*6236dae4SAndroid Build Coastguard Worker   0xac, 0x6e, 0x0a, 0xe7, 0xd8, 0xe4, 0x74, 0x54, 0xa8, 0xec, 0x3a, 0x70,
6852*6236dae4SAndroid Build Coastguard Worker   0x5e, 0xe8, 0xb8, 0x60, 0xcc, 0x9f, 0xce, 0x87, 0x5f, 0x45, 0x42, 0xf3,
6853*6236dae4SAndroid Build Coastguard Worker   0x5c, 0xe6, 0xb4, 0xd0, 0x0b, 0xde, 0x61, 0xd1, 0xfd, 0x5c, 0xfa, 0xb4,
6854*6236dae4SAndroid Build Coastguard Worker   0xc8, 0x29, 0xf3, 0x0e, 0x0b, 0x59, 0x56, 0x67, 0x5d, 0xe7, 0x94, 0x3c,
6855*6236dae4SAndroid Build Coastguard Worker   0x9d, 0xf5, 0x61, 0xbf, 0x16, 0xb1, 0xbe, 0x8b, 0x77, 0x15, 0xa0, 0x37,
6856*6236dae4SAndroid Build Coastguard Worker   0xeb, 0x1d, 0x49, 0xe5, 0xa8, 0x19, 0x36, 0xd1, 0x28, 0x00, 0xa9, 0xd8,
6857*6236dae4SAndroid Build Coastguard Worker   0x35, 0xf8, 0x41, 0xe5, 0xd0, 0x8f, 0x6e, 0x19, 0x00, 0x2b, 0xb7, 0xe0,
6858*6236dae4SAndroid Build Coastguard Worker   0x98, 0x6c, 0x5f, 0xa9, 0x16, 0x1c, 0xf5, 0x48, 0x83, 0x20, 0xcf, 0x91,
6859*6236dae4SAndroid Build Coastguard Worker   0x8b, 0x99, 0x86, 0xec, 0x11, 0x86, 0x52, 0xd6, 0x49, 0x84, 0x60, 0xb2,
6860*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x14, 0x53, 0xa9, 0x09, 0x61, 0x7b, 0x49, 0xfa, 0xfd, 0xfd, 0x41,
6861*6236dae4SAndroid Build Coastguard Worker   0x35, 0xb7, 0x22, 0x05, 0x9d, 0x14, 0x1c, 0xd4, 0x96, 0xe2, 0x2c, 0x47,
6862*6236dae4SAndroid Build Coastguard Worker   0xc3, 0x6f, 0x61, 0x86, 0x4a, 0x4d, 0xf9, 0x69, 0x8e, 0xc3, 0x02, 0x11,
6863*6236dae4SAndroid Build Coastguard Worker   0x56, 0xd0, 0x48, 0x91, 0xd0, 0x61, 0x42, 0x88, 0x3f, 0x12, 0x66, 0x23,
6864*6236dae4SAndroid Build Coastguard Worker   0x85, 0x22, 0x80, 0x33, 0xc4, 0xf9, 0x22, 0xaa, 0x26, 0xc3, 0x8d, 0x3b,
6865*6236dae4SAndroid Build Coastguard Worker   0xc0, 0x0a, 0x85, 0x88, 0x9c, 0x81, 0x33, 0x4e, 0xa7, 0xbc, 0xb5, 0x45,
6866*6236dae4SAndroid Build Coastguard Worker   0x17, 0x08, 0x2c, 0xc4, 0xfd, 0x3b, 0x52, 0x3f, 0x4b, 0xca, 0xa2, 0xde,
6867*6236dae4SAndroid Build Coastguard Worker   0x23, 0x80, 0x40, 0x4e, 0x48, 0x25, 0xe8, 0x5f, 0x91, 0x60, 0xef, 0x53,
6868*6236dae4SAndroid Build Coastguard Worker   0x58, 0x2e, 0x44, 0x93, 0xe5, 0x7b, 0xe4, 0xd6, 0x45, 0x23, 0x92, 0xfd,
6869*6236dae4SAndroid Build Coastguard Worker   0xac, 0xd5, 0xfd, 0x68, 0x94, 0x57, 0x31, 0xb9, 0x22, 0x2e, 0x10, 0x7b,
6870*6236dae4SAndroid Build Coastguard Worker   0x71, 0xdf, 0xfc, 0xd5, 0xb3, 0x6d, 0x5f, 0xbd, 0xeb, 0xab, 0xe4, 0xb6,
6871*6236dae4SAndroid Build Coastguard Worker   0x54, 0xaf, 0x52, 0xae, 0x4c, 0xe7, 0xbe, 0xde, 0xf0, 0x88, 0x81, 0x35,
6872*6236dae4SAndroid Build Coastguard Worker   0x01, 0x92, 0x95, 0xc5, 0xec, 0xf2, 0x4a, 0x86, 0xf4, 0x5b, 0x0e, 0xc2,
6873*6236dae4SAndroid Build Coastguard Worker   0x27, 0x3c, 0x30, 0x92, 0x84, 0x2b, 0xfd, 0xd3, 0x92, 0xa2, 0x26, 0xe8,
6874*6236dae4SAndroid Build Coastguard Worker   0xc1, 0x75, 0xe6, 0x16, 0xad, 0xb2, 0x91, 0x38, 0xaf, 0x3b, 0xbc, 0xe2,
6875*6236dae4SAndroid Build Coastguard Worker   0x8f, 0xe0, 0x34, 0xa4, 0x59, 0x1e, 0xe6, 0x49, 0x53, 0xc7, 0x39, 0x81,
6876*6236dae4SAndroid Build Coastguard Worker   0x18, 0x57, 0xd4, 0x51, 0x6a, 0xd6, 0xa5, 0xe3, 0x06, 0x42, 0x4e, 0xab,
6877*6236dae4SAndroid Build Coastguard Worker   0x82, 0x29, 0x2b, 0xe5, 0x31, 0x4b, 0x77, 0x81, 0x6f, 0x12, 0x35, 0xad,
6878*6236dae4SAndroid Build Coastguard Worker   0xaf, 0x96, 0xac, 0x44, 0xe7, 0x01, 0xa6, 0x37, 0x3b, 0x31, 0xce, 0x40,
6879*6236dae4SAndroid Build Coastguard Worker   0x7d, 0x15, 0xfa, 0xd3, 0x67, 0xf4, 0xd3, 0x9e, 0xb7, 0x7b, 0x1e, 0x1e,
6880*6236dae4SAndroid Build Coastguard Worker   0xc0, 0xdf, 0x67, 0x60, 0x89, 0x55, 0xb6, 0xa3, 0x0e, 0x56, 0xb4, 0xe4,
6881*6236dae4SAndroid Build Coastguard Worker   0x23, 0xec, 0x81, 0x4a, 0xca, 0x8a, 0xb6, 0xb4, 0xc4, 0x0e, 0x0b, 0x9c,
6882*6236dae4SAndroid Build Coastguard Worker   0x76, 0x87, 0x3b, 0xca, 0xa9, 0xe5, 0x91, 0x57, 0x37, 0x00, 0x8a, 0x6c,
6883*6236dae4SAndroid Build Coastguard Worker   0x33, 0x6b, 0x79, 0x7b, 0x3b, 0xc0, 0x49, 0x66, 0xce, 0xfb, 0x42, 0xbb,
6884*6236dae4SAndroid Build Coastguard Worker   0x30, 0x1f, 0x35, 0x14, 0x80, 0x01, 0x81, 0xc5, 0x15, 0xc0, 0x29, 0xd3,
6885*6236dae4SAndroid Build Coastguard Worker   0x58, 0xdf, 0xe2, 0x73, 0x37, 0x49, 0xae, 0x45, 0x81, 0xdb, 0x11, 0xe6,
6886*6236dae4SAndroid Build Coastguard Worker   0x8a, 0x3d, 0xcc, 0x4e, 0x64, 0xb6, 0x6e, 0x44, 0x80, 0x4e, 0x76, 0x9d,
6887*6236dae4SAndroid Build Coastguard Worker   0x0d, 0x4e, 0x14, 0xc5, 0xba, 0x36, 0x8d, 0x5e, 0x90, 0xd3, 0xf8, 0x3b,
6888*6236dae4SAndroid Build Coastguard Worker   0x21, 0x00, 0x0b, 0xd3, 0xa2, 0xdd, 0x71, 0xac, 0x6a, 0xdd, 0x38, 0xcd,
6889*6236dae4SAndroid Build Coastguard Worker   0xc4, 0xbc, 0xfb, 0xc7, 0xe6, 0xff, 0x36, 0xe9, 0xbd, 0xb9, 0xd1, 0xdb,
6890*6236dae4SAndroid Build Coastguard Worker   0xec, 0x6d, 0xf5, 0xb6, 0x9f, 0xc2, 0x68, 0xf6, 0x88, 0x2d, 0x66, 0x34,
6891*6236dae4SAndroid Build Coastguard Worker   0xfd, 0xd8, 0xbf, 0x06, 0xa3, 0x3d, 0xfb, 0x4d, 0x18, 0xed, 0xd9, 0xbf,
6892*6236dae4SAndroid Build Coastguard Worker   0x0c, 0xa3, 0x3d, 0xfb, 0x17, 0x63, 0x34, 0xa1, 0xf7, 0x56, 0xb2, 0xb1,
6893*6236dae4SAndroid Build Coastguard Worker   0xb3, 0xb7, 0x93, 0xee, 0x6c, 0xed, 0xed, 0xed, 0x3e, 0xdb, 0xfc, 0x35,
6894*6236dae4SAndroid Build Coastguard Worker   0xd9, 0x6d, 0xc7, 0x63, 0xb7, 0x67, 0xff, 0x2a, 0xec, 0x26, 0xc6, 0xb5,
6895*6236dae4SAndroid Build Coastguard Worker   0x61, 0xb6, 0xd4, 0x63, 0xb7, 0xbe, 0xe4, 0x37, 0x6a, 0x27, 0x03, 0x64,
6896*6236dae4SAndroid Build Coastguard Worker   0x0c, 0x7d, 0x8b, 0x83, 0xec, 0x52, 0xfe, 0xa6, 0x15, 0x34, 0x6e, 0x23,
6897*6236dae4SAndroid Build Coastguard Worker   0x98, 0x39, 0x2d, 0x79, 0x35, 0x1b, 0xdd, 0x0c, 0x7a, 0x7c, 0x16, 0x99,
6898*6236dae4SAndroid Build Coastguard Worker   0x09, 0x38, 0x5c, 0x63, 0xd1, 0xb0, 0xc9, 0x3c, 0x09, 0xc6, 0xdb, 0x60,
6899*6236dae4SAndroid Build Coastguard Worker   0x8d, 0x67, 0xb8, 0x7e, 0xae, 0xb6, 0xa9, 0x2c, 0x4e, 0x55, 0x08, 0xf2,
6900*6236dae4SAndroid Build Coastguard Worker   0x1a, 0x08, 0xb7, 0xb7, 0x8f, 0xe4, 0x8a, 0xf9, 0xf1, 0xcf, 0x83, 0xe0,
6901*6236dae4SAndroid Build Coastguard Worker   0x24, 0x69, 0x02, 0xb7, 0xb1, 0x9d, 0xd2, 0xbf, 0x02, 0x9b, 0x2a, 0xc5,
6902*6236dae4SAndroid Build Coastguard Worker   0x37, 0x5f, 0x6e, 0xf5, 0x36, 0x9f, 0xbd, 0x40, 0x48, 0xa9, 0xae, 0xfd,
6903*6236dae4SAndroid Build Coastguard Worker   0xfb, 0xd6, 0x63, 0xb8, 0xb5, 0x39, 0x90, 0xe5, 0x36, 0x93, 0x43, 0xe1,
6904*6236dae4SAndroid Build Coastguard Worker   0xb0, 0x5a, 0x88, 0xd3, 0xda, 0xf6, 0x89, 0xe1, 0xbb, 0x87, 0x19, 0xad,
6905*6236dae4SAndroid Build Coastguard Worker   0xb8, 0x5a, 0xd4, 0x47, 0x15, 0xb6, 0x68, 0x2d, 0xea, 0x93, 0xcb, 0xb3,
6906*6236dae4SAndroid Build Coastguard Worker   0x6a, 0x35, 0xc0, 0x44, 0xcb, 0xd4, 0x60, 0xa9, 0xbd, 0x2a, 0xde, 0x90,
6907*6236dae4SAndroid Build Coastguard Worker   0xf0, 0x8b, 0xd1, 0xdf, 0x17, 0x53, 0x07, 0xc2, 0xe5, 0x15, 0x98, 0xe6,
6908*6236dae4SAndroid Build Coastguard Worker   0x54, 0xe4, 0x27, 0xae, 0xfe, 0x09, 0xff, 0x56, 0xbc, 0xcb, 0x65, 0x93,
6909*6236dae4SAndroid Build Coastguard Worker   0xe8, 0x9f, 0xf9, 0xcb, 0x86, 0x63, 0x11, 0xea, 0x5c, 0xd8, 0x5a, 0xf3,
6910*6236dae4SAndroid Build Coastguard Worker   0x75, 0x97, 0x14, 0x42, 0x7e, 0xf4, 0xb7, 0x59, 0xb4, 0x19, 0xfd, 0xb7,
6911*6236dae4SAndroid Build Coastguard Worker   0x5e, 0x31, 0x8e, 0xbc, 0x0f, 0x16, 0xc5, 0xe7, 0xe1, 0x25, 0xb7, 0x5a,
6912*6236dae4SAndroid Build Coastguard Worker   0x9d, 0x34, 0x57, 0x06, 0x2b, 0x2d, 0xde, 0xac, 0x39, 0xb1, 0x0c, 0x4a,
6913*6236dae4SAndroid Build Coastguard Worker   0x10, 0xa0, 0xc8, 0xa7, 0xe7, 0x64, 0x24, 0xe8, 0x30, 0x03, 0xc7, 0x47,
6914*6236dae4SAndroid Build Coastguard Worker   0x70, 0xb2, 0x8a, 0x07, 0x51, 0xd8, 0xbe, 0x91, 0xae, 0xd1, 0x47, 0x5e,
6915*6236dae4SAndroid Build Coastguard Worker   0x75, 0x01, 0x1d, 0xf3, 0x2a, 0xc7, 0x53, 0x34, 0xd5, 0xb3, 0x6a, 0xc2,
6916*6236dae4SAndroid Build Coastguard Worker   0xfa, 0x35, 0x5a, 0x44, 0xaa, 0x53, 0xd3, 0xcc, 0x7c, 0x1c, 0x6f, 0x84,
6917*6236dae4SAndroid Build Coastguard Worker   0x9d, 0xc5, 0x4a, 0x16, 0xcd, 0x17, 0xa0, 0x63, 0xa4, 0x00, 0x3d, 0xb8,
6918*6236dae4SAndroid Build Coastguard Worker   0x73, 0xf0, 0xf7, 0xd2, 0xe2, 0x8c, 0x89, 0x6b, 0x0e, 0x13, 0x3d, 0x42,
6919*6236dae4SAndroid Build Coastguard Worker   0xbd, 0xb7, 0x71, 0x9b, 0xa5, 0xd0, 0x5d, 0xa2, 0x06, 0xdc, 0x2e, 0xa0,
6920*6236dae4SAndroid Build Coastguard Worker   0x28, 0xae, 0x67, 0xd3, 0x8a, 0x2a, 0x0b, 0x19, 0x5c, 0x97, 0x9c, 0xdd,
6921*6236dae4SAndroid Build Coastguard Worker   0x11, 0x75, 0x97, 0x7e, 0x53, 0xdc, 0xa6, 0x94, 0x1d, 0xe3, 0x27, 0x46,
6922*6236dae4SAndroid Build Coastguard Worker   0xcc, 0xc3, 0x18, 0xc4, 0xc9, 0x61, 0x44, 0xbb, 0x32, 0x2d, 0x30, 0xb2,
6923*6236dae4SAndroid Build Coastguard Worker   0xfc, 0x2a, 0xc5, 0x9a, 0x70, 0x36, 0xae, 0x15, 0xe1, 0x2e, 0x90, 0x72,
6924*6236dae4SAndroid Build Coastguard Worker   0x5a, 0x16, 0x94, 0x40, 0xa3, 0x22, 0x19, 0x56, 0x71, 0x93, 0x25, 0x6d,
6925*6236dae4SAndroid Build Coastguard Worker   0xe6, 0x92, 0x58, 0x66, 0xf3, 0x90, 0xfd, 0xe1, 0xf2, 0xf3, 0x57, 0xe3,
6926*6236dae4SAndroid Build Coastguard Worker   0xf7, 0x67, 0x5b, 0x0d, 0x7e, 0x7f, 0x45, 0x5e, 0x91, 0xd9, 0x64, 0x2a,
6927*6236dae4SAndroid Build Coastguard Worker   0xc0, 0x75, 0x0f, 0x60, 0x68, 0x91, 0xff, 0x7b, 0x2d, 0xfa, 0x96, 0x4a,
6928*6236dae4SAndroid Build Coastguard Worker   0xf0, 0x39, 0xcb, 0x41, 0x90, 0x59, 0xd4, 0x25, 0x6e, 0x90, 0x28, 0x34,
6929*6236dae4SAndroid Build Coastguard Worker   0x85, 0x68, 0x4e, 0xdb, 0x03, 0xc6, 0x76, 0x60, 0xbc, 0x14, 0x7d, 0x45,
6930*6236dae4SAndroid Build Coastguard Worker   0x5a, 0xec, 0x72, 0x17, 0x64, 0xd7, 0xe7, 0xd8, 0x8a, 0x13, 0xcd, 0xaf,
6931*6236dae4SAndroid Build Coastguard Worker   0x3a, 0x47, 0x84, 0x22, 0x42, 0x71, 0x0c, 0x02, 0xd7, 0x33, 0x2c, 0x3a,
6932*6236dae4SAndroid Build Coastguard Worker   0x7b, 0x7a, 0x80, 0x18, 0x5c, 0xc6, 0x7c, 0x95, 0xba, 0x68, 0x71, 0xa6,
6933*6236dae4SAndroid Build Coastguard Worker   0xb1, 0x8b, 0x94, 0x93, 0x10, 0xec, 0x44, 0x2e, 0xd5, 0x85, 0x5e, 0x3b,
6934*6236dae4SAndroid Build Coastguard Worker   0x77, 0x42, 0x9e, 0x94, 0xd9, 0x77, 0xa4, 0x99, 0xc6, 0x4c, 0xfa, 0x5a,
6935*6236dae4SAndroid Build Coastguard Worker   0x25, 0x48, 0x15, 0x42, 0xaf, 0xfe, 0xc3, 0x99, 0xc7, 0xd9, 0x5e, 0xee,
6936*6236dae4SAndroid Build Coastguard Worker   0xa8, 0xf6, 0x50, 0x39, 0xa2, 0xa7, 0x1c, 0x3a, 0x00, 0x00, 0xae, 0xb0,
6937*6236dae4SAndroid Build Coastguard Worker   0x4c, 0x2f, 0x39, 0xcf, 0x71, 0x51, 0xc5, 0x68, 0xdf, 0x76, 0x62, 0xe5,
6938*6236dae4SAndroid Build Coastguard Worker   0xde, 0x79, 0xa6, 0x59, 0x00, 0x4b, 0x89, 0x23, 0x3c, 0x97, 0x53, 0x10,
6939*6236dae4SAndroid Build Coastguard Worker   0x28, 0x5f, 0x25, 0x48, 0x2d, 0x12, 0x79, 0xaf, 0x92, 0x74, 0xe2, 0x85,
6940*6236dae4SAndroid Build Coastguard Worker   0xc8, 0xaa, 0x02, 0xe3, 0xd1, 0xda, 0x58, 0x85, 0xff, 0xe5, 0xc4, 0x0c,
6941*6236dae4SAndroid Build Coastguard Worker   0xc9, 0xe3, 0xc1, 0x24, 0x8f, 0x40, 0x62, 0x8d, 0x40, 0xc9, 0x17, 0x54,
6942*6236dae4SAndroid Build Coastguard Worker   0x1b, 0x94, 0x64, 0x7e, 0xed, 0xa3, 0x53, 0xa3, 0xb7, 0x2c, 0x41, 0xcd,
6943*6236dae4SAndroid Build Coastguard Worker   0xb2, 0xd7, 0xf9, 0x43, 0xeb, 0x84, 0x51, 0xbe, 0x24, 0x72, 0x24, 0xbd,
6944*6236dae4SAndroid Build Coastguard Worker   0x19, 0xb7, 0xf3, 0x18, 0x64, 0xca, 0xfb, 0xc1, 0x13, 0xc8, 0xf4, 0x4c,
6945*6236dae4SAndroid Build Coastguard Worker   0xc7, 0x8a, 0xe4, 0xaa, 0x95, 0x88, 0xc3, 0xf2, 0x7e, 0x8a, 0xee, 0x69,
6946*6236dae4SAndroid Build Coastguard Worker   0x7e, 0x57, 0xee, 0x1c, 0x5c, 0x35, 0xf7, 0x8b, 0x5a, 0x8c, 0x13, 0xf7,
6947*6236dae4SAndroid Build Coastguard Worker   0xa1, 0x72, 0x1a, 0x4b, 0x92, 0x32, 0x8b, 0xd1, 0x0d, 0xec, 0x10, 0x07,
6948*6236dae4SAndroid Build Coastguard Worker   0x16, 0x8f, 0x2a, 0xb7, 0xa8, 0x40, 0x8d, 0xd8, 0x6f, 0x66, 0xea, 0xdb,
6949*6236dae4SAndroid Build Coastguard Worker   0xdb, 0xa1, 0x19, 0x1a, 0xa1, 0xea, 0x39, 0xf9, 0xd6, 0x92, 0xdc, 0x00,
6950*6236dae4SAndroid Build Coastguard Worker   0xf7, 0x26, 0xc6, 0x81, 0x15, 0x9c, 0x0b, 0xa3, 0xeb, 0x6b, 0x4e, 0x2e,
6951*6236dae4SAndroid Build Coastguard Worker   0x9e, 0xbc, 0xe8, 0x69, 0xc5, 0xa4, 0xf3, 0xda, 0xfa, 0x4e, 0xc7, 0x77,
6952*6236dae4SAndroid Build Coastguard Worker   0xb7, 0xf4, 0x7e, 0x09, 0x1f, 0x8c, 0x93, 0x1b, 0x20, 0xca, 0x62, 0x87,
6953*6236dae4SAndroid Build Coastguard Worker   0x67, 0x5a, 0x27, 0x97, 0xb1, 0xe0, 0xaf, 0xce, 0x61, 0x6b, 0xa7, 0x52,
6954*6236dae4SAndroid Build Coastguard Worker   0x47, 0x4e, 0x30, 0x83, 0xc2, 0x51, 0x59, 0x85, 0x09, 0xca, 0x91, 0xb8,
6955*6236dae4SAndroid Build Coastguard Worker   0xd4, 0x04, 0x51, 0xc1, 0xc4, 0x45, 0x69, 0xe8, 0x05, 0xf9, 0xa9, 0x66,
6956*6236dae4SAndroid Build Coastguard Worker   0xf7, 0xe8, 0x3c, 0xb9, 0x64, 0x07, 0xb1, 0xc9, 0x96, 0x76, 0x60, 0xff,
6957*6236dae4SAndroid Build Coastguard Worker   0xb0, 0xf1, 0x44, 0x9a, 0x73, 0x43, 0x12, 0x58, 0x14, 0x1c, 0xe2, 0x09,
6958*6236dae4SAndroid Build Coastguard Worker   0x08, 0x91, 0xf8, 0x1d, 0x50, 0x32, 0xf6, 0x90, 0xbb, 0xd1, 0xe5, 0x2e,
6959*6236dae4SAndroid Build Coastguard Worker   0xa7, 0xdd, 0x26, 0x6e, 0x0a, 0x50, 0x14, 0x7e, 0xa6, 0x17, 0x04, 0x5d,
6960*6236dae4SAndroid Build Coastguard Worker   0x1e, 0x16, 0xa5, 0x40, 0x1f, 0x63, 0x52, 0x33, 0x88, 0x1f, 0xca, 0xe4,
6961*6236dae4SAndroid Build Coastguard Worker   0xae, 0x0c, 0xc6, 0x64, 0x33, 0x11, 0x96, 0x66, 0xa5, 0x0d, 0x62, 0x3c,
6962*6236dae4SAndroid Build Coastguard Worker   0x34, 0x04, 0x82, 0x50, 0x12, 0x63, 0x59, 0x3a, 0x95, 0x68, 0x26, 0xc1,
6963*6236dae4SAndroid Build Coastguard Worker   0x28, 0xad, 0x32, 0x9c, 0x08, 0xcf, 0x04, 0x6e, 0xa6, 0xdc, 0xe0, 0xee,
6964*6236dae4SAndroid Build Coastguard Worker   0x72, 0x56, 0xb8, 0x17, 0xd9, 0x85, 0x8d, 0xa8, 0x6c, 0x03, 0x5a, 0x7a,
6965*6236dae4SAndroid Build Coastguard Worker   0x34, 0xb8, 0x0a, 0xe4, 0x63, 0x09, 0xd6, 0xca, 0x35, 0x21, 0x9b, 0x59,
6966*6236dae4SAndroid Build Coastguard Worker   0x51, 0x28, 0x91, 0x20, 0x33, 0xd1, 0xab, 0x4f, 0xff, 0xa4, 0x20, 0x16,
6967*6236dae4SAndroid Build Coastguard Worker   0x92, 0x5c, 0x32, 0xd1, 0x02, 0xca, 0x19, 0x5d, 0x03, 0xa6, 0x4d, 0x6d,
6968*6236dae4SAndroid Build Coastguard Worker   0x2e, 0x89, 0x9e, 0x0e, 0x52, 0x42, 0xa1, 0x30, 0xbd, 0x91, 0xe9, 0x61,
6969*6236dae4SAndroid Build Coastguard Worker   0x2a, 0x51, 0x9b, 0xc4, 0xaf, 0x31, 0xa4, 0x8f, 0x51, 0x68, 0xb7, 0x9a,
6970*6236dae4SAndroid Build Coastguard Worker   0x0d, 0xb8, 0x5f, 0x8d, 0x81, 0x99, 0x5e, 0x9a, 0x9d, 0x5d, 0x16, 0xc5,
6971*6236dae4SAndroid Build Coastguard Worker   0x7f, 0x3c, 0x56, 0x9e, 0xbb, 0x6a, 0xc0, 0x8b, 0xa6, 0xda, 0x6b, 0x29,
6972*6236dae4SAndroid Build Coastguard Worker   0xb5, 0x88, 0xe7, 0x1b, 0x4c, 0x8f, 0x4f, 0x57, 0x9c, 0x8a, 0x0c, 0x9c,
6973*6236dae4SAndroid Build Coastguard Worker   0x4e, 0x0b, 0x6c, 0xdf, 0xf9, 0x72, 0xcb, 0x1f, 0xe4, 0x41, 0x6a, 0xd0,
6974*6236dae4SAndroid Build Coastguard Worker   0x89, 0xa1, 0x5e, 0x8b, 0xc8, 0xfa, 0x63, 0x32, 0x92, 0x99, 0x71, 0x29,
6975*6236dae4SAndroid Build Coastguard Worker   0x1f, 0x94, 0x9b, 0x51, 0x4a, 0x2e, 0xa0, 0xad, 0x13, 0x9d, 0xbb, 0x57,
6976*6236dae4SAndroid Build Coastguard Worker   0x73, 0xc0, 0xd8, 0xf4, 0x5b, 0x94, 0x15, 0xd3, 0x28, 0x7e, 0xec, 0x36,
6977*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x05, 0x82, 0xf2, 0x99, 0x83, 0xb8, 0xf2, 0x98, 0x1d, 0x21, 0xea,
6978*6236dae4SAndroid Build Coastguard Worker   0xd1, 0x39, 0xfb, 0x95, 0xb6, 0x84, 0xea, 0x00, 0x36, 0x37, 0x36, 0x2c,
6979*6236dae4SAndroid Build Coastguard Worker   0x70, 0xff, 0x1c, 0xb4, 0x7e, 0xd9, 0x1d, 0x05, 0xed, 0x27, 0x31, 0x9d,
6980*6236dae4SAndroid Build Coastguard Worker   0xe5, 0x06, 0xb1, 0xdf, 0xa8, 0xf5, 0x16, 0xaf, 0x9f, 0x60, 0x4e, 0x93,
6981*6236dae4SAndroid Build Coastguard Worker   0x8c, 0x05, 0x53, 0x3b, 0xfa, 0x82, 0x9f, 0x34, 0xd8, 0xf9, 0x46, 0x21,
6982*6236dae4SAndroid Build Coastguard Worker   0xba, 0x35, 0x18, 0x29, 0x29, 0x61, 0xf7, 0xa3, 0x96, 0x7d, 0x44, 0x53,
6983*6236dae4SAndroid Build Coastguard Worker   0xac, 0xf6, 0x9a, 0xef, 0xb4, 0xc1, 0xb0, 0x59, 0x16, 0xd1, 0xf6, 0xe1,
6984*6236dae4SAndroid Build Coastguard Worker   0x8b, 0x86, 0xed, 0xa3, 0xe8, 0xcb, 0x7b, 0x1b, 0xce, 0x32, 0x31, 0x61,
6985*6236dae4SAndroid Build Coastguard Worker   0x9a, 0x17, 0xea, 0x3c, 0x3c, 0xff, 0xde, 0x02, 0xb4, 0x92, 0x30, 0x20,
6986*6236dae4SAndroid Build Coastguard Worker   0xff, 0xbf, 0x39, 0x78, 0x2e, 0xb0, 0x1f, 0x60, 0x7b, 0xe0, 0x90, 0x8c,
6987*6236dae4SAndroid Build Coastguard Worker   0xe9, 0x1d, 0xe8, 0x11, 0xee, 0x76, 0x0a, 0x30, 0x2d, 0xd6, 0xec, 0xba,
6988*6236dae4SAndroid Build Coastguard Worker   0xaf, 0xd0, 0x7f, 0x90, 0x12, 0x08, 0x26, 0x6b, 0xa6, 0x4b, 0x33, 0x87,
6989*6236dae4SAndroid Build Coastguard Worker   0xb7, 0x8f, 0x5b, 0xbd, 0x5d, 0x03, 0xc8, 0xb1, 0x64, 0xff, 0xce, 0x26,
6990*6236dae4SAndroid Build Coastguard Worker   0x5c, 0x7f, 0xb3, 0x0e, 0xf2, 0x79, 0x93, 0x7f, 0x10, 0xc1, 0x33, 0x26,
6991*6236dae4SAndroid Build Coastguard Worker   0x9c, 0xce, 0xb6, 0xbc, 0x47, 0x68, 0x4f, 0x94, 0x6b, 0x14, 0x96, 0x33,
6992*6236dae4SAndroid Build Coastguard Worker   0xa8, 0x32, 0x25, 0x77, 0xca, 0x94, 0xda, 0x13, 0x35, 0xfa, 0xb8, 0xb7,
6993*6236dae4SAndroid Build Coastguard Worker   0xdf, 0x82, 0x06, 0x43, 0x0e, 0x62, 0xce, 0xa8, 0x70, 0x10, 0xbf, 0x0c,
6994*6236dae4SAndroid Build Coastguard Worker   0xfc, 0x5e, 0x28, 0x78, 0xea, 0xa3, 0x3f, 0x73, 0xb1, 0x6e, 0x6d, 0xc2,
6995*6236dae4SAndroid Build Coastguard Worker   0xfc, 0x0c, 0x4a, 0x4a, 0xc9, 0xea, 0xe4, 0xcb, 0xe2, 0xdb, 0x10, 0x8c,
6996*6236dae4SAndroid Build Coastguard Worker   0xda, 0x2e, 0xf1, 0x06, 0x1c, 0x64, 0xac, 0xcd, 0x66, 0x0e, 0x0a, 0x3a,
6997*6236dae4SAndroid Build Coastguard Worker   0xe8, 0xb8, 0x39, 0x8b, 0x42, 0x9f, 0x11, 0x1e, 0x01, 0x2f, 0xa6, 0xb2,
6998*6236dae4SAndroid Build Coastguard Worker   0x6d, 0x65, 0x08, 0x3b, 0x09, 0x7f, 0x01, 0xe3, 0x56, 0xea, 0x5f, 0xcb,
6999*6236dae4SAndroid Build Coastguard Worker   0x43, 0xb9, 0xd5, 0xa4, 0x88, 0xc3, 0x53, 0x2b, 0x88, 0x55, 0x49, 0x29,
7000*6236dae4SAndroid Build Coastguard Worker   0x2c, 0x3c, 0xb2, 0xe9, 0xe2, 0xc2, 0xe5, 0x9f, 0x84, 0x8e, 0x1a, 0x71,
7001*6236dae4SAndroid Build Coastguard Worker   0xae, 0x3f, 0x07, 0xe2, 0x7c, 0x69, 0x45, 0xa9, 0xcd, 0xd8, 0x13, 0x2a,
7002*6236dae4SAndroid Build Coastguard Worker   0xa2, 0xcd, 0x21, 0xa4, 0xd5, 0x59, 0xe9, 0x24, 0x34, 0x77, 0xae, 0x32,
7003*6236dae4SAndroid Build Coastguard Worker   0xd8, 0xd5, 0xbc, 0x43, 0xd7, 0xbe, 0xbd, 0x2d, 0xe4, 0xbb, 0xde, 0x62,
7004*6236dae4SAndroid Build Coastguard Worker   0x67, 0x63, 0x27, 0xb7, 0xe2, 0x93, 0x20, 0x24, 0x6b, 0x23, 0x29, 0xc2,
7005*6236dae4SAndroid Build Coastguard Worker   0x87, 0x2f, 0x14, 0x19, 0x2b, 0x45, 0x50, 0xbc, 0x86, 0x22, 0x8f, 0xe6,
7006*6236dae4SAndroid Build Coastguard Worker   0x16, 0x56, 0x3b, 0x2e, 0x01, 0x76, 0xf3, 0xe2, 0x12, 0xd8, 0x7d, 0x31,
7007*6236dae4SAndroid Build Coastguard Worker   0x4a, 0xa9, 0x3c, 0x2a, 0x37, 0xb0, 0x86, 0xc9, 0x04, 0xa3, 0x86, 0xf8,
7008*6236dae4SAndroid Build Coastguard Worker   0x2f, 0xa4, 0x71, 0x08, 0x9d, 0x0e, 0x37, 0x41, 0x70, 0xaf, 0x03, 0x9d,
7009*6236dae4SAndroid Build Coastguard Worker   0x0b, 0xa5, 0xb6, 0x2c, 0xb9, 0x27, 0xd4, 0x2c, 0xfb, 0x61, 0xe2, 0x6e,
7010*6236dae4SAndroid Build Coastguard Worker   0xaf, 0x8f, 0x0c, 0x50, 0xf1, 0xb2, 0x20, 0x2f, 0xa0, 0xf0, 0x31, 0x92,
7011*6236dae4SAndroid Build Coastguard Worker   0x70, 0x58, 0x66, 0xd3, 0x9a, 0x93, 0xc9, 0xe7, 0x45, 0x7c, 0x5b, 0xb1,
7012*6236dae4SAndroid Build Coastguard Worker   0xce, 0xcb, 0x71, 0x31, 0x48, 0xc6, 0x82, 0x01, 0x28, 0xa5, 0x26, 0x9a,
7013*6236dae4SAndroid Build Coastguard Worker   0xb2, 0xd0, 0x68, 0x8c, 0x88, 0xe2, 0x13, 0xd9, 0x33, 0xd0, 0xbe, 0x1b,
7014*6236dae4SAndroid Build Coastguard Worker   0x56, 0x1c, 0xef, 0x75, 0x29, 0x6f, 0xef, 0x6e, 0x31, 0x62, 0x9e, 0xf9,
7015*6236dae4SAndroid Build Coastguard Worker   0x04, 0xf7, 0x10, 0x8a, 0x2f, 0xba, 0x72, 0x7a, 0x15, 0x52, 0x93, 0x2a,
7016*6236dae4SAndroid Build Coastguard Worker   0x75, 0x2a, 0xe7, 0x48, 0x79, 0xbe, 0x17, 0x42, 0xeb, 0x8d, 0x46, 0x33,
7017*6236dae4SAndroid Build Coastguard Worker   0x56, 0x74, 0xec, 0x15, 0xb7, 0x22, 0x49, 0xa8, 0xe2, 0x2a, 0xa4, 0xf2,
7018*6236dae4SAndroid Build Coastguard Worker   0x11, 0xd3, 0xf9, 0x9a, 0x73, 0x3d, 0x43, 0x50, 0x8a, 0xd8, 0x86, 0x50,
7019*6236dae4SAndroid Build Coastguard Worker   0x9c, 0x42, 0xdd, 0xe8, 0x8a, 0x7d, 0x34, 0x38, 0xc3, 0xd4, 0x99, 0x9c,
7020*6236dae4SAndroid Build Coastguard Worker   0xd6, 0x7f, 0x3a, 0xb4, 0xca, 0x2a, 0x3e, 0x57, 0xb1, 0x9f, 0xe6, 0x64,
7021*6236dae4SAndroid Build Coastguard Worker   0xb4, 0x45, 0xde, 0x93, 0x05, 0x94, 0x79, 0x40, 0x9a, 0x5a, 0xa9, 0x16,
7022*6236dae4SAndroid Build Coastguard Worker   0x12, 0x9d, 0xe6, 0x67, 0xb0, 0x02, 0x75, 0x90, 0x2c, 0xea, 0x05, 0x4b,
7023*6236dae4SAndroid Build Coastguard Worker   0xce, 0x90, 0xa6, 0xc4, 0x44, 0x5d, 0x35, 0x1e, 0x14, 0xa3, 0xfb, 0x39,
7024*6236dae4SAndroid Build Coastguard Worker   0x2a, 0xd0, 0x7b, 0x3e, 0x2b, 0x06, 0x0b, 0x99, 0x3c, 0x52, 0xe4, 0x3b,
7025*6236dae4SAndroid Build Coastguard Worker   0x10, 0xe9, 0x42, 0x38, 0xf0, 0x16, 0x0b, 0x57, 0x2f, 0x12, 0xbf, 0x9f,
7026*6236dae4SAndroid Build Coastguard Worker   0x2a, 0x69, 0x1c, 0x88, 0x84, 0x0e, 0xa3, 0x5c, 0x92, 0xe2, 0x51, 0xae,
7027*6236dae4SAndroid Build Coastguard Worker   0xf5, 0xa2, 0xe3, 0x5c, 0xb2, 0xa2, 0xa4, 0x08, 0x58, 0xb2, 0x1c, 0xf0,
7028*6236dae4SAndroid Build Coastguard Worker   0x68, 0xb2, 0x07, 0x86, 0xbf, 0x16, 0x60, 0x80, 0x4a, 0x52, 0xa7, 0xa9,
7029*6236dae4SAndroid Build Coastguard Worker   0x73, 0x2a, 0x62, 0x45, 0x0e, 0x2d, 0xd6, 0xac, 0xad, 0xa8, 0xe0, 0xca,
7030*6236dae4SAndroid Build Coastguard Worker   0x31, 0xfd, 0x25, 0x71, 0x86, 0x9f, 0x31, 0x01, 0x97, 0x8d, 0x44, 0xf4,
7031*6236dae4SAndroid Build Coastguard Worker   0x19, 0x9d, 0x91, 0xae, 0x1f, 0xc5, 0x4e, 0xc0, 0x25, 0x72, 0xe7, 0x68,
7032*6236dae4SAndroid Build Coastguard Worker   0x12, 0x9e, 0x6b, 0x26, 0xb3, 0x95, 0x13, 0xce, 0x03, 0xde, 0x99, 0xaa,
7033*6236dae4SAndroid Build Coastguard Worker   0x26, 0xe9, 0xde, 0x50, 0x3f, 0x04, 0xdd, 0x8d, 0x4e, 0x25, 0xab, 0xe4,
7034*6236dae4SAndroid Build Coastguard Worker   0x89, 0x41, 0xcf, 0x20, 0xff, 0x31, 0x7d, 0x93, 0x8a, 0x63, 0x42, 0x12,
7035*6236dae4SAndroid Build Coastguard Worker   0x54, 0xa8, 0xbf, 0xb5, 0x15, 0x3e, 0x5a, 0x9a, 0x71, 0x55, 0x63, 0x86,
7036*6236dae4SAndroid Build Coastguard Worker   0x06, 0xe5, 0x1e, 0x59, 0xb5, 0x1d, 0x79, 0x58, 0x99, 0x58, 0x4e, 0x98,
7037*6236dae4SAndroid Build Coastguard Worker   0x58, 0x70, 0x34, 0xb9, 0xd0, 0xd1, 0x32, 0xf6, 0x1b, 0xd5, 0x4c, 0x65,
7038*6236dae4SAndroid Build Coastguard Worker   0x25, 0x10, 0x0f, 0x08, 0x47, 0x2d, 0x27, 0x35, 0xf3, 0x0c, 0x2f, 0x76,
7039*6236dae4SAndroid Build Coastguard Worker   0x58, 0x48, 0xab, 0x52, 0xee, 0x49, 0xec, 0x6d, 0x58, 0x70, 0x39, 0xed,
7040*6236dae4SAndroid Build Coastguard Worker   0xc0, 0x1c, 0xcd, 0xde, 0x02, 0x07, 0xb7, 0x79, 0x68, 0x0e, 0x7b, 0x93,
7041*6236dae4SAndroid Build Coastguard Worker   0x72, 0x00, 0x72, 0x72, 0x0c, 0x93, 0x87, 0x33, 0xb6, 0x9a, 0xdb, 0x9d,
7042*6236dae4SAndroid Build Coastguard Worker   0x22, 0x63, 0x7e, 0xcd, 0x63, 0xf8, 0x60, 0xb9, 0x07, 0xd0, 0x1f, 0x33,
7043*6236dae4SAndroid Build Coastguard Worker   0x75, 0xb0, 0xad, 0x71, 0xc1, 0x3e, 0x09, 0xc9, 0x98, 0x53, 0x69, 0x9c,
7044*6236dae4SAndroid Build Coastguard Worker   0xd6, 0x43, 0x96, 0xa6, 0x94, 0xe8, 0x3a, 0x4a, 0x93, 0xb1, 0x54, 0x8a,
7045*6236dae4SAndroid Build Coastguard Worker   0xe1, 0xdc, 0x7c, 0x88, 0x16, 0x56, 0x0c, 0x2a, 0xff, 0x78, 0x70, 0xc9,
7046*6236dae4SAndroid Build Coastguard Worker   0x64, 0xde, 0xc0, 0x9d, 0xf6, 0x0f, 0x83, 0x07, 0x20, 0xb3, 0xc4, 0xd1,
7047*6236dae4SAndroid Build Coastguard Worker   0xe0, 0xb0, 0xb2, 0x26, 0xb8, 0xd0, 0x79, 0x08, 0xe1, 0x2a, 0x3b, 0xc7,
7048*6236dae4SAndroid Build Coastguard Worker   0xc3, 0x9c, 0x0f, 0x39, 0x1e, 0xc4, 0x91, 0x74, 0x38, 0xe8, 0xda, 0x95,
7049*6236dae4SAndroid Build Coastguard Worker   0x04, 0x7e, 0xde, 0x72, 0x34, 0x40, 0x83, 0xcd, 0xd8, 0xa4, 0xa3, 0xa4,
7050*6236dae4SAndroid Build Coastguard Worker   0x40, 0xd1, 0xca, 0x0d, 0xbd, 0x98, 0xe9, 0x27, 0x29, 0xb0, 0xe1, 0x48,
7051*6236dae4SAndroid Build Coastguard Worker   0x05, 0x33, 0xb1, 0x52, 0x95, 0x5c, 0xa4, 0x6a, 0xc3, 0x8a, 0xc2, 0x53,
7052*6236dae4SAndroid Build Coastguard Worker   0x0c, 0x81, 0x72, 0xe4, 0xef, 0x67, 0x49, 0x85, 0x0e, 0x19, 0xcf, 0xa2,
7053*6236dae4SAndroid Build Coastguard Worker   0x62, 0x5d, 0x03, 0x75, 0x0b, 0xa3, 0x08, 0xa3, 0xc4, 0x12, 0x25, 0xa5,
7054*6236dae4SAndroid Build Coastguard Worker   0x1a, 0x67, 0x53, 0x4d, 0x22, 0xea, 0x46, 0xa9, 0x94, 0x4d, 0x61, 0x83,
7055*6236dae4SAndroid Build Coastguard Worker   0x51, 0xda, 0x8d, 0x59, 0xec, 0x6b, 0x50, 0xa6, 0xf4, 0x41, 0x1b, 0x52,
7056*6236dae4SAndroid Build Coastguard Worker   0x8e, 0xd1, 0x3f, 0xba, 0xda, 0x1a, 0x7d, 0x67, 0x63, 0x93, 0x66, 0xbb,
7057*6236dae4SAndroid Build Coastguard Worker   0xb3, 0xf1, 0x7c, 0xed, 0x29, 0x47, 0x67, 0x49, 0x75, 0xba, 0x79, 0xda,
7058*6236dae4SAndroid Build Coastguard Worker   0x9a, 0xca, 0xf3, 0xb8, 0x4a, 0x63, 0x2a, 0xf5, 0x7b, 0x04, 0x04, 0x1b,
7059*6236dae4SAndroid Build Coastguard Worker   0xf9, 0xdb, 0xf0, 0x0d, 0x29, 0x0e, 0x54, 0xc4, 0x35, 0x72, 0x07, 0xc0,
7060*6236dae4SAndroid Build Coastguard Worker   0xf3, 0x11, 0xc1, 0x61, 0x57, 0x57, 0xd8, 0x06, 0xcd, 0x53, 0xc6, 0xf1,
7061*6236dae4SAndroid Build Coastguard Worker   0x35, 0x79, 0x8f, 0x6b, 0x6c, 0xf0, 0x66, 0xe0, 0xad, 0x49, 0xe8, 0x65,
7062*6236dae4SAndroid Build Coastguard Worker   0x86, 0xf5, 0x12, 0xca, 0xd3, 0x73, 0xc6, 0x19, 0xe4, 0xd5, 0xa8, 0xdb,
7063*6236dae4SAndroid Build Coastguard Worker   0x26, 0x4b, 0x0c, 0x13, 0xc3, 0x39, 0xb2, 0x14, 0x3f, 0xb9, 0x37, 0xbe,
7064*6236dae4SAndroid Build Coastguard Worker   0x20, 0x55, 0x0d, 0xa2, 0xd7, 0x59, 0x9e, 0x55, 0x57, 0x68, 0x5b, 0x4f,
7065*6236dae4SAndroid Build Coastguard Worker   0x30, 0x2d, 0xf4, 0x32, 0xf5, 0xbb, 0xf8, 0x82, 0xd6, 0x20, 0x52, 0x2d,
7066*6236dae4SAndroid Build Coastguard Worker   0x89, 0x4a, 0xea, 0x52, 0x8d, 0xe5, 0x76, 0xbc, 0xd1, 0x82, 0x6c, 0xc2,
7067*6236dae4SAndroid Build Coastguard Worker   0xbf, 0xe4, 0xae, 0x40, 0x76, 0x99, 0x21, 0x06, 0x25, 0x13, 0x7b, 0x56,
7068*6236dae4SAndroid Build Coastguard Worker   0x96, 0x2c, 0x5b, 0xb8, 0x74, 0x09, 0xb7, 0x09, 0x8f, 0x9b, 0x45, 0x90,
7069*6236dae4SAndroid Build Coastguard Worker   0x78, 0xd7, 0xef, 0x13, 0x13, 0xf4, 0x39, 0x20, 0x73, 0x8e, 0x6a, 0x8f,
7070*6236dae4SAndroid Build Coastguard Worker   0xb7, 0x4e, 0x8c, 0xdb, 0xae, 0x22, 0x37, 0x9d, 0xf6, 0x41, 0xc8, 0xd1,
7071*6236dae4SAndroid Build Coastguard Worker   0x1d, 0x8a, 0x1e, 0x84, 0x92, 0x0a, 0x27, 0xe1, 0x67, 0xdf, 0x61, 0xd6,
7072*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x4b, 0xf3, 0xe3, 0x35, 0xc2, 0x03, 0xc6, 0x92, 0xee, 0xe5, 0xd9,
7073*6236dae4SAndroid Build Coastguard Worker   0xca, 0x70, 0xc2, 0x92, 0x06, 0xfd, 0xce, 0x56, 0xcb, 0x20, 0xc3, 0x7a,
7074*6236dae4SAndroid Build Coastguard Worker   0x68, 0xc9, 0x76, 0x23, 0x07, 0xef, 0x67, 0xfc, 0x8f, 0x70, 0xa4, 0x85,
7075*6236dae4SAndroid Build Coastguard Worker   0xa0, 0x1f, 0x8f, 0xdf, 0x1e, 0x60, 0xdf, 0x12, 0x0b, 0x4a, 0xe3, 0x54,
7076*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x29, 0x00, 0x96, 0x9b, 0x6a, 0x41, 0x06, 0x70, 0xb0, 0x55, 0x16,
7077*6236dae4SAndroid Build Coastguard Worker   0x63, 0x4f, 0xda, 0xc0, 0xdc, 0xa8, 0x89, 0xa3, 0x47, 0x26, 0xdc, 0x38,
7078*6236dae4SAndroid Build Coastguard Worker   0xab, 0x31, 0x00, 0x31, 0xbe, 0xef, 0x45, 0x27, 0x60, 0x17, 0xe0, 0x5b,
7079*6236dae4SAndroid Build Coastguard Worker   0x2b, 0x5f, 0xac, 0x04, 0xd0, 0xb2, 0x56, 0xf6, 0x57, 0x9c, 0x36, 0xd8,
7080*6236dae4SAndroid Build Coastguard Worker   0xc6, 0x49, 0x16, 0xad, 0x7c, 0x8a, 0x85, 0xe1, 0x88, 0x7e, 0xcf, 0xdf,
7081*6236dae4SAndroid Build Coastguard Worker   0x94, 0x0d, 0xe5, 0x1a, 0x67, 0xc9, 0x51, 0x9e, 0x03, 0x54, 0x24, 0xcd,
7082*6236dae4SAndroid Build Coastguard Worker   0xb6, 0x9a, 0xd5, 0x48, 0x8c, 0x4c, 0x9d, 0x12, 0x76, 0x76, 0x63, 0xed,
7083*6236dae4SAndroid Build Coastguard Worker   0x6a, 0xc1, 0xad, 0x78, 0x68, 0x5a, 0xf9, 0xbd, 0x78, 0x9a, 0x33, 0xaa,
7084*6236dae4SAndroid Build Coastguard Worker   0xa6, 0xb0, 0xbe, 0x4b, 0x9e, 0x11, 0x4f, 0x85, 0xfa, 0x8b, 0x25, 0xc3,
7085*6236dae4SAndroid Build Coastguard Worker   0x21, 0x61, 0x06, 0xb2, 0x9b, 0x09, 0x7e, 0x7d, 0x79, 0x19, 0x2c, 0x99,
7086*6236dae4SAndroid Build Coastguard Worker   0x02, 0x12, 0x20, 0x1b, 0xe1, 0x9a, 0x2f, 0x40, 0x49, 0x23, 0x23, 0x03,
7087*6236dae4SAndroid Build Coastguard Worker   0x95, 0xfb, 0xf9, 0x05, 0xec, 0x0f, 0x71, 0x94, 0xc3, 0x07, 0x9d, 0x11,
7088*6236dae4SAndroid Build Coastguard Worker   0xf5, 0x43, 0x5d, 0x4a, 0x6c, 0x05, 0x3e, 0xec, 0x90, 0x66, 0xdf, 0xc5,
7089*6236dae4SAndroid Build Coastguard Worker   0x5a, 0x99, 0x13, 0xc4, 0x23, 0xde, 0x12, 0xe6, 0x42, 0xef, 0x2f, 0xfd,
7090*6236dae4SAndroid Build Coastguard Worker   0xd4, 0x44, 0xf0, 0x2e, 0x12, 0x60, 0xb7, 0x7b, 0xc9, 0x32, 0x1f, 0x23,
7091*6236dae4SAndroid Build Coastguard Worker   0x3a, 0x86, 0xb8, 0x7d, 0x3c, 0xb9, 0x3e, 0xa6, 0x98, 0x9b, 0x00, 0x13,
7092*6236dae4SAndroid Build Coastguard Worker   0xc4, 0xb0, 0x61, 0xbc, 0x39, 0xb9, 0x68, 0x55, 0x82, 0x64, 0x40, 0x2e,
7093*6236dae4SAndroid Build Coastguard Worker   0x14, 0x81, 0x28, 0x18, 0xa9, 0x8f, 0x94, 0x40, 0x0a, 0xda, 0x01, 0x35,
7094*6236dae4SAndroid Build Coastguard Worker   0x81, 0x2c, 0x10, 0x61, 0x21, 0x66, 0x8f, 0xcd, 0x68, 0x25, 0xd0, 0x05,
7095*6236dae4SAndroid Build Coastguard Worker   0x92, 0x6b, 0xd6, 0xb1, 0xed, 0x22, 0x90, 0xb5, 0x43, 0x08, 0xe4, 0x8b,
7096*6236dae4SAndroid Build Coastguard Worker   0x80, 0x73, 0xbb, 0x4e, 0x14, 0x67, 0x64, 0x88, 0x36, 0xb4, 0xe5, 0xd6,
7097*6236dae4SAndroid Build Coastguard Worker   0xf6, 0x8b, 0x17, 0x41, 0x8f, 0x38, 0x43, 0xaf, 0x02, 0x63, 0x23, 0x99,
7098*6236dae4SAndroid Build Coastguard Worker   0x3c, 0x2c, 0x5f, 0x36, 0x75, 0x88, 0x6b, 0x2b, 0x75, 0x05, 0x63, 0xbb,
7099*6236dae4SAndroid Build Coastguard Worker   0x93, 0x04, 0xbf, 0xea, 0x47, 0x5a, 0x28, 0x67, 0x76, 0x82, 0x17, 0x94,
7100*6236dae4SAndroid Build Coastguard Worker   0x08, 0x5a, 0x32, 0xd3, 0x50, 0xb0, 0x01, 0x15, 0xe6, 0xc8, 0xca, 0x54,
7101*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x08, 0x05, 0x45, 0x56, 0xfa, 0x69, 0x09, 0xc0, 0x00, 0xa3, 0x12,
7102*6236dae4SAndroid Build Coastguard Worker   0x83, 0x12, 0x45, 0xf0, 0x05, 0x5c, 0x47, 0x42, 0xcc, 0x3a, 0x07, 0xc3,
7103*6236dae4SAndroid Build Coastguard Worker   0x6d, 0x25, 0xd2, 0xb4, 0xdd, 0x41, 0x6a, 0x20, 0xd1, 0xf1, 0x78, 0x65,
7104*6236dae4SAndroid Build Coastguard Worker   0x77, 0xad, 0x3e, 0x08, 0x8c, 0xe0, 0x9a, 0x23, 0xbe, 0x51, 0x76, 0x89,
7105*6236dae4SAndroid Build Coastguard Worker   0x85, 0x8a, 0xed, 0x13, 0x4b, 0x48, 0x89, 0x97, 0x69, 0xed, 0x63, 0xf2,
7106*6236dae4SAndroid Build Coastguard Worker   0x38, 0x65, 0xdd, 0x0b, 0x06, 0x0f, 0x1c, 0x31, 0x41, 0x14, 0xda, 0xe7,
7107*6236dae4SAndroid Build Coastguard Worker   0xcc, 0x85, 0x51, 0x76, 0xa1, 0xa7, 0x5e, 0x3b, 0xd9, 0x7f, 0xc1, 0xe6,
7108*6236dae4SAndroid Build Coastguard Worker   0xc6, 0xbe, 0x69, 0x59, 0x96, 0xab, 0xd8, 0xfb, 0x22, 0xd8, 0x9f, 0x07,
7109*6236dae4SAndroid Build Coastguard Worker   0xfd, 0xc4, 0x1c, 0x4f, 0xa0, 0x16, 0x31, 0x75, 0x0d, 0x36, 0xba, 0xbd,
7110*6236dae4SAndroid Build Coastguard Worker   0x60, 0x08, 0x21, 0xc0, 0xf4, 0xd6, 0x10, 0xfa, 0x92, 0xb1, 0x3d, 0x0e,
7111*6236dae4SAndroid Build Coastguard Worker   0x35, 0x06, 0xdc, 0x37, 0xf1, 0x1d, 0xac, 0x97, 0x14, 0x84, 0x06, 0x9c,
7112*6236dae4SAndroid Build Coastguard Worker   0x4f, 0x88, 0x12, 0x95, 0xd8, 0x0a, 0x28, 0x76, 0xe0, 0x69, 0xcf, 0x7f,
7113*6236dae4SAndroid Build Coastguard Worker   0x82, 0xef, 0x3a, 0x74, 0xf2, 0xf7, 0xde, 0x26, 0x71, 0xdb, 0x66, 0x10,
7114*6236dae4SAndroid Build Coastguard Worker   0x4c, 0x63, 0xdb, 0x53, 0xc2, 0x4d, 0x55, 0x4b, 0x4c, 0x88, 0x28, 0x04,
7115*6236dae4SAndroid Build Coastguard Worker   0x4d, 0x1d, 0xe3, 0x3a, 0x2d, 0xfc, 0x22, 0x71, 0xd6, 0x65, 0x91, 0xf2,
7116*6236dae4SAndroid Build Coastguard Worker   0x2c, 0x09, 0x09, 0x9f, 0x49, 0xbb, 0x4f, 0x61, 0xee, 0xba, 0x9c, 0x21,
7117*6236dae4SAndroid Build Coastguard Worker   0x5a, 0x2d, 0xbb, 0xf7, 0xe8, 0x4b, 0xbe, 0x5a, 0x8f, 0x37, 0x45, 0xb7,
7118*6236dae4SAndroid Build Coastguard Worker   0xb9, 0xe2, 0x0c, 0xad, 0x20, 0xda, 0x33, 0x22, 0xb1, 0x34, 0xb3, 0x62,
7119*6236dae4SAndroid Build Coastguard Worker   0x5f, 0x91, 0x34, 0x58, 0x63, 0x6d, 0x3c, 0xd0, 0x01, 0x93, 0x7c, 0x67,
7120*6236dae4SAndroid Build Coastguard Worker   0xe8, 0x16, 0xae, 0xb2, 0x9f, 0x59, 0x53, 0x95, 0x72, 0x68, 0x0d, 0x18,
7121*6236dae4SAndroid Build Coastguard Worker   0x92, 0x2b, 0x16, 0x2e, 0x6e, 0x10, 0x0b, 0xaf, 0x80, 0xa3, 0xb8, 0x5e,
7122*6236dae4SAndroid Build Coastguard Worker   0x80, 0xf8, 0xcd, 0x13, 0xfe, 0x2e, 0xc6, 0x01, 0xdf, 0x71, 0xa8, 0xda,
7123*6236dae4SAndroid Build Coastguard Worker   0x96, 0xe9, 0xe5, 0x0c, 0x6f, 0x4f, 0x22, 0xd3, 0xaa, 0x76, 0x2b, 0xd4,
7124*6236dae4SAndroid Build Coastguard Worker   0x27, 0xa6, 0xd9, 0x54, 0x6b, 0x01, 0xbc, 0x0a, 0x26, 0x78, 0x6b, 0x8d,
7125*6236dae4SAndroid Build Coastguard Worker   0x96, 0x9c, 0x03, 0xb5, 0xea, 0x59, 0xce, 0x39, 0x23, 0xd4, 0xd4, 0x61,
7126*6236dae4SAndroid Build Coastguard Worker   0x36, 0xf8, 0x89, 0xa2, 0xb0, 0x85, 0xac, 0x9c, 0x66, 0x85, 0xc5, 0x50,
7127*6236dae4SAndroid Build Coastguard Worker   0xe2, 0xc3, 0x8b, 0xd2, 0x0b, 0xcf, 0x0b, 0x92, 0x52, 0x11, 0x0c, 0xc7,
7128*6236dae4SAndroid Build Coastguard Worker   0x34, 0x12, 0x2a, 0x46, 0x10, 0x09, 0xc0, 0x20, 0xbc, 0xe8, 0xd3, 0xfd,
7129*6236dae4SAndroid Build Coastguard Worker   0xd4, 0xe9, 0x14, 0x41, 0x0a, 0x15, 0x51, 0x85, 0xa6, 0xd0, 0x1e, 0x8e,
7130*6236dae4SAndroid Build Coastguard Worker   0x3a, 0x79, 0xa9, 0x82, 0x27, 0x15, 0x81, 0xec, 0x1b, 0x23, 0x5d, 0x05,
7131*6236dae4SAndroid Build Coastguard Worker   0x5b, 0x46, 0xe0, 0x52, 0x19, 0xb2, 0x46, 0xc2, 0x1f, 0x49, 0xc5, 0xb8,
7132*6236dae4SAndroid Build Coastguard Worker   0x18, 0xb0, 0x5f, 0xf7, 0x21, 0xac, 0x1a, 0xb6, 0x34, 0x7e, 0x32, 0xae,
7133*6236dae4SAndroid Build Coastguard Worker   0x33, 0x14, 0x7d, 0x73, 0x6f, 0x37, 0x2e, 0x30, 0xc0, 0x74, 0xfd, 0x89,
7134*6236dae4SAndroid Build Coastguard Worker   0x08, 0xb4, 0xa6, 0x19, 0xd6, 0x15, 0x25, 0x76, 0x05, 0x64, 0x27, 0xd2,
7135*6236dae4SAndroid Build Coastguard Worker   0x7e, 0x45, 0x84, 0x66, 0xa8, 0x5b, 0x92, 0x81, 0x8e, 0x2b, 0x31, 0x24,
7136*6236dae4SAndroid Build Coastguard Worker   0x8e, 0x67, 0xc4, 0xf4, 0x68, 0x33, 0x02, 0x84, 0x74, 0xbe, 0x32, 0x01,
7137*6236dae4SAndroid Build Coastguard Worker   0x79, 0xf9, 0xd3, 0xf4, 0xd2, 0x02, 0x90, 0x04, 0x0e, 0x2c, 0x75, 0x1c,
7138*6236dae4SAndroid Build Coastguard Worker   0xf1, 0x40, 0xe7, 0xe4, 0xfa, 0x7d, 0x1d, 0xc9, 0x7c, 0x3e, 0xfb, 0xa2,
7139*6236dae4SAndroid Build Coastguard Worker   0x31, 0x60, 0xe0, 0x0a, 0x5e, 0x17, 0xfc, 0xee, 0xe1, 0x65, 0x36, 0x97,
7140*6236dae4SAndroid Build Coastguard Worker   0x08, 0x4c, 0x05, 0x4a, 0x94, 0x32, 0x25, 0xcf, 0xd5, 0x55, 0x91, 0xca,
7141*6236dae4SAndroid Build Coastguard Worker   0xce, 0xe5, 0xe4, 0x4b, 0xb3, 0x72, 0x43, 0xf3, 0x62, 0x82, 0x05, 0xa2,
7142*6236dae4SAndroid Build Coastguard Worker   0xf3, 0xa7, 0x4c, 0x77, 0xfa, 0x7f, 0x16, 0x57, 0x39, 0xfe, 0x03, 0x87,
7143*6236dae4SAndroid Build Coastguard Worker   0xc7, 0xd1, 0x3f, 0xdb, 0x0c, 0xa6, 0xf8, 0xae, 0x2f, 0xde, 0x30, 0x9a,
7144*6236dae4SAndroid Build Coastguard Worker   0x2a, 0x5e, 0x42, 0x52, 0x6a, 0xea, 0xc8, 0xb4, 0x86, 0xeb, 0xb0, 0x47,
7145*6236dae4SAndroid Build Coastguard Worker   0x08, 0x48, 0x81, 0x88, 0x49, 0x42, 0xe2, 0x95, 0x5a, 0xd1, 0x38, 0x2f,
7146*6236dae4SAndroid Build Coastguard Worker   0x73, 0x09, 0x5e, 0x50, 0x18, 0x66, 0xe6, 0x66, 0x20, 0x8c, 0xf6, 0x40,
7147*6236dae4SAndroid Build Coastguard Worker   0x22, 0xd0, 0xfc, 0x85, 0x77, 0x30, 0xa0, 0x76, 0xff, 0xd9, 0xfe, 0xd5,
7148*6236dae4SAndroid Build Coastguard Worker   0xec, 0x32, 0xd5, 0x76, 0xd7, 0x9d, 0x47, 0xad, 0x5a, 0xbd, 0x9c, 0x6c,
7149*6236dae4SAndroid Build Coastguard Worker   0x9c, 0xd7, 0x4e, 0x6d, 0x0c, 0x81, 0x3b, 0x34, 0x14, 0x87, 0xc8, 0x82,
7150*6236dae4SAndroid Build Coastguard Worker   0x65, 0x23, 0x52, 0x75, 0x48, 0x90, 0xae, 0xb0, 0x66, 0xdb, 0x65, 0xa2,
7151*6236dae4SAndroid Build Coastguard Worker   0x09, 0x48, 0xad, 0x45, 0x8b, 0x5c, 0xb0, 0x82, 0xdb, 0x74, 0xf0, 0xd9,
7152*6236dae4SAndroid Build Coastguard Worker   0x17, 0xe8, 0x19, 0xbf, 0xa3, 0x46, 0xe6, 0xac, 0x22, 0x23, 0xe1, 0xd6,
7153*6236dae4SAndroid Build Coastguard Worker   0xa9, 0xaf, 0x79, 0xb4, 0x40, 0xe7, 0x2b, 0xca, 0xf9, 0xc3, 0x3a, 0xc0,
7154*6236dae4SAndroid Build Coastguard Worker   0x35, 0xce, 0x90, 0x17, 0x45, 0xb1, 0x70, 0x44, 0xa4, 0x0a, 0x67, 0xc8,
7155*6236dae4SAndroid Build Coastguard Worker   0x11, 0x5d, 0x9c, 0x8a, 0x46, 0xae, 0xf3, 0xb3, 0x48, 0x64, 0xcc, 0x12,
7156*6236dae4SAndroid Build Coastguard Worker   0xf6, 0x82, 0xe1, 0xb3, 0x10, 0xc2, 0x85, 0xa4, 0xec, 0x04, 0xf6, 0x57,
7157*6236dae4SAndroid Build Coastguard Worker   0xe8, 0x4d, 0xf3, 0x59, 0x57, 0x71, 0x5d, 0xb2, 0x6a, 0x01, 0x69, 0xf8,
7158*6236dae4SAndroid Build Coastguard Worker   0x18, 0x1a, 0xe4, 0xfe, 0x4f, 0xcd, 0xeb, 0xf8, 0x07, 0x9c, 0x62, 0x6a,
7159*6236dae4SAndroid Build Coastguard Worker   0x94, 0xbb, 0x60, 0x35, 0xc7, 0x17, 0xe6, 0x8b, 0xeb, 0x94, 0x5b, 0xa4,
7160*6236dae4SAndroid Build Coastguard Worker   0x29, 0x09, 0xd1, 0x4a, 0x97, 0x95, 0xf6, 0x4f, 0x57, 0xc8, 0xc7, 0xa3,
7161*6236dae4SAndroid Build Coastguard Worker   0x89, 0x90, 0x7f, 0x9f, 0x15, 0x22, 0xda, 0xa2, 0x51, 0xe1, 0xa9, 0xb3,
7162*6236dae4SAndroid Build Coastguard Worker   0x58, 0x47, 0x48, 0x4f, 0x54, 0x34, 0xfb, 0x39, 0x13, 0x77, 0x66, 0xfe,
7163*6236dae4SAndroid Build Coastguard Worker   0x43, 0x87, 0xe6, 0xde, 0xc5, 0x7f, 0xfd, 0xd0, 0xb1, 0xd3, 0xff, 0x81,
7164*6236dae4SAndroid Build Coastguard Worker   0x76, 0xe7, 0xd3, 0x2c, 0xff, 0x14, 0x97, 0xf0, 0x43, 0x87, 0x17, 0xe1,
7165*6236dae4SAndroid Build Coastguard Worker   0xdb, 0xea, 0x4b, 0x6d, 0x3a, 0x7e, 0x17, 0xf8, 0x90, 0xbf, 0xec, 0x7c,
7166*6236dae4SAndroid Build Coastguard Worker   0xd8, 0xf9, 0x6e, 0xe3, 0xb3, 0x9d, 0x95, 0x28, 0x5a, 0xe6, 0xbb, 0x94,
7167*6236dae4SAndroid Build Coastguard Worker   0xb7, 0xa3, 0xbd, 0xf8, 0x2e, 0x8c, 0x0a, 0x65, 0x89, 0x0b, 0xe2, 0xdb,
7168*6236dae4SAndroid Build Coastguard Worker   0xd2, 0x0f, 0xc8, 0x67, 0xc9, 0x85, 0x16, 0xe0, 0xbd, 0xe7, 0x63, 0xb3,
7169*6236dae4SAndroid Build Coastguard Worker   0x0f, 0xe0, 0x56, 0xa0, 0xfd, 0x5d, 0x8d, 0x93, 0xea, 0xca, 0xed, 0xdb,
7170*6236dae4SAndroid Build Coastguard Worker   0x6e, 0x00, 0x69, 0x74, 0x83, 0x52, 0xea, 0x3a, 0x34, 0xf2, 0xef, 0x27,
7171*6236dae4SAndroid Build Coastguard Worker   0xf3, 0xba, 0x77, 0x1f, 0xfd, 0x15, 0xbe, 0x40, 0x06, 0x2e, 0x8d, 0x21,
7172*6236dae4SAndroid Build Coastguard Worker   0xe7, 0x9d, 0x50, 0xa8, 0xa5, 0xc0, 0x8c, 0x8a, 0xb2, 0x73, 0xce, 0xd8,
7173*6236dae4SAndroid Build Coastguard Worker   0xe2, 0xeb, 0xf0, 0x82, 0xe1, 0x5a, 0x82, 0xe9, 0x2b, 0x55, 0x3a, 0xc9,
7174*6236dae4SAndroid Build Coastguard Worker   0x40, 0xd1, 0xa7, 0xd0, 0xc7, 0x98, 0xad, 0xe0, 0x75, 0xbc, 0x25, 0xa8,
7175*6236dae4SAndroid Build Coastguard Worker   0x2c, 0xb6, 0x9a, 0x26, 0xe8, 0xf3, 0x45, 0xaf, 0x82, 0x18, 0xc8, 0xbc,
7176*6236dae4SAndroid Build Coastguard Worker   0x4c, 0x26, 0xcc, 0x02, 0x56, 0x47, 0xc5, 0x7c, 0x5c, 0x94, 0xd5, 0x67,
7177*6236dae4SAndroid Build Coastguard Worker   0x1d, 0x50, 0x92, 0x3e, 0x8d, 0xd0, 0xdf, 0x9f, 0xe6, 0x9f, 0x22, 0xcb,
7178*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x60, 0x03, 0xed, 0xf9, 0xbd, 0x8b, 0x27, 0xf7, 0x30, 0xef, 0x95,
7179*6236dae4SAndroid Build Coastguard Worker   0xa5, 0x76, 0xce, 0x39, 0xd4, 0x23, 0x4c, 0x80, 0xe5, 0x04, 0xa1, 0x76,
7180*6236dae4SAndroid Build Coastguard Worker   0x26, 0x26, 0x1f, 0x68, 0xe7, 0xb0, 0xca, 0xef, 0x3f, 0xeb, 0x7a, 0xf0,
7181*6236dae4SAndroid Build Coastguard Worker   0x4a, 0xd7, 0x5e, 0xd0, 0xc4, 0x95, 0xc8, 0x64, 0xba, 0x7d, 0x76, 0xfa,
7182*6236dae4SAndroid Build Coastguard Worker   0xf5, 0xa7, 0x3a, 0xc0, 0x0f, 0x9d, 0xef, 0x62, 0xfe, 0x29, 0x01, 0xc3,
7183*6236dae4SAndroid Build Coastguard Worker   0xed, 0x45, 0xa7, 0x5f, 0x2b, 0xcf, 0x3f, 0x9e, 0xc7, 0x17, 0x7d, 0xe0,
7184*6236dae4SAndroid Build Coastguard Worker   0x0b, 0xfe, 0x0b, 0x71, 0xfb, 0xa2, 0x61, 0xd1, 0x7a, 0xd0, 0x77, 0xa2,
7185*6236dae4SAndroid Build Coastguard Worker   0xeb, 0xf4, 0x9e, 0x50, 0x3d, 0xa8, 0x9a, 0x62, 0x3a, 0x45, 0xbc, 0x13,
7186*6236dae4SAndroid Build Coastguard Worker   0x05, 0x42, 0xab, 0x19, 0x08, 0x8d, 0x6c, 0x8a, 0x64, 0x50, 0x30, 0xd4,
7187*6236dae4SAndroid Build Coastguard Worker   0x40, 0xed, 0xf7, 0x79, 0xa5, 0xd6, 0x92, 0xb4, 0xb7, 0x0c, 0x47, 0x89,
7188*6236dae4SAndroid Build Coastguard Worker   0x99, 0xcf, 0x3d, 0x89, 0x7e, 0x37, 0x93, 0x56, 0x93, 0x51, 0xd3, 0xfa,
7189*6236dae4SAndroid Build Coastguard Worker   0x39, 0x0a, 0xf4, 0x2c, 0xb7, 0x08, 0xe5, 0xfc, 0x37, 0xd2, 0xd3, 0x08,
7190*6236dae4SAndroid Build Coastguard Worker   0x88, 0x1d, 0x4d, 0xae, 0x95, 0x3f, 0xad, 0x48, 0xba, 0xe9, 0x64, 0x42,
7191*6236dae4SAndroid Build Coastguard Worker   0x57, 0x27, 0x45, 0xd4, 0x18, 0x47, 0xff, 0xd3, 0x50, 0x90, 0x51, 0xf2,
7192*6236dae4SAndroid Build Coastguard Worker   0x2a, 0xa4, 0x46, 0xfd, 0xa2, 0x18, 0x8f, 0x24, 0xde, 0x09, 0x5c, 0xcf,
7193*6236dae4SAndroid Build Coastguard Worker   0x1b, 0xac, 0xd6, 0x13, 0xaa, 0x20, 0x48, 0x0a, 0x89, 0x81, 0xca, 0x67,
7194*6236dae4SAndroid Build Coastguard Worker   0x03, 0x8a, 0x93, 0xe4, 0x41, 0xb0, 0x03, 0xd1, 0x66, 0x6e, 0x21, 0x78,
7195*6236dae4SAndroid Build Coastguard Worker   0x1b, 0x32, 0xfe, 0xa7, 0x98, 0xab, 0x35, 0x48, 0xc9, 0xc3, 0x65, 0xc0,
7196*6236dae4SAndroid Build Coastguard Worker   0xba, 0x62, 0xf1, 0x9f, 0x07, 0xdc, 0x44, 0x91, 0x39, 0x37, 0x7a, 0x70,
7197*6236dae4SAndroid Build Coastguard Worker   0x18, 0x72, 0x43, 0x11, 0xbb, 0xb0, 0x86, 0xe6, 0x0d, 0xb9, 0xa0, 0x39,
7198*6236dae4SAndroid Build Coastguard Worker   0x5c, 0xa3, 0x19, 0xcd, 0x78, 0xe9, 0x84, 0x17, 0x6b, 0xf2, 0xce, 0x90,
7199*6236dae4SAndroid Build Coastguard Worker   0x42, 0xfe, 0x69, 0x8b, 0xfe, 0x24, 0xbe, 0x76, 0x27, 0x3d, 0x8d, 0x56,
7200*6236dae4SAndroid Build Coastguard Worker   0x2f, 0x9b, 0xd5, 0xf3, 0x5e, 0xf8, 0x4e, 0x12, 0x63, 0xe3, 0xcd, 0x3d,
7201*6236dae4SAndroid Build Coastguard Worker   0x63, 0xd8, 0x27, 0xf2, 0x78, 0x78, 0x78, 0x17, 0xe0, 0x58, 0x66, 0x95,
7202*6236dae4SAndroid Build Coastguard Worker   0x55, 0x42, 0xfe, 0x05, 0xe3, 0x6f, 0x99, 0xf1, 0x7d, 0xe8, 0xa4, 0x44,
7203*6236dae4SAndroid Build Coastguard Worker   0x1a, 0xc6, 0x86, 0x3f, 0x7b, 0x6e, 0x0b, 0xa4, 0xd4, 0xef, 0x6b, 0x3c,
7204*6236dae4SAndroid Build Coastguard Worker   0x1b, 0x0d, 0x9f, 0x82, 0xf6, 0x28, 0x65, 0xbc, 0x61, 0x36, 0x95, 0xfd,
7205*6236dae4SAndroid Build Coastguard Worker   0x9e, 0xec, 0x35, 0xc1, 0x97, 0x92, 0x59, 0x48, 0xeb, 0xf0, 0xe0, 0xca,
7206*6236dae4SAndroid Build Coastguard Worker   0x62, 0xd1, 0xc9, 0x85, 0xb1, 0x8a, 0x09, 0xf6, 0xe4, 0x1b, 0xed, 0x71,
7207*6236dae4SAndroid Build Coastguard Worker   0x82, 0x03, 0x21, 0xa4, 0x12, 0x40, 0x6a, 0xe6, 0x96, 0xca, 0x1b, 0x67,
7208*6236dae4SAndroid Build Coastguard Worker   0x60, 0xb8, 0xfd, 0x90, 0x69, 0x7b, 0xe9, 0x7d, 0x0a, 0x44, 0x31, 0xe3,
7209*6236dae4SAndroid Build Coastguard Worker   0x9c, 0x93, 0xcd, 0x22, 0x27, 0x61, 0x75, 0x45, 0xbc, 0x2c, 0xf8, 0xa1,
7210*6236dae4SAndroid Build Coastguard Worker   0x84, 0x43, 0x39, 0x82, 0xba, 0x97, 0x10, 0x1e, 0xac, 0xf8, 0x76, 0xe2,
7211*6236dae4SAndroid Build Coastguard Worker   0x80, 0x36, 0xb2, 0x47, 0xa2, 0xdd, 0x9c, 0x09, 0x06, 0xc1, 0x26, 0x0c,
7212*6236dae4SAndroid Build Coastguard Worker   0x6c, 0x35, 0xa3, 0x19, 0x99, 0xbf, 0x01, 0x7c, 0xed, 0x1b, 0xcd, 0x0e,
7213*6236dae4SAndroid Build Coastguard Worker   0x89, 0x65, 0x30, 0xb6, 0x55, 0x6d, 0x25, 0x57, 0x12, 0xad, 0x7c, 0xb6,
7214*6236dae4SAndroid Build Coastguard Worker   0xb6, 0x32, 0xbf, 0x2f, 0x92, 0xb5, 0x10, 0xa4, 0xb7, 0xa8, 0x32, 0x8d,
7215*6236dae4SAndroid Build Coastguard Worker   0xc9, 0x6f, 0xa8, 0x08, 0x61, 0x14, 0x46, 0x27, 0x57, 0xd3, 0x04, 0xb3,
7216*6236dae4SAndroid Build Coastguard Worker   0xb6, 0xd2, 0x98, 0x36, 0x34, 0xd8, 0xe0, 0x86, 0x71, 0xfc, 0x18, 0xfd,
7217*6236dae4SAndroid Build Coastguard Worker   0x33, 0xcb, 0xe9, 0x74, 0x32, 0x8e, 0x31, 0xb3, 0xb8, 0x1b, 0xeb, 0xe4,
7218*6236dae4SAndroid Build Coastguard Worker   0x66, 0x3c, 0xd5, 0x9e, 0xa3, 0xa5, 0x07, 0x8e, 0x27, 0x46, 0xbb, 0xa8,
7219*6236dae4SAndroid Build Coastguard Worker   0x07, 0xb9, 0xf8, 0x47, 0x1c, 0x0f, 0xc7, 0x22, 0x95, 0x7c, 0xe5, 0xb3,
7220*6236dae4SAndroid Build Coastguard Worker   0x55, 0xbe, 0xb0, 0xac, 0x7f, 0xcd, 0xf9, 0xf6, 0x4a, 0xf4, 0x43, 0x18,
7221*6236dae4SAndroid Build Coastguard Worker   0x1b, 0x2c, 0xe2, 0x77, 0x1d, 0xbb, 0x41, 0xd8, 0xf6, 0xa1, 0x37, 0xa2,
7222*6236dae4SAndroid Build Coastguard Worker   0x7d, 0x0c, 0xce, 0x7c, 0x4e, 0xb1, 0x39, 0x79, 0x65, 0x7f, 0x9d, 0x7e,
7223*6236dae4SAndroid Build Coastguard Worker   0xd4, 0x52, 0xa5, 0xe7, 0x0d, 0x44, 0xa3, 0xc0, 0x56, 0xd1, 0x7f, 0xbf,
7224*6236dae4SAndroid Build Coastguard Worker   0xc0, 0xc7, 0xd5, 0x92, 0x58, 0x89, 0x7a, 0x3d, 0x10, 0x42, 0xd5, 0xa4,
7225*6236dae4SAndroid Build Coastguard Worker   0x8d, 0x1b, 0xe1, 0x01, 0x63, 0x10, 0xae, 0xa1, 0x54, 0x96, 0x18, 0x34,
7226*6236dae4SAndroid Build Coastguard Worker   0x68, 0xf2, 0xf4, 0xa8, 0xd5, 0xcd, 0x2e, 0x49, 0xfe, 0x55, 0xf9, 0x59,
7227*6236dae4SAndroid Build Coastguard Worker   0x2f, 0x3a, 0x30, 0x99, 0xcb, 0x69, 0xa0, 0x73, 0xea, 0xc8, 0x54, 0xb0,
7228*6236dae4SAndroid Build Coastguard Worker   0x88, 0x43, 0x0f, 0x37, 0xe4, 0xc5, 0x20, 0x93, 0x7e, 0x16, 0x0c, 0x5f,
7229*6236dae4SAndroid Build Coastguard Worker   0x48, 0x99, 0x91, 0xd8, 0x9f, 0x8e, 0xc1, 0x3b, 0xe1, 0x72, 0x0f, 0xb7,
7230*6236dae4SAndroid Build Coastguard Worker   0x3b, 0xa0, 0xdc, 0x5d, 0x8c, 0xa3, 0x31, 0x6a, 0xb2, 0xb1, 0x6c, 0x64,
7231*6236dae4SAndroid Build Coastguard Worker   0x6a, 0xf1, 0x91, 0x80, 0xce, 0x47, 0x26, 0xbd, 0xf2, 0xb9, 0xf9, 0x12,
7232*6236dae4SAndroid Build Coastguard Worker   0x06, 0x61, 0xbc, 0x22, 0x4e, 0x6a, 0x5a, 0x14, 0xbd, 0x88, 0xf1, 0x29,
7233*6236dae4SAndroid Build Coastguard Worker   0xeb, 0xe7, 0x57, 0xbe, 0x6f, 0xe6, 0x86, 0x75, 0x45, 0x29, 0x8c, 0x29,
7234*6236dae4SAndroid Build Coastguard Worker   0x67, 0x3c, 0x80, 0xae, 0x41, 0x37, 0xc1, 0x20, 0xa9, 0xd2, 0x67, 0x3b,
7235*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x5e, 0x32, 0x95, 0x2a, 0x45, 0xac, 0x6c, 0x38, 0x65, 0xf9, 0x1e,
7236*6236dae4SAndroid Build Coastguard Worker   0x72, 0x16, 0xd4, 0x3e, 0x08, 0x04, 0x86, 0x86, 0xca, 0x19, 0x18, 0x5f,
7237*6236dae4SAndroid Build Coastguard Worker   0x35, 0x57, 0xfa, 0xe1, 0x6d, 0x0a, 0x8a, 0xe4, 0x65, 0x4d, 0x60, 0x23,
7238*6236dae4SAndroid Build Coastguard Worker   0xcf, 0x9f, 0x39, 0x93, 0x7e, 0xc0, 0x7d, 0xd1, 0x92, 0xa4, 0xb2, 0xc2,
7239*6236dae4SAndroid Build Coastguard Worker   0xf6, 0x8a, 0x22, 0x66, 0x58, 0x64, 0x3f, 0xef, 0x5c, 0xa2, 0xef, 0x83,
7240*6236dae4SAndroid Build Coastguard Worker   0x41, 0xf5, 0x65, 0x8d, 0xc6, 0xdb, 0xf8, 0xd0, 0x31, 0x72, 0x0f, 0xc1,
7241*6236dae4SAndroid Build Coastguard Worker   0xa7, 0xca, 0x38, 0xed, 0x4f, 0x2f, 0x64, 0x6a, 0xc7, 0x74, 0xd2, 0xf7,
7242*6236dae4SAndroid Build Coastguard Worker   0x79, 0x12, 0xcc, 0xd8, 0x0f, 0xf3, 0x35, 0x06, 0x15, 0x2e, 0x66, 0x25,
7243*6236dae4SAndroid Build Coastguard Worker   0xdd, 0x3e, 0xf2, 0x18, 0x2b, 0x09, 0x0a, 0x3a, 0x22, 0x7a, 0xfa, 0xdb,
7244*6236dae4SAndroid Build Coastguard Worker   0x83, 0x77, 0x1f, 0x0e, 0x4e, 0x7e, 0xad, 0xbe, 0x9f, 0x8f, 0x88, 0x8f,
7245*6236dae4SAndroid Build Coastguard Worker   0x34, 0x41, 0x2f, 0xe5, 0x47, 0x6a, 0x2e, 0x26, 0x23, 0xbc, 0x1d, 0x1e,
7246*6236dae4SAndroid Build Coastguard Worker   0x15, 0x35, 0x39, 0x6f, 0x14, 0x0e, 0x59, 0x94, 0x35, 0x0f, 0x2d, 0xfa,
7247*6236dae4SAndroid Build Coastguard Worker   0xb8, 0xab, 0xe8, 0x93, 0xf4, 0xcf, 0x73, 0x02, 0x75, 0xf3, 0xc2, 0xab,
7248*6236dae4SAndroid Build Coastguard Worker   0x04, 0x45, 0xd9, 0xae, 0xd9, 0x40, 0xe8, 0x1a, 0x64, 0x61, 0xcc, 0x73,
7249*6236dae4SAndroid Build Coastguard Worker   0x0b, 0xc3, 0x4a, 0x73, 0xd1, 0x94, 0x64, 0x2a, 0x38, 0xd5, 0x46, 0x49,
7250*6236dae4SAndroid Build Coastguard Worker   0x75, 0xcd, 0x2e, 0x92, 0x8e, 0xbe, 0xcf, 0xe1, 0x20, 0xae, 0xe1, 0x35,
7251*6236dae4SAndroid Build Coastguard Worker   0x38, 0x7a, 0xa1, 0x03, 0x65, 0x40, 0xeb, 0x4c, 0x7e, 0xaa, 0xa2, 0x9c,
7252*6236dae4SAndroid Build Coastguard Worker   0xc8, 0xdd, 0xd9, 0x70, 0xfc, 0x15, 0x17, 0x17, 0x36, 0x66, 0xd2, 0x8e,
7253*6236dae4SAndroid Build Coastguard Worker   0x58, 0x1e, 0x1e, 0xce, 0x47, 0x0f, 0xfb, 0x9d, 0x4b, 0x95, 0x5c, 0x52,
7254*6236dae4SAndroid Build Coastguard Worker   0x76, 0x26, 0x65, 0xaf, 0x2c, 0x06, 0x45, 0xdd, 0x59, 0x0c, 0x69, 0x45,
7255*6236dae4SAndroid Build Coastguard Worker   0xef, 0xd8, 0x0b, 0x28, 0xae, 0x0b, 0x06, 0x25, 0xdc, 0x97, 0x35, 0x85,
7256*6236dae4SAndroid Build Coastguard Worker   0x77, 0x03, 0x16, 0xe6, 0x42, 0x32, 0xaa, 0x16, 0x8e, 0x2b, 0xf9, 0xd0,
7257*6236dae4SAndroid Build Coastguard Worker   0x3f, 0x7a, 0x4f, 0x44, 0x3e, 0x3b, 0xe8, 0xf7, 0xcd, 0x75, 0x5d, 0x69,
7258*6236dae4SAndroid Build Coastguard Worker   0x9a, 0xa3, 0x67, 0x2f, 0x92, 0xa6, 0xcb, 0x11, 0x2b, 0xa1, 0xa2, 0xcd,
7259*6236dae4SAndroid Build Coastguard Worker   0x90, 0x95, 0x22, 0x23, 0x4a, 0x06, 0x00, 0xb3, 0xf4, 0x7c, 0x36, 0x81,
7260*6236dae4SAndroid Build Coastguard Worker   0x33, 0x0d, 0x4a, 0xf9, 0x68, 0xa5, 0x92, 0xf8, 0x76, 0x9b, 0x61, 0xa9,
7261*6236dae4SAndroid Build Coastguard Worker   0x9f, 0x17, 0x2b, 0x7b, 0xc4, 0x23, 0x54, 0x2c, 0xf9, 0x1a, 0x2b, 0x4b,
7262*6236dae4SAndroid Build Coastguard Worker   0xa5, 0x1e, 0x14, 0x2f, 0x22, 0xce, 0x08, 0x70, 0x6b, 0x24, 0xbb, 0x61,
7263*6236dae4SAndroid Build Coastguard Worker   0xb7, 0x55, 0xa7, 0x7f, 0x7c, 0x7e, 0x04, 0x7b, 0xfc, 0xe1, 0xfc, 0x4d,
7264*6236dae4SAndroid Build Coastguard Worker   0x47, 0x7c, 0xa6, 0x6d, 0xac, 0x53, 0x0a, 0x33, 0x80, 0x46, 0x9e, 0xde,
7265*6236dae4SAndroid Build Coastguard Worker   0x18, 0x9c, 0xaf, 0x92, 0x3d, 0x40, 0x7e, 0x6a, 0x0a, 0x09, 0x67, 0xfb,
7266*6236dae4SAndroid Build Coastguard Worker   0xd1, 0x27, 0x6d, 0x6f, 0x60, 0xab, 0x3a, 0x1f, 0x76, 0xb7, 0xcb, 0xc0,
7267*6236dae4SAndroid Build Coastguard Worker   0x36, 0xb7, 0x76, 0x79, 0x7e, 0x0f, 0x5b, 0x6a, 0xc8, 0xd8, 0xf7, 0x8e,
7268*6236dae4SAndroid Build Coastguard Worker   0x99, 0x34, 0x2b, 0xc5, 0xd4, 0xd3, 0x75, 0x4e, 0x28, 0x16, 0x38, 0x5f,
7269*6236dae4SAndroid Build Coastguard Worker   0x8e, 0x10, 0x91, 0x57, 0x23, 0xd4, 0xfc, 0xc2, 0xb6, 0x02, 0x31, 0xc9,
7270*6236dae4SAndroid Build Coastguard Worker   0x0a, 0xd4, 0xb9, 0xd5, 0x40, 0x67, 0x8b, 0x83, 0x9b, 0x03, 0xcb, 0xb0,
7271*6236dae4SAndroid Build Coastguard Worker   0xe3, 0x49, 0x39, 0x32, 0xa0, 0x58, 0xbe, 0x0a, 0xac, 0x79, 0xd2, 0x58,
7272*6236dae4SAndroid Build Coastguard Worker   0x83, 0x42, 0xe9, 0x59, 0x8f, 0xca, 0xca, 0xb5, 0xc9, 0xd0, 0xe1, 0x5a,
7273*6236dae4SAndroid Build Coastguard Worker   0x47, 0x8a, 0x1b, 0xa0, 0x07, 0xc2, 0x36, 0x6b, 0x7d, 0xca, 0x7e, 0x34,
7274*6236dae4SAndroid Build Coastguard Worker   0x7a, 0xae, 0xce, 0xed, 0x12, 0xc9, 0xfd, 0x4f, 0xc9, 0x0f, 0x44, 0x6d,
7275*6236dae4SAndroid Build Coastguard Worker   0x58, 0x17, 0xe5, 0xa8, 0x87, 0xfa, 0xbf, 0xf2, 0xb7, 0x24, 0x41, 0x69,
7276*6236dae4SAndroid Build Coastguard Worker   0x9f, 0xff, 0x1b, 0x3e, 0x98, 0xa4, 0xbe, 0x94, 0xc5, 0x98, 0xdd, 0xb4,
7277*6236dae4SAndroid Build Coastguard Worker   0xf2, 0x06, 0xe7, 0xf2, 0x33, 0xa8, 0x82, 0x14, 0x54, 0x97, 0x94, 0x16,
7278*6236dae4SAndroid Build Coastguard Worker   0x2e, 0xce, 0x49, 0xac, 0x05, 0x68, 0xc7, 0xaa, 0x60, 0xb4, 0xd5, 0xfe,
7279*6236dae4SAndroid Build Coastguard Worker   0x9a, 0xf1, 0x66, 0x9f, 0x53, 0xb8, 0x96, 0x46, 0x0b, 0x80, 0x7b, 0x38,
7280*6236dae4SAndroid Build Coastguard Worker   0x1d, 0x58, 0x44, 0x55, 0x0f, 0xe1, 0xd9, 0x39, 0xbc, 0xeb, 0x5b, 0x9f,
7281*6236dae4SAndroid Build Coastguard Worker   0x74, 0xe9, 0x0d, 0x6f, 0x47, 0x73, 0x7a, 0x5a, 0x90, 0x0b, 0x8f, 0x18,
7282*6236dae4SAndroid Build Coastguard Worker   0x8b, 0xec, 0x69, 0xae, 0x8e, 0x3a, 0xfc, 0xf6, 0x55, 0x64, 0x19, 0x53,
7283*6236dae4SAndroid Build Coastguard Worker   0xb3, 0x89, 0x99, 0x31, 0x45, 0xb9, 0x9f, 0xd7, 0x35, 0x22, 0xb5, 0x29,
7284*6236dae4SAndroid Build Coastguard Worker   0xf1, 0x3d, 0x0a, 0x58, 0x8f, 0xd2, 0x74, 0x6a, 0xda, 0x2a, 0x67, 0x29,
7285*6236dae4SAndroid Build Coastguard Worker   0x37, 0x0e, 0x97, 0x08, 0xf5, 0x84, 0x3a, 0x69, 0x04, 0xc0, 0x27, 0x4c,
7286*6236dae4SAndroid Build Coastguard Worker   0xd4, 0x14, 0x33, 0x63, 0x6c, 0xee, 0xe4, 0x55, 0x71, 0x4b, 0xd1, 0xf1,
7287*6236dae4SAndroid Build Coastguard Worker   0xcd, 0xe7, 0xdb, 0x2f, 0x40, 0xc5, 0xb9, 0xa7, 0x6e, 0xc6, 0x96, 0x5a,
7288*6236dae4SAndroid Build Coastguard Worker   0xd4, 0x17, 0x2d, 0x94, 0xf6, 0x67, 0xc3, 0x84, 0x6e, 0xd5, 0xba, 0xa0,
7289*6236dae4SAndroid Build Coastguard Worker   0x5e, 0x46, 0x15, 0x5a, 0x63, 0xe4, 0xe7, 0x13, 0xf8, 0x38, 0x1f, 0x17,
7290*6236dae4SAndroid Build Coastguard Worker   0x19, 0xe8, 0x27, 0xb4, 0x92, 0x33, 0x48, 0x24, 0xe2, 0xd4, 0xc3, 0x9e,
7291*6236dae4SAndroid Build Coastguard Worker   0x73, 0x48, 0x40, 0x41, 0x8e, 0xfa, 0xc7, 0xff, 0x75, 0x04, 0x62, 0xef,
7292*6236dae4SAndroid Build Coastguard Worker   0xfd, 0xd1, 0xf9, 0x7b, 0xf8, 0x4f, 0xff, 0xfc, 0xf4, 0xfd, 0x9c, 0xe6,
7293*6236dae4SAndroid Build Coastguard Worker   0x2d, 0x35, 0xa3, 0xa9, 0x22, 0xbd, 0x34, 0x51, 0x89, 0x28, 0xdc, 0xec,
7294*6236dae4SAndroid Build Coastguard Worker   0x72, 0x40, 0xa5, 0x30, 0x2c, 0x1a, 0xab, 0xf4, 0x61, 0x5a, 0x9d, 0x3b,
7295*6236dae4SAndroid Build Coastguard Worker   0x69, 0x00, 0x17, 0x70, 0xf7, 0x2d, 0x5c, 0x18, 0x6f, 0xf7, 0x62, 0xe6,
7296*6236dae4SAndroid Build Coastguard Worker   0xa0, 0x05, 0x23, 0x1f, 0xe2, 0x8a, 0xcd, 0x65, 0x44, 0xb3, 0x05, 0xdb,
7297*6236dae4SAndroid Build Coastguard Worker   0x17, 0x23, 0x2b, 0xb6, 0x7b, 0xb6, 0x56, 0xa5, 0xcd, 0x69, 0x78, 0xc2,
7298*6236dae4SAndroid Build Coastguard Worker   0xb5, 0x13, 0x95, 0xc9, 0xe2, 0xd7, 0x60, 0x78, 0x47, 0xf1, 0x16, 0x3b,
7299*6236dae4SAndroid Build Coastguard Worker   0xd1, 0x2a, 0xf9, 0xe7, 0x45, 0xbd, 0x7b, 0x80, 0x75, 0x41, 0xa5, 0x5c,
7300*6236dae4SAndroid Build Coastguard Worker   0xb3, 0x0b, 0xae, 0x8a, 0x49, 0xca, 0x21, 0x14, 0x72, 0xa7, 0x19, 0x01,
7301*6236dae4SAndroid Build Coastguard Worker   0xc8, 0xf7, 0x1f, 0xb7, 0xae, 0x8a, 0x42, 0xb0, 0xa5, 0x1a, 0x49, 0xa1,
7302*6236dae4SAndroid Build Coastguard Worker   0x5d, 0x5e, 0x69, 0x24, 0xce, 0x9a, 0x95, 0x4e, 0x53, 0x30, 0xf8, 0x6b,
7303*6236dae4SAndroid Build Coastguard Worker   0xea, 0x65, 0xb0, 0xa2, 0xb3, 0x5a, 0x79, 0x44, 0xbf, 0x13, 0x47, 0xba,
7304*6236dae4SAndroid Build Coastguard Worker   0xe8, 0x6b, 0x01, 0x29, 0x06, 0x04, 0xdc, 0xc4, 0x3f, 0xb6, 0x58, 0x86,
7305*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x1f, 0x83, 0x19, 0xf1, 0x17, 0x0c, 0x60, 0x36, 0xfc, 0xe1, 0x41,
7306*6236dae4SAndroid Build Coastguard Worker   0x9a, 0x22, 0x12, 0xe1, 0x3f, 0xc3, 0x72, 0x91, 0x0a, 0x1c, 0x1b, 0xb0,
7307*6236dae4SAndroid Build Coastguard Worker   0xa3, 0x9a, 0x95, 0x4c, 0xaa, 0x9e, 0xad, 0x67, 0xee, 0x45, 0x67, 0xf2,
7308*6236dae4SAndroid Build Coastguard Worker   0x54, 0x30, 0xe0, 0x4a, 0x18, 0x3f, 0x58, 0xa1, 0x6a, 0x8e, 0xa7, 0x70,
7309*6236dae4SAndroid Build Coastguard Worker   0x6d, 0x57, 0x60, 0x3b, 0x5a, 0x77, 0x53, 0x43, 0xb3, 0xf7, 0x6f, 0x23,
7310*6236dae4SAndroid Build Coastguard Worker   0xd5, 0xa9, 0x31, 0x26, 0x58, 0xa6, 0x30, 0x0e, 0x42, 0x92, 0x34, 0x20,
7311*6236dae4SAndroid Build Coastguard Worker   0x1d, 0xb5, 0x1b, 0xc6, 0xef, 0x01, 0x00, 0x1d, 0x7d, 0xc8, 0x05, 0xa3,
7312*6236dae4SAndroid Build Coastguard Worker   0x38, 0x07, 0x2b, 0x93, 0xf2, 0x62, 0x46, 0x86, 0x68, 0x08, 0x4f, 0x8e,
7313*6236dae4SAndroid Build Coastguard Worker   0x29, 0x87, 0x7c, 0xb7, 0x8f, 0x0a, 0x36, 0xed, 0xa8, 0x95, 0x9e, 0xdf,
7314*6236dae4SAndroid Build Coastguard Worker   0xe7, 0x83, 0xa2, 0x09, 0x94, 0x69, 0xa2, 0x17, 0xb2, 0x8c, 0x67, 0x2d,
7315*6236dae4SAndroid Build Coastguard Worker   0xd4, 0x61, 0xdd, 0x5e, 0x29, 0x15, 0x82, 0x7a, 0x0b, 0x3d, 0x73, 0x37,
7316*6236dae4SAndroid Build Coastguard Worker   0x4d, 0x52, 0x86, 0x28, 0xdb, 0xdd, 0x88, 0xb3, 0x9a, 0x11, 0x39, 0x9b,
7317*6236dae4SAndroid Build Coastguard Worker   0xc0, 0xaa, 0xbc, 0xd6, 0x60, 0x3d, 0x52, 0x2e, 0xb0, 0xa7, 0xb3, 0x7c,
7318*6236dae4SAndroid Build Coastguard Worker   0x8c, 0xa5, 0x48, 0x2d, 0x18, 0x4c, 0xd1, 0xd2, 0x9f, 0xa2, 0x0d, 0x20,
7319*6236dae4SAndroid Build Coastguard Worker   0xfb, 0x2d, 0x52, 0xb7, 0x03, 0xb0, 0x51, 0x0d, 0x24, 0x53, 0xe5, 0xe5,
7320*6236dae4SAndroid Build Coastguard Worker   0x26, 0x59, 0xe6, 0xe2, 0x80, 0x11, 0x67, 0xbf, 0xc7, 0xbd, 0xd6, 0xee,
7321*6236dae4SAndroid Build Coastguard Worker   0x35, 0xca, 0x94, 0x59, 0x9e, 0x21, 0xd8, 0x75, 0x51, 0xae, 0x63, 0x0d,
7322*6236dae4SAndroid Build Coastguard Worker   0x3a, 0xf6, 0xf7, 0x88, 0x22, 0xd0, 0x0a, 0x6c, 0x41, 0x44, 0xc0, 0x47,
7323*6236dae4SAndroid Build Coastguard Worker   0x66, 0x54, 0x6d, 0xce, 0x24, 0x87, 0xc1, 0x7b, 0x81, 0x32, 0x6d, 0xe9,
7324*6236dae4SAndroid Build Coastguard Worker   0x5a, 0x97, 0xba, 0xa0, 0xa4, 0xbd, 0x50, 0xe6, 0x3f, 0xd1, 0x99, 0xb1,
7325*6236dae4SAndroid Build Coastguard Worker   0x2c, 0x9b, 0xea, 0xb2, 0x1c, 0x35, 0x8a, 0x49, 0x19, 0x97, 0x05, 0xa9,
7326*6236dae4SAndroid Build Coastguard Worker   0xe4, 0x98, 0x54, 0x3b, 0x0f, 0xf1, 0x42, 0x68, 0xc0, 0xa0, 0xe8, 0x40,
7327*6236dae4SAndroid Build Coastguard Worker   0x15, 0x49, 0x38, 0x6a, 0x1e, 0x69, 0xb2, 0x08, 0x9b, 0x5f, 0xab, 0xd2,
7328*6236dae4SAndroid Build Coastguard Worker   0x7a, 0x36, 0xf5, 0xd5, 0x1b, 0x0b, 0xee, 0x64, 0x46, 0xd4, 0x68, 0xbb,
7329*6236dae4SAndroid Build Coastguard Worker   0x33, 0x45, 0x44, 0x98, 0xb4, 0xe4, 0x77, 0xbb, 0xb4, 0x06, 0x7a, 0xd8,
7330*6236dae4SAndroid Build Coastguard Worker   0x17, 0x17, 0x9e, 0x52, 0x33, 0x0f, 0xc0, 0x50, 0xaf, 0xd6, 0x1e, 0x16,
7331*6236dae4SAndroid Build Coastguard Worker   0x71, 0x77, 0x10, 0x45, 0xb1, 0xc3, 0xa0, 0x93, 0x82, 0xf6, 0x20, 0x3d,
7332*6236dae4SAndroid Build Coastguard Worker   0x03, 0xf4, 0x6d, 0xa0, 0x8b, 0x33, 0x5f, 0xff, 0xb0, 0x69, 0x31, 0x26,
7333*6236dae4SAndroid Build Coastguard Worker   0xc3, 0xc8, 0xd2, 0xee, 0xac, 0x7e, 0xc8, 0xb3, 0x3b, 0x3a, 0xf8, 0x5e,
7334*6236dae4SAndroid Build Coastguard Worker   0xc3, 0x73, 0x3b, 0xd4, 0x82, 0x59, 0x75, 0x14, 0x5b, 0x0a, 0xd1, 0xf7,
7335*6236dae4SAndroid Build Coastguard Worker   0x3a, 0xee, 0xdc, 0xb8, 0x51, 0x23, 0xec, 0xbe, 0x3b, 0x50, 0x3b, 0xde,
7336*6236dae4SAndroid Build Coastguard Worker   0x80, 0x29, 0x62, 0xf3, 0x1b, 0x9e, 0xf1, 0x17, 0x26, 0xf7, 0x3d, 0x7c,
7337*6236dae4SAndroid Build Coastguard Worker   0xae, 0x37, 0x2a, 0x26, 0x70, 0xec, 0xbd, 0x6f, 0x4c, 0xa8, 0xb6, 0xd9,
7338*6236dae4SAndroid Build Coastguard Worker   0x53, 0x95, 0x63, 0x9b, 0xa8, 0xc6, 0xbc, 0x38, 0xcd, 0x90, 0x8d, 0xb4,
7339*6236dae4SAndroid Build Coastguard Worker   0xba, 0xc4, 0xa1, 0x13, 0x09, 0x09, 0x94, 0x89, 0xd2, 0xf7, 0x8b, 0x65,
7340*6236dae4SAndroid Build Coastguard Worker   0x5c, 0x78, 0x46, 0x7a, 0x17, 0x08, 0xce, 0x8d, 0x73, 0x1d, 0xb8, 0x3d,
7341*6236dae4SAndroid Build Coastguard Worker   0x14, 0x9a, 0xf2, 0x76, 0x69, 0x6b, 0x1e, 0x01, 0x82, 0xcd, 0xa1, 0x6b,
7342*6236dae4SAndroid Build Coastguard Worker   0x03, 0x43, 0x13, 0x0a, 0x79, 0x1b, 0xc8, 0x5a, 0x20, 0x85, 0xf9, 0x41,
7343*6236dae4SAndroid Build Coastguard Worker   0x17, 0xf3, 0x9d, 0xb3, 0x2d, 0x9c, 0xdb, 0x89, 0xe0, 0xb9, 0x8d, 0xec,
7344*6236dae4SAndroid Build Coastguard Worker   0x6b, 0x20, 0x21, 0xd1, 0xc8, 0x9a, 0xe0, 0xd6, 0x46, 0x1c, 0x37, 0x48,
7345*6236dae4SAndroid Build Coastguard Worker   0xe0, 0x2c, 0xdd, 0x75, 0x38, 0x7c, 0xe7, 0x2f, 0x7f, 0xb1, 0x22, 0xb0,
7346*6236dae4SAndroid Build Coastguard Worker   0x91, 0x0e, 0x22, 0x4d, 0x61, 0x3b, 0x7b, 0xdf, 0x53, 0x58, 0xe1, 0xc7,
7347*6236dae4SAndroid Build Coastguard Worker   0xf8, 0x7b, 0xf8, 0xe7, 0x8f, 0x1d, 0x3d, 0xcb, 0x8c, 0x19, 0x6f, 0x00,
7348*6236dae4SAndroid Build Coastguard Worker   0x2a, 0x64, 0x3b, 0xba, 0xee, 0xe5, 0xe7, 0xe7, 0x93, 0x9c, 0x1f, 0x9e,
7349*6236dae4SAndroid Build Coastguard Worker   0x49, 0x5a, 0x7a, 0xc9, 0x89, 0x14, 0xc4, 0xc6, 0x28, 0x80, 0xc8, 0x8c,
7350*6236dae4SAndroid Build Coastguard Worker   0x41, 0xa1, 0x4f, 0xd0, 0x4a, 0xc2, 0x20, 0x09, 0x3d, 0xab, 0xc3, 0xd1,
7351*6236dae4SAndroid Build Coastguard Worker   0x2b, 0x5d, 0x9b, 0x26, 0x73, 0xcb, 0x47, 0x3f, 0x01, 0x7d, 0xfe, 0x12,
7352*6236dae4SAndroid Build Coastguard Worker   0x7d, 0x73, 0x0c, 0xf5, 0xd6, 0x8b, 0x0e, 0xd4, 0x70, 0xe0, 0x1f, 0x10,
7353*6236dae4SAndroid Build Coastguard Worker   0xe4, 0x7c, 0x45, 0x19, 0x39, 0xb7, 0x30, 0x21, 0xe3, 0x9a, 0xa0, 0x2b,
7354*6236dae4SAndroid Build Coastguard Worker   0x0d, 0x55, 0xe4, 0xdc, 0xc6, 0xf4, 0x33, 0x6a, 0xd5, 0x08, 0x44, 0x52,
7355*6236dae4SAndroid Build Coastguard Worker   0x49, 0x5b, 0x66, 0xd5, 0x35, 0x2e, 0x52, 0xea, 0x4f, 0x9d, 0xcc, 0x33,
7356*6236dae4SAndroid Build Coastguard Worker   0x5a, 0xc5, 0x24, 0x31, 0xb4, 0x14, 0xfc, 0x62, 0x83, 0xc5, 0xf1, 0xb0,
7357*6236dae4SAndroid Build Coastguard Worker   0x3e, 0x76, 0x06, 0x5c, 0x4e, 0xb7, 0xc8, 0xfc, 0x6e, 0x6f, 0x67, 0x8c,
7358*6236dae4SAndroid Build Coastguard Worker   0xbd, 0xfa, 0xe0, 0x53, 0x2e, 0x44, 0x9c, 0xf7, 0xf0, 0x27, 0x81, 0x9a,
7359*6236dae4SAndroid Build Coastguard Worker   0x0e, 0xbd, 0xc5, 0x04, 0xc8, 0x29, 0x88, 0x4e, 0x2f, 0x8f, 0x95, 0xe9,
7360*6236dae4SAndroid Build Coastguard Worker   0x23, 0x9a, 0x26, 0x70, 0x9a, 0x5b, 0x74, 0x06, 0x76, 0x86, 0x61, 0x4f,
7361*6236dae4SAndroid Build Coastguard Worker   0x07, 0x7b, 0x3c, 0x62, 0x78, 0x13, 0xba, 0xba, 0xd7, 0xda, 0x91, 0xa4,
7362*6236dae4SAndroid Build Coastguard Worker   0xc3, 0xb4, 0xa4, 0x18, 0x24, 0xb7, 0x0d, 0x30, 0x6d, 0x00, 0xd0, 0xd9,
7363*6236dae4SAndroid Build Coastguard Worker   0x8c, 0x1a, 0xcd, 0xa8, 0x84, 0x69, 0x8c, 0xba, 0x0a, 0x64, 0xc7, 0xa7,
7364*6236dae4SAndroid Build Coastguard Worker   0x13, 0x73, 0x15, 0x54, 0xa7, 0xf6, 0x1c, 0xfd, 0xa2, 0x19, 0xa0, 0xb9,
7365*6236dae4SAndroid Build Coastguard Worker   0x67, 0x8c, 0x81, 0x31, 0x87, 0x86, 0x88, 0x0f, 0x90, 0x0d, 0xf0, 0xbf,
7366*6236dae4SAndroid Build Coastguard Worker   0x70, 0x63, 0xb0, 0x9f, 0x70, 0x54, 0xdc, 0xe6, 0xe8, 0xb5, 0xc4, 0xe2,
7367*6236dae4SAndroid Build Coastguard Worker   0x8b, 0xf6, 0x15, 0x42, 0xd3, 0x9f, 0x84, 0x5a, 0x8a, 0x3d, 0x46, 0x53,
7368*6236dae4SAndroid Build Coastguard Worker   0x28, 0xd3, 0xfa, 0x61, 0xc7, 0x5c, 0x75, 0x9d, 0xf1, 0x76, 0xc4, 0xd9,
7369*6236dae4SAndroid Build Coastguard Worker   0xf4, 0x61, 0x52, 0x23, 0xa3, 0x69, 0x43, 0xb5, 0x86, 0x1c, 0x34, 0xf7,
7370*6236dae4SAndroid Build Coastguard Worker   0x61, 0x35, 0xbb, 0xbc, 0x24, 0x3c, 0x4f, 0x3f, 0x35, 0xb5, 0xae, 0x6c,
7371*6236dae4SAndroid Build Coastguard Worker   0xad, 0x92, 0x34, 0xa7, 0x85, 0x6b, 0x87, 0xd6, 0xd8, 0x80, 0xaa, 0x1f,
7372*6236dae4SAndroid Build Coastguard Worker   0x0a, 0xf8, 0x74, 0x4e, 0x41, 0x0e, 0xd3, 0x38, 0x6b, 0x2e, 0x3c, 0x10,
7373*6236dae4SAndroid Build Coastguard Worker   0x5c, 0x70, 0xc7, 0x22, 0x8c, 0xac, 0xc2, 0x56, 0xa6, 0xb1, 0x4e, 0xb4,
7374*6236dae4SAndroid Build Coastguard Worker   0x2d, 0xb5, 0x33, 0x34, 0x56, 0x63, 0x2f, 0xa6, 0x82, 0xf2, 0x9b, 0x3c,
7375*6236dae4SAndroid Build Coastguard Worker   0x4f, 0xf3, 0x25, 0xb5, 0x8f, 0xd0, 0x46, 0x47, 0x92, 0xbe, 0xfa, 0xbc,
7376*6236dae4SAndroid Build Coastguard Worker   0xf7, 0x7c, 0xa7, 0xb7, 0xd1, 0x76, 0xc6, 0x72, 0x8e, 0x38, 0x27, 0xe4,
7377*6236dae4SAndroid Build Coastguard Worker   0xb0, 0xe2, 0xb4, 0xd0, 0x47, 0x8f, 0xbe, 0x62, 0x83, 0x12, 0x8f, 0xb1,
7378*6236dae4SAndroid Build Coastguard Worker   0x57, 0x6e, 0xac, 0xc1, 0x9d, 0x11, 0x4a, 0x83, 0x12, 0xaf, 0x08, 0x59,
7379*6236dae4SAndroid Build Coastguard Worker   0xb4, 0xe8, 0xb6, 0x9e, 0x70, 0x41, 0x24, 0xed, 0x2d, 0xcf, 0x30, 0x2e,
7380*6236dae4SAndroid Build Coastguard Worker   0x2b, 0x2c, 0xa7, 0x62, 0xfa, 0x6d, 0x11, 0x64, 0xc4, 0x6a, 0x1c, 0x0f,
7381*6236dae4SAndroid Build Coastguard Worker   0x87, 0xc3, 0x98, 0x34, 0xa7, 0x7d, 0x56, 0xe7, 0xd6, 0x45, 0x9d, 0x9a,
7382*6236dae4SAndroid Build Coastguard Worker   0xe3, 0x5c, 0xea, 0xa7, 0xb2, 0xe7, 0x87, 0x87, 0x87, 0xa2, 0xf9, 0x9d,
7383*6236dae4SAndroid Build Coastguard Worker   0x5f, 0xb5, 0x74, 0x30, 0x83, 0xd9, 0x2e, 0x3a, 0x68, 0xa8, 0x42, 0xba,
7384*6236dae4SAndroid Build Coastguard Worker   0xba, 0x9a, 0xd5, 0x78, 0xb4, 0xd8, 0x66, 0xd2, 0xcb, 0xca, 0x40, 0x6a,
7385*6236dae4SAndroid Build Coastguard Worker   0xb4, 0xda, 0x19, 0x15, 0xc0, 0x14, 0x5d, 0x9b, 0x1f, 0xec, 0xb7, 0x23,
7386*6236dae4SAndroid Build Coastguard Worker   0x28, 0xd3, 0x29, 0xb7, 0xf8, 0xa6, 0x17, 0x65, 0x6c, 0x0b, 0x05, 0xe4,
7387*6236dae4SAndroid Build Coastguard Worker   0xfa, 0xb0, 0x5c, 0x28, 0x7d, 0x9d, 0x60, 0x15, 0xca, 0xa9, 0xd7, 0x51,
7388*6236dae4SAndroid Build Coastguard Worker   0xe8, 0xb3, 0x49, 0x26, 0xc9, 0x98, 0x89, 0x7c, 0xab, 0x3d, 0xf6, 0x13,
7389*6236dae4SAndroid Build Coastguard Worker   0x24, 0x40, 0x83, 0xfc, 0x32, 0xad, 0xc6, 0x6f, 0x70, 0x97, 0xab, 0xe5,
7390*6236dae4SAndroid Build Coastguard Worker   0xb6, 0x59, 0xde, 0x9c, 0xb3, 0xd3, 0xc1, 0x3d, 0x45, 0xbb, 0x18, 0x77,
7391*6236dae4SAndroid Build Coastguard Worker   0x73, 0xf5, 0x90, 0x7a, 0x1a, 0x1d, 0xca, 0x59, 0x3f, 0xbc, 0xc2, 0x1c,
7392*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x31, 0xee, 0x39, 0x50, 0xa2, 0x62, 0x49, 0x28, 0x37, 0x7a, 0xbf,
7393*6236dae4SAndroid Build Coastguard Worker   0x7f, 0xb2, 0x7e, 0x7e, 0xd2, 0xf7, 0xaa, 0x59, 0xee, 0x31, 0x26, 0x43,
7394*6236dae4SAndroid Build Coastguard Worker   0xb1, 0x97, 0x66, 0x6c, 0x80, 0x29, 0x4f, 0x1d, 0xfd, 0xc4, 0x49, 0x68,
7395*6236dae4SAndroid Build Coastguard Worker   0x0e, 0x2f, 0x7f, 0x25, 0x88, 0xeb, 0x3a, 0xcb, 0xb5, 0x16, 0xcf, 0x28,
7396*6236dae4SAndroid Build Coastguard Worker   0x51, 0x79, 0x9a, 0x13, 0x58, 0x17, 0xea, 0x52, 0x74, 0x30, 0x29, 0xd9,
7397*6236dae4SAndroid Build Coastguard Worker   0xbd, 0x8a, 0xde, 0x1d, 0x9c, 0x63, 0x75, 0x5d, 0x2d, 0xe9, 0x5a, 0xe8,
7398*6236dae4SAndroid Build Coastguard Worker   0x82, 0xf4, 0x43, 0x4f, 0xb7, 0x06, 0xac, 0x8e, 0x22, 0xb0, 0xc9, 0xd0,
7399*6236dae4SAndroid Build Coastguard Worker   0x36, 0xed, 0x56, 0xab, 0x69, 0x22, 0x55, 0xe5, 0xc2, 0xcf, 0xbf, 0x60,
7400*6236dae4SAndroid Build Coastguard Worker   0x57, 0x83, 0x7b, 0x37, 0x77, 0xeb, 0xe0, 0x25, 0xb9, 0x6f, 0xdb, 0x8c,
7401*6236dae4SAndroid Build Coastguard Worker   0x11, 0xdc, 0x49, 0x26, 0x5e, 0xf8, 0x84, 0xbe, 0x97, 0xbb, 0x50, 0x37,
7402*6236dae4SAndroid Build Coastguard Worker   0xc9, 0x29, 0x5c, 0xc3, 0xa5, 0x8f, 0x8b, 0xcb, 0x0c, 0xdd, 0xe5, 0xb4,
7403*6236dae4SAndroid Build Coastguard Worker   0xd7, 0x6e, 0x00, 0xbe, 0x2d, 0x91, 0x0e, 0x98, 0xb2, 0x8a, 0xea, 0xd8,
7404*6236dae4SAndroid Build Coastguard Worker   0x68, 0xbf, 0xc5, 0xa7, 0x16, 0x2f, 0x5a, 0xb3, 0x1f, 0x1a, 0x8b, 0x36,
7405*6236dae4SAndroid Build Coastguard Worker   0x20, 0x0b, 0x3e, 0x86, 0x01, 0xb5, 0x9f, 0xc9, 0x86, 0x60, 0xe7, 0x0d,
7406*6236dae4SAndroid Build Coastguard Worker   0x31, 0x0b, 0xec, 0x35, 0x57, 0x19, 0xbb, 0x99, 0xf7, 0x59, 0xa3, 0xdb,
7407*6236dae4SAndroid Build Coastguard Worker   0x8d, 0x89, 0x22, 0x54, 0x7e, 0x20, 0x91, 0x54, 0x2c, 0x59, 0xe1, 0x93,
7408*6236dae4SAndroid Build Coastguard Worker   0x77, 0x49, 0x78, 0x70, 0x41, 0xd8, 0xe4, 0x2b, 0x34, 0xc3, 0x2f, 0x3d,
7409*6236dae4SAndroid Build Coastguard Worker   0x2d, 0xe7, 0x5b, 0x01, 0xb4, 0x1a, 0x05, 0x5a, 0x89, 0x90, 0x5d, 0x82,
7410*6236dae4SAndroid Build Coastguard Worker   0x7e, 0x50, 0x21, 0x48, 0xa3, 0xe7, 0x27, 0x9a, 0xd5, 0xf1, 0xa8, 0x1b,
7411*6236dae4SAndroid Build Coastguard Worker   0x6c, 0xd8, 0xda, 0x8d, 0xda, 0x4d, 0x50, 0x4b, 0xbf, 0x53, 0x60, 0x03,
7412*6236dae4SAndroid Build Coastguard Worker   0x6e, 0x59, 0x0b, 0x06, 0x5a, 0xc3, 0x7d, 0x05, 0x8a, 0x96, 0x02, 0xa7,
7413*6236dae4SAndroid Build Coastguard Worker   0xb5, 0x30, 0x99, 0xa9, 0x02, 0x4c, 0x7f, 0xc7, 0xf9, 0x0b, 0x18, 0xbb,
7414*6236dae4SAndroid Build Coastguard Worker   0xbe, 0xcd, 0x10, 0xa0, 0x68, 0x8e, 0x65, 0xcb, 0x96, 0xcb, 0xb9, 0x6d,
7415*6236dae4SAndroid Build Coastguard Worker   0xd7, 0xc9, 0x67, 0x91, 0x6d, 0x80, 0xd4, 0x64, 0xbd, 0x23, 0x5e, 0xaa,
7416*6236dae4SAndroid Build Coastguard Worker   0x26, 0xf6, 0xfc, 0xc7, 0x8a, 0x82, 0x84, 0x16, 0x1e, 0x5f, 0xd9, 0x66,
7417*6236dae4SAndroid Build Coastguard Worker   0x21, 0xa1, 0x76, 0x69, 0x36, 0x8e, 0xdc, 0xb5, 0x13, 0xb6, 0xdf, 0xf5,
7418*6236dae4SAndroid Build Coastguard Worker   0x5b, 0x5e, 0xf3, 0xf2, 0x16, 0xcf, 0xe7, 0xcd, 0xd1, 0xc1, 0xab, 0xb9,
7419*6236dae4SAndroid Build Coastguard Worker   0x60, 0x61, 0x8f, 0x8b, 0xd0, 0xb2, 0x07, 0x4d, 0x7d, 0xc1, 0x04, 0xe2,
7420*6236dae4SAndroid Build Coastguard Worker   0x42, 0x3d, 0x08, 0xe7, 0x78, 0xd1, 0xd4, 0xd7, 0x3b, 0x48, 0xb9, 0x4b,
7421*6236dae4SAndroid Build Coastguard Worker   0xf0, 0x4c, 0xbd, 0x6a, 0xb4, 0x39, 0x86, 0xb1, 0x19, 0x23, 0x2e, 0x25,
7422*6236dae4SAndroid Build Coastguard Worker   0xa0, 0x34, 0x3c, 0x51, 0x73, 0xbb, 0xe5, 0xce, 0xf5, 0xa3, 0xb9, 0x59,
7423*6236dae4SAndroid Build Coastguard Worker   0x4b, 0xe2, 0x3a, 0x45, 0x2b, 0x89, 0x0b, 0x3f, 0x97, 0xed, 0xb0, 0x89,
7424*6236dae4SAndroid Build Coastguard Worker   0x9c, 0xfe, 0xf8, 0x7e, 0x98, 0xf4, 0xb4, 0xed, 0xa7, 0x69, 0xda, 0x6b,
7425*6236dae4SAndroid Build Coastguard Worker   0x26, 0x97, 0xe9, 0x67, 0xc5, 0x78, 0xd4, 0x59, 0x76, 0xa4, 0xe3, 0xf6,
7426*6236dae4SAndroid Build Coastguard Worker   0x60, 0x0b, 0x81, 0x06, 0x2f, 0xe9, 0x64, 0x8e, 0x8b, 0x41, 0x71, 0x71,
7427*6236dae4SAndroid Build Coastguard Worker   0xb1, 0x40, 0x63, 0xe3, 0x16, 0x3a, 0x54, 0x71, 0xca, 0x27, 0xa0, 0x83,
7428*6236dae4SAndroid Build Coastguard Worker   0x7c, 0x81, 0xef, 0x0d, 0xb8, 0xc1, 0x52, 0x09, 0xc2, 0xa6, 0x23, 0x15,
7429*6236dae4SAndroid Build Coastguard Worker   0x5b, 0x02, 0xdd, 0xeb, 0x29, 0x03, 0xd6, 0xe4, 0xa7, 0x86, 0xc6, 0x64,
7430*6236dae4SAndroid Build Coastguard Worker   0x07, 0xab, 0x1d, 0x4a, 0xc8, 0x47, 0x06, 0x7b, 0x23, 0x91, 0x80, 0x00,
7431*6236dae4SAndroid Build Coastguard Worker   0xb7, 0xb2, 0xad, 0xa2, 0x7f, 0xfc, 0xf3, 0xfb, 0x1f, 0x03, 0xfd, 0x7c,
7432*6236dae4SAndroid Build Coastguard Worker   0xd1, 0x65, 0x7f, 0xc5, 0x55, 0xe1, 0x1c, 0xdb, 0xac, 0xab, 0x74, 0x7c,
7433*6236dae4SAndroid Build Coastguard Worker   0x61, 0xdb, 0xa6, 0xe2, 0x18, 0x13, 0x17, 0x09, 0x92, 0x63, 0x2a, 0x38,
7434*6236dae4SAndroid Build Coastguard Worker   0x6c, 0xa0, 0x04, 0x4c, 0xd3, 0x42, 0xa9, 0x51, 0x88, 0x80, 0x3b, 0x60,
7435*6236dae4SAndroid Build Coastguard Worker   0x33, 0xc6, 0x31, 0x9d, 0x01, 0x53, 0x4a, 0x62, 0x7a, 0xa7, 0xd9, 0x38,
7436*6236dae4SAndroid Build Coastguard Worker   0x54, 0x30, 0xb3, 0x0a, 0x93, 0x1b, 0xdb, 0x09, 0x45, 0x1f, 0xde, 0x1f,
7437*6236dae4SAndroid Build Coastguard Worker   0x9b, 0x38, 0xc5, 0x92, 0xe2, 0x16, 0x11, 0x5e, 0x03, 0xe5, 0x26, 0xff,
7438*6236dae4SAndroid Build Coastguard Worker   0xf8, 0xfe, 0xc7, 0x7f, 0xc2, 0xff, 0x75, 0x9c, 0xeb, 0xed, 0x0a, 0x8e,
7439*6236dae4SAndroid Build Coastguard Worker   0xf0, 0x7d, 0x9c, 0xde, 0xa7, 0x03, 0x10, 0x9f, 0x95, 0x62, 0x74, 0xc5,
7440*6236dae4SAndroid Build Coastguard Worker   0x93, 0x2a, 0xda, 0x9f, 0xc0, 0xe1, 0xcf, 0xe6, 0xa0, 0xb7, 0xbd, 0xc1,
7441*6236dae4SAndroid Build Coastguard Worker   0xd7, 0xa2, 0x23, 0x79, 0xcd, 0x20, 0x97, 0x5c, 0x16, 0x25, 0x50, 0x7a,
7442*6236dae4SAndroid Build Coastguard Worker   0x22, 0x10, 0x10, 0x82, 0x7f, 0xd1, 0x74, 0xed, 0x45, 0x54, 0xc1, 0xe7,
7443*6236dae4SAndroid Build Coastguard Worker   0x39, 0xc7, 0x6e, 0x76, 0xc4, 0xf6, 0xa3, 0x46, 0x05, 0x0e, 0x2a, 0x3d,
7444*6236dae4SAndroid Build Coastguard Worker   0x5f, 0x62, 0xa3, 0x19, 0x98, 0x27, 0x40, 0x8c, 0xe1, 0x35, 0x79, 0xb9,
7445*6236dae4SAndroid Build Coastguard Worker   0x40, 0x38, 0x5c, 0x66, 0x37, 0xa6, 0xc3, 0x42, 0x28, 0xf1, 0x56, 0xaa,
7446*6236dae4SAndroid Build Coastguard Worker   0xdf, 0x15, 0x17, 0xdf, 0x5c, 0x08, 0xe2, 0x84, 0x80, 0x9f, 0xbb, 0xeb,
7447*6236dae4SAndroid Build Coastguard Worker   0xeb, 0x69, 0xd3, 0x37, 0x1a, 0x70, 0x8e, 0x13, 0x14, 0x79, 0x50, 0xdc,
7448*6236dae4SAndroid Build Coastguard Worker   0x0a, 0xb2, 0x1e, 0x96, 0x7c, 0xa6, 0x36, 0x00, 0x99, 0x06, 0x08, 0x28,
7449*6236dae4SAndroid Build Coastguard Worker   0x2d, 0x01, 0x35, 0xbc, 0x11, 0xc2, 0x30, 0x35, 0x6e, 0x25, 0x8c, 0x76,
7450*6236dae4SAndroid Build Coastguard Worker   0x26, 0x7c, 0xc7, 0xb0, 0x01, 0x69, 0xfb, 0x81, 0x50, 0x31, 0x79, 0x82,
7451*6236dae4SAndroid Build Coastguard Worker   0xb5, 0xed, 0xe9, 0x98, 0xef, 0x82, 0x60, 0x53, 0x42, 0x6b, 0x8a, 0xc9,
7452*6236dae4SAndroid Build Coastguard Worker   0x45, 0x05, 0x02, 0x17, 0x1b, 0x62, 0x11, 0x46, 0x82, 0xc4, 0xfa, 0x08,
7453*6236dae4SAndroid Build Coastguard Worker   0xce, 0x44, 0x1c, 0x73, 0x41, 0x2f, 0x3b, 0x8d, 0xce, 0x3e, 0x20, 0xa0,
7454*6236dae4SAndroid Build Coastguard Worker   0x8c, 0x18, 0xac, 0xd4, 0xf0, 0x8e, 0x9a, 0x16, 0x31, 0x46, 0x1d, 0xbe,
7455*6236dae4SAndroid Build Coastguard Worker   0x4d, 0x09, 0x6c, 0x28, 0x6d, 0x9b, 0x1c, 0xd0, 0x1a, 0x0e, 0xc3, 0xb0,
7456*6236dae4SAndroid Build Coastguard Worker   0xcf, 0x76, 0x77, 0x77, 0x39, 0x0c, 0xdb, 0x39, 0xa6, 0x0f, 0xbf, 0x3f,
7457*6236dae4SAndroid Build Coastguard Worker   0x3a, 0x3c, 0x7d, 0xfb, 0xf6, 0xe8, 0xdd, 0xab, 0xa3, 0x57, 0x9a, 0x53,
7458*6236dae4SAndroid Build Coastguard Worker   0xe7, 0xcc, 0xdd, 0xb2, 0x8b, 0x7f, 0x1b, 0x62, 0x1e, 0x36, 0xb0, 0xc6,
7459*6236dae4SAndroid Build Coastguard Worker   0xe6, 0xee, 0x46, 0xbc, 0xb5, 0xbb, 0x11, 0x01, 0x73, 0x26, 0xa6, 0x32,
7460*6236dae4SAndroid Build Coastguard Worker   0x38, 0x19, 0x23, 0xa4, 0x4d, 0x74, 0x35, 0x03, 0x05, 0x1a, 0xbb, 0x00,
7461*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x08, 0x67, 0xa4, 0xd8, 0x96, 0x79, 0x5a, 0xa3, 0xb7, 0x29, 0x90,
7462*6236dae4SAndroid Build Coastguard Worker   0x10, 0xd5, 0xeb, 0x18, 0xb0, 0x7d, 0x9b, 0x2f, 0x21, 0x1a, 0x29, 0x71,
7463*6236dae4SAndroid Build Coastguard Worker   0xec, 0xd6, 0x06, 0x7e, 0xa8, 0x17, 0xbd, 0x06, 0xbd, 0xee, 0xa2, 0xb8,
7464*6236dae4SAndroid Build Coastguard Worker   0x63, 0xe6, 0x3c, 0xbc, 0x02, 0x0b, 0x24, 0xf5, 0x33, 0x25, 0x9a, 0xef,
7465*6236dae4SAndroid Build Coastguard Worker   0xe3, 0xeb, 0xdb, 0xfc, 0xfa, 0x1f, 0x9c, 0x9a, 0x34, 0xff, 0x74, 0xef,
7466*6236dae4SAndroid Build Coastguard Worker   0x6e, 0x6c, 0x2c, 0x89, 0x0c, 0xb1, 0xfb, 0xb2, 0x89, 0x0c, 0x01, 0x63,
7467*6236dae4SAndroid Build Coastguard Worker   0x53, 0xdf, 0x50, 0xad, 0x32, 0x9f, 0x83, 0xcd, 0xd3, 0x67, 0x4f, 0xd4,
7468*6236dae4SAndroid Build Coastguard Worker   0x9b, 0x83, 0x33, 0x7c, 0x3a, 0x3a, 0x7b, 0x7f, 0xfa, 0xdd, 0xdf, 0x6c,
7469*6236dae4SAndroid Build Coastguard Worker   0xd9, 0xfe, 0xcd, 0xa6, 0xe6, 0xa3, 0x0b, 0xe4, 0xc1, 0x20, 0x05, 0x55,
7470*6236dae4SAndroid Build Coastguard Worker   0x39, 0xf7, 0x73, 0x82, 0xac, 0x09, 0x63, 0x3c, 0x1c, 0x7a, 0xdf, 0x13,
7471*6236dae4SAndroid Build Coastguard Worker   0x05, 0xb1, 0x86, 0x00, 0xa1, 0xe1, 0x71, 0x6f, 0x95, 0x29, 0x48, 0x48,
7472*6236dae4SAndroid Build Coastguard Worker   0xe7, 0xa3, 0x10, 0x9e, 0x1d, 0x05, 0x6f, 0x70, 0x1a, 0x77, 0x19, 0xb7,
7473*6236dae4SAndroid Build Coastguard Worker   0x3f, 0xce, 0xf2, 0x11, 0xc3, 0xb6, 0x37, 0xe2, 0x22, 0x75, 0x39, 0x4b,
7474*6236dae4SAndroid Build Coastguard Worker   0x43, 0x41, 0x8b, 0xde, 0xa2, 0x8c, 0x3d, 0xea, 0xfc, 0x95, 0x4d, 0x92,
7475*6236dae4SAndroid Build Coastguard Worker   0x32, 0x1b, 0xdf, 0x37, 0xba, 0x7e, 0x69, 0x26, 0x3c, 0x85, 0xdd, 0x6d,
7476*6236dae4SAndroid Build Coastguard Worker   0x5f, 0xab, 0xc2, 0x93, 0x5f, 0xda, 0xce, 0x98, 0x0e, 0x09, 0x43, 0x31,
7477*6236dae4SAndroid Build Coastguard Worker   0x4a, 0x66, 0x04, 0x13, 0xeb, 0x09, 0x6c, 0xd0, 0xd8, 0xaa, 0x65, 0x41,
7478*6236dae4SAndroid Build Coastguard Worker   0x3e, 0x37, 0x1a, 0x3b, 0x6f, 0xb4, 0xc5, 0x20, 0x4e, 0x03, 0xda, 0x3b,
7479*6236dae4SAndroid Build Coastguard Worker   0xaf, 0x8f, 0x4f, 0x8e, 0xd6, 0xa2, 0xd7, 0x69, 0x2d, 0xa5, 0xb0, 0x5a,
7480*6236dae4SAndroid Build Coastguard Worker   0x76, 0x82, 0xfa, 0xdc, 0xbf, 0x91, 0xf6, 0x6c, 0xfa, 0x61, 0x08, 0x3a,
7481*6236dae4SAndroid Build Coastguard Worker   0x45, 0x30, 0x41, 0x58, 0xbc, 0xea, 0xa4, 0x49, 0x6a, 0x5d, 0x2d, 0xef,
7482*6236dae4SAndroid Build Coastguard Worker   0x37, 0x51, 0x0d, 0x15, 0x18, 0x4d, 0x38, 0xd6, 0x6c, 0x0d, 0x61, 0xa6,
7483*6236dae4SAndroid Build Coastguard Worker   0x40, 0x31, 0x86, 0x22, 0x24, 0xf5, 0xac, 0x21, 0xc1, 0x19, 0x38, 0x9a,
7484*6236dae4SAndroid Build Coastguard Worker   0x74, 0x85, 0x93, 0x96, 0x42, 0x18, 0x4d, 0x7c, 0xc9, 0xaa, 0xe9, 0x98,
7485*6236dae4SAndroid Build Coastguard Worker   0x3a, 0x3c, 0x86, 0x40, 0x05, 0xc7, 0xa9, 0x2d, 0xff, 0xa6, 0xc3, 0x0a,
7486*6236dae4SAndroid Build Coastguard Worker   0x96, 0xa3, 0x05, 0xfc, 0xe7, 0x76, 0x6d, 0xb0, 0xde, 0x25, 0xf7, 0xea,
7487*6236dae4SAndroid Build Coastguard Worker   0x78, 0x91, 0x06, 0x17, 0xbf, 0x51, 0xd2, 0x63, 0xaa, 0x20, 0xff, 0x77,
7488*6236dae4SAndroid Build Coastguard Worker   0xfd, 0x8b, 0x45, 0xd8, 0xb7, 0x47, 0x77, 0x60, 0xe7, 0x29, 0x55, 0x88,
7489*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x87, 0xe3, 0xd9, 0xc8, 0xe4, 0x50, 0xa8, 0x55, 0xd2, 0x60, 0xcf,
7490*6236dae4SAndroid Build Coastguard Worker   0x80, 0x75, 0x43, 0x6e, 0x7d, 0x75, 0xe8, 0x60, 0x54, 0x02, 0xeb, 0x93,
7491*6236dae4SAndroid Build Coastguard Worker   0x4c, 0x54, 0x20, 0xbf, 0x77, 0x6e, 0xd5, 0x94, 0xbe, 0x68, 0x8a, 0x57,
7492*6236dae4SAndroid Build Coastguard Worker   0xb8, 0x44, 0x2f, 0x04, 0xa1, 0x98, 0x71, 0x17, 0x46, 0x51, 0x8c, 0xb0,
7493*6236dae4SAndroid Build Coastguard Worker   0x08, 0xcc, 0xc0, 0x44, 0xeb, 0x7c, 0xf1, 0xb1, 0x2b, 0x69, 0x6f, 0x48,
7494*6236dae4SAndroid Build Coastguard Worker   0x1e, 0x4b, 0xae, 0x56, 0xae, 0x82, 0x61, 0x40, 0xa9, 0xa2, 0x96, 0x3c,
7495*6236dae4SAndroid Build Coastguard Worker   0x81, 0x22, 0xd7, 0xa8, 0xa9, 0x98, 0x58, 0x33, 0xd4, 0xf7, 0xb9, 0x90,
7496*6236dae4SAndroid Build Coastguard Worker   0x98, 0xda, 0xe7, 0x96, 0xdc, 0xa2, 0x26, 0xa0, 0x7b, 0xca, 0xd7, 0x5d,
7497*6236dae4SAndroid Build Coastguard Worker   0xb9, 0xdb, 0x36, 0xe9, 0xdc, 0xcf, 0x34, 0x9d, 0x22, 0xbe, 0x35, 0x01,
7498*6236dae4SAndroid Build Coastguard Worker   0xb4, 0x23, 0x93, 0x03, 0xf1, 0xb3, 0x10, 0xb1, 0x65, 0x78, 0x9d, 0x51,
7499*6236dae4SAndroid Build Coastguard Worker   0xbd, 0xfb, 0x8c, 0x94, 0xe3, 0x24, 0xd7, 0x80, 0x0c, 0x4f, 0xd3, 0x34,
7500*6236dae4SAndroid Build Coastguard Worker   0x17, 0x05, 0x86, 0xed, 0x51, 0x04, 0x28, 0x6c, 0x9c, 0xb0, 0xe2, 0x89,
7501*6236dae4SAndroid Build Coastguard Worker   0x6e, 0x31, 0x6c, 0x4e, 0xa1, 0xf3, 0x19, 0x53, 0xa1, 0x9c, 0x39, 0x6f,
7502*6236dae4SAndroid Build Coastguard Worker   0xaa, 0xf6, 0x62, 0xd9, 0x3d, 0x69, 0xde, 0x81, 0xbe, 0x79, 0x20, 0x5b,
7503*6236dae4SAndroid Build Coastguard Worker   0x10, 0x03, 0x0b, 0x3d, 0xda, 0xb7, 0x06, 0x73, 0xb7, 0x4c, 0xb9, 0x6b,
7504*6236dae4SAndroid Build Coastguard Worker   0x72, 0x2f, 0x7a, 0x9f, 0x4e, 0xa8, 0xd4, 0x0c, 0xab, 0x08, 0xcc, 0xaa,
7505*6236dae4SAndroid Build Coastguard Worker   0x0d, 0x3c, 0xae, 0x57, 0xf1, 0x28, 0x5a, 0x19, 0x43, 0x1e, 0xd3, 0xdc,
7506*6236dae4SAndroid Build Coastguard Worker   0x28, 0x67, 0xcd, 0xcc, 0x44, 0xeb, 0x59, 0x24, 0x27, 0x91, 0x83, 0x56,
7507*6236dae4SAndroid Build Coastguard Worker   0xd8, 0xa9, 0x40, 0x28, 0xeb, 0xc9, 0x80, 0x31, 0xea, 0xff, 0x88, 0x70,
7508*6236dae4SAndroid Build Coastguard Worker   0x9b, 0xef, 0x01, 0xfb, 0x47, 0x9d, 0x37, 0xa0, 0xfd, 0xed, 0x75, 0x4c,
7509*6236dae4SAndroid Build Coastguard Worker   0x0f, 0x4f, 0x8a, 0x73, 0x70, 0x53, 0x4b, 0x97, 0x73, 0xc8, 0x06, 0xcd,
7510*6236dae4SAndroid Build Coastguard Worker   0xbd, 0xf6, 0xae, 0x0c, 0xa4, 0x23, 0x86, 0x5d, 0xad, 0xd2, 0xd4, 0xd4,
7511*6236dae4SAndroid Build Coastguard Worker   0x71, 0xfa, 0xd5, 0x32, 0xa6, 0xae, 0x92, 0x81, 0x09, 0xfc, 0xa2, 0x72,
7512*6236dae4SAndroid Build Coastguard Worker   0x9c, 0xd2, 0x77, 0xf1, 0x21, 0x7d, 0x3c, 0x7e, 0x43, 0xc3, 0x7d, 0xda,
7513*6236dae4SAndroid Build Coastguard Worker   0x31, 0x01, 0x98, 0xf6, 0xaf, 0x60, 0xe2, 0x9f, 0x84, 0xd2, 0x2c, 0xad,
7514*6236dae4SAndroid Build Coastguard Worker   0x0f, 0xc3, 0x62, 0x97, 0x53, 0x4e, 0x9d, 0xd2, 0x19, 0x97, 0x8a, 0x47,
7515*6236dae4SAndroid Build Coastguard Worker   0x64, 0x5d, 0x37, 0x9c, 0x22, 0xac, 0x98, 0x25, 0x1d, 0x30, 0x74, 0x38,
7516*6236dae4SAndroid Build Coastguard Worker   0x1c, 0x56, 0x62, 0x42, 0x15, 0x18, 0x1b, 0xa3, 0xb8, 0xb8, 0x88, 0xa9,
7517*6236dae4SAndroid Build Coastguard Worker   0xf0, 0x06, 0x6e, 0xa4, 0x6b, 0x4c, 0x00, 0x75, 0x4e, 0x1d, 0x41, 0x65,
7518*6236dae4SAndroid Build Coastguard Worker   0x11, 0xe2, 0xfd, 0x68, 0x14, 0xca, 0x29, 0x25, 0xcc, 0x89, 0xa9, 0xa3,
7519*6236dae4SAndroid Build Coastguard Worker   0x47, 0x6b, 0xfd, 0x1e, 0x6f, 0xe3, 0x9e, 0xd4, 0x7c, 0xd0, 0xeb, 0x79,
7520*6236dae4SAndroid Build Coastguard Worker   0x7a, 0xcb, 0x45, 0x0d, 0x88, 0xe1, 0x2f, 0x75, 0x76, 0x9e, 0xc7, 0x98,
7521*6236dae4SAndroid Build Coastguard Worker   0xaa, 0xee, 0xba, 0x6c, 0x12, 0xd1, 0xaa, 0xc9, 0xc4, 0x9f, 0x70, 0xc0,
7522*6236dae4SAndroid Build Coastguard Worker   0x84, 0xe2, 0x41, 0xb3, 0xa9, 0x76, 0x71, 0xe9, 0x2d, 0xcc, 0x8b, 0x47,
7523*6236dae4SAndroid Build Coastguard Worker   0x7b, 0x90, 0xda, 0xb3, 0xa0, 0xe1, 0xa1, 0xb9, 0x91, 0x20, 0xd6, 0xbe,
7524*6236dae4SAndroid Build Coastguard Worker   0x30, 0xe5, 0xb9, 0x55, 0x7d, 0x8f, 0xc2, 0xdc, 0x20, 0x32, 0xe4, 0xbe,
7525*6236dae4SAndroid Build Coastguard Worker   0x5a, 0x6f, 0xeb, 0xe6, 0x6c, 0x1e, 0x23, 0xd1, 0x4a, 0xe4, 0x23, 0x81,
7526*6236dae4SAndroid Build Coastguard Worker   0x32, 0x68, 0xdf, 0x0f, 0xc9, 0x80, 0x8d, 0xbe, 0x88, 0x83, 0x78, 0x91,
7527*6236dae4SAndroid Build Coastguard Worker   0x36, 0x36, 0x4e, 0x95, 0x95, 0x0e, 0xb5, 0x38, 0x3d, 0xd5, 0x00, 0xa1,
7528*6236dae4SAndroid Build Coastguard Worker   0x34, 0x90, 0x0e, 0x77, 0x77, 0xdd, 0xbb, 0xd5, 0xad, 0x8d, 0x25, 0xec,
7529*6236dae4SAndroid Build Coastguard Worker   0x56, 0xd3, 0x9d, 0x5d, 0x39, 0x41, 0x59, 0xab, 0xc1, 0xef, 0x15, 0x1d,
7530*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x5c, 0xcb, 0x7b, 0x92, 0x10, 0x4c, 0x06, 0x0d, 0xd3, 0x6c, 0x17,
7531*6236dae4SAndroid Build Coastguard Worker   0xf5, 0x3c, 0xf0, 0x69, 0x4a, 0xfb, 0x41, 0xd4, 0x1e, 0xb4, 0x5f, 0x3a,
7532*6236dae4SAndroid Build Coastguard Worker   0x5e, 0x35, 0xce, 0x1e, 0x63, 0x71, 0xa4, 0xe8, 0x69, 0x90, 0x19, 0x71,
7533*6236dae4SAndroid Build Coastguard Worker   0x66, 0x0b, 0xbb, 0x5a, 0xc2, 0x9f, 0x36, 0xd7, 0x8c, 0x1e, 0x2b, 0xfd,
7534*6236dae4SAndroid Build Coastguard Worker   0x37, 0x16, 0x44, 0x75, 0x1d, 0xee, 0xe7, 0x8c, 0x59, 0x3d, 0xd2, 0x81,
7535*6236dae4SAndroid Build Coastguard Worker   0x00, 0x17, 0x07, 0xd3, 0x65, 0x0a, 0x5c, 0x91, 0x83, 0x52, 0xca, 0x43,
7536*6236dae4SAndroid Build Coastguard Worker   0x7a, 0x3e, 0x78, 0xff, 0xee, 0xf8, 0xdd, 0x57, 0x7b, 0x86, 0x3c, 0x28,
7537*6236dae4SAndroid Build Coastguard Worker   0x14, 0xdb, 0x9d, 0x96, 0x2d, 0xec, 0x49, 0x45, 0x3d, 0x39, 0x08, 0x5e,
7538*6236dae4SAndroid Build Coastguard Worker   0x20, 0x08, 0x7e, 0x2c, 0x8a, 0x5a, 0x14, 0xb3, 0x0c, 0x67, 0x67, 0x7b,
7539*6236dae4SAndroid Build Coastguard Worker   0x99, 0x72, 0x30, 0x93, 0x0b, 0xa2, 0xb4, 0x6a, 0x4f, 0x20, 0x04, 0x88,
7540*6236dae4SAndroid Build Coastguard Worker   0x26, 0x75, 0x31, 0x1e, 0x85, 0xc0, 0x83, 0xe2, 0x13, 0xbc, 0xc5, 0xb1,
7541*6236dae4SAndroid Build Coastguard Worker   0x0a, 0xc6, 0xd1, 0x63, 0x91, 0x9d, 0xc7, 0xc4, 0x37, 0x85, 0xcb, 0x3a,
7542*6236dae4SAndroid Build Coastguard Worker   0xdc, 0xae, 0x85, 0xca, 0x21, 0xd0, 0x74, 0x26, 0xc7, 0x61, 0x20, 0xeb,
7543*6236dae4SAndroid Build Coastguard Worker   0x83, 0x7b, 0xd7, 0xe5, 0x5e, 0xe3, 0x77, 0xee, 0xbc, 0x5c, 0x11, 0xcf,
7544*6236dae4SAndroid Build Coastguard Worker   0x54, 0x19, 0x39, 0xac, 0x0c, 0x49, 0xd4, 0x21, 0x11, 0xf0, 0xa5, 0x49,
7545*6236dae4SAndroid Build Coastguard Worker   0xdb, 0xb7, 0x64, 0xc6, 0x27, 0x8d, 0x21, 0x77, 0xe5, 0xa7, 0xb6, 0x26,
7546*6236dae4SAndroid Build Coastguard Worker   0xd0, 0x50, 0xe0, 0xd1, 0x25, 0x36, 0xb6, 0xc6, 0x86, 0x2d, 0x1d, 0x4e,
7547*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x70, 0xe4, 0x1a, 0xa5, 0x6c, 0xdf, 0x84, 0x31, 0xb1, 0xc6, 0xa9,
7548*6236dae4SAndroid Build Coastguard Worker   0xad, 0x88, 0x5d, 0xce, 0xc5, 0x46, 0x32, 0xfa, 0x35, 0x9a, 0xce, 0xf1,
7549*6236dae4SAndroid Build Coastguard Worker   0x3b, 0x10, 0x0c, 0x7b, 0xd1, 0x7f, 0x16, 0xe9, 0x12, 0x9e, 0x32, 0x78,
7550*6236dae4SAndroid Build Coastguard Worker   0xfd, 0x03, 0xe8, 0x3e, 0xf1, 0xc1, 0x25, 0x89, 0xbc, 0xfb, 0xb4, 0x8a,
7551*6236dae4SAndroid Build Coastguard Worker   0xe1, 0xf9, 0xa4, 0x4a, 0xd7, 0xc1, 0x46, 0xdc, 0x58, 0x6e, 0x20, 0xbe,
7552*6236dae4SAndroid Build Coastguard Worker   0xbe, 0x96, 0x83, 0x4e, 0x3b, 0xa0, 0xb2, 0x1e, 0x9c, 0x41, 0x72, 0x49,
7553*6236dae4SAndroid Build Coastguard Worker   0x80, 0x38, 0x18, 0xb3, 0x48, 0xf1, 0x87, 0x8c, 0x34, 0xe7, 0x98, 0x03,
7554*6236dae4SAndroid Build Coastguard Worker   0xf1, 0x15, 0x2b, 0x88, 0xe3, 0x69, 0xb4, 0x8f, 0xd6, 0xcc, 0x65, 0x51,
7555*6236dae4SAndroid Build Coastguard Worker   0xde, 0x7f, 0xee, 0xa1, 0x6b, 0x63, 0xf5, 0x57, 0x84, 0x0f, 0x19, 0xd4,
7556*6236dae4SAndroid Build Coastguard Worker   0x32, 0x8c, 0xc6, 0x93, 0x0a, 0x63, 0x0b, 0x47, 0x44, 0xe0, 0xdb, 0x61,
7557*6236dae4SAndroid Build Coastguard Worker   0x7a, 0xd2, 0x9c, 0xc0, 0x6b, 0x77, 0x78, 0x49, 0xed, 0xea, 0x6c, 0x25,
7558*6236dae4SAndroid Build Coastguard Worker   0x8f, 0x93, 0xf0, 0xcc, 0x0a, 0x34, 0x27, 0x16, 0x61, 0x72, 0x12, 0x22,
7559*6236dae4SAndroid Build Coastguard Worker   0x27, 0x82, 0xf9, 0x44, 0xc9, 0xb6, 0xf2, 0xa5, 0x40, 0xbd, 0x79, 0x64,
7560*6236dae4SAndroid Build Coastguard Worker   0x04, 0x3a, 0xea, 0x8f, 0xea, 0x99, 0x31, 0x42, 0xbe, 0x03, 0xf3, 0xec,
7561*6236dae4SAndroid Build Coastguard Worker   0xcc, 0xfb, 0x66, 0x5b, 0xeb, 0x97, 0x19, 0xe0, 0xd2, 0xb4, 0x63, 0x98,
7562*6236dae4SAndroid Build Coastguard Worker   0x4d, 0x09, 0xf1, 0xc7, 0x8e, 0x3a, 0xba, 0x5e, 0xac, 0x3c, 0xf1, 0x34,
7563*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x45, 0x8b, 0x24, 0xea, 0xf1, 0xcb, 0x99, 0x14, 0xa4, 0xc1, 0xd0,
7564*6236dae4SAndroid Build Coastguard Worker   0x59, 0xa9, 0x28, 0x81, 0x4b, 0x17, 0x3a, 0xd0, 0x36, 0xc2, 0xa8, 0xae,
7565*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x0d, 0x44, 0x9c, 0xce, 0x06, 0x93, 0xd1, 0x6e, 0xb4, 0x0f, 0x7f,
7566*6236dae4SAndroid Build Coastguard Worker   0x78, 0x5a, 0x3f, 0x15, 0x8e, 0x44, 0xfd, 0x43, 0x54, 0xfd, 0x51, 0x92,
7567*6236dae4SAndroid Build Coastguard Worker   0xa3, 0x0a, 0xc3, 0x98, 0x7d, 0x4e, 0xe3, 0xea, 0xed, 0x2d, 0xd8, 0xfc,
7568*6236dae4SAndroid Build Coastguard Worker   0xbb, 0x44, 0xfb, 0x0f, 0x8c, 0x40, 0x58, 0xd4, 0x94, 0x1b, 0x3e, 0x07,
7569*6236dae4SAndroid Build Coastguard Worker   0x84, 0xd1, 0xba, 0x2e, 0x91, 0x54, 0x9b, 0x5b, 0x2f, 0x22, 0x2c, 0xb1,
7570*6236dae4SAndroid Build Coastguard Worker   0x7c, 0xfb, 0x6a, 0x17, 0x04, 0x71, 0x3a, 0xbc, 0xae, 0x66, 0x13, 0x53,
7571*6236dae4SAndroid Build Coastguard Worker   0x85, 0xc0, 0x15, 0x17, 0x2c, 0x77, 0x3c, 0xa4, 0x2b, 0x98, 0xf8, 0x38,
7572*6236dae4SAndroid Build Coastguard Worker   0x1b, 0x22, 0xc4, 0x41, 0xb7, 0x91, 0x94, 0x70, 0xa1, 0x49, 0x09, 0x8e,
7573*6236dae4SAndroid Build Coastguard Worker   0x37, 0xc8, 0xe8, 0x31, 0x94, 0xd3, 0xc6, 0x19, 0xa3, 0x81, 0x78, 0x31,
7574*6236dae4SAndroid Build Coastguard Worker   0xd0, 0x00, 0x3e, 0x8f, 0x2e, 0x34, 0x30, 0x35, 0x97, 0xa6, 0xaf, 0x25,
7575*6236dae4SAndroid Build Coastguard Worker   0x66, 0xba, 0x3b, 0xdc, 0x1c, 0xee, 0xbc, 0xdc, 0xd8, 0xda, 0x78, 0xb6,
7576*6236dae4SAndroid Build Coastguard Worker   0xb3, 0x91, 0xec, 0x26, 0x83, 0x8d, 0x8b, 0xad, 0x8d, 0xed, 0x9d, 0x17,
7577*6236dae4SAndroid Build Coastguard Worker   0xbb, 0x3b, 0xc3, 0xed, 0xad, 0xcd, 0xe4, 0x45, 0x54, 0x2d, 0x4c, 0x1a,
7578*6236dae4SAndroid Build Coastguard Worker   0x91, 0x91, 0xaa, 0xab, 0x64, 0x6b, 0xf7, 0x59, 0xb4, 0xcf, 0xff, 0x0d,
7579*6236dae4SAndroid Build Coastguard Worker   0x6f, 0x0e, 0xed, 0xcd, 0xdc, 0xad, 0x49, 0xa2, 0x2f, 0xa9, 0x14, 0x32,
7580*6236dae4SAndroid Build Coastguard Worker   0xd6, 0x6a, 0xdd, 0xfe, 0x9b, 0x03, 0x1c, 0x12, 0x8c, 0xa0, 0xab, 0xb0,
7581*6236dae4SAndroid Build Coastguard Worker   0x43, 0x44, 0x28, 0xce, 0x04, 0x77, 0x48, 0xdc, 0x8b, 0x0e, 0x17, 0x93,
7582*6236dae4SAndroid Build Coastguard Worker   0x78, 0x9e, 0xe2, 0xe8, 0x10, 0x9c, 0xff, 0x0d, 0x9f, 0x4e, 0x7f, 0x19,
7583*6236dae4SAndroid Build Coastguard Worker   0x85, 0x85, 0x2e, 0xef, 0x5e, 0x7d, 0x73, 0xfd, 0xf6, 0xfc, 0xaf, 0x77,
7584*6236dae4SAndroid Build Coastguard Worker   0x6f, 0xbf, 0xfa, 0xeb, 0xe6, 0xe9, 0xab, 0xd1, 0xe4, 0xed, 0x4f, 0x7f,
7585*6236dae4SAndroid Build Coastguard Worker   0xdd, 0x7e, 0xfb, 0xd3, 0xf0, 0xe7, 0xbf, 0xfd, 0x74, 0x70, 0x7f, 0x7a,
7586*6236dae4SAndroid Build Coastguard Worker   0xfe, 0xb7, 0xdd, 0xb7, 0x93, 0xf7, 0xd7, 0x6f, 0x7f, 0xfa, 0x66, 0xf2,
7587*6236dae4SAndroid Build Coastguard Worker   0xee, 0xd5, 0x5f, 0x3f, 0x5b, 0x48, 0x70, 0xdf, 0x43, 0xf1, 0x62, 0xa3,
7588*6236dae4SAndroid Build Coastguard Worker   0xe5, 0x9b, 0x42, 0x71, 0xb6, 0x6f, 0x20, 0xfc, 0x82, 0xd6, 0x71, 0xbf,
7589*6236dae4SAndroid Build Coastguard Worker   0xd9, 0x0e, 0x49, 0x91, 0x0b, 0xdf, 0xf4, 0xcf, 0xfb, 0x26, 0x1d, 0xc2,
7590*6236dae4SAndroid Build Coastguard Worker   0xc4, 0x69, 0x25, 0x0f, 0x51, 0x8a, 0x12, 0x42, 0x68, 0x60, 0xd1, 0x14,
7591*6236dae4SAndroid Build Coastguard Worker   0x34, 0xa0, 0x9a, 0xaf, 0x34, 0x82, 0x85, 0x90, 0xda, 0x77, 0x1a, 0x0f,
7592*6236dae4SAndroid Build Coastguard Worker   0x3b, 0xc6, 0xa4, 0xe2, 0x5c, 0x20, 0xed, 0xbe, 0xe9, 0xd4, 0x6b, 0xad,
7593*6236dae4SAndroid Build Coastguard Worker   0x8b, 0x83, 0xf9, 0x5c, 0x98, 0x90, 0xba, 0x8d, 0x2d, 0x04, 0xc2, 0x8e,
7594*6236dae4SAndroid Build Coastguard Worker   0x06, 0xd3, 0x11, 0xa4, 0x67, 0x5b, 0xb1, 0x78, 0x76, 0xe4, 0x10, 0x15,
7595*6236dae4SAndroid Build Coastguard Worker   0x0c, 0x19, 0x53, 0x7c, 0xc9, 0x0e, 0x8b, 0x80, 0x57, 0xb1, 0x6f, 0xf2,
7596*6236dae4SAndroid Build Coastguard Worker   0xfd, 0x3a, 0x1d, 0x07, 0x08, 0x71, 0xf5, 0xe7, 0xb4, 0x2c, 0xa4, 0x66,
7597*6236dae4SAndroid Build Coastguard Worker   0x79, 0x8d, 0xd6, 0x79, 0x53, 0x64, 0xa3, 0x48, 0x80, 0x1e, 0xd7, 0x15,
7598*6236dae4SAndroid Build Coastguard Worker   0x72, 0xd7, 0x93, 0xe9, 0x56, 0xb7, 0x23, 0xf0, 0x41, 0xc4, 0xdb, 0x85,
7599*6236dae4SAndroid Build Coastguard Worker   0x21, 0x89, 0x30, 0x06, 0x79, 0xef, 0x89, 0x9e, 0x52, 0xb1, 0x9d, 0x09,
7600*6236dae4SAndroid Build Coastguard Worker   0x56, 0x8d, 0x5c, 0x7f, 0x26, 0xf4, 0xd2, 0xb6, 0x73, 0x29, 0x4b, 0x51,
7601*6236dae4SAndroid Build Coastguard Worker   0x8a, 0x08, 0x19, 0x88, 0x52, 0x7d, 0x46, 0x41, 0x4f, 0x2b, 0xb1, 0x00,
7602*6236dae4SAndroid Build Coastguard Worker   0xaf, 0x68, 0x69, 0xae, 0x47, 0xe6, 0xa3, 0x4d, 0x7a, 0x42, 0x43, 0x1d,
7603*6236dae4SAndroid Build Coastguard Worker   0x4c, 0x98, 0x6a, 0x70, 0x32, 0xbc, 0xbd, 0xd1, 0x7b, 0x39, 0xa7, 0x9d,
7604*6236dae4SAndroid Build Coastguard Worker   0x57, 0x03, 0xd0, 0x19, 0xc1, 0x23, 0x0c, 0xfc, 0x09, 0x29, 0xde, 0xe8,
7605*6236dae4SAndroid Build Coastguard Worker   0x61, 0x43, 0xe2, 0x21, 0xa8, 0xb0, 0xa6, 0x99, 0x79, 0xab, 0xc1, 0x27,
7606*6236dae4SAndroid Build Coastguard Worker   0xd7, 0xf1, 0x09, 0xce, 0xda, 0x35, 0x6c, 0x87, 0xcd, 0x0a, 0x48, 0xdf,
7607*6236dae4SAndroid Build Coastguard Worker   0x22, 0x51, 0x60, 0xb2, 0xd4, 0x0c, 0x2e, 0x37, 0x25, 0x13, 0xfa, 0xee,
7608*6236dae4SAndroid Build Coastguard Worker   0x0e, 0x93, 0xaf, 0xaa, 0x21, 0x1f, 0xab, 0x77, 0x0b, 0xa6, 0x91, 0x03,
7609*6236dae4SAndroid Build Coastguard Worker   0xb7, 0xa7, 0xe0, 0x2e, 0xb4, 0x7f, 0xe8, 0xcf, 0xf3, 0x0c, 0x08, 0xf3,
7610*6236dae4SAndroid Build Coastguard Worker   0xdd, 0xca, 0xa6, 0x95, 0x31, 0xa8, 0x34, 0x37, 0x9e, 0xa0, 0xa3, 0x81,
7611*6236dae4SAndroid Build Coastguard Worker   0x4d, 0xa5, 0xd8, 0x01, 0x5f, 0xdc, 0xe6, 0x97, 0x25, 0xc6, 0x53, 0x08,
7612*6236dae4SAndroid Build Coastguard Worker   0xa5, 0x23, 0x09, 0x25, 0xa4, 0x84, 0xf8, 0xdd, 0x4d, 0x59, 0x7b, 0xf6,
7613*6236dae4SAndroid Build Coastguard Worker   0xac, 0xb7, 0xd1, 0xb5, 0x54, 0xc1, 0xaa, 0x64, 0x4e, 0xc7, 0x5c, 0x98,
7614*6236dae4SAndroid Build Coastguard Worker   0xb1, 0xf6, 0x10, 0x4f, 0xf0, 0x36, 0x2e, 0xeb, 0x78, 0x6d, 0x32, 0xc3,
7615*6236dae4SAndroid Build Coastguard Worker   0x46, 0x57, 0x46, 0xda, 0xec, 0x6d, 0x3c, 0x86, 0x21, 0x50, 0xe8, 0x37,
7616*6236dae4SAndroid Build Coastguard Worker   0xf8, 0x00, 0xde, 0x73, 0x3d, 0x59, 0x5a, 0x9c, 0x9b, 0x79, 0xa7, 0xc5,
7617*6236dae4SAndroid Build Coastguard Worker   0xf1, 0x27, 0x71, 0x54, 0x1b, 0x51, 0x32, 0xdd, 0xa1, 0x9e, 0xb2, 0x7e,
7618*6236dae4SAndroid Build Coastguard Worker   0xfc, 0xfa, 0x63, 0xab, 0xdf, 0xe5, 0xd4, 0xdb, 0xda, 0x77, 0x1d, 0x62,
7619*6236dae4SAndroid Build Coastguard Worker   0x53, 0x52, 0x76, 0xf0, 0x5f, 0x5b, 0xed, 0x83, 0x02, 0xbf, 0x7e, 0x22,
7620*6236dae4SAndroid Build Coastguard Worker   0x5d, 0x36, 0x9f, 0xb6, 0xa0, 0xcd, 0x5f, 0x56, 0xce, 0xbf, 0xd1, 0x8d,
7621*6236dae4SAndroid Build Coastguard Worker   0x1c, 0xda, 0x68, 0xf7, 0x72, 0x5e, 0x9a, 0x65, 0x84, 0xd6, 0x70, 0x7e,
7622*6236dae4SAndroid Build Coastguard Worker   0x9f, 0x67, 0x7a, 0x01, 0xd1, 0x17, 0x8a, 0x32, 0x46, 0x57, 0x1f, 0xb0,
7623*6236dae4SAndroid Build Coastguard Worker   0xaa, 0xe7, 0x7a, 0x09, 0x12, 0x02, 0x98, 0xbb, 0x42, 0x87, 0x18, 0x75,
7624*6236dae4SAndroid Build Coastguard Worker   0xb8, 0xc2, 0xa3, 0x49, 0xa9, 0x4b, 0x0d, 0x9b, 0xbd, 0x0a, 0x97, 0x68,
7625*6236dae4SAndroid Build Coastguard Worker   0xd3, 0xf1, 0xd8, 0xb2, 0x7e, 0x3d, 0xfe, 0x01, 0x12, 0x24, 0xfa, 0x30,
7626*6236dae4SAndroid Build Coastguard Worker   0xa5, 0x13, 0x88, 0xca, 0x75, 0x6d, 0xbb, 0x5d, 0xd3, 0xec, 0xa2, 0x79,
7627*6236dae4SAndroid Build Coastguard Worker   0xb3, 0xb3, 0x88, 0xd7, 0x9a, 0x31, 0x4b, 0xd8, 0x41, 0x95, 0x7e, 0xa7,
7628*6236dae4SAndroid Build Coastguard Worker   0x42, 0x50, 0x26, 0x74, 0x15, 0x46, 0xc9, 0x6d, 0x82, 0x79, 0x4c, 0xdc,
7629*6236dae4SAndroid Build Coastguard Worker   0xb6, 0xd8, 0x4c, 0x32, 0xd4, 0x1f, 0x4b, 0xc5, 0xca, 0xa8, 0xd0, 0x51,
7630*6236dae4SAndroid Build Coastguard Worker   0x1a, 0x95, 0xcf, 0x30, 0x8e, 0xb8, 0x09, 0x41, 0x63, 0xa7, 0x84, 0x44,
7631*6236dae4SAndroid Build Coastguard Worker   0xdb, 0x0f, 0x36, 0x10, 0x2c, 0xa2, 0x3b, 0x88, 0x9d, 0x42, 0x48, 0xa4,
7632*6236dae4SAndroid Build Coastguard Worker   0xf9, 0x98, 0xf1, 0x8f, 0xe0, 0x1b, 0x6f, 0xaf, 0x1e, 0xd7, 0x46, 0x3c,
7633*6236dae4SAndroid Build Coastguard Worker   0xfc, 0xea, 0x63, 0xfb, 0x89, 0x7b, 0xb0, 0xd5, 0xad, 0x3e, 0xf6, 0x4c,
7634*6236dae4SAndroid Build Coastguard Worker   0xa3, 0xde, 0xe3, 0x8e, 0xdf, 0x46, 0x37, 0x38, 0x3b, 0xe4, 0x62, 0xf7,
7635*6236dae4SAndroid Build Coastguard Worker   0x78, 0x36, 0x80, 0xe5, 0x5f, 0x06, 0x98, 0xf6, 0x49, 0xa7, 0x75, 0x2b,
7636*6236dae4SAndroid Build Coastguard Worker   0x08, 0x7d, 0x4d, 0x1c, 0xd1, 0x75, 0xeb, 0x87, 0xed, 0x5d, 0xe1, 0xb4,
7637*6236dae4SAndroid Build Coastguard Worker   0xe8, 0x32, 0xbb, 0x6d, 0x79, 0xd8, 0x3b, 0x61, 0xfe, 0x26, 0x3b, 0xc5,
7638*6236dae4SAndroid Build Coastguard Worker   0xae, 0xf4, 0x81, 0x05, 0x17, 0x81, 0xce, 0xe5, 0xe1, 0xa9, 0xcc, 0xf8,
7639*6236dae4SAndroid Build Coastguard Worker   0xa0, 0x34, 0x02, 0x31, 0x5e, 0xa5, 0xa2, 0x4c, 0xd2, 0x62, 0x87, 0xcb,
7640*6236dae4SAndroid Build Coastguard Worker   0xf1, 0xda, 0x33, 0xaf, 0x3c, 0x31, 0x24, 0x88, 0xe4, 0x5f, 0xb2, 0xf3,
7641*6236dae4SAndroid Build Coastguard Worker   0x84, 0x2f, 0x81, 0xb7, 0x7b, 0x66, 0xa8, 0x39, 0x7c, 0xe8, 0x5d, 0xc0,
7642*6236dae4SAndroid Build Coastguard Worker   0x73, 0xfb, 0xdc, 0x3f, 0x8e, 0x13, 0xe7, 0xf0, 0x9d, 0xe1, 0xcb, 0x16,
7643*6236dae4SAndroid Build Coastguard Worker   0x27, 0xce, 0x3b, 0x36, 0x2a, 0x5e, 0xbd, 0x7b, 0x6f, 0x8e, 0x78, 0xdd,
7644*6236dae4SAndroid Build Coastguard Worker   0x9e, 0x13, 0x5f, 0x33, 0x9e, 0xc6, 0x76, 0x8e, 0xfb, 0xdd, 0x34, 0x2d,
7645*6236dae4SAndroid Build Coastguard Worker   0xb3, 0x09, 0x21, 0xf5, 0xf7, 0xa2, 0x57, 0xb6, 0x4a, 0x80, 0x1a, 0x04,
7646*6236dae4SAndroid Build Coastguard Worker   0x78, 0x81, 0x89, 0xd1, 0x2c, 0x9c, 0x4b, 0xff, 0xc0, 0x49, 0xd8, 0x96,
7647*6236dae4SAndroid Build Coastguard Worker   0x82, 0x0a, 0x9b, 0x86, 0x4d, 0xd6, 0x9b, 0x80, 0xad, 0x14, 0x5e, 0x1b,
7648*6236dae4SAndroid Build Coastguard Worker   0x10, 0x89, 0xd2, 0x69, 0x26, 0xa3, 0x64, 0xec, 0x61, 0x85, 0x8e, 0x64,
7649*6236dae4SAndroid Build Coastguard Worker   0x30, 0x11, 0xe9, 0xb7, 0xdd, 0x54, 0x5d, 0xa3, 0x14, 0x63, 0xf9, 0x7c,
7650*6236dae4SAndroid Build Coastguard Worker   0x28, 0x2a, 0x48, 0x5f, 0x34, 0x0d, 0x47, 0x51, 0x87, 0x53, 0xbf, 0x20,
7651*6236dae4SAndroid Build Coastguard Worker   0x7c, 0x04, 0x5b, 0x95, 0x1f, 0x8c, 0xeb, 0xb8, 0x7f, 0x33, 0xe4, 0x64,
7652*6236dae4SAndroid Build Coastguard Worker   0xbb, 0x46, 0x62, 0x97, 0xd7, 0x91, 0x86, 0x22, 0x68, 0x18, 0x3b, 0x22,
7653*6236dae4SAndroid Build Coastguard Worker   0x80, 0x0d, 0x4c, 0x1b, 0xa2, 0xae, 0x45, 0xd4, 0x78, 0x86, 0xcd, 0x26,
7654*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x18, 0xc3, 0x8d, 0xb4, 0x9c, 0xc6, 0xa5, 0xe6, 0x7e, 0x93, 0x86,
7655*6236dae4SAndroid Build Coastguard Worker   0xe4, 0xba, 0xd2, 0x25, 0x49, 0xc0, 0x89, 0xe1, 0x07, 0xcc, 0x9c, 0x39,
7656*6236dae4SAndroid Build Coastguard Worker   0x96, 0xbf, 0x40, 0x01, 0x69, 0xf9, 0xa6, 0xb9, 0x87, 0x18, 0xc2, 0xcb,
7657*6236dae4SAndroid Build Coastguard Worker   0xfe, 0xf5, 0xc3, 0xf1, 0x61, 0x23, 0x7d, 0x45, 0x72, 0x83, 0x7c, 0x87,
7658*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x93, 0x8e, 0xc3, 0xed, 0xfd, 0xe4, 0xc9, 0x0b, 0xb4, 0x46, 0xb4,
7659*6236dae4SAndroid Build Coastguard Worker   0x1a, 0x53, 0xeb, 0xa7, 0x1a, 0xdb, 0x5b, 0xe4, 0x01, 0xd5, 0x0c, 0x34,
7660*6236dae4SAndroid Build Coastguard Worker   0xdc, 0xa7, 0x9c, 0xf5, 0xed, 0x5f, 0x7c, 0xd6, 0xb7, 0x7a, 0x66, 0xa8,
7661*6236dae4SAndroid Build Coastguard Worker   0x5f, 0xf9, 0xac, 0x6f, 0xff, 0x3a, 0x67, 0x5d, 0x25, 0x91, 0xf3, 0x77,
7662*6236dae4SAndroid Build Coastguard Worker   0xf7, 0xd8, 0xb7, 0x67, 0xc7, 0x62, 0xc0, 0xd5, 0xb6, 0x9b, 0x4d, 0xa7,
7663*6236dae4SAndroid Build Coastguard Worker   0x62, 0xc6, 0xb1, 0x8c, 0xc5, 0xa0, 0x8c, 0xd9, 0xee, 0x0d, 0x61, 0xb8,
7664*6236dae4SAndroid Build Coastguard Worker   0x44, 0xda, 0x86, 0xca, 0x88, 0xfe, 0x63, 0x6e, 0xdd, 0xe8, 0xf6, 0x7a,
7665*6236dae4SAndroid Build Coastguard Worker   0x38, 0x61, 0xa8, 0x2f, 0x91, 0xd6, 0x9a, 0xbc, 0x12, 0x00, 0x03, 0xcc,
7666*6236dae4SAndroid Build Coastguard Worker   0x86, 0x88, 0xfc, 0x6e, 0x53, 0x47, 0xc8, 0x10, 0x15, 0x6b, 0xa9, 0x9c,
7667*6236dae4SAndroid Build Coastguard Worker   0x51, 0x6e, 0x4c, 0x74, 0x30, 0x25, 0x1f, 0xc0, 0x66, 0xef, 0xae, 0x6b,
7668*6236dae4SAndroid Build Coastguard Worker   0xba, 0x81, 0x05, 0xbc, 0x9f, 0x65, 0x4a, 0x44, 0xc6, 0xa8, 0xbf, 0x94,
7669*6236dae4SAndroid Build Coastguard Worker   0x7e, 0xb7, 0xa7, 0x43, 0xa3, 0xb3, 0x39, 0x3c, 0xc6, 0x43, 0x54, 0x72,
7670*6236dae4SAndroid Build Coastguard Worker   0x1c, 0x61, 0x0b, 0x0e, 0xca, 0xa5, 0xd7, 0x7c, 0x7b, 0x70, 0x5f, 0x07,
7671*6236dae4SAndroid Build Coastguard Worker   0xe0, 0x5a, 0x70, 0xd5, 0x48, 0x85, 0x55, 0xb6, 0xd0, 0xe0, 0xa6, 0x07,
7672*6236dae4SAndroid Build Coastguard Worker   0x3a, 0xae, 0x75, 0x23, 0x2c, 0x9d, 0x21, 0x0a, 0x20, 0xd6, 0x85, 0xc9,
7673*6236dae4SAndroid Build Coastguard Worker   0xe6, 0xa0, 0x96, 0xc6, 0x97, 0x18, 0xe5, 0x2c, 0x58, 0x1c, 0x78, 0x4e,
7674*6236dae4SAndroid Build Coastguard Worker   0x47, 0xcc, 0xa9, 0x90, 0x52, 0x35, 0xad, 0x03, 0x93, 0x66, 0x3d, 0xc1,
7675*6236dae4SAndroid Build Coastguard Worker   0xd6, 0x03, 0x0d, 0xe5, 0xda, 0x24, 0xf9, 0x62, 0xd6, 0x17, 0xad, 0x8d,
7676*6236dae4SAndroid Build Coastguard Worker   0x0e, 0x14, 0x9c, 0xd8, 0x20, 0x17, 0xce, 0xbc, 0x0e, 0x77, 0x57, 0xf7,
7677*6236dae4SAndroid Build Coastguard Worker   0xd3, 0xe5, 0xef, 0xd2, 0x20, 0xa3, 0x2c, 0xce, 0xa4, 0xcd, 0x90, 0x79,
7678*6236dae4SAndroid Build Coastguard Worker   0x25, 0x19, 0xa3, 0xed, 0xf8, 0x90, 0x14, 0x0d, 0xaf, 0x19, 0x9f, 0x13,
7679*6236dae4SAndroid Build Coastguard Worker   0xec, 0xe3, 0xa4, 0x3e, 0x6e, 0x6d, 0x2f, 0xc9, 0x7b, 0xaa, 0xb5, 0x87,
7680*6236dae4SAndroid Build Coastguard Worker   0xfb, 0x0c, 0x5b, 0x60, 0x5d, 0x06, 0x04, 0xd4, 0x3c, 0x10, 0x8d, 0xba,
7681*6236dae4SAndroid Build Coastguard Worker   0x52, 0xd4, 0x4a, 0x94, 0x6f, 0xf4, 0xf5, 0x74, 0x61, 0xc3, 0x8a, 0xeb,
7682*6236dae4SAndroid Build Coastguard Worker   0x2c, 0xf5, 0x90, 0xa3, 0x46, 0xd4, 0xdf, 0x94, 0x7d, 0x8f, 0xb6, 0x23,
7683*6236dae4SAndroid Build Coastguard Worker   0x59, 0x43, 0x6c, 0x69, 0x13, 0xb1, 0x5e, 0xaf, 0x17, 0x80, 0x05, 0xbd,
7684*6236dae4SAndroid Build Coastguard Worker   0xc9, 0xd2, 0xdb, 0x86, 0xca, 0x23, 0x13, 0xeb, 0x52, 0x33, 0x87, 0x8c,
7685*6236dae4SAndroid Build Coastguard Worker   0xf3, 0x3e, 0xc0, 0x7e, 0xbf, 0x41, 0x0a, 0xc1, 0x90, 0x03, 0xec, 0x50,
7686*6236dae4SAndroid Build Coastguard Worker   0x32, 0x07, 0x8c, 0x61, 0xf1, 0xbe, 0x64, 0xcb, 0x89, 0x3c, 0xf7, 0x83,
7687*6236dae4SAndroid Build Coastguard Worker   0x8e, 0x18, 0xb8, 0xe6, 0x9d, 0xaa, 0x42, 0xb8, 0x57, 0xdc, 0x56, 0xcb,
7688*6236dae4SAndroid Build Coastguard Worker   0x36, 0x04, 0xee, 0x62, 0x80, 0xb0, 0xbc, 0x8f, 0xa8, 0xbf, 0xbd, 0xbd,
7689*6236dae4SAndroid Build Coastguard Worker   0x1b, 0x68, 0x3a, 0x5c, 0xc7, 0x0f, 0xcc, 0x4a, 0x7d, 0xad, 0x18, 0xe2,
7690*6236dae4SAndroid Build Coastguard Worker   0xb9, 0x7d, 0xbe, 0x28, 0x16, 0x89, 0xdf, 0xe9, 0xb5, 0x5a, 0x06, 0xf3,
7691*6236dae4SAndroid Build Coastguard Worker   0xcd, 0xa8, 0x7a, 0x00, 0x28, 0x10, 0x43, 0x0c, 0x0e, 0x23, 0xa1, 0xb5,
7692*6236dae4SAndroid Build Coastguard Worker   0xe5, 0x2c, 0x46, 0x26, 0x03, 0xd5, 0x1f, 0xb2, 0xa5, 0x76, 0x32, 0x95,
7693*6236dae4SAndroid Build Coastguard Worker   0x53, 0x7c, 0xa0, 0x04, 0xe7, 0xfc, 0x16, 0xfe, 0x70, 0x28, 0x31, 0xd4,
7694*6236dae4SAndroid Build Coastguard Worker   0x1b, 0xa4, 0xb1, 0x0c, 0xd0, 0x85, 0x61, 0x6d, 0x0c, 0x98, 0x8b, 0xe7,
7695*6236dae4SAndroid Build Coastguard Worker   0x5a, 0xf0, 0x5c, 0xa5, 0x5f, 0x57, 0xdb, 0x3b, 0x64, 0x71, 0xb8, 0x22,
7696*6236dae4SAndroid Build Coastguard Worker   0x0b, 0x7c, 0x2e, 0xc1, 0x03, 0xb2, 0xf0, 0x4c, 0x43, 0x02, 0xf9, 0x40,
7697*6236dae4SAndroid Build Coastguard Worker   0xe5, 0xf4, 0x75, 0xf3, 0x50, 0x1f, 0xad, 0x5a, 0x8c, 0x03, 0x73, 0x23,
7698*6236dae4SAndroid Build Coastguard Worker   0xeb, 0x5e, 0x68, 0x8b, 0x59, 0x3d, 0x63, 0x00, 0x52, 0x38, 0x4f, 0xc5,
7699*6236dae4SAndroid Build Coastguard Worker   0x0c, 0x73, 0xf9, 0x49, 0xf6, 0x09, 0x90, 0xa0, 0x60, 0x07, 0x7a, 0xac,
7700*6236dae4SAndroid Build Coastguard Worker   0xa4, 0x2c, 0x84, 0xb4, 0xef, 0x55, 0xe9, 0x3a, 0xf0, 0x7c, 0xb5, 0x5e,
7701*6236dae4SAndroid Build Coastguard Worker   0x55, 0x63, 0xfc, 0x5e, 0x45, 0xd8, 0xf8, 0x73, 0x83, 0xcf, 0xac, 0xff,
7702*6236dae4SAndroid Build Coastguard Worker   0xd3, 0xb6, 0x37, 0x0b, 0x6e, 0xe6, 0xd1, 0xfa, 0x21, 0x31, 0x23, 0xef,
7703*6236dae4SAndroid Build Coastguard Worker   0x2d, 0x79, 0x93, 0x73, 0xfe, 0x80, 0x79, 0x99, 0x6f, 0xc7, 0x61, 0x82,
7704*6236dae4SAndroid Build Coastguard Worker   0x0b, 0x68, 0xdc, 0x76, 0x0a, 0x7b, 0xc0, 0xcd, 0x98, 0xda, 0x2e, 0xf3,
7705*6236dae4SAndroid Build Coastguard Worker   0x33, 0x6e, 0x9b, 0x86, 0xae, 0x6d, 0x17, 0x94, 0x8c, 0x25, 0xb3, 0xcd,
7706*6236dae4SAndroid Build Coastguard Worker   0xae, 0x36, 0xa3, 0xd8, 0x8e, 0xad, 0x11, 0xf6, 0x49, 0x2b, 0xe7, 0x41,
7707*6236dae4SAndroid Build Coastguard Worker   0x34, 0x44, 0x22, 0x6e, 0xdc, 0x2c, 0x4b, 0xd8, 0x16, 0x03, 0x65, 0x80,
7708*6236dae4SAndroid Build Coastguard Worker   0x8d, 0xd8, 0x0d, 0xc6, 0xf2, 0x90, 0x02, 0x51, 0x63, 0x90, 0x4c, 0x01,
7709*6236dae4SAndroid Build Coastguard Worker   0xf4, 0xef, 0x79, 0xa8, 0x95, 0xce, 0xca, 0xb0, 0x78, 0x7b, 0xcf, 0xfa,
7710*6236dae4SAndroid Build Coastguard Worker   0x6c, 0x6e, 0x6f, 0x6f, 0x7b, 0x8b, 0x02, 0x0c, 0xbf, 0x38, 0x59, 0xb7,
7711*6236dae4SAndroid Build Coastguard Worker   0x39, 0xdc, 0x69, 0x1e, 0x9d, 0x64, 0xf9, 0xec, 0xce, 0x01, 0xfb, 0xd5,
7712*6236dae4SAndroid Build Coastguard Worker   0x26, 0xd4, 0xb6, 0xc0, 0xfe, 0x9b, 0xf7, 0xaf, 0xbb, 0xc6, 0x33, 0xad,
7713*6236dae4SAndroid Build Coastguard Worker   0x38, 0xab, 0x94, 0x0b, 0x52, 0xf9, 0xda, 0x77, 0x94, 0x66, 0xc4, 0xbc,
7714*6236dae4SAndroid Build Coastguard Worker   0xdc, 0xa6, 0xec, 0xf0, 0xe0, 0xec, 0xe3, 0xbb, 0xa3, 0xf3, 0x8f, 0xef,
7715*6236dae4SAndroid Build Coastguard Worker   0x0f, 0xbe, 0x45, 0x12, 0xb2, 0x47, 0x18, 0x34, 0x06, 0xcc, 0xe2, 0x29,
7716*6236dae4SAndroid Build Coastguard Worker   0x8b, 0x02, 0x6e, 0x8a, 0xb7, 0x78, 0xa9, 0x66, 0x39, 0x21, 0xed, 0x06,
7717*6236dae4SAndroid Build Coastguard Worker   0xb3, 0xd2, 0x15, 0x3d, 0x9c, 0xe7, 0x89, 0x93, 0xd9, 0x73, 0xce, 0x00,
7718*6236dae4SAndroid Build Coastguard Worker   0xd2, 0xeb, 0x3a, 0x2d, 0xf3, 0x74, 0xdc, 0x2b, 0xca, 0x4b, 0x3c, 0x0a,
7719*6236dae4SAndroid Build Coastguard Worker   0xeb, 0xaf, 0xe4, 0x0a, 0x08, 0x0e, 0xb7, 0x2e, 0xe9, 0xd7, 0x18, 0x1c,
7720*6236dae4SAndroid Build Coastguard Worker   0xb8, 0x29, 0x2f, 0xd0, 0x1b, 0xbe, 0x34, 0xcb, 0xbb, 0x5b, 0xb7, 0x24,
7721*6236dae4SAndroid Build Coastguard Worker   0xe3, 0x8f, 0xf2, 0xca, 0x0e, 0xe0, 0xb0, 0xfa, 0x0e, 0x49, 0xf4, 0xe9,
7722*6236dae4SAndroid Build Coastguard Worker   0xcd, 0xce, 0x22, 0x55, 0xa2, 0x6e, 0x58, 0x5e, 0x28, 0x32, 0xc6, 0x37,
7723*6236dae4SAndroid Build Coastguard Worker   0x1c, 0x06, 0x21, 0x3f, 0xb6, 0x9b, 0xa7, 0x9f, 0x72, 0x62, 0x6b, 0x37,
7724*6236dae4SAndroid Build Coastguard Worker   0x80, 0x78, 0x49, 0x7a, 0x7e, 0x61, 0x60, 0x4a, 0x09, 0x32, 0x07, 0x0b,
7725*6236dae4SAndroid Build Coastguard Worker   0x0c, 0x96, 0x3e, 0xfa, 0x30, 0xdb, 0xa5, 0x56, 0xef, 0x28, 0xcb, 0x6d,
7726*6236dae4SAndroid Build Coastguard Worker   0xb7, 0xe2, 0x7c, 0x77, 0xe4, 0x33, 0xdf, 0xab, 0x03, 0x1f, 0x76, 0x26,
7727*6236dae4SAndroid Build Coastguard Worker   0x0b, 0x4f, 0xc8, 0xcf, 0x7e, 0x19, 0xe9, 0x9e, 0x3d, 0x9d, 0x74, 0x3b,
7728*6236dae4SAndroid Build Coastguard Worker   0x4f, 0x20, 0xdd, 0xb3, 0xdf, 0x9e, 0x74, 0x3b, 0x41, 0xd2, 0x39, 0x93,
7729*6236dae4SAndroid Build Coastguard Worker   0x8d, 0x7f, 0x42, 0xd2, 0xfd, 0x34, 0xcb, 0xaf, 0x63, 0x58, 0x35, 0xea,
7730*6236dae4SAndroid Build Coastguard Worker   0x49, 0xb1, 0x68, 0x58, 0x61, 0xcf, 0xc2, 0xb7, 0xa6, 0xea, 0x9f, 0x02,
7731*6236dae4SAndroid Build Coastguard Worker   0x27, 0xdc, 0xe8, 0x46, 0x3a, 0x6b, 0xd1, 0x6b, 0x8a, 0xbb, 0xc1, 0x16,
7732*6236dae4SAndroid Build Coastguard Worker   0xad, 0x86, 0x16, 0x3d, 0x8b, 0xc2, 0xb3, 0x63, 0x33, 0x84, 0x64, 0xab,
7733*6236dae4SAndroid Build Coastguard Worker   0x86, 0xe8, 0x02, 0x45, 0x03, 0xb4, 0x23, 0xb3, 0xd1, 0x61, 0x3b, 0xda,
7734*6236dae4SAndroid Build Coastguard Worker   0xbc, 0x9c, 0x04, 0x59, 0xe2, 0x23, 0x7a, 0x0f, 0x39, 0x3b, 0x95, 0x24,
7735*6236dae4SAndroid Build Coastguard Worker   0x8e, 0x5c, 0xf5, 0x14, 0xfe, 0x94, 0xfa, 0xfc, 0xa4, 0x62, 0xfb, 0x18,
7736*6236dae4SAndroid Build Coastguard Worker   0x01, 0xcf, 0x75, 0xe8, 0x4c, 0xda, 0x06, 0xf8, 0x22, 0xf1, 0xfc, 0x7e,
7737*6236dae4SAndroid Build Coastguard Worker   0x8a, 0x03, 0x46, 0x83, 0x12, 0xf4, 0x1b, 0x0a, 0x07, 0x8d, 0x6f, 0x31,
7738*6236dae4SAndroid Build Coastguard Worker   0xe1, 0x5a, 0x67, 0xd8, 0x9a, 0x9c, 0x26, 0x9b, 0x51, 0xfa, 0x20, 0xe6,
7739*6236dae4SAndroid Build Coastguard Worker   0x5d, 0xb5, 0xb5, 0x8b, 0x71, 0x81, 0x02, 0x75, 0xf4, 0x04, 0x1b, 0x39,
7740*6236dae4SAndroid Build Coastguard Worker   0xb4, 0x33, 0x51, 0x3c, 0xd0, 0x2f, 0x3f, 0x36, 0x92, 0x67, 0xc5, 0xcf,
7741*6236dae4SAndroid Build Coastguard Worker   0x00, 0xf7, 0x9b, 0xdf, 0xe6, 0x3b, 0x77, 0x68, 0x7f, 0x10, 0xff, 0xe4,
7742*6236dae4SAndroid Build Coastguard Worker   0xb6, 0x73, 0x8f, 0xe3, 0xeb, 0x34, 0x9d, 0x26, 0x63, 0x02, 0x17, 0xc5,
7743*6236dae4SAndroid Build Coastguard Worker   0xb4, 0xf1, 0xfd, 0x39, 0x45, 0x57, 0x0d, 0xf6, 0xab, 0x14, 0x14, 0x80,
7744*6236dae4SAndroid Build Coastguard Worker   0x5e, 0x71, 0xa1, 0xd4, 0xf8, 0xb6, 0x60, 0x7e, 0x99, 0x50, 0xd8, 0x17,
7745*6236dae4SAndroid Build Coastguard Worker   0xc3, 0xad, 0x83, 0x70, 0x87, 0x73, 0x4d, 0xfa, 0x36, 0x53, 0x40, 0xed,
7746*6236dae4SAndroid Build Coastguard Worker   0x72, 0x60, 0xf3, 0x57, 0x38, 0x53, 0x2b, 0x32, 0x6d, 0x19, 0xa8, 0x50,
7747*6236dae4SAndroid Build Coastguard Worker   0xe2, 0x26, 0xc3, 0x7a, 0xac, 0x76, 0x6f, 0xaf, 0xd6, 0x08, 0x84, 0xd2,
7748*6236dae4SAndroid Build Coastguard Worker   0xde, 0xe8, 0x9d, 0xca, 0x2c, 0x42, 0x7d, 0xad, 0x8d, 0x16, 0x81, 0xf9,
7749*6236dae4SAndroid Build Coastguard Worker   0x25, 0xf7, 0x55, 0x9d, 0x4e, 0x3c, 0xc6, 0xd5, 0x0e, 0x65, 0xd2, 0x90,
7750*6236dae4SAndroid Build Coastguard Worker   0xf6, 0xf0, 0xec, 0xe3, 0xd7, 0x47, 0x47, 0x67, 0xc7, 0xaf, 0x4e, 0x8e,
7751*6236dae4SAndroid Build Coastguard Worker   0xe4, 0x5c, 0x9a, 0x1f, 0xbd, 0x3b, 0xff, 0xe6, 0x04, 0x1b, 0x1e, 0x0f,
7752*6236dae4SAndroid Build Coastguard Worker   0xaf, 0x31, 0x82, 0x28, 0x69, 0x3e, 0xed, 0x63, 0x25, 0x59, 0x38, 0x72,
7753*6236dae4SAndroid Build Coastguard Worker   0xb7, 0x21, 0x7c, 0xc9, 0x10, 0xdd, 0x4a, 0x07, 0xc7, 0xdf, 0x81, 0xf9,
7754*6236dae4SAndroid Build Coastguard Worker   0x72, 0x16, 0x7f, 0xf8, 0xce, 0x6b, 0x7e, 0xdc, 0xc0, 0x9f, 0x68, 0x3b,
7755*6236dae4SAndroid Build Coastguard Worker   0x0f, 0x0c, 0x1a, 0x45, 0x1c, 0xe7, 0x85, 0xdd, 0xc0, 0xb9, 0x05, 0x56,
7756*6236dae4SAndroid Build Coastguard Worker   0xbf, 0xb2, 0x2e, 0x01, 0xc3, 0xcd, 0x72, 0xa3, 0x76, 0xf1, 0x8b, 0x32,
7757*6236dae4SAndroid Build Coastguard Worker   0xb4, 0x5b, 0xc4, 0xf4, 0x6c, 0x23, 0xd2, 0x02, 0xb7, 0x25, 0xcf, 0x43,
7758*6236dae4SAndroid Build Coastguard Worker   0x8b, 0x25, 0xb7, 0x16, 0x5f, 0xbe, 0xf8, 0xfc, 0x3d, 0xf5, 0x51, 0x89,
7759*6236dae4SAndroid Build Coastguard Worker   0xf6, 0xf1, 0xcf, 0xcf, 0x83, 0x86, 0x52, 0x74, 0x56, 0x66, 0x37, 0xa8,
7760*6236dae4SAndroid Build Coastguard Worker   0xf9, 0xc3, 0xc3, 0x9c, 0x56, 0x80, 0xcf, 0xf6, 0x4c, 0xba, 0x81, 0x64,
7761*6236dae4SAndroid Build Coastguard Worker   0xea, 0xe2, 0x28, 0x94, 0xa7, 0x4f, 0xa3, 0x86, 0xdc, 0xa5, 0x94, 0x83,
7762*6236dae4SAndroid Build Coastguard Worker   0x85, 0x21, 0x25, 0x33, 0x5a, 0x06, 0xec, 0xf6, 0xea, 0xe8, 0x7d, 0x37,
7763*6236dae4SAndroid Build Coastguard Worker   0x3a, 0x3b, 0x7a, 0xcb, 0xa0, 0x15, 0x47, 0xef, 0xbe, 0x92, 0xc6, 0x1d,
7764*6236dae4SAndroid Build Coastguard Worker   0xec, 0x6a, 0xa2, 0xce, 0x1d, 0x98, 0xc5, 0xe1, 0x03, 0x59, 0x38, 0x74,
7765*6236dae4SAndroid Build Coastguard Worker   0x84, 0xd7, 0xa9, 0x98, 0xb1, 0xaa, 0x40, 0xad, 0xf9, 0xc3, 0x91, 0xa5,
7766*6236dae4SAndroid Build Coastguard Worker   0x0d, 0x51, 0x61, 0x69, 0x42, 0x0d, 0xea, 0x4e, 0xf7, 0xe0, 0x56, 0x44,
7767*6236dae4SAndroid Build Coastguard Worker   0xfb, 0xf0, 0x47, 0x68, 0x13, 0xc0, 0x34, 0x7d, 0xb3, 0xe6, 0xef, 0x83,
7768*6236dae4SAndroid Build Coastguard Worker   0x68, 0xda, 0xa6, 0x84, 0x41, 0xac, 0x4c, 0xa4, 0x33, 0x6f, 0x05, 0xd0,
7769*6236dae4SAndroid Build Coastguard Worker   0xda, 0x4f, 0xa6, 0x57, 0xda, 0xe7, 0xd2, 0xf8, 0x82, 0xab, 0xcf, 0x53,
7770*6236dae4SAndroid Build Coastguard Worker   0x49, 0x97, 0xa6, 0x7e, 0xa4, 0xfd, 0x37, 0x5d, 0x3c, 0x24, 0x04, 0x28,
7771*6236dae4SAndroid Build Coastguard Worker   0x60, 0xa9, 0x1c, 0x04, 0xae, 0xa3, 0xac, 0xb9, 0x40, 0xe3, 0x09, 0xd8,
7772*6236dae4SAndroid Build Coastguard Worker   0xcc, 0x6c, 0xc4, 0xc8, 0xa0, 0x98, 0xa3, 0x5b, 0x94, 0x98, 0x48, 0x1f,
7773*6236dae4SAndroid Build Coastguard Worker   0x45, 0x2b, 0xff, 0xdf, 0x7a, 0xaf, 0xaa, 0xae, 0xd6, 0xb3, 0xd1, 0xc7,
7774*6236dae4SAndroid Build Coastguard Worker   0xb2, 0x4a, 0x56, 0xda, 0xf7, 0xaf, 0xf3, 0xeb, 0x11, 0xfe, 0x3a, 0x5a,
7775*6236dae4SAndroid Build Coastguard Worker   0xe9, 0x99, 0x47, 0xe5, 0xef, 0xf8, 0xf3, 0xd0, 0x0e, 0xeb, 0xad, 0xcb,
7776*6236dae4SAndroid Build Coastguard Worker   0x6e, 0x22, 0x2d, 0x25, 0x3c, 0x9d, 0xa6, 0x39, 0xda, 0xf5, 0xe3, 0x6c,
7777*6236dae4SAndroid Build Coastguard Worker   0x50, 0x82, 0x4e, 0x6e, 0xfb, 0x07, 0xa7, 0xf9, 0x25, 0xe5, 0x2c, 0x4e,
7778*6236dae4SAndroid Build Coastguard Worker   0xaf, 0x87, 0xd5, 0xe6, 0xa6, 0xdf, 0x7b, 0xd2, 0xa4, 0x1b, 0x9a, 0xb2,
7779*6236dae4SAndroid Build Coastguard Worker   0xd0, 0xb3, 0xaf, 0x0f, 0xfb, 0x7f, 0xda, 0xdc, 0xa4, 0x02, 0xdf, 0x55,
7780*6236dae4SAndroid Build Coastguard Worker   0x2c, 0x95, 0x7c, 0xbe, 0xbb, 0xb9, 0xb5, 0x16, 0xb2, 0x09, 0x3c, 0x3c,
7781*6236dae4SAndroid Build Coastguard Worker   0x5f, 0x06, 0xe1, 0x72, 0xb6, 0x8f, 0xd2, 0x88, 0x05, 0x98, 0xc0, 0x0c,
7782*6236dae4SAndroid Build Coastguard Worker   0x3c, 0x4a, 0xb1, 0x7c, 0x0c, 0xfd, 0xfa, 0xa6, 0x91, 0x32, 0xd5, 0xd5,
7783*6236dae4SAndroid Build Coastguard Worker   0x79, 0xd8, 0x83, 0x0e, 0xf0, 0x60, 0x87, 0xe7, 0xbf, 0xd7, 0x31, 0x1c,
7784*6236dae4SAndroid Build Coastguard Worker   0x6b, 0x2a, 0xa3, 0xb9, 0xf3, 0x4a, 0x63, 0xde, 0x94, 0x10, 0xd5, 0xce,
7785*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x70, 0xd7, 0x95, 0x55, 0x0d, 0x6c, 0xf7, 0x94, 0x5d, 0x56, 0x71,
7786*6236dae4SAndroid Build Coastguard Worker   0x2c, 0xd4, 0x6a, 0xa5, 0x60, 0x63, 0x06, 0xb6, 0x17, 0xa2, 0x94, 0x19,
7787*6236dae4SAndroid Build Coastguard Worker   0x75, 0x22, 0xe6, 0x20, 0x3c, 0x4b, 0x4e, 0xce, 0xa7, 0xa1, 0xbf, 0x73,
7788*6236dae4SAndroid Build Coastguard Worker   0x4c, 0x9a, 0xa3, 0x7a, 0x45, 0x75, 0xa4, 0x9d, 0x74, 0x40, 0x30, 0x74,
7789*6236dae4SAndroid Build Coastguard Worker   0x82, 0x23, 0xfe, 0xd1, 0xa7, 0x9d, 0x5c, 0x18, 0xae, 0x83, 0xe4, 0xf1,
7790*6236dae4SAndroid Build Coastguard Worker   0x27, 0xbe, 0x1c, 0x44, 0xfb, 0x63, 0x98, 0xd6, 0x38, 0x8c, 0x20, 0x74,
7791*6236dae4SAndroid Build Coastguard Worker   0x44, 0xb9, 0x6d, 0xd1, 0xd7, 0x69, 0x39, 0x48, 0xcb, 0xa2, 0x6a, 0x01,
7792*6236dae4SAndroid Build Coastguard Worker   0x8b, 0x10, 0x25, 0x05, 0xf6, 0x0d, 0xab, 0xe8, 0x61, 0x18, 0x69, 0x4b,
7793*6236dae4SAndroid Build Coastguard Worker   0xe6, 0xc7, 0x32, 0x90, 0x25, 0x84, 0xf6, 0x1e, 0x0e, 0xf5, 0x0a, 0xe1,
7794*6236dae4SAndroid Build Coastguard Worker   0x9b, 0xe0, 0xf1, 0xaa, 0x92, 0x8b, 0x14, 0xff, 0x0b, 0x37, 0xcf, 0x05,
7795*6236dae4SAndroid Build Coastguard Worker   0xb5, 0xab, 0xce, 0x92, 0xf1, 0x0a, 0x36, 0x39, 0x6f, 0x1f, 0x52, 0xe1,
7796*6236dae4SAndroid Build Coastguard Worker   0xe4, 0x15, 0xb8, 0x03, 0x78, 0x34, 0x94, 0x3d, 0x04, 0x73, 0x29, 0xf3,
7797*6236dae4SAndroid Build Coastguard Worker   0x90, 0xce, 0x6e, 0x95, 0xd4, 0x3b, 0x11, 0xfc, 0x83, 0x60, 0xdc, 0x55,
7798*6236dae4SAndroid Build Coastguard Worker   0x5e, 0xe3, 0x77, 0x33, 0x5c, 0x13, 0x93, 0x7c, 0xde, 0x76, 0xfc, 0xde,
7799*6236dae4SAndroid Build Coastguard Worker   0xc2, 0x1c, 0x36, 0x49, 0x10, 0x60, 0x1e, 0x4c, 0x6d, 0xe4, 0xa7, 0x1f,
7800*6236dae4SAndroid Build Coastguard Worker   0x1d, 0xdb, 0xf7, 0xe2, 0x2a, 0xad, 0xe1, 0x74, 0xe3, 0x5d, 0x9d, 0x53,
7801*6236dae4SAndroid Build Coastguard Worker   0x5f, 0xdf, 0x0f, 0x95, 0x0f, 0x1e, 0x30, 0xd6, 0xa0, 0x4b, 0x1e, 0x4a,
7802*6236dae4SAndroid Build Coastguard Worker   0x6b, 0x44, 0x7c, 0x94, 0x11, 0xfb, 0x24, 0x04, 0x91, 0x4c, 0x6a, 0x34,
7803*6236dae4SAndroid Build Coastguard Worker   0xd1, 0xb1, 0xd6, 0x15, 0xbd, 0xcc, 0xcf, 0x09, 0xbb, 0xb5, 0xf9, 0x5d,
7804*6236dae4SAndroid Build Coastguard Worker   0xf2, 0xd9, 0x58, 0x52, 0x8f, 0x0e, 0x23, 0xf1, 0xc5, 0x11, 0xd0, 0xca,
7805*6236dae4SAndroid Build Coastguard Worker   0x6d, 0x89, 0x6d, 0x9b, 0x72, 0xdb, 0xfc, 0x6d, 0x9c, 0xce, 0x45, 0xba,
7806*6236dae4SAndroid Build Coastguard Worker   0x97, 0xce, 0x4e, 0xb0, 0xe1, 0x63, 0x6e, 0x16, 0x61, 0xca, 0xd7, 0x4a,
7807*6236dae4SAndroid Build Coastguard Worker   0x9d, 0x16, 0x97, 0x3d, 0x59, 0x77, 0x15, 0xbe, 0xf7, 0x6f, 0x8b, 0xa2,
7808*6236dae4SAndroid Build Coastguard Worker   0x7d, 0xd8, 0x67, 0x78, 0x5c, 0x0c, 0x12, 0xc6, 0x05, 0x32, 0xc1, 0x04,
7809*6236dae4SAndroid Build Coastguard Worker   0xaa, 0xc4, 0x61, 0x77, 0x8a, 0xf5, 0x74, 0x69, 0xbd, 0x90, 0x5f, 0x3e,
7810*6236dae4SAndroid Build Coastguard Worker   0x41, 0x8d, 0xd6, 0xf7, 0x50, 0xdb, 0xcf, 0xd3, 0xbb, 0xfa, 0x61, 0x04,
7811*6236dae4SAndroid Build Coastguard Worker   0xe1, 0x87, 0x18, 0xcf, 0x5a, 0x78, 0x21, 0x70, 0xcf, 0x5f, 0xc2, 0x92,
7812*6236dae4SAndroid Build Coastguard Worker   0xa6, 0x02, 0x9e, 0xea, 0x9d, 0x7b, 0xc3, 0x07, 0xc4, 0x0c, 0xd5, 0xfe,
7813*6236dae4SAndroid Build Coastguard Worker   0xc7, 0x74, 0xc5, 0xef, 0x03, 0x21, 0x52, 0x0f, 0x0c, 0xbf, 0xdf, 0x00,
7814*6236dae4SAndroid Build Coastguard Worker   0x12, 0xbd, 0xcb, 0x26, 0xb3, 0x89, 0x75, 0x7b, 0xd2, 0x7b, 0x78, 0xbe,
7815*6236dae4SAndroid Build Coastguard Worker   0x09, 0x30, 0xd5, 0xf4, 0x47, 0x67, 0x4c, 0xcd, 0x98, 0xcc, 0x91, 0xb6,
7816*6236dae4SAndroid Build Coastguard Worker   0x3f, 0x1c, 0x5b, 0x3d, 0x5b, 0x2c, 0x40, 0x12, 0x53, 0xd4, 0xd0, 0x53,
7817*6236dae4SAndroid Build Coastguard Worker   0x91, 0xcc, 0xb5, 0x78, 0x98, 0x29, 0x88, 0xc1, 0x32, 0x29, 0x2a, 0x25,
7818*6236dae4SAndroid Build Coastguard Worker   0xeb, 0x34, 0xf1, 0x9c, 0x84, 0x04, 0x5d, 0xc0, 0xdd, 0x93, 0x13, 0xee,
7819*6236dae4SAndroid Build Coastguard Worker   0x2a, 0x2b, 0x65, 0x97, 0x14, 0xfe, 0x20, 0xd6, 0x31, 0xd3, 0x25, 0x79,
7820*6236dae4SAndroid Build Coastguard Worker   0x63, 0xe6, 0x87, 0xbf, 0xf3, 0x65, 0x21, 0x42, 0x3e, 0x0d, 0x60, 0xa4,
7821*6236dae4SAndroid Build Coastguard Worker   0xdb, 0x6c, 0x54, 0x5f, 0x51, 0x53, 0x73, 0x35, 0xb1, 0x2b, 0x81, 0xc3,
7822*6236dae4SAndroid Build Coastguard Worker   0xc4, 0x60, 0x5a, 0xe6, 0x03, 0xfe, 0x0c, 0xc2, 0x8e, 0x76, 0xd9, 0x6a,
7823*6236dae4SAndroid Build Coastguard Worker   0xa2, 0x6d, 0xc4, 0xc9, 0x23, 0xe8, 0x52, 0xa7, 0xdb, 0x9d, 0x82, 0x6f,
7824*6236dae4SAndroid Build Coastguard Worker   0xeb, 0xac, 0xcd, 0x1b, 0x0c, 0xe5, 0x04, 0x0e, 0xfc, 0x05, 0x76, 0x2c,
7825*6236dae4SAndroid Build Coastguard Worker   0xf7, 0xec, 0x7e, 0x45, 0xe6, 0xe9, 0xe9, 0x61, 0xc6, 0xe3, 0xb6, 0x72,
7826*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x0d, 0x46, 0xbf, 0x16, 0x09, 0xc9, 0x3d, 0x4b, 0xa8, 0x7b, 0x2a,
7827*6236dae4SAndroid Build Coastguard Worker   0x67, 0x06, 0x10, 0x2a, 0xe7, 0x75, 0x36, 0x2e, 0x82, 0xa1, 0x3f, 0x38,
7828*6236dae4SAndroid Build Coastguard Worker   0xe0, 0x2b, 0x13, 0x1e, 0xe1, 0xed, 0x8a, 0x06, 0x34, 0x10, 0x27, 0xf4,
7829*6236dae4SAndroid Build Coastguard Worker   0x32, 0x91, 0xdf, 0x33, 0x38, 0xf0, 0xca, 0x25, 0x3f, 0xf4, 0x95, 0x7d,
7830*6236dae4SAndroid Build Coastguard Worker   0xc8, 0x2b, 0x13, 0x95, 0x57, 0xf8, 0xce, 0xe1, 0x45, 0xc0, 0x83, 0xab,
7831*6236dae4SAndroid Build Coastguard Worker   0xd7, 0xdd, 0x08, 0xf4, 0xf7, 0xaf, 0xba, 0xd1, 0x39, 0xe8, 0xe2, 0x6b,
7832*6236dae4SAndroid Build Coastguard Worker   0xa4, 0xc0, 0x6f, 0x6e, 0x6c, 0xed, 0x50, 0x9b, 0xa2, 0x11, 0xeb, 0x94,
7833*6236dae4SAndroid Build Coastguard Worker   0x81, 0xf6, 0x70, 0xec, 0x21, 0xda, 0xbc, 0x46, 0x9a, 0xe1, 0xe3, 0x3d,
7834*6236dae4SAndroid Build Coastguard Worker   0x5b, 0x11, 0x84, 0x38, 0x0e, 0x5f, 0x77, 0xa3, 0xed, 0x09, 0xed, 0xf8,
7835*6236dae4SAndroid Build Coastguard Worker   0xe6, 0x57, 0x41, 0xba, 0x13, 0x6b, 0xda, 0xd6, 0x4c, 0xc5, 0x65, 0x36,
7836*6236dae4SAndroid Build Coastguard Worker   0x14, 0x94, 0x52, 0xbc, 0x1d, 0xf1, 0x54, 0x5e, 0x6a, 0x9c, 0xc1, 0x36,
7837*6236dae4SAndroid Build Coastguard Worker   0xac, 0x9e, 0xa6, 0xa1, 0x18, 0x4e, 0x5e, 0x98, 0x86, 0x8d, 0xda, 0x76,
7838*6236dae4SAndroid Build Coastguard Worker   0x03, 0x29, 0x0c, 0x42, 0xfc, 0x0a, 0x9d, 0x38, 0xd4, 0x18, 0x25, 0xc1,
7839*6236dae4SAndroid Build Coastguard Worker   0x42, 0xdc, 0xac, 0x60, 0x9c, 0x58, 0xa7, 0x26, 0xaa, 0xf2, 0x15, 0xbe,
7840*6236dae4SAndroid Build Coastguard Worker   0xa0, 0xe9, 0x86, 0x12, 0x84, 0x2b, 0x42, 0xd1, 0xd3, 0xa0, 0xa9, 0xfd,
7841*6236dae4SAndroid Build Coastguard Worker   0xf1, 0xdf, 0x50, 0xe4, 0xd0, 0xb4, 0xf8, 0xa4, 0x1a, 0xf8, 0x1c, 0xc6,
7842*6236dae4SAndroid Build Coastguard Worker   0x9c, 0xb2, 0xba, 0x51, 0x5b, 0xf3, 0x46, 0x9e, 0x9d, 0xa2, 0x3d, 0x3c,
7843*6236dae4SAndroid Build Coastguard Worker   0x4a, 0xb5, 0xc3, 0xe4, 0x84, 0x62, 0x31, 0x43, 0x6c, 0x79, 0x28, 0x38,
7844*6236dae4SAndroid Build Coastguard Worker   0xb8, 0x48, 0xa3, 0xd8, 0xd0, 0xa8, 0x1a, 0xe3, 0x03, 0x63, 0x50, 0x83,
7845*6236dae4SAndroid Build Coastguard Worker   0x3d, 0x0a, 0x50, 0xd9, 0x0a, 0x9a, 0x8f, 0x4a, 0x32, 0x77, 0x4a, 0x96,
7846*6236dae4SAndroid Build Coastguard Worker   0xb6, 0xa1, 0xc4, 0xea, 0xdf, 0xe8, 0x46, 0xae, 0xe6, 0xcb, 0x3f, 0x23,
7847*6236dae4SAndroid Build Coastguard Worker   0xd0, 0x36, 0x81, 0x4d, 0x96, 0x00, 0x4f, 0x6a, 0xbe, 0xb9, 0xf1, 0xd4,
7848*6236dae4SAndroid Build Coastguard Worker   0x37, 0xdf, 0x2e, 0x96, 0xb8, 0x63, 0x2a, 0x14, 0xcc, 0xaa, 0x3a, 0x0e,
7849*6236dae4SAndroid Build Coastguard Worker   0x74, 0x3c, 0xe3, 0xd4, 0x83, 0xb3, 0xd3, 0xb3, 0xed, 0x35, 0x83, 0x43,
7850*6236dae4SAndroid Build Coastguard Worker   0xc7, 0x0d, 0x7c, 0x04, 0x5b, 0x35, 0x52, 0x70, 0x03, 0x83, 0xba, 0xaa,
7851*6236dae4SAndroid Build Coastguard Worker   0x1d, 0x0a, 0x09, 0x9f, 0xc9, 0xf7, 0x06, 0x0d, 0x53, 0x6d, 0x31, 0x4f,
7852*6236dae4SAndroid Build Coastguard Worker   0xdf, 0xa3, 0x50, 0xad, 0x85, 0xd9, 0x48, 0xe9, 0xee, 0x23, 0xef, 0x9f,
7853*6236dae4SAndroid Build Coastguard Worker   0x15, 0xb6, 0x6c, 0xae, 0x61, 0xba, 0x4e, 0xfb, 0x5a, 0x4a, 0xb4, 0x18,
7854*6236dae4SAndroid Build Coastguard Worker   0x42, 0x21, 0xa5, 0x63, 0xc2, 0x7d, 0x8a, 0x9a, 0xad, 0xb6, 0x11, 0xa8,
7855*6236dae4SAndroid Build Coastguard Worker   0xa1, 0x35, 0x49, 0xce, 0xf4, 0x0e, 0xa4, 0xe4, 0x49, 0x8e, 0x92, 0x7d,
7856*6236dae4SAndroid Build Coastguard Worker   0x90, 0x42, 0xc9, 0xe6, 0x96, 0x66, 0xb5, 0xd1, 0xe4, 0x77, 0x62, 0x94,
7857*6236dae4SAndroid Build Coastguard Worker   0x08, 0xad, 0x45, 0x5a, 0x99, 0x07, 0x73, 0x98, 0xd4, 0xda, 0x12, 0x95,
7858*6236dae4SAndroid Build Coastguard Worker   0x59, 0xcc, 0x34, 0x7e, 0x6e, 0xb8, 0x52, 0x08, 0x47, 0x8c, 0xa0, 0x8d,
7859*6236dae4SAndroid Build Coastguard Worker   0xde, 0x9d, 0xf4, 0xcf, 0x9d, 0x1c, 0x06, 0x3f, 0x70, 0xab, 0x25, 0x9a,
7860*6236dae4SAndroid Build Coastguard Worker   0x4e, 0x12, 0xab, 0x93, 0x69, 0x7d, 0x72, 0xdc, 0x3f, 0xef, 0x85, 0x7a,
7861*6236dae4SAndroid Build Coastguard Worker   0x17, 0xef, 0x45, 0x7d, 0x44, 0x2d, 0x79, 0xed, 0x64, 0xc4, 0x8f, 0xb9,
7862*6236dae4SAndroid Build Coastguard Worker   0x67, 0x0f, 0x3a, 0x59, 0x39, 0x31, 0x83, 0xcc, 0x5e, 0x2e, 0x25, 0xb3,
7863*6236dae4SAndroid Build Coastguard Worker   0xb9, 0x00, 0xfe, 0x24, 0x70, 0x8a, 0x9f, 0xb2, 0x6b, 0x54, 0xaa, 0xb2,
7864*6236dae4SAndroid Build Coastguard Worker   0x35, 0xc8, 0x5f, 0xcd, 0x06, 0xb1, 0xd3, 0x70, 0x87, 0xb5, 0xf7, 0xfb,
7865*6236dae4SAndroid Build Coastguard Worker   0xc9, 0xa0, 0xc0, 0x5a, 0x21, 0xd0, 0x91, 0xae, 0x7d, 0x11, 0xb3, 0x2a,
7866*6236dae4SAndroid Build Coastguard Worker   0x7c, 0xc5, 0x24, 0x92, 0x56, 0x4b, 0x8d, 0x60, 0xdf, 0x30, 0x4a, 0xa9,
7867*6236dae4SAndroid Build Coastguard Worker   0xfb, 0x1c, 0xb9, 0xa1, 0xf1, 0xe9, 0x47, 0x31, 0x17, 0x12, 0xc2, 0xcd,
7868*6236dae4SAndroid Build Coastguard Worker   0x05, 0x01, 0xca, 0x4d, 0x39, 0xb2, 0xd8, 0x04, 0x59, 0xc0, 0x9c, 0x11,
7869*6236dae4SAndroid Build Coastguard Worker   0xe3, 0x70, 0x5f, 0x9c, 0x26, 0xe3, 0x70, 0xa3, 0x76, 0x82, 0x12, 0xee,
7870*6236dae4SAndroid Build Coastguard Worker   0xa3, 0x5a, 0xe9, 0x94, 0xfd, 0xd1, 0x66, 0xd6, 0x73, 0xda, 0xe1, 0xc5,
7871*6236dae4SAndroid Build Coastguard Worker   0xd9, 0x88, 0x6b, 0x76, 0xaa, 0x66, 0xbf, 0x24, 0x46, 0x22, 0x45, 0x01,
7872*6236dae4SAndroid Build Coastguard Worker   0x4a, 0x89, 0x29, 0x08, 0x48, 0x5d, 0xcd, 0xd9, 0x49, 0x76, 0xd9, 0x37,
7873*6236dae4SAndroid Build Coastguard Worker   0x8a, 0x65, 0xe3, 0xef, 0xb8, 0x4c, 0x93, 0x32, 0x1d, 0xba, 0xa1, 0x06,
7874*6236dae4SAndroid Build Coastguard Worker   0x15, 0x21, 0x74, 0x74, 0x3c, 0x34, 0x02, 0xe0, 0xfc, 0xe1, 0xf8, 0xd5,
7875*6236dae4SAndroid Build Coastguard Worker   0x89, 0xa1, 0x97, 0xd0, 0x87, 0x0a, 0x7a, 0xcd, 0x52, 0x11, 0x89, 0x43,
7876*6236dae4SAndroid Build Coastguard Worker   0xaf, 0x00, 0xda, 0x11, 0x2f, 0xe6, 0x3e, 0xcb, 0x33, 0xf8, 0x7e, 0xc4,
7877*6236dae4SAndroid Build Coastguard Worker   0x86, 0xd8, 0x45, 0xc6, 0xaa, 0xd8, 0x95, 0xd5, 0x4e, 0x2a, 0xed, 0xe7,
7878*6236dae4SAndroid Build Coastguard Worker   0x87, 0x34, 0x90, 0x13, 0x7b, 0xad, 0xce, 0xfd, 0x39, 0xd5, 0xd0, 0xcb,
7879*6236dae4SAndroid Build Coastguard Worker   0x6b, 0x9a, 0x22, 0xc4, 0xc2, 0xad, 0x45, 0xdc, 0x62, 0x3a, 0x6a, 0x0f,
7880*6236dae4SAndroid Build Coastguard Worker   0x28, 0x2d, 0x18, 0x40, 0x2d, 0x59, 0x27, 0x54, 0x2a, 0x4f, 0xd3, 0x4c,
7881*6236dae4SAndroid Build Coastguard Worker   0xb9, 0xaf, 0xaa, 0xad, 0x4e, 0x68, 0x62, 0x8c, 0x17, 0xa5, 0xa0, 0x59,
7882*6236dae4SAndroid Build Coastguard Worker   0xad, 0xbe, 0x7e, 0x7f, 0xfa, 0x36, 0x3e, 0x3f, 0x5d, 0x43, 0xae, 0xa2,
7883*6236dae4SAndroid Build Coastguard Worker   0xa1, 0xe7, 0x27, 0x46, 0x56, 0x9a, 0x64, 0xe9, 0xa0, 0x1d, 0x8b, 0x4f,
7884*6236dae4SAndroid Build Coastguard Worker   0x7d, 0xb5, 0x5a, 0x13, 0x28, 0x13, 0xbe, 0x4d, 0x69, 0x7a, 0xfa, 0x96,
7885*6236dae4SAndroid Build Coastguard Worker   0x87, 0x82, 0x91, 0xb3, 0x5a, 0x4a, 0xea, 0x0b, 0xb0, 0xde, 0x30, 0x41,
7886*6236dae4SAndroid Build Coastguard Worker   0x0b, 0xc7, 0xa4, 0x1d, 0x34, 0x0a, 0xc0, 0x06, 0xb3, 0xea, 0x3e, 0x12,
7887*6236dae4SAndroid Build Coastguard Worker   0xdc, 0xb0, 0x8a, 0x2b, 0xb5, 0x7d, 0xb8, 0x39, 0xd3, 0xdc, 0xc4, 0xa0,
7888*6236dae4SAndroid Build Coastguard Worker   0xb4, 0x23, 0xd6, 0x11, 0x23, 0xdf, 0xd4, 0x05, 0x1c, 0xf6, 0xa4, 0x2c,
7889*6236dae4SAndroid Build Coastguard Worker   0x8b, 0x5b, 0xbd, 0xb4, 0x09, 0xfc, 0x10, 0x76, 0x1d, 0xa6, 0x8e, 0xfb,
7890*6236dae4SAndroid Build Coastguard Worker   0x5a, 0xde, 0xcf, 0x07, 0x0c, 0xe3, 0x36, 0x0d, 0x02, 0xa6, 0xbe, 0xb4,
7891*6236dae4SAndroid Build Coastguard Worker   0x8f, 0xd8, 0xd9, 0x29, 0xbc, 0x04, 0xe3, 0xed, 0x8d, 0x8d, 0x87, 0xdc,
7892*6236dae4SAndroid Build Coastguard Worker   0xc4, 0x5a, 0xf5, 0x1e, 0xd7, 0xe5, 0x0c, 0x01, 0xc6, 0xe6, 0xa4, 0xd5,
7893*6236dae4SAndroid Build Coastguard Worker   0x9e, 0xa0, 0x38, 0xa6, 0x42, 0x79, 0xe7, 0x9d, 0xae, 0x74, 0xdf, 0xc1,
7894*6236dae4SAndroid Build Coastguard Worker   0x2c, 0x6a, 0x74, 0x0f, 0x5a, 0x3c, 0xa5, 0x2b, 0x29, 0x50, 0xfb, 0x8b,
7895*6236dae4SAndroid Build Coastguard Worker   0x27, 0x27, 0xa4, 0xdf, 0x20, 0x1a, 0xaf, 0xf0, 0x1a, 0x97, 0xca, 0xdb,
7896*6236dae4SAndroid Build Coastguard Worker   0x62, 0x83, 0x0c, 0x3b, 0x92, 0xc1, 0xf9, 0xd1, 0x8c, 0x55, 0xea, 0x3c,
7897*6236dae4SAndroid Build Coastguard Worker   0x71, 0xce, 0x69, 0x1b, 0xf7, 0xbe, 0xbb, 0x02, 0x7f, 0xc8, 0x72, 0xb5,
7898*6236dae4SAndroid Build Coastguard Worker   0x2e, 0x8b, 0xd1, 0x6c, 0x48, 0x9b, 0x8b, 0x59, 0x15, 0x59, 0x7d, 0x1f,
7899*6236dae4SAndroid Build Coastguard Worker   0x0d, 0xb8, 0xb7, 0x97, 0xa2, 0xa9, 0xe2, 0xd0, 0x16, 0x22, 0x80, 0x5d,
7900*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x6d, 0xad, 0x95, 0x9f, 0x42, 0x00, 0x39, 0x72, 0x7c, 0x93, 0x39,
7901*6236dae4SAndroid Build Coastguard Worker   0x42, 0xa5, 0x4d, 0x29, 0x1b, 0x27, 0x65, 0xdb, 0x51, 0x83, 0xa1, 0xfb,
7902*6236dae4SAndroid Build Coastguard Worker   0x68, 0x55, 0xda, 0x54, 0x78, 0x42, 0x11, 0x9b, 0xd4, 0x52, 0x7b, 0x4e,
7903*6236dae4SAndroid Build Coastguard Worker   0xc9, 0x0f, 0xc3, 0x16, 0x48, 0xc8, 0xf5, 0x94, 0x9c, 0xf5, 0x65, 0x52,
7904*6236dae4SAndroid Build Coastguard Worker   0x81, 0xf0, 0x6b, 0x8e, 0xb7, 0xf6, 0x94, 0x0d, 0x77, 0x77, 0x2f, 0x8a,
7905*6236dae4SAndroid Build Coastguard Worker   0xc9, 0x5b, 0x53, 0xee, 0xd9, 0xc6, 0x8e, 0xcb, 0x84, 0xc8, 0x66, 0x5a,
7906*6236dae4SAndroid Build Coastguard Worker   0xd8, 0xee, 0xf8, 0x25, 0x1a, 0xd8, 0x08, 0x73, 0xb8, 0x43, 0x6b, 0x31,
7907*6236dae4SAndroid Build Coastguard Worker   0x45, 0x42, 0x73, 0x96, 0xa3, 0xb3, 0xaf, 0x22, 0x6f, 0xa9, 0x89, 0xce,
7908*6236dae4SAndroid Build Coastguard Worker   0x25, 0x55, 0xb0, 0x46, 0x88, 0x2a, 0x30, 0x0a, 0xa5, 0x2f, 0x8f, 0x32,
7909*6236dae4SAndroid Build Coastguard Worker   0x8c, 0x33, 0xe1, 0xe5, 0xad, 0x1f, 0x8d, 0x56, 0x15, 0x0b, 0xcc, 0xc0,
7910*6236dae4SAndroid Build Coastguard Worker   0xc0, 0x9c, 0xc8, 0xaf, 0xf6, 0x0c, 0x58, 0x19, 0x0a, 0xe7, 0xd6, 0x70,
7911*6236dae4SAndroid Build Coastguard Worker   0xdb, 0xdf, 0x7d, 0xe7, 0xdc, 0xcf, 0xe8, 0xcf, 0x58, 0x9b, 0x87, 0x54,
7912*6236dae4SAndroid Build Coastguard Worker   0x2b, 0x28, 0x21, 0xa3, 0xc2, 0x9d, 0xae, 0xa7, 0xf9, 0x33, 0x5f, 0x83,
7913*6236dae4SAndroid Build Coastguard Worker   0x8a, 0x43, 0xd0, 0x08, 0xe4, 0x71, 0x15, 0xdf, 0xf0, 0x65, 0x4a, 0xf2,
7914*6236dae4SAndroid Build Coastguard Worker   0x5b, 0xa0, 0x6d, 0xb3, 0x6e, 0x64, 0x93, 0x09, 0x59, 0xe5, 0x89, 0x8f,
7915*6236dae4SAndroid Build Coastguard Worker   0x03, 0x05, 0x1a, 0x74, 0x75, 0x68, 0x1a, 0xa0, 0xa9, 0x87, 0x6c, 0x12,
7916*6236dae4SAndroid Build Coastguard Worker   0xab, 0xb2, 0x2e, 0xd9, 0x2b, 0x8c, 0xa2, 0x4a, 0x67, 0xc2, 0x59, 0x1c,
7917*6236dae4SAndroid Build Coastguard Worker   0x68, 0x33, 0x63, 0xd9, 0xb2, 0x12, 0x5c, 0x5e, 0x5a, 0x17, 0x49, 0x79,
7918*6236dae4SAndroid Build Coastguard Worker   0x6e, 0x13, 0xcd, 0x85, 0x45, 0xc3, 0x32, 0x15, 0x1f, 0xa0, 0x28, 0x84,
7919*6236dae4SAndroid Build Coastguard Worker   0xa1, 0xf6, 0x4e, 0x88, 0x09, 0x2e, 0x80, 0x15, 0x1c, 0xa7, 0x49, 0x9c,
7920*6236dae4SAndroid Build Coastguard Worker   0x53, 0x69, 0x5b, 0xe0, 0xb4, 0xf6, 0x8c, 0xf1, 0x2d, 0xb2, 0x3a, 0xe4,
7921*6236dae4SAndroid Build Coastguard Worker   0x13, 0xd1, 0x06, 0x10, 0xd4, 0xc8, 0xa3, 0x60, 0x6f, 0xf6, 0x30, 0x9d,
7922*6236dae4SAndroid Build Coastguard Worker   0xd6, 0xe6, 0xea, 0xfc, 0x8b, 0x72, 0x6d, 0xaf, 0x11, 0xfc, 0xf7, 0x8d,
7923*6236dae4SAndroid Build Coastguard Worker   0xdf, 0x16, 0xd3, 0x53, 0x83, 0x32, 0x6c, 0x36, 0x87, 0x09, 0xea, 0x57,
7924*6236dae4SAndroid Build Coastguard Worker   0x2c, 0x91, 0xaf, 0x30, 0x00, 0xa5, 0x19, 0x4f, 0x6c, 0xea, 0x10, 0xae,
7925*6236dae4SAndroid Build Coastguard Worker   0xc0, 0x04, 0x2d, 0x6c, 0xbf, 0x72, 0xdb, 0x4a, 0x06, 0xcc, 0x87, 0xa5,
7926*6236dae4SAndroid Build Coastguard Worker   0x60, 0x87, 0xed, 0x15, 0xc2, 0x4e, 0xed, 0x49, 0x72, 0x17, 0xd3, 0x63,
7927*6236dae4SAndroid Build Coastguard Worker   0xd5, 0xbc, 0xec, 0x47, 0x9b, 0x22, 0x20, 0x4d, 0xd1, 0x5d, 0x9a, 0x91,
7928*6236dae4SAndroid Build Coastguard Worker   0xbe, 0x70, 0xd1, 0x48, 0xb4, 0xe4, 0xf2, 0x4e, 0x42, 0xf7, 0xa5, 0x44,
7929*6236dae4SAndroid Build Coastguard Worker   0xf4, 0x70, 0xd1, 0x94, 0xa2, 0xaf, 0xb8, 0x38, 0x1f, 0x02, 0x12, 0xc6,
7930*6236dae4SAndroid Build Coastguard Worker   0x87, 0x01, 0xc1, 0x74, 0x65, 0xe4, 0x46, 0x7a, 0xaa, 0x67, 0x00, 0x54,
7931*6236dae4SAndroid Build Coastguard Worker   0xd1, 0xf6, 0xc6, 0x26, 0x98, 0xde, 0x1b, 0x5b, 0xe8, 0xfa, 0x85, 0xff,
7932*6236dae4SAndroid Build Coastguard Worker   0x6e, 0x1b, 0x94, 0xcd, 0xc6, 0x31, 0xe1, 0x67, 0xc9, 0xbb, 0xc8, 0x8e,
7933*6236dae4SAndroid Build Coastguard Worker   0x12, 0x38, 0x4b, 0x77, 0x77, 0x01, 0x8c, 0xd4, 0x26, 0x6c, 0x40, 0xbc,
7934*6236dae4SAndroid Build Coastguard Worker   0x60, 0xaa, 0x96, 0x90, 0x94, 0x9c, 0x30, 0xf3, 0x22, 0x1f, 0x5a, 0xfa,
7935*6236dae4SAndroid Build Coastguard Worker   0x2c, 0xf8, 0xbd, 0x41, 0x04, 0x1e, 0x42, 0x18, 0x6a, 0x77, 0x7a, 0x90,
7936*6236dae4SAndroid Build Coastguard Worker   0x0d, 0x77, 0x31, 0x9d, 0x69, 0x13, 0x91, 0x2a, 0x82, 0xc2, 0x0e, 0x2b,
7937*6236dae4SAndroid Build Coastguard Worker   0xbd, 0x9b, 0x57, 0xc5, 0x8a, 0xbb, 0xac, 0x65, 0x97, 0xdc, 0xc5, 0x21,
7938*6236dae4SAndroid Build Coastguard Worker   0x55, 0x59, 0xa3, 0xf0, 0x14, 0xac, 0x7c, 0x24, 0xf5, 0x1e, 0xe6, 0xee,
7939*6236dae4SAndroid Build Coastguard Worker   0x01, 0x7f, 0x23, 0x11, 0xbd, 0xc3, 0xcc, 0xbf, 0xd0, 0x5c, 0x77, 0xfe,
7940*6236dae4SAndroid Build Coastguard Worker   0xd7, 0x76, 0xd0, 0xb7, 0xa1, 0xbd, 0xdd, 0x14, 0x01, 0x07, 0x55, 0x52,
7941*6236dae4SAndroid Build Coastguard Worker   0xab, 0x93, 0x36, 0xb2, 0x58, 0x68, 0x42, 0xf2, 0x7c, 0x28, 0x44, 0xc7,
7942*6236dae4SAndroid Build Coastguard Worker   0xbe, 0x2b, 0xeb, 0xcb, 0xaa, 0xd2, 0xb1, 0x60, 0xba, 0xce, 0xaa, 0x65,
7943*6236dae4SAndroid Build Coastguard Worker   0xb3, 0x19, 0x4f, 0x1e, 0x54, 0x14, 0x30, 0x5e, 0xa5, 0x34, 0xd9, 0x97,
7944*6236dae4SAndroid Build Coastguard Worker   0xbf, 0x78, 0xe1, 0x8d, 0xe3, 0xb7, 0x07, 0x62, 0x04, 0x53, 0x43, 0xfa,
7945*6236dae4SAndroid Build Coastguard Worker   0xb5, 0x86, 0x0b, 0x92, 0xc6, 0x30, 0x74, 0x15, 0xdd, 0x6e, 0x34, 0x63,
7946*6236dae4SAndroid Build Coastguard Worker   0x50, 0x0b, 0xba, 0x3b, 0xda, 0x37, 0x72, 0xe3, 0x7a, 0x9c, 0xcb, 0x14,
7947*6236dae4SAndroid Build Coastguard Worker   0x38, 0x8c, 0x37, 0xb6, 0xa6, 0xf0, 0x19, 0x8c, 0x45, 0x6b, 0x72, 0xcc,
7948*6236dae4SAndroid Build Coastguard Worker   0x49, 0x49, 0xe0, 0xd8, 0x06, 0x2a, 0x15, 0xc6, 0x10, 0xd0, 0xd9, 0xb5,
7949*6236dae4SAndroid Build Coastguard Worker   0x26, 0x12, 0x1d, 0xd4, 0xa8, 0xe9, 0x72, 0x57, 0x64, 0x14, 0xaf, 0xb8,
7950*6236dae4SAndroid Build Coastguard Worker   0xec, 0x36, 0x53, 0x10, 0x11, 0x90, 0x1f, 0x90, 0x10, 0xa6, 0xc0, 0xa2,
7951*6236dae4SAndroid Build Coastguard Worker   0x31, 0x4f, 0x76, 0xa0, 0x4d, 0x9c, 0x2c, 0x40, 0x27, 0xeb, 0xcf, 0xab,
7952*6236dae4SAndroid Build Coastguard Worker   0x94, 0xbe, 0xa4, 0x70, 0xab, 0xac, 0x30, 0x62, 0xc8, 0x9b, 0x88, 0x2c,
7953*6236dae4SAndroid Build Coastguard Worker   0x2a, 0xc2, 0x77, 0x8d, 0xb6, 0xb6, 0x5f, 0xec, 0x74, 0xf9, 0xef, 0xbb,
7954*6236dae4SAndroid Build Coastguard Worker   0x1b, 0x2f, 0x99, 0x17, 0x8f, 0x8f, 0xce, 0x5f, 0x47, 0xa3, 0x12, 0x4e,
7955*6236dae4SAndroid Build Coastguard Worker   0x42, 0xdb, 0x67, 0x8f, 0x3f, 0x8b, 0xd3, 0xa4, 0xbc, 0x02, 0xdb, 0x0d,
7956*6236dae4SAndroid Build Coastguard Worker   0xb1, 0xd5, 0x63, 0x6c, 0xf4, 0x1d, 0x6f, 0x6c, 0x84, 0xb2, 0x02, 0x7f,
7957*6236dae4SAndroid Build Coastguard Worker   0xe7, 0xc8, 0x4c, 0x93, 0xd7, 0x56, 0xb0, 0xef, 0xf0, 0x67, 0xff, 0xbe,
7958*6236dae4SAndroid Build Coastguard Worker   0x12, 0x65, 0x93, 0x64, 0xfa, 0xe8, 0x52, 0xed, 0xed, 0x56, 0xdd, 0x3e,
7959*6236dae4SAndroid Build Coastguard Worker   0x5a, 0x62, 0x31, 0x6e, 0xe3, 0xfc, 0x3e, 0x72, 0x4d, 0x86, 0x4d, 0xd4,
7960*6236dae4SAndroid Build Coastguard Worker   0x82, 0x91, 0xc7, 0x1b, 0x79, 0x58, 0xca, 0x1e, 0x6c, 0x1a, 0xf2, 0x1b,
7961*6236dae4SAndroid Build Coastguard Worker   0x01, 0x0f, 0x49, 0x5b, 0x5f, 0xb4, 0xc8, 0xc5, 0xab, 0x6c, 0xfd, 0xd5,
7962*6236dae4SAndroid Build Coastguard Worker   0xf7, 0x6b, 0x74, 0xff, 0xa0, 0xdf, 0x78, 0x30, 0xc1, 0x60, 0xcb, 0x48,
7963*6236dae4SAndroid Build Coastguard Worker   0x8d, 0xbf, 0x20, 0x44, 0x63, 0x25, 0x00, 0x54, 0x65, 0x8a, 0x7d, 0x26,
7964*6236dae4SAndroid Build Coastguard Worker   0x58, 0x8f, 0xce, 0x59, 0x46, 0x3f, 0xad, 0x05, 0x87, 0x25, 0x0b, 0xde,
7965*6236dae4SAndroid Build Coastguard Worker   0xc0, 0x5f, 0x38, 0xb4, 0x4d, 0xb1, 0x91, 0x2f, 0x79, 0x14, 0xfc, 0x0e,
7966*6236dae4SAndroid Build Coastguard Worker   0xf0, 0x8b, 0x1a, 0x70, 0xd0, 0x88, 0xe5, 0x70, 0x2a, 0xb8, 0x48, 0xfc,
7967*6236dae4SAndroid Build Coastguard Worker   0x6f, 0xd4, 0x6e, 0xbc, 0xdd, 0x20, 0x95, 0xe7, 0x89, 0xbb, 0x61, 0x95,
7968*6236dae4SAndroid Build Coastguard Worker   0x4b, 0x76, 0xd1, 0xd3, 0x44, 0x0d, 0x16, 0x63, 0xa0, 0xf8, 0x0c, 0x8f,
7969*6236dae4SAndroid Build Coastguard Worker   0x6a, 0x73, 0x16, 0x4b, 0x10, 0x88, 0x66, 0xda, 0x26, 0xd0, 0xaf, 0x49,
7970*6236dae4SAndroid Build Coastguard Worker   0x1f, 0xdc, 0x01, 0x8f, 0x3e, 0xf8, 0x50, 0x4c, 0x96, 0x15, 0xf5, 0x0c,
7971*6236dae4SAndroid Build Coastguard Worker   0x0f, 0x13, 0xe8, 0x5b, 0x17, 0x29, 0x94, 0x7a, 0x04, 0x20, 0xbe, 0xa5,
7972*6236dae4SAndroid Build Coastguard Worker   0xba, 0xb0, 0x41, 0xf5, 0xc8, 0xa6, 0x18, 0x4b, 0x82, 0xe3, 0x69, 0x6b,
7973*6236dae4SAndroid Build Coastguard Worker   0x64, 0x83, 0x77, 0x09, 0x99, 0x71, 0x03, 0xea, 0x28, 0x81, 0xf2, 0x0a,
7974*6236dae4SAndroid Build Coastguard Worker   0x8c, 0x52, 0xf4, 0x7e, 0x89, 0x42, 0x79, 0x81, 0x26, 0x31, 0x0a, 0x9c,
7975*6236dae4SAndroid Build Coastguard Worker   0x5a, 0x83, 0xcb, 0xea, 0x8d, 0xd0, 0xf1, 0x3d, 0x15, 0x8d, 0x3c, 0x75,
7976*6236dae4SAndroid Build Coastguard Worker   0xef, 0x0f, 0xcf, 0xce, 0xa3, 0xf3, 0x53, 0xd7, 0xc3, 0xc4, 0x98, 0x83,
7977*6236dae4SAndroid Build Coastguard Worker   0x04, 0xc9, 0x02, 0x46, 0x72, 0x19, 0x8e, 0xbb, 0xe8, 0x44, 0x6d, 0x3f,
7978*6236dae4SAndroid Build Coastguard Worker   0x6c, 0x71, 0xcf, 0xf0, 0x75, 0x4f, 0x45, 0x0e, 0x53, 0x41, 0xc6, 0x6b,
7979*6236dae4SAndroid Build Coastguard Worker   0x52, 0x2b, 0x00, 0x30, 0x41, 0xd4, 0x6b, 0xc7, 0x20, 0xd9, 0x02, 0x20,
7980*6236dae4SAndroid Build Coastguard Worker   0xcb, 0xad, 0x65, 0x07, 0x70, 0xf5, 0x50, 0xc4, 0xd3, 0xab, 0x02, 0x99,
7981*6236dae4SAndroid Build Coastguard Worker   0xb0, 0x5a, 0xee, 0x61, 0x20, 0x7a, 0x38, 0xad, 0x0f, 0xe7, 0x72, 0x93,
7982*6236dae4SAndroid Build Coastguard Worker   0x8c, 0xb3, 0x91, 0x43, 0x95, 0x60, 0xa8, 0x40, 0x50, 0xed, 0xf4, 0x19,
7983*6236dae4SAndroid Build Coastguard Worker   0x4a, 0xb5, 0xb9, 0xc4, 0x52, 0x2f, 0x26, 0x17, 0xd2, 0x4b, 0x3d, 0x00,
7984*6236dae4SAndroid Build Coastguard Worker   0x92, 0x54, 0x81, 0xa1, 0xb5, 0x71, 0x72, 0xe9, 0xdb, 0x98, 0x4e, 0x0e,
7985*6236dae4SAndroid Build Coastguard Worker   0x8f, 0x83, 0xc4, 0x51, 0xdb, 0xbd, 0xc4, 0xe9, 0xf9, 0xfb, 0x39, 0x0f,
7986*6236dae4SAndroid Build Coastguard Worker   0x85, 0x99, 0x76, 0x86, 0x1c, 0x57, 0xb8, 0x76, 0x4a, 0xc9, 0xcb, 0x10,
7987*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x86, 0xfb, 0xfc, 0x14, 0x56, 0xc2, 0xb7, 0xf6, 0xf5, 0x49, 0x87,
7988*6236dae4SAndroid Build Coastguard Worker   0xaa, 0xc5, 0xde, 0x8d, 0xa3, 0x01, 0xea, 0x4f, 0xdd, 0x38, 0x6b, 0xfe,
7989*6236dae4SAndroid Build Coastguard Worker   0x19, 0x5b, 0x04, 0xd3, 0xf1, 0x32, 0x20, 0xfb, 0x69, 0xdc, 0x07, 0xa4,
7990*6236dae4SAndroid Build Coastguard Worker   0x8d, 0x11, 0x37, 0x4e, 0x77, 0xed, 0x28, 0xa5, 0xf7, 0x6d, 0x03, 0x3f,
7991*6236dae4SAndroid Build Coastguard Worker   0xf2, 0xf2, 0x91, 0x7b, 0x03, 0xef, 0x6e, 0xf8, 0x95, 0x8f, 0xc6, 0x40,
7992*6236dae4SAndroid Build Coastguard Worker   0x2e, 0x63, 0xce, 0xe1, 0x7a, 0x9f, 0x4e, 0x53, 0x92, 0x54, 0x4e, 0x3b,
7993*6236dae4SAndroid Build Coastguard Worker   0x06, 0xf7, 0xda, 0x34, 0x00, 0x92, 0xe4, 0xe7, 0x93, 0x73, 0xeb, 0x69,
7994*6236dae4SAndroid Build Coastguard Worker   0xab, 0x73, 0xf9, 0x89, 0xfd, 0xc1, 0xe2, 0xb2, 0x95, 0x96, 0xb5, 0x2a,
7995*6236dae4SAndroid Build Coastguard Worker   0x22, 0xb9, 0x60, 0x47, 0x8d, 0xe8, 0x6f, 0xde, 0xbf, 0xfe, 0x9b, 0xee,
7996*6236dae4SAndroid Build Coastguard Worker   0xd7, 0x5a, 0x57, 0xf8, 0xd6, 0xb3, 0xac, 0xf8, 0x3b, 0x4e, 0x2e, 0x89,
7997*6236dae4SAndroid Build Coastguard Worker   0x0d, 0xb0, 0x0b, 0xee, 0x6f, 0x63, 0xf9, 0xfc, 0x2f, 0x01, 0x5c, 0xf2,
7998*6236dae4SAndroid Build Coastguard Worker   0x81, 0x86, 0xb8, 0xa7, 0x65, 0xb4, 0x8a, 0x49, 0x3d, 0xf0, 0x5c, 0x5f,
7999*6236dae4SAndroid Build Coastguard Worker   0xbc, 0x5c, 0xdb, 0xbd, 0x5d, 0xf2, 0x29, 0xbf, 0x3e, 0xdc, 0xdd, 0xde,
8000*6236dae4SAndroid Build Coastguard Worker   0xda, 0x5c, 0xeb, 0x45, 0xab, 0xad, 0x8b, 0x7b, 0x2d, 0xb8, 0x4c, 0x77,
8001*6236dae4SAndroid Build Coastguard Worker   0x95, 0x4a, 0x78, 0x26, 0x75, 0x7a, 0x37, 0x45, 0x8e, 0x5e, 0x3d, 0xfa,
8002*6236dae4SAndroid Build Coastguard Worker   0xee, 0xec, 0x9d, 0xb7, 0x46, 0x58, 0x93, 0x97, 0xb6, 0x35, 0x6f, 0x8d,
8003*6236dae4SAndroid Build Coastguard Worker   0xd6, 0x4e, 0x69, 0x8c, 0xaf, 0x35, 0x31, 0x88, 0x39, 0x1b, 0x05, 0x12,
8004*6236dae4SAndroid Build Coastguard Worker   0xa3, 0x5e, 0x97, 0x19, 0xda, 0xd7, 0x1d, 0x24, 0x49, 0xe7, 0xa4, 0xc8,
8005*6236dae4SAndroid Build Coastguard Worker   0x47, 0x60, 0x9d, 0x9e, 0x62, 0x9b, 0x9f, 0xb4, 0x03, 0xc6, 0xf3, 0x83,
8006*6236dae4SAndroid Build Coastguard Worker   0xab, 0x7b, 0xec, 0x69, 0x69, 0x5e, 0x41, 0x39, 0x58, 0x10, 0x0b, 0x8e,
8007*6236dae4SAndroid Build Coastguard Worker   0x45, 0xfc, 0xb6, 0x4b, 0xef, 0xe6, 0x7e, 0x66, 0xf0, 0x5b, 0xfa, 0x21,
8008*6236dae4SAndroid Build Coastguard Worker   0xb5, 0xd5, 0x34, 0x70, 0x80, 0x57, 0x33, 0xf4, 0xcc, 0x60, 0xa8, 0xb0,
8009*6236dae4SAndroid Build Coastguard Worker   0x0e, 0x25, 0x49, 0x3c, 0x38, 0x45, 0xfa, 0x8c, 0x7b, 0xe4, 0xee, 0x62,
8010*6236dae4SAndroid Build Coastguard Worker   0x8a, 0x96, 0xa0, 0x93, 0x7e, 0x9f, 0x42, 0xcb, 0xa1, 0x54, 0x28, 0xb6,
8011*6236dae4SAndroid Build Coastguard Worker   0x58, 0xdf, 0xfe, 0xf5, 0xfc, 0x7c, 0x2d, 0x98, 0xac, 0x40, 0xaf, 0xaf,
8012*6236dae4SAndroid Build Coastguard Worker   0x6a, 0xb4, 0x7d, 0x8d, 0x55, 0x25, 0x4e, 0x43, 0x29, 0x3c, 0x5e, 0xe3,
8013*6236dae4SAndroid Build Coastguard Worker   0xbc, 0x04, 0x63, 0xd3, 0xd2, 0x63, 0xd6, 0x9b, 0x92, 0x35, 0x2b, 0x6a,
8014*6236dae4SAndroid Build Coastguard Worker   0x39, 0xe3, 0x83, 0x00, 0x88, 0xbb, 0x21, 0x0f, 0x88, 0x89, 0x2b, 0x1b,
8015*6236dae4SAndroid Build Coastguard Worker   0xdf, 0x05, 0xf7, 0xaf, 0x48, 0xf2, 0x66, 0x07, 0x3f, 0x12, 0x99, 0x74,
8016*6236dae4SAndroid Build Coastguard Worker   0x13, 0xa4, 0x77, 0x58, 0x47, 0x84, 0xf6, 0xf3, 0x33, 0xdf, 0xf2, 0x3b,
8017*6236dae4SAndroid Build Coastguard Worker   0x90, 0x42, 0x5a, 0x35, 0x74, 0x39, 0x4e, 0x60, 0x5a, 0xa2, 0xbe, 0xb6,
8018*6236dae4SAndroid Build Coastguard Worker   0x85, 0x15, 0xdd, 0x60, 0x7e, 0x40, 0xe8, 0xb6, 0xe6, 0x6c, 0x01, 0xbe,
8019*6236dae4SAndroid Build Coastguard Worker   0x88, 0xdb, 0xf9, 0x02, 0x6e, 0x7e, 0x00, 0x1d, 0x54, 0xcc, 0x10, 0x90,
8020*6236dae4SAndroid Build Coastguard Worker   0xe8, 0xbf, 0xef, 0x6a, 0x70, 0x32, 0x06, 0xe6, 0xa7, 0x0c, 0xb8, 0x49,
8021*6236dae4SAndroid Build Coastguard Worker   0x02, 0xad, 0x70, 0x7e, 0xdb, 0xf3, 0x66, 0x82, 0xfb, 0x0d, 0xde, 0xdf,
8022*6236dae4SAndroid Build Coastguard Worker   0x7d, 0x11, 0xe0, 0xfd, 0x77, 0xa7, 0xe7, 0x47, 0x7b, 0x74, 0xe9, 0x5b,
8023*6236dae4SAndroid Build Coastguard Worker   0x04, 0x77, 0xe9, 0xad, 0x2d, 0xb5, 0x07, 0x58, 0x2c, 0x9e, 0x0b, 0x5e,
8024*6236dae4SAndroid Build Coastguard Worker   0x0d, 0x0a, 0x49, 0xdd, 0xe8, 0x6e, 0x48, 0xe2, 0x50, 0x8d, 0x25, 0x9e,
8025*6236dae4SAndroid Build Coastguard Worker   0x52, 0x0e, 0xd5, 0xd5, 0x73, 0xfb, 0x16, 0x12, 0x72, 0x6c, 0xe6, 0x70,
8026*6236dae4SAndroid Build Coastguard Worker   0x0a, 0x6d, 0xb8, 0x8f, 0xc6, 0x4d, 0x90, 0xcd, 0x84, 0x82, 0xcc, 0x9a,
8027*6236dae4SAndroid Build Coastguard Worker   0xb7, 0xc7, 0x43, 0xac, 0x7f, 0x92, 0x8b, 0xa9, 0xf7, 0x88, 0x73, 0xe2,
8028*6236dae4SAndroid Build Coastguard Worker   0x1c, 0x8b, 0xb9, 0x21, 0xee, 0xf9, 0xca, 0xa3, 0x0d, 0x56, 0xf7, 0x5a,
8029*6236dae4SAndroid Build Coastguard Worker   0x87, 0x4d, 0x5c, 0x53, 0x18, 0xa1, 0x99, 0x83, 0x3d, 0x8f, 0x21, 0x1a,
8030*6236dae4SAndroid Build Coastguard Worker   0x3d, 0x57, 0x16, 0x1e, 0x5e, 0x1d, 0x54, 0x6a, 0x36, 0x8b, 0xf3, 0xc6,
8031*6236dae4SAndroid Build Coastguard Worker   0x44, 0x63, 0xe3, 0x13, 0xdf, 0xd9, 0x61, 0x3c, 0xb3, 0xa6, 0xd7, 0x7a,
8032*6236dae4SAndroid Build Coastguard Worker   0x97, 0x2d, 0x21, 0xec, 0xdd, 0x4e, 0xa8, 0x9d, 0xec, 0x05, 0x43, 0xad,
8033*6236dae4SAndroid Build Coastguard Worker   0xc1, 0xfa, 0x82, 0x30, 0x30, 0x02, 0x72, 0xe2, 0xde, 0xbb, 0xdc, 0xc4,
8034*6236dae4SAndroid Build Coastguard Worker   0xf5, 0xe6, 0x6a, 0xa8, 0x62, 0x4c, 0x92, 0xdf, 0x2e, 0x63, 0xb8, 0x60,
8035*6236dae4SAndroid Build Coastguard Worker   0xfa, 0xc0, 0xee, 0x86, 0xf3, 0x42, 0x8f, 0xc2, 0x4e, 0xa1, 0x46, 0x45,
8036*6236dae4SAndroid Build Coastguard Worker   0x36, 0x45, 0x2e, 0xde, 0x34, 0x78, 0xef, 0x19, 0xc1, 0x28, 0x4a, 0xbb,
8037*6236dae4SAndroid Build Coastguard Worker   0x94, 0x3f, 0xd8, 0xc2, 0x75, 0x76, 0x6c, 0xdb, 0x25, 0xe8, 0x42, 0x1f,
8038*6236dae4SAndroid Build Coastguard Worker   0xcc, 0xa4, 0x2b, 0x6f, 0x72, 0x51, 0xca, 0x45, 0xc9, 0x88, 0x20, 0xc9,
8039*6236dae4SAndroid Build Coastguard Worker   0x38, 0x9a, 0x53, 0x9f, 0xf2, 0x56, 0x76, 0x5b, 0x4a, 0x46, 0xd0, 0x7d,
8040*6236dae4SAndroid Build Coastguard Worker   0x20, 0x4f, 0xb2, 0xf9, 0x44, 0xd0, 0xf2, 0x63, 0xed, 0x09, 0x78, 0x7b,
8041*6236dae4SAndroid Build Coastguard Worker   0x55, 0x8c, 0xdd, 0xec, 0x3c, 0x4f, 0xc2, 0xd6, 0x84, 0xbc, 0xe3, 0xb6,
8042*6236dae4SAndroid Build Coastguard Worker   0xf9, 0x50, 0x38, 0x04, 0xd9, 0x77, 0xdc, 0x65, 0x0a, 0x93, 0x0c, 0x10,
8043*6236dae4SAndroid Build Coastguard Worker   0x9c, 0x32, 0xfa, 0xa9, 0x18, 0x88, 0x5f, 0x1b, 0x91, 0x7b, 0x2e, 0xbd,
8044*6236dae4SAndroid Build Coastguard Worker   0x4b, 0x18, 0x7d, 0x6e, 0xd4, 0x4c, 0x08, 0x2e, 0x62, 0x20, 0xc4, 0x68,
8045*6236dae4SAndroid Build Coastguard Worker   0xc6, 0x91, 0x34, 0x9c, 0x8f, 0x14, 0x2a, 0x52, 0xe9, 0x29, 0x05, 0xc4,
8046*6236dae4SAndroid Build Coastguard Worker   0xa3, 0x4b, 0xc2, 0xb3, 0xa6, 0x4a, 0x22, 0xc1, 0x87, 0xf3, 0x61, 0xb8,
8047*6236dae4SAndroid Build Coastguard Worker   0xb6, 0x10, 0x28, 0xce, 0xdd, 0xc6, 0x64, 0x88, 0x0e, 0x66, 0x18, 0x5a,
8048*6236dae4SAndroid Build Coastguard Worker   0xa0, 0x55, 0xb9, 0x6d, 0x8e, 0xad, 0xe7, 0x04, 0x02, 0xce, 0x64, 0x77,
8049*6236dae4SAndroid Build Coastguard Worker   0xbd, 0x44, 0x1f, 0x0d, 0x6d, 0xc1, 0xbb, 0xd4, 0xef, 0x98, 0x32, 0xba,
8050*6236dae4SAndroid Build Coastguard Worker   0x87, 0xb0, 0x7f, 0xc9, 0xf0, 0x5e, 0x75, 0x21, 0xab, 0x38, 0x48, 0x27,
8051*6236dae4SAndroid Build Coastguard Worker   0x17, 0xdb, 0x1d, 0xd9, 0x07, 0xb2, 0xd1, 0x49, 0x60, 0x66, 0x4f, 0x16,
8052*6236dae4SAndroid Build Coastguard Worker   0xc4, 0x6c, 0xfb, 0xbd, 0xd3, 0x6d, 0x0c, 0x2f, 0x6d, 0x2e, 0x93, 0x30,
8053*6236dae4SAndroid Build Coastguard Worker   0x63, 0xde, 0xda, 0xea, 0xbd, 0x5c, 0x16, 0xb1, 0x48, 0x42, 0x9d, 0xda,
8054*6236dae4SAndroid Build Coastguard Worker   0xf8, 0xa6, 0x21, 0xc4, 0xd2, 0x3a, 0xc1, 0xad, 0x5e, 0x04, 0xfe, 0x42,
8055*6236dae4SAndroid Build Coastguard Worker   0xc9, 0xe1, 0x29, 0xd8, 0x83, 0xb3, 0x8a, 0xb3, 0x5e, 0x5a, 0xc5, 0xba,
8056*6236dae4SAndroid Build Coastguard Worker   0x3a, 0x46, 0x64, 0x82, 0xbb, 0xed, 0x3a, 0x9d, 0xb7, 0xe6, 0x09, 0x75,
8057*6236dae4SAndroid Build Coastguard Worker   0xc8, 0x19, 0xf4, 0x4d, 0x83, 0x2a, 0x98, 0x89, 0x17, 0x5f, 0xf1, 0x33,
8058*6236dae4SAndroid Build Coastguard Worker   0x9e, 0xc3, 0xbd, 0x25, 0xc5, 0xfb, 0xb1, 0xdf, 0x2d, 0x00, 0x63, 0x8d,
8059*6236dae4SAndroid Build Coastguard Worker   0xb8, 0xe5, 0xe8, 0xce, 0x5b, 0x56, 0x0a, 0xe8, 0x64, 0xe8, 0x02, 0x5a,
8060*6236dae4SAndroid Build Coastguard Worker   0xec, 0x7f, 0x35, 0x38, 0x59, 0x61, 0xe1, 0x7e, 0x24, 0x68, 0xa9, 0xef,
8061*6236dae4SAndroid Build Coastguard Worker   0x0c, 0x9c, 0xd6, 0x6a, 0xff, 0xec, 0xdd, 0xd1, 0x57, 0xa7, 0x6b, 0x0f,
8062*6236dae4SAndroid Build Coastguard Worker   0x39, 0x51, 0x5d, 0x02, 0x9b, 0xfc, 0xe6, 0x44, 0xcb, 0x2a, 0x24, 0x93,
8063*6236dae4SAndroid Build Coastguard Worker   0x99, 0x14, 0x9c, 0xaf, 0xfa, 0xfd, 0xf8, 0xe0, 0xec, 0x98, 0xd4, 0x89,
8064*6236dae4SAndroid Build Coastguard Worker   0x7e, 0x1f, 0xfe, 0x32, 0xaf, 0x27, 0x25, 0x41, 0xf3, 0x63, 0xbc, 0xf8,
8065*6236dae4SAndroid Build Coastguard Worker   0x1b, 0x72, 0x6d, 0x2b, 0x0e, 0x85, 0xe4, 0x51, 0xa4, 0x54, 0x3f, 0x20,
8066*6236dae4SAndroid Build Coastguard Worker   0x89, 0xc1, 0x44, 0x67, 0x05, 0x97, 0xc3, 0x0f, 0xb4, 0xf5, 0xa6, 0xb3,
8067*6236dae4SAndroid Build Coastguard Worker   0xe3, 0x75, 0xfa, 0x16, 0x16, 0xaf, 0xd0, 0x82, 0xc2, 0x26, 0x90, 0x2a,
8068*6236dae4SAndroid Build Coastguard Worker   0xee, 0x66, 0x2d, 0xdc, 0x56, 0x81, 0xd2, 0xe6, 0x89, 0xf7, 0xb4, 0x7a,
8069*6236dae4SAndroid Build Coastguard Worker   0x06, 0xd4, 0x47, 0xbc, 0x0c, 0x30, 0xd6, 0x29, 0xc1, 0xce, 0x70, 0x81,
8070*6236dae4SAndroid Build Coastguard Worker   0x26, 0x23, 0xa1, 0x63, 0x75, 0x9c, 0x36, 0x21, 0x6a, 0xf9, 0xf2, 0x48,
8071*6236dae4SAndroid Build Coastguard Worker   0xd3, 0xe3, 0xae, 0x0e, 0xe3, 0xfb, 0x1e, 0xb5, 0x55, 0x22, 0xcb, 0xa4,
8072*6236dae4SAndroid Build Coastguard Worker   0x9d, 0x03, 0x1f, 0xcf, 0xa2, 0xbd, 0x15, 0x6e, 0xb3, 0x5c, 0xcc, 0x2e,
8073*6236dae4SAndroid Build Coastguard Worker   0xaf, 0x7c, 0x33, 0x4a, 0xd0, 0xa1, 0x34, 0x62, 0x2b, 0x12, 0x93, 0xb4,
8074*6236dae4SAndroid Build Coastguard Worker   0x3a, 0x98, 0xa5, 0x77, 0xf9, 0xd2, 0x8b, 0x2a, 0xdf, 0xca, 0x94, 0x35,
8075*6236dae4SAndroid Build Coastguard Worker   0x25, 0x92, 0x63, 0x72, 0x24, 0x1e, 0x4e, 0x70, 0x36, 0xd7, 0x76, 0xd4,
8076*6236dae4SAndroid Build Coastguard Worker   0x96, 0x2d, 0xe4, 0xcc, 0x66, 0x95, 0xa8, 0x14, 0x09, 0x13, 0x6e, 0xee,
8077*6236dae4SAndroid Build Coastguard Worker   0xb8, 0x24, 0xa7, 0x5b, 0x94, 0x37, 0x24, 0xc7, 0x92, 0x42, 0x63, 0x80,
8078*6236dae4SAndroid Build Coastguard Worker   0xa1, 0x72, 0x4a, 0xdf, 0xae, 0xc7, 0x74, 0x07, 0x82, 0x12, 0x41, 0x2e,
8079*6236dae4SAndroid Build Coastguard Worker   0x4b, 0x09, 0xb6, 0x10, 0x9e, 0x82, 0xf9, 0x42, 0xaf, 0x71, 0x68, 0xea,
8080*6236dae4SAndroid Build Coastguard Worker   0x72, 0x48, 0x0a, 0x17, 0xa7, 0xd5, 0x87, 0x80, 0x14, 0x5a, 0xf9, 0xe6,
8081*6236dae4SAndroid Build Coastguard Worker   0x15, 0x28, 0x08, 0xa0, 0xe3, 0x91, 0xee, 0x90, 0x77, 0x75, 0x8c, 0x2e,
8082*6236dae4SAndroid Build Coastguard Worker   0x68, 0xe7, 0x12, 0xab, 0xc4, 0x18, 0x01, 0x25, 0x7b, 0x0a, 0x47, 0x85,
8083*6236dae4SAndroid Build Coastguard Worker   0xdc, 0xbe, 0xd3, 0x04, 0x03, 0xc1, 0xab, 0xc9, 0xa0, 0x2a, 0xc6, 0xb3,
8084*6236dae4SAndroid Build Coastguard Worker   0x5a, 0x62, 0xc0, 0xe8, 0xb3, 0xc5, 0x62, 0xcb, 0xb5, 0x48, 0x5d, 0x29,
8085*6236dae4SAndroid Build Coastguard Worker   0x34, 0xb4, 0xcd, 0xaa, 0x0f, 0xb9, 0xe5, 0xc4, 0x48, 0xa5, 0x6a, 0x10,
8086*6236dae4SAndroid Build Coastguard Worker   0x13, 0xef, 0xe0, 0x88, 0xae, 0x48, 0x3d, 0xdc, 0x23, 0x67, 0xa0, 0x29,
8087*6236dae4SAndroid Build Coastguard Worker   0x25, 0xba, 0xdd, 0x68, 0x33, 0x83, 0x00, 0x2b, 0xe8, 0x96, 0x37, 0xc8,
8088*6236dae4SAndroid Build Coastguard Worker   0x63, 0xb0, 0xd8, 0xcb, 0xb4, 0x59, 0x27, 0xd4, 0xbc, 0x6a, 0xfc, 0x3c,
8089*6236dae4SAndroid Build Coastguard Worker   0xbb, 0x30, 0xc7, 0x69, 0x5a, 0xc8, 0x00, 0x8f, 0x1c, 0xa8, 0x75, 0xfa,
8090*6236dae4SAndroid Build Coastguard Worker   0x2d, 0xfe, 0x4c, 0x42, 0xc9, 0x61, 0xe6, 0xf2, 0x5c, 0x9e, 0x99, 0xcc,
8091*6236dae4SAndroid Build Coastguard Worker   0xb4, 0x79, 0xe1, 0x4f, 0x07, 0x31, 0xb5, 0x3b, 0xec, 0xb3, 0x8d, 0xce,
8092*6236dae4SAndroid Build Coastguard Worker   0xd5, 0xc3, 0xa6, 0x0d, 0x33, 0x08, 0xeb, 0x14, 0xf6, 0x2b, 0x16, 0x68,
8093*6236dae4SAndroid Build Coastguard Worker   0x24, 0xea, 0xf1, 0x34, 0x81, 0x56, 0xbe, 0x5f, 0xdf, 0x50, 0x44, 0x6b,
8094*6236dae4SAndroid Build Coastguard Worker   0xec, 0xd1, 0x77, 0x91, 0x50, 0x3a, 0xa5, 0x48, 0x0a, 0xe7, 0x2b, 0xa6,
8095*6236dae4SAndroid Build Coastguard Worker   0xa4, 0xb4, 0x58, 0x3e, 0x39, 0xa8, 0xb5, 0x01, 0xcb, 0x1d, 0x41, 0x4b,
8096*6236dae4SAndroid Build Coastguard Worker   0xf2, 0xde, 0x52, 0xa4, 0xb4, 0x3f, 0xf4, 0x54, 0x53, 0xb2, 0x44, 0xb9,
8097*6236dae4SAndroid Build Coastguard Worker   0xea, 0xa0, 0x1a, 0x9a, 0x56, 0x19, 0x4a, 0xaa, 0xd5, 0x8f, 0xf2, 0x17,
8098*6236dae4SAndroid Build Coastguard Worker   0xf8, 0xc8, 0xb7, 0x59, 0x0e, 0x7a, 0x1f, 0x58, 0xff, 0xb4, 0xe5, 0x9c,
8099*6236dae4SAndroid Build Coastguard Worker   0x4c, 0xe3, 0xcb, 0xa4, 0x72, 0xa5, 0x02, 0x45, 0x12, 0xe4, 0xa9, 0xcd,
8100*6236dae4SAndroid Build Coastguard Worker   0x47, 0xc5, 0x3b, 0x9b, 0xc3, 0x66, 0x06, 0xc4, 0xc6, 0xa6, 0x18, 0xa8,
8101*6236dae4SAndroid Build Coastguard Worker   0x1a, 0x5b, 0xdf, 0x4f, 0x33, 0x3f, 0xc1, 0x60, 0x2c, 0x89, 0x8c, 0x5c,
8102*6236dae4SAndroid Build Coastguard Worker   0x57, 0x42, 0x1d, 0xc9, 0xf2, 0xe8, 0x43, 0x9e, 0xdd, 0xd9, 0xb4, 0x0f,
8103*6236dae4SAndroid Build Coastguard Worker   0x03, 0xeb, 0xec, 0xfa, 0x5e, 0x19, 0xb5, 0x3c, 0x30, 0x3b, 0x2f, 0x84,
8104*6236dae4SAndroid Build Coastguard Worker   0x88, 0xd4, 0xa5, 0x35, 0xae, 0xee, 0xae, 0xd1, 0xd4, 0x2e, 0xea, 0xe9,
8105*6236dae4SAndroid Build Coastguard Worker   0xea, 0xe6, 0x1a, 0x7d, 0x4f, 0xc0, 0x6f, 0x28, 0xb1, 0x61, 0x4e, 0xab,
8106*6236dae4SAndroid Build Coastguard Worker   0xb3, 0x88, 0xc3, 0x85, 0x20, 0x15, 0x2c, 0xae, 0x3c, 0xc5, 0xc3, 0x11,
8107*6236dae4SAndroid Build Coastguard Worker   0x2d, 0x5a, 0xb0, 0xc5, 0x49, 0xa8, 0xd0, 0xd3, 0x26, 0x29, 0x17, 0x0b,
8108*6236dae4SAndroid Build Coastguard Worker   0x31, 0x02, 0x12, 0x8b, 0xa1, 0x7e, 0xa6, 0xd8, 0x6f, 0x89, 0x2a, 0xee,
8109*6236dae4SAndroid Build Coastguard Worker   0xab, 0x68, 0x35, 0x73, 0x3d, 0x64, 0xb9, 0x02, 0x9b, 0x00, 0xed, 0xc6,
8110*6236dae4SAndroid Build Coastguard Worker   0xa3, 0x98, 0xda, 0x62, 0x45, 0xd1, 0x65, 0x59, 0xf8, 0x0a, 0x00, 0x62,
8111*6236dae4SAndroid Build Coastguard Worker   0x22, 0x20, 0x0d, 0xd6, 0x14, 0x08, 0x2b, 0xcd, 0x6f, 0xb2, 0xb2, 0xc8,
8112*6236dae4SAndroid Build Coastguard Worker   0xa9, 0x9d, 0xc3, 0x4d, 0x52, 0x66, 0x94, 0x00, 0xd2, 0x79, 0x73, 0xfa,
8113*6236dae4SAndroid Build Coastguard Worker   0xf6, 0xa8, 0x63, 0x54, 0x5c, 0x42, 0x21, 0xe3, 0xec, 0x01, 0xaf, 0x9b,
8114*6236dae4SAndroid Build Coastguard Worker   0x8a, 0xbb, 0xa5, 0x01, 0xbf, 0x0a, 0x68, 0x2c, 0xc3, 0x6b, 0x4e, 0xa1,
8115*6236dae4SAndroid Build Coastguard Worker   0xcd, 0xa8, 0xec, 0x40, 0x01, 0x2a, 0xc0, 0xb8, 0x95, 0xa4, 0x10, 0xce,
8116*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x43, 0x9f, 0xae, 0xb2, 0x17, 0x5d, 0xee, 0x68, 0xf9, 0x84, 0xba,
8117*6236dae4SAndroid Build Coastguard Worker   0x3f, 0xd1, 0x6f, 0xa9, 0x43, 0x7a, 0x21, 0xce, 0x28, 0xca, 0x97, 0xe6,
8118*6236dae4SAndroid Build Coastguard Worker   0x5c, 0x18, 0x76, 0x69, 0x92, 0x4f, 0x9a, 0x18, 0xc0, 0xde, 0xe3, 0x2b,
8119*6236dae4SAndroid Build Coastguard Worker   0x93, 0x7b, 0x2f, 0x91, 0x35, 0x1d, 0x5f, 0xac, 0x34, 0xf8, 0x2e, 0x5a,
8120*6236dae4SAndroid Build Coastguard Worker   0xa9, 0xd0, 0x9e, 0xa8, 0x57, 0x94, 0xb8, 0x94, 0x16, 0x6d, 0x2f, 0x1d,
8121*6236dae4SAndroid Build Coastguard Worker   0x0f, 0x34, 0x67, 0xde, 0xc7, 0x99, 0xaf, 0x27, 0xf7, 0xd4, 0x33, 0xd7,
8122*6236dae4SAndroid Build Coastguard Worker   0x8c, 0xce, 0x83, 0x3f, 0x45, 0x32, 0x2c, 0x56, 0x3f, 0x4d, 0xf5, 0xd4,
8123*6236dae4SAndroid Build Coastguard Worker   0x83, 0x78, 0x98, 0x89, 0x2d, 0x3b, 0xb6, 0xa6, 0xa4, 0xe6, 0x6f, 0x5a,
8124*6236dae4SAndroid Build Coastguard Worker   0x67, 0x00, 0x36, 0xe5, 0xf5, 0xbd, 0x37, 0xb0, 0x8c, 0x62, 0xc8, 0xd0,
8125*6236dae4SAndroid Build Coastguard Worker   0xbf, 0x36, 0x44, 0x2e, 0x49, 0xc7, 0x8a, 0x46, 0x49, 0x77, 0xaf, 0x3a,
8126*6236dae4SAndroid Build Coastguard Worker   0xcd, 0xf5, 0x2e, 0xc3, 0xe1, 0xe6, 0xf5, 0x09, 0xea, 0x72, 0x1b, 0x29,
8127*6236dae4SAndroid Build Coastguard Worker   0x8d, 0xd6, 0x64, 0x25, 0x42, 0x36, 0xda, 0x64, 0x00, 0xf9, 0x4e, 0xd7,
8128*6236dae4SAndroid Build Coastguard Worker   0x05, 0x37, 0x11, 0x57, 0xaf, 0xdf, 0x7c, 0xcb, 0x66, 0x3a, 0x99, 0x7d,
8129*6236dae4SAndroid Build Coastguard Worker   0xe7, 0xfe, 0x5a, 0xdc, 0xfd, 0xc9, 0x24, 0xa0, 0x68, 0x31, 0x9a, 0xc7,
8130*6236dae4SAndroid Build Coastguard Worker   0xaf, 0x48, 0x49, 0x21, 0xa5, 0x66, 0xf8, 0x60, 0x1e, 0x41, 0xcd, 0x51,
8131*6236dae4SAndroid Build Coastguard Worker   0x21, 0xce, 0x87, 0x35, 0x77, 0x31, 0xc2, 0x89, 0xe1, 0x55, 0x2f, 0x35,
8132*6236dae4SAndroid Build Coastguard Worker   0x70, 0xd8, 0x42, 0x2f, 0xe4, 0x07, 0xa4, 0xe2, 0x2a, 0x5e, 0x99, 0xf4,
8133*6236dae4SAndroid Build Coastguard Worker   0x85, 0xad, 0x66, 0xe5, 0x0d, 0xc1, 0x3a, 0xdc, 0x30, 0x6c, 0x27, 0x77,
8134*6236dae4SAndroid Build Coastguard Worker   0x21, 0x32, 0xdb, 0x61, 0xf7, 0x21, 0xa4, 0xbc, 0x34, 0xa6, 0x88, 0x29,
8135*6236dae4SAndroid Build Coastguard Worker   0xce, 0xa5, 0x80, 0xa1, 0x46, 0x5f, 0xc9, 0x3c, 0x64, 0x7e, 0x9a, 0xe1,
8136*6236dae4SAndroid Build Coastguard Worker   0x66, 0x90, 0xda, 0xbc, 0x22, 0xa5, 0xa2, 0xa2, 0xb6, 0x38, 0x35, 0xd8,
8137*6236dae4SAndroid Build Coastguard Worker   0xcc, 0xf6, 0x2f, 0x71, 0x52, 0x0d, 0xb3, 0x4c, 0x94, 0x37, 0x0c, 0xfd,
8138*6236dae4SAndroid Build Coastguard Worker   0x60, 0x16, 0x42, 0xa0, 0x2f, 0x63, 0xc3, 0x27, 0xaa, 0x1d, 0xa7, 0x47,
8139*6236dae4SAndroid Build Coastguard Worker   0x05, 0x57, 0xa1, 0x71, 0xda, 0x13, 0xa5, 0xfd, 0x71, 0xee, 0x0f, 0xd5,
8140*6236dae4SAndroid Build Coastguard Worker   0x5b, 0x9b, 0x98, 0x0d, 0x30, 0xaf, 0x5f, 0x62, 0x80, 0x7d, 0x21, 0xe1,
8141*6236dae4SAndroid Build Coastguard Worker   0x28, 0xcd, 0xc1, 0xa5, 0xba, 0xbd, 0xbd, 0xdd, 0xec, 0x35, 0xc2, 0xbb,
8142*6236dae4SAndroid Build Coastguard Worker   0x4c, 0x82, 0x18, 0x51, 0x49, 0xab, 0x9a, 0xae, 0x76, 0x78, 0x66, 0xab,
8143*6236dae4SAndroid Build Coastguard Worker   0xb7, 0xe0, 0xc6, 0x5c, 0x6c, 0x70, 0x07, 0x4e, 0xd8, 0xa3, 0x3e, 0x12,
8144*6236dae4SAndroid Build Coastguard Worker   0x3c, 0xb5, 0xc7, 0x8b, 0x86, 0x6b, 0xff, 0x0a, 0x4e, 0xf8, 0xa2, 0x6e,
8145*6236dae4SAndroid Build Coastguard Worker   0x1d, 0xdb, 0x2d, 0xa0, 0xcd, 0xbc, 0x88, 0x93, 0xf1, 0x34, 0x9f, 0xd3,
8146*6236dae4SAndroid Build Coastguard Worker   0xa4, 0x03, 0xc3, 0x06, 0x24, 0xc3, 0x89, 0x5d, 0x0e, 0x4e, 0xce, 0xde,
8147*6236dae4SAndroid Build Coastguard Worker   0x11, 0x38, 0x33, 0xf6, 0x70, 0xcc, 0x2b, 0xce, 0x8e, 0xc1, 0x9f, 0x91,
8148*6236dae4SAndroid Build Coastguard Worker   0xc5, 0xe3, 0xc0, 0xf4, 0x7b, 0xae, 0x55, 0x0a, 0xf0, 0x06, 0x91, 0x20,
8149*6236dae4SAndroid Build Coastguard Worker   0x39, 0xb1, 0x2d, 0x8f, 0x08, 0xb7, 0xcf, 0x58, 0xa2, 0xa2, 0x7b, 0xab,
8150*6236dae4SAndroid Build Coastguard Worker   0xb5, 0xd8, 0x5e, 0x0e, 0x7c, 0xb3, 0x17, 0x99, 0x4f, 0x6b, 0x0f, 0xda,
8151*6236dae4SAndroid Build Coastguard Worker   0xc4, 0x0c, 0x4f, 0x6f, 0xb7, 0x71, 0xcc, 0x0d, 0x00, 0xb5, 0x57, 0xc1,
8152*6236dae4SAndroid Build Coastguard Worker   0x56, 0xa7, 0x06, 0xeb, 0x5c, 0x1c, 0x05, 0x26, 0xdc, 0x2b, 0x69, 0xae,
8153*6236dae4SAndroid Build Coastguard Worker   0x92, 0x1a, 0x44, 0xb4, 0x56, 0x60, 0x9c, 0xe5, 0xb5, 0x32, 0x26, 0xf5,
8154*6236dae4SAndroid Build Coastguard Worker   0xb2, 0xea, 0x58, 0x11, 0xe7, 0xd3, 0xbc, 0x8d, 0x05, 0xab, 0x63, 0x35,
8155*6236dae4SAndroid Build Coastguard Worker   0xab, 0x94, 0xa5, 0x22, 0xc8, 0xcb, 0xb8, 0x7b, 0x54, 0xdd, 0x32, 0xee,
8156*6236dae4SAndroid Build Coastguard Worker   0x6c, 0x6f, 0x01, 0xab, 0xbc, 0xeb, 0xf2, 0x77, 0x07, 0x33, 0x94, 0x8b,
8157*6236dae4SAndroid Build Coastguard Worker   0xad, 0x2f, 0x08, 0x9f, 0xb0, 0x16, 0xcb, 0x4f, 0x50, 0x27, 0xbb, 0x0b,
8158*6236dae4SAndroid Build Coastguard Worker   0x07, 0x2d, 0x13, 0xf1, 0x10, 0xd2, 0x64, 0x02, 0x5a, 0x55, 0xae, 0xf5,
8159*6236dae4SAndroid Build Coastguard Worker   0x44, 0x04, 0x15, 0x5a, 0x65, 0x5e, 0xd6, 0xfd, 0x2c, 0x11, 0x41, 0x6d,
8160*6236dae4SAndroid Build Coastguard Worker   0xb5, 0xad, 0x56, 0x89, 0x11, 0x7f, 0x83, 0x2e, 0x0f, 0x1e, 0x5c, 0x46,
8161*6236dae4SAndroid Build Coastguard Worker   0x8f, 0x42, 0x45, 0xcb, 0x0d, 0xd1, 0xa9, 0x51, 0x01, 0xce, 0xb2, 0x11,
8162*6236dae4SAndroid Build Coastguard Worker   0xeb, 0x45, 0x06, 0xd1, 0xd6, 0x77, 0xe4, 0x17, 0xc2, 0x4e, 0x77, 0x30,
8163*6236dae4SAndroid Build Coastguard Worker   0x05, 0x1f, 0xb3, 0x44, 0x93, 0xfb, 0xb1, 0xc7, 0x30, 0x6c, 0x22, 0x37,
8164*6236dae4SAndroid Build Coastguard Worker   0xf1, 0x54, 0x98, 0x05, 0x7a, 0x1d, 0x5b, 0x30, 0xde, 0xa4, 0xd4, 0x41,
8165*6236dae4SAndroid Build Coastguard Worker   0xeb, 0x83, 0x26, 0x1c, 0xce, 0xc5, 0x5e, 0xd6, 0x4e, 0x56, 0x9c, 0x2d,
8166*6236dae4SAndroid Build Coastguard Worker   0x8b, 0xb3, 0x32, 0x04, 0x0c, 0x56, 0xbb, 0x44, 0x66, 0xb3, 0xb9, 0x40,
8167*6236dae4SAndroid Build Coastguard Worker   0x47, 0xec, 0xcb, 0x4b, 0x27, 0x93, 0x91, 0xb5, 0x14, 0xc5, 0x08, 0xc5,
8168*6236dae4SAndroid Build Coastguard Worker   0xa8, 0x93, 0xd8, 0x93, 0xde, 0x25, 0x30, 0xa3, 0xf3, 0x83, 0x96, 0x37,
8169*6236dae4SAndroid Build Coastguard Worker   0x7d, 0x13, 0xf9, 0x21, 0xcd, 0xa9, 0x64, 0xa8, 0xb9, 0x95, 0x4f, 0x60,
8170*6236dae4SAndroid Build Coastguard Worker   0x76, 0x19, 0xf1, 0x01, 0x5f, 0x97, 0x03, 0xe0, 0xb3, 0x88, 0xa7, 0xa4,
8171*6236dae4SAndroid Build Coastguard Worker   0xb6, 0xdb, 0x82, 0xfd, 0x48, 0xea, 0x94, 0x51, 0x9c, 0x09, 0x93, 0xc8,
8172*6236dae4SAndroid Build Coastguard Worker   0x2d, 0xb0, 0xe8, 0x85, 0xf4, 0x3d, 0x9b, 0x40, 0xa9, 0x3d, 0x87, 0xe0,
8173*6236dae4SAndroid Build Coastguard Worker   0x07, 0x93, 0x45, 0x98, 0xf2, 0xbf, 0x1d, 0xc5, 0xed, 0x5a, 0x1c, 0xa2,
8174*6236dae4SAndroid Build Coastguard Worker   0x9b, 0x1f, 0x3e, 0x81, 0xe0, 0x76, 0xc0, 0x07, 0x69, 0x9e, 0xcf, 0x15,
8175*6236dae4SAndroid Build Coastguard Worker   0xf9, 0xaf, 0x0c, 0x23, 0xa6, 0xd1, 0x3b, 0x5f, 0xde, 0xbf, 0x0b, 0x88,
8176*6236dae4SAndroid Build Coastguard Worker   0x7b, 0x22, 0x9c, 0x87, 0x96, 0x12, 0x2d, 0x90, 0xf6, 0x0e, 0x98, 0x4b,
8177*6236dae4SAndroid Build Coastguard Worker   0x4b, 0x58, 0xbf, 0x43, 0xd1, 0x0e, 0x7f, 0xf8, 0x58, 0x2e, 0x8f, 0x14,
8178*6236dae4SAndroid Build Coastguard Worker   0xf3, 0xa4, 0xd1, 0x7b, 0x9d, 0x06, 0xda, 0xca, 0xfa, 0x6f, 0x2c, 0xe7,
8179*6236dae4SAndroid Build Coastguard Worker   0xf3, 0xc7, 0x8b, 0x79, 0x93, 0xfb, 0xae, 0x22, 0xdd, 0x97, 0xf4, 0xb9,
8180*6236dae4SAndroid Build Coastguard Worker   0x27, 0xe8, 0x19, 0x8e, 0xe2, 0x37, 0x11, 0xf3, 0xf8, 0xc1, 0x69, 0x59,
8181*6236dae4SAndroid Build Coastguard Worker   0x5c, 0x62, 0x5a, 0x09, 0x7a, 0xad, 0x3d, 0x51, 0x7f, 0x6a, 0x02, 0x6e,
8182*6236dae4SAndroid Build Coastguard Worker   0x5c, 0x6e, 0x88, 0x68, 0x61, 0xda, 0xf6, 0x96, 0xde, 0x8a, 0xe8, 0x2d,
8183*6236dae4SAndroid Build Coastguard Worker   0x15, 0xa9, 0xda, 0xa5, 0x64, 0x32, 0xa3, 0x98, 0x91, 0x57, 0xd8, 0x63,
8184*6236dae4SAndroid Build Coastguard Worker   0x4f, 0x64, 0x94, 0x30, 0x46, 0x59, 0x8e, 0x4d, 0x0d, 0xcb, 0x5c, 0xfa,
8185*6236dae4SAndroid Build Coastguard Worker   0x59, 0xb9, 0xd9, 0xb2, 0x70, 0x63, 0x98, 0x63, 0x4f, 0x55, 0xa3, 0x71,
8186*6236dae4SAndroid Build Coastguard Worker   0xe5, 0x3b, 0x4d, 0xab, 0x8c, 0x40, 0x29, 0x82, 0x7e, 0x13, 0x5b, 0x44,
8187*6236dae4SAndroid Build Coastguard Worker   0x56, 0xab, 0x4b, 0x60, 0xce, 0x49, 0x6e, 0x1c, 0x65, 0x6e, 0x0a, 0xbb,
8188*6236dae4SAndroid Build Coastguard Worker   0xf0, 0x30, 0x37, 0x49, 0xc6, 0x27, 0xda, 0x9c, 0xa3, 0x16, 0x65, 0x08,
8189*6236dae4SAndroid Build Coastguard Worker   0xd6, 0xe8, 0x09, 0x5c, 0xd5, 0xfa, 0x46, 0x5c, 0x30, 0xe8, 0xee, 0xd3,
8190*6236dae4SAndroid Build Coastguard Worker   0xa1, 0x96, 0x99, 0xd7, 0xaa, 0xae, 0xa1, 0x5a, 0x13, 0x93, 0xfd, 0xb9,
8191*6236dae4SAndroid Build Coastguard Worker   0xc7, 0x18, 0x72, 0x24, 0xb2, 0x51, 0x18, 0x63, 0x4c, 0x65, 0x07, 0x4e,
8192*6236dae4SAndroid Build Coastguard Worker   0x79, 0xa5, 0x52, 0x99, 0x8d, 0x87, 0x5d, 0xd1, 0xfd, 0x8e, 0x5f, 0x51,
8193*6236dae4SAndroid Build Coastguard Worker   0x77, 0x2e, 0x6a, 0x6f, 0xed, 0x80, 0x37, 0xfb, 0xdd, 0x08, 0x4c, 0x52,
8194*6236dae4SAndroid Build Coastguard Worker   0x46, 0x25, 0x1d, 0xb1, 0xf3, 0xd4, 0x45, 0x1c, 0xa6, 0x0e, 0x5f, 0xce,
8195*6236dae4SAndroid Build Coastguard Worker   0x76, 0x72, 0x26, 0x83, 0xb6, 0xa4, 0x9f, 0xd3, 0xb6, 0x1b, 0x0d, 0x48,
8196*6236dae4SAndroid Build Coastguard Worker   0x81, 0x42, 0xb9, 0x9a, 0x21, 0x36, 0x3b, 0x4a, 0x13, 0xee, 0x09, 0xc2,
8197*6236dae4SAndroid Build Coastguard Worker   0x41, 0x6b, 0x38, 0x65, 0x38, 0xe7, 0xe6, 0x84, 0x3d, 0x16, 0xa3, 0x0e,
8198*6236dae4SAndroid Build Coastguard Worker   0x5c, 0x18, 0xdc, 0x98, 0x48, 0x15, 0xed, 0xa0, 0x2c, 0xae, 0x53, 0x16,
8199*6236dae4SAndroid Build Coastguard Worker   0x6a, 0xe4, 0x96, 0x20, 0x50, 0x56, 0xb5, 0x9b, 0x38, 0xde, 0x9a, 0x8d,
8200*6236dae4SAndroid Build Coastguard Worker   0xb9, 0xc7, 0x33, 0xa6, 0x82, 0x78, 0x4e, 0x14, 0x3a, 0xd9, 0x0a, 0xfd,
8201*6236dae4SAndroid Build Coastguard Worker   0x65, 0x15, 0x81, 0x8c, 0x5e, 0x27, 0xcc, 0x2d, 0x6d, 0xcb, 0xcc, 0xe7,
8202*6236dae4SAndroid Build Coastguard Worker   0x78, 0x88, 0x29, 0x89, 0xbf, 0xe3, 0x45, 0x65, 0x76, 0xdd, 0xbd, 0xa8,
8203*6236dae4SAndroid Build Coastguard Worker   0x02, 0x3b, 0xba, 0x3c, 0x47, 0xdb, 0x91, 0x1f, 0xba, 0xb1, 0xc8, 0xf3,
8204*6236dae4SAndroid Build Coastguard Worker   0x1f, 0xed, 0xf3, 0x29, 0xb8, 0xbb, 0xa7, 0xa2, 0xd6, 0xb6, 0x7b, 0xff,
8205*6236dae4SAndroid Build Coastguard Worker   0x10, 0xb3, 0xc1, 0x62, 0xf5, 0x49, 0x8c, 0xa4, 0x9a, 0xfb, 0x42, 0x4a,
8206*6236dae4SAndroid Build Coastguard Worker   0x0f, 0x91, 0x84, 0x9c, 0x04, 0x8a, 0xce, 0x31, 0xe3, 0xc2, 0xe0, 0xe6,
8207*6236dae4SAndroid Build Coastguard Worker   0xcc, 0x58, 0x94, 0x73, 0x11, 0x68, 0x6d, 0xcf, 0xbd, 0xbe, 0x8d, 0xf7,
8208*6236dae4SAndroid Build Coastguard Worker   0x5a, 0xdc, 0x5c, 0x64, 0xa9, 0xe3, 0x9e, 0x12, 0x50, 0x66, 0x56, 0xd9,
8209*6236dae4SAndroid Build Coastguard Worker   0x94, 0xe5, 0x7f, 0xc7, 0xac, 0x55, 0x0c, 0xd6, 0xa7, 0x65, 0x9b, 0x6d,
8210*6236dae4SAndroid Build Coastguard Worker   0xf8, 0xdb, 0xd4, 0xcb, 0x31, 0xad, 0x6c, 0x49, 0x24, 0x83, 0x99, 0x59,
8211*6236dae4SAndroid Build Coastguard Worker   0x7c, 0x46, 0x6a, 0x3f, 0xaf, 0x9a, 0x8f, 0x84, 0x18, 0xa8, 0x7d, 0x74,
8212*6236dae4SAndroid Build Coastguard Worker   0x9b, 0xb8, 0xe8, 0xe8, 0xe0, 0xcd, 0x54, 0x10, 0x38, 0x5a, 0x6f, 0x26,
8213*6236dae4SAndroid Build Coastguard Worker   0xfd, 0x22, 0x39, 0x8b, 0x4f, 0x7c, 0x79, 0x89, 0xa6, 0xe7, 0xf1, 0x24,
8214*6236dae4SAndroid Build Coastguard Worker   0x40, 0x49, 0xf2, 0xd2, 0x41, 0x09, 0x0c, 0x5c, 0xdb, 0x98, 0x70, 0x0e,
8215*6236dae4SAndroid Build Coastguard Worker   0x9c, 0x78, 0x72, 0xf4, 0x07, 0x54, 0x52, 0x96, 0x8e, 0x2f, 0x7a, 0x91,
8216*6236dae4SAndroid Build Coastguard Worker   0x62, 0x81, 0xa8, 0x03, 0x25, 0x54, 0xb6, 0x35, 0x26, 0x23, 0x55, 0xea,
8217*6236dae4SAndroid Build Coastguard Worker   0x56, 0x68, 0x46, 0xec, 0xf2, 0xc0, 0x1f, 0x77, 0xed, 0x5f, 0xf7, 0x5e,
8218*6236dae4SAndroid Build Coastguard Worker   0x6c, 0x30, 0x05, 0x10, 0xe0, 0xd8, 0x3e, 0xe0, 0x75, 0x4c, 0xaa, 0xb9,
8219*6236dae4SAndroid Build Coastguard Worker   0xb5, 0x00, 0x3c, 0x04, 0xff, 0x35, 0xcf, 0xcd, 0xe9, 0x26, 0xf7, 0xbc,
8220*6236dae4SAndroid Build Coastguard Worker   0xb7, 0xbb, 0x8d, 0xf9, 0x01, 0x61, 0xf7, 0x35, 0x13, 0xd5, 0x75, 0x55,
8221*6236dae4SAndroid Build Coastguard Worker   0x1a, 0x5f, 0x65, 0xb8, 0x4c, 0x64, 0xe4, 0x1a, 0xc1, 0xcc, 0x88, 0xab,
8222*6236dae4SAndroid Build Coastguard Worker   0x2b, 0x79, 0xf1, 0x91, 0xfe, 0xca, 0x3e, 0xbf, 0x95, 0x77, 0xa7, 0x1f,
8223*6236dae4SAndroid Build Coastguard Worker   0xcf, 0xde, 0x9f, 0x7e, 0xf7, 0xb7, 0x95, 0x35, 0x4d, 0x4a, 0x2b, 0xd3,
8224*6236dae4SAndroid Build Coastguard Worker   0x15, 0x3f, 0xa3, 0x38, 0xec, 0x21, 0xe5, 0x0f, 0x70, 0xb2, 0xa3, 0xb0,
8225*6236dae4SAndroid Build Coastguard Worker   0xa3, 0x3a, 0x41, 0x38, 0x1d, 0x86, 0xd2, 0xbe, 0x3c, 0x22, 0xf3, 0x54,
8226*6236dae4SAndroid Build Coastguard Worker   0x68, 0xd7, 0x81, 0x9d, 0x3b, 0x1d, 0xfc, 0x53, 0x97, 0x09, 0x7b, 0xb5,
8227*6236dae4SAndroid Build Coastguard Worker   0xfc, 0x79, 0xe4, 0x01, 0x3b, 0x0e, 0x36, 0x77, 0xe7, 0xa1, 0x83, 0x59,
8228*6236dae4SAndroid Build Coastguard Worker   0x8f, 0x27, 0xf1, 0xed, 0xe0, 0x81, 0x40, 0xf5, 0xf9, 0xc9, 0x5b, 0xb8,
8229*6236dae4SAndroid Build Coastguard Worker   0xff, 0xb1, 0x70, 0x56, 0xca, 0xfb, 0xb1, 0x3b, 0xbc, 0xbc, 0x4d, 0x17,
8230*6236dae4SAndroid Build Coastguard Worker   0x35, 0x87, 0x54, 0xae, 0xc8, 0x0b, 0xe6, 0x97, 0x06, 0x05, 0x22, 0xb2,
8231*6236dae4SAndroid Build Coastguard Worker   0x06, 0xed, 0x41, 0xfc, 0x8f, 0x06, 0xac, 0x1b, 0x46, 0xa4, 0x78, 0x21,
8232*6236dae4SAndroid Build Coastguard Worker   0x82, 0xf0, 0x8c, 0xb3, 0x60, 0x29, 0xab, 0x96, 0x57, 0xa4, 0x77, 0xe9,
8233*6236dae4SAndroid Build Coastguard Worker   0x70, 0x46, 0x95, 0xa6, 0x68, 0xbb, 0x21, 0xd0, 0xd4, 0x13, 0xe2, 0x53,
8234*6236dae4SAndroid Build Coastguard Worker   0xbc, 0xfe, 0x5f, 0x58, 0x8c, 0xcb, 0x84, 0x68, 0x84, 0x38, 0xe1, 0x07,
8235*6236dae4SAndroid Build Coastguard Worker   0xbd, 0x16, 0x9d, 0x4d, 0x0d, 0xae, 0xd2, 0x95, 0x09, 0xeb, 0x45, 0x1b,
8236*6236dae4SAndroid Build Coastguard Worker   0x58, 0x46, 0xd1, 0xef, 0x9a, 0xbf, 0xf2, 0x32, 0x01, 0xa9, 0xda, 0x0c,
8237*6236dae4SAndroid Build Coastguard Worker   0x95, 0x44, 0x38, 0x16, 0xd9, 0x65, 0xce, 0xfa, 0xf5, 0xdb, 0x6c, 0x58,
8238*6236dae4SAndroid Build Coastguard Worker   0x16, 0x55, 0x71, 0x21, 0x75, 0x8c, 0x56, 0xf1, 0x3e, 0x3e, 0xee, 0x47,
8239*6236dae4SAndroid Build Coastguard Worker   0xb7, 0xe9, 0x40, 0xc1, 0x32, 0x7a, 0x7e, 0x20, 0x90, 0x45, 0x21, 0x06,
8240*6236dae4SAndroid Build Coastguard Worker   0xca, 0xcb, 0x2c, 0xad, 0x71, 0x43, 0xb4, 0x22, 0x0b, 0x31, 0x5f, 0xf1,
8241*6236dae4SAndroid Build Coastguard Worker   0xa5, 0x54, 0x40, 0x08, 0xc9, 0x74, 0x87, 0x31, 0x87, 0x63, 0xba, 0x94,
8242*6236dae4SAndroid Build Coastguard Worker   0xa7, 0xa9, 0xcf, 0xdc, 0x63, 0x56, 0x4f, 0xcc, 0x8d, 0xea, 0x64, 0x6b,
8243*6236dae4SAndroid Build Coastguard Worker   0x10, 0x22, 0x91, 0x54, 0xe9, 0x66, 0x25, 0xca, 0x4e, 0xb4, 0x00, 0x24,
8244*6236dae4SAndroid Build Coastguard Worker   0xce, 0x73, 0x8d, 0xc1, 0x85, 0xe2, 0xc2, 0x0b, 0x5f, 0x4a, 0x71, 0x81,
8245*6236dae4SAndroid Build Coastguard Worker   0xd1, 0x06, 0xa4, 0x46, 0x35, 0xcd, 0x47, 0x45, 0x49, 0x69, 0x6d, 0x78,
8246*6236dae4SAndroid Build Coastguard Worker   0xe4, 0xe4, 0x97, 0xd8, 0x02, 0x78, 0x56, 0x62, 0x01, 0x33, 0x35, 0x95,
8247*6236dae4SAndroid Build Coastguard Worker   0xf0, 0xdb, 0x2f, 0xdd, 0x5e, 0xd1, 0xfd, 0x21, 0xbc, 0x6d, 0x75, 0x61,
8248*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x91, 0x95, 0x4e, 0xc0, 0x24, 0xd7, 0xed, 0x45, 0xeb, 0x6e, 0x54,
8249*6236dae4SAndroid Build Coastguard Worker   0x10, 0x00, 0x5e, 0xf6, 0xc3, 0x22, 0x4d, 0xe0, 0x89, 0x81, 0xcd, 0x79,
8250*6236dae4SAndroid Build Coastguard Worker   0x95, 0x5d, 0x86, 0x50, 0x1f, 0x0c, 0x12, 0x11, 0x61, 0x7a, 0x59, 0x85,
8251*6236dae4SAndroid Build Coastguard Worker   0x93, 0x66, 0x24, 0xfa, 0x42, 0x29, 0x32, 0xa2, 0xc9, 0x07, 0x0c, 0x0a,
8252*6236dae4SAndroid Build Coastguard Worker   0x19, 0x00, 0x4f, 0x0b, 0x73, 0xdf, 0x52, 0x19, 0x4b, 0x82, 0x9e, 0x22,
8253*6236dae4SAndroid Build Coastguard Worker   0x0d, 0x71, 0xcb, 0xaa, 0x36, 0xf7, 0xe8, 0xaf, 0x91, 0x5a, 0x80, 0xa7,
8254*6236dae4SAndroid Build Coastguard Worker   0xe0, 0xa9, 0x47, 0xcd, 0x18, 0x5a, 0xce, 0x1a, 0xcd, 0xd1, 0xb2, 0xf6,
8255*6236dae4SAndroid Build Coastguard Worker   0x95, 0xe3, 0x49, 0xb3, 0x80, 0x7f, 0x5e, 0xce, 0xff, 0x43, 0xf6, 0xd5,
8256*6236dae4SAndroid Build Coastguard Worker   0x9c, 0x9b, 0x47, 0x12, 0x1c, 0x02, 0x85, 0x26, 0x6e, 0xde, 0x04, 0xff,
8257*6236dae4SAndroid Build Coastguard Worker   0x7b, 0x44, 0xdb, 0x2e, 0xff, 0x90, 0x34, 0x08, 0x57, 0x24, 0x14, 0xf8,
8258*6236dae4SAndroid Build Coastguard Worker   0x83, 0xad, 0x78, 0x90, 0x82, 0x7e, 0x5c, 0x46, 0xfb, 0x35, 0xea, 0xa0,
8259*6236dae4SAndroid Build Coastguard Worker   0x8b, 0x6a, 0x34, 0xb9, 0x36, 0x44, 0xfb, 0x25, 0xb9, 0x19, 0xd8, 0x5f,
8260*6236dae4SAndroid Build Coastguard Worker   0xf2, 0x10, 0xe7, 0xa4, 0xc5, 0x22, 0xe7, 0x9c, 0x62, 0x19, 0x5e, 0xb4,
8261*6236dae4SAndroid Build Coastguard Worker   0xe5, 0x75, 0x3a, 0x55, 0x58, 0x96, 0x96, 0xc0, 0x39, 0x6f, 0x8f, 0xa1,
8262*6236dae4SAndroid Build Coastguard Worker   0xbc, 0x41, 0x69, 0x88, 0xa0, 0x6c, 0xfc, 0x34, 0xcb, 0xe7, 0xf6, 0xbd,
8263*6236dae4SAndroid Build Coastguard Worker   0xb6, 0x28, 0x46, 0xac, 0xcc, 0x88, 0x86, 0xc2, 0x25, 0x40, 0x8d, 0x8a,
8264*6236dae4SAndroid Build Coastguard Worker   0x04, 0x44, 0x9e, 0x51, 0x8f, 0x62, 0x1c, 0xfb, 0xf9, 0x13, 0x30, 0x71,
8265*6236dae4SAndroid Build Coastguard Worker   0x0b, 0x6b, 0x60, 0x62, 0x4a, 0xa1, 0x9a, 0xa3, 0xc6, 0x64, 0x05, 0x81,
8266*6236dae4SAndroid Build Coastguard Worker   0x53, 0x3e, 0x8f, 0xc6, 0x06, 0xdb, 0x9b, 0x7c, 0x64, 0x87, 0x43, 0x42,
8267*6236dae4SAndroid Build Coastguard Worker   0x5d, 0xbc, 0x64, 0xbf, 0xc2, 0xfb, 0xd7, 0x87, 0xad, 0xe1, 0x9e, 0x3d,
8268*6236dae4SAndroid Build Coastguard Worker   0xdf, 0xdd, 0xf8, 0xa3, 0x33, 0x4c, 0x9b, 0x9c, 0xd0, 0x99, 0xbc, 0xfe,
8269*6236dae4SAndroid Build Coastguard Worker   0xf8, 0xb2, 0xf7, 0xe5, 0xee, 0x45, 0xbc, 0xd3, 0xdb, 0xfc, 0xcf, 0xbf,
8270*6236dae4SAndroid Build Coastguard Worker   0xbf, 0xed, 0x2c, 0xd9, 0xf8, 0xb6, 0xdd, 0x82, 0x8f, 0xed, 0x78, 0x04,
8271*6236dae4SAndroid Build Coastguard Worker   0x31, 0x8a, 0xf6, 0xe1, 0x8f, 0xcf, 0x17, 0x77, 0x81, 0xd2, 0x1d, 0x53,
8272*6236dae4SAndroid Build Coastguard Worker   0x35, 0xcb, 0x46, 0xe8, 0x8d, 0xf6, 0xc9, 0xe9, 0xda, 0x26, 0xe0, 0xec,
8273*6236dae4SAndroid Build Coastguard Worker   0x35, 0xbe, 0x07, 0x93, 0x76, 0xd4, 0xe5, 0x4b, 0x39, 0x3e, 0x65, 0x0c,
8274*6236dae4SAndroid Build Coastguard Worker   0x1f, 0xec, 0xb3, 0x1e, 0x6b, 0x21, 0x4a, 0x5c, 0x74, 0xcd, 0xb4, 0x68,
8275*6236dae4SAndroid Build Coastguard Worker   0xbf, 0x82, 0x34, 0x3b, 0x37, 0xf5, 0x82, 0xf2, 0xa4, 0x33, 0x93, 0xca,
8276*6236dae4SAndroid Build Coastguard Worker   0x86, 0xfb, 0x51, 0x0f, 0xff, 0xf0, 0xfe, 0x84, 0x23, 0x70, 0xc6, 0x97,
8277*6236dae4SAndroid Build Coastguard Worker   0x5c, 0x4c, 0x43, 0x12, 0xda, 0xc0, 0x13, 0x69, 0x89, 0x1b, 0x23, 0x6f,
8278*6236dae4SAndroid Build Coastguard Worker   0xce, 0xa6, 0x20, 0x29, 0xea, 0x6c, 0xec, 0x24, 0x53, 0x3d, 0x08, 0x41,
8279*6236dae4SAndroid Build Coastguard Worker   0xd9, 0xc8, 0x27, 0xa5, 0x0e, 0x7a, 0xce, 0xfc, 0x4c, 0x04, 0x9f, 0x40,
8280*6236dae4SAndroid Build Coastguard Worker   0x91, 0x14, 0x15, 0x4b, 0x22, 0x7a, 0x21, 0xe7, 0x31, 0xb5, 0xc6, 0x13,
8281*6236dae4SAndroid Build Coastguard Worker   0x58, 0xc2, 0x38, 0xc6, 0xac, 0x54, 0x20, 0x17, 0x65, 0x1c, 0xe3, 0x85,
8282*6236dae4SAndroid Build Coastguard Worker   0x2c, 0x40, 0x75, 0x8f, 0x4e, 0x84, 0x36, 0x15, 0x85, 0x6d, 0x3e, 0xb5,
8283*6236dae4SAndroid Build Coastguard Worker   0x53, 0xa6, 0xb9, 0x7a, 0x24, 0xc2, 0xb9, 0xff, 0x22, 0x3e, 0xb6, 0x9c,
8284*6236dae4SAndroid Build Coastguard Worker   0xd6, 0xa9, 0x27, 0xd3, 0x0e, 0x6c, 0xff, 0xb2, 0xc2, 0xdd, 0xe3, 0x17,
8285*6236dae4SAndroid Build Coastguard Worker   0x12, 0x9f, 0xff, 0xe9, 0xfc, 0x94, 0x41, 0x38, 0x62, 0x41, 0xdd, 0x9e,
8286*6236dae4SAndroid Build Coastguard Worker   0xd7, 0x87, 0xf2, 0x79, 0xf3, 0x10, 0xb8, 0x1c, 0x17, 0x04, 0x6d, 0xfd,
8287*6236dae4SAndroid Build Coastguard Worker   0xb6, 0x44, 0x38, 0x19, 0x8d, 0x22, 0x14, 0xf2, 0x90, 0x8b, 0xaa, 0x55,
8288*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x23, 0xcc, 0x82, 0x45, 0xa2, 0x53, 0x2e, 0x76, 0xa9, 0xfe, 0x8c,
8289*6236dae4SAndroid Build Coastguard Worker   0x7f, 0xfc, 0xd3, 0x77, 0x8a, 0x7d, 0xff, 0x23, 0xa5, 0x49, 0xa4, 0xa8,
8290*6236dae4SAndroid Build Coastguard Worker   0x52, 0x98, 0xed, 0x50, 0x55, 0xa2, 0x6a, 0xa8, 0x2a, 0x7f, 0x9f, 0x15,
8291*6236dae4SAndroid Build Coastguard Worker   0x92, 0xb4, 0x28, 0x71, 0xf6, 0x39, 0x7d, 0xc1, 0xf1, 0x7e, 0x5f, 0xf9,
8292*6236dae4SAndroid Build Coastguard Worker   0xd3, 0x8a, 0xc4, 0x83, 0xd5, 0x95, 0x2a, 0xc5, 0x01, 0xa2, 0x97, 0xcb,
8293*6236dae4SAndroid Build Coastguard Worker   0xac, 0xcd, 0x46, 0x97, 0xa4, 0x4c, 0x7a, 0xe1, 0x14, 0x63, 0xb7, 0x48,
8294*6236dae4SAndroid Build Coastguard Worker   0x54, 0x7b, 0x40, 0xd5, 0xa1, 0x84, 0x94, 0xe2, 0x54, 0x4a, 0x4a, 0xef,
8295*6236dae4SAndroid Build Coastguard Worker   0x01, 0x45, 0xc1, 0xd6, 0xbc, 0x00, 0x98, 0xa5, 0xa7, 0x9a, 0xd1, 0xef,
8296*6236dae4SAndroid Build Coastguard Worker   0x53, 0x32, 0x5a, 0x7b, 0x8c, 0x3f, 0x94, 0xe5, 0x73, 0x42, 0xb7, 0x1d,
8297*6236dae4SAndroid Build Coastguard Worker   0x64, 0x08, 0xe0, 0x87, 0x7f, 0x80, 0xd0, 0xec, 0xd6, 0xb7, 0xc5, 0x3f,
8298*6236dae4SAndroid Build Coastguard Worker   0xdd, 0xf0, 0x69, 0x07, 0x7d, 0x62, 0x1d, 0x5c, 0xc4, 0xc7, 0x3f, 0x6d,
8299*6236dae4SAndroid Build Coastguard Worker   0x62, 0x71, 0x7b, 0xe7, 0x13, 0xff, 0x8e, 0x98, 0x11, 0x7a, 0x02, 0x4b,
8300*6236dae4SAndroid Build Coastguard Worker   0x62, 0x63, 0xf7, 0x2d, 0xea, 0x62, 0x64, 0x3e, 0x89, 0x90, 0x41, 0x5d,
8301*6236dae4SAndroid Build Coastguard Worker   0xb4, 0x86, 0xff, 0xd9, 0xc3, 0x3f, 0xbf, 0xdf, 0x8c, 0x77, 0x7f, 0xb4,
8302*6236dae4SAndroid Build Coastguard Worker   0x9f, 0xfd, 0xd3, 0xe6, 0xc7, 0x3f, 0x6d, 0x75, 0x42, 0xb8, 0x05, 0x16,
8303*6236dae4SAndroid Build Coastguard Worker   0x26, 0xcc, 0x49, 0x57, 0xaf, 0xa8, 0x40, 0x42, 0x0a, 0x03, 0x25, 0xfd,
8304*6236dae4SAndroid Build Coastguard Worker   0xcb, 0x96, 0x6a, 0x90, 0x48, 0x0a, 0xec, 0x24, 0x06, 0xb1, 0x3c, 0xfb,
8305*6236dae4SAndroid Build Coastguard Worker   0x5b, 0x80, 0x57, 0x35, 0x4b, 0x10, 0xa8, 0xc2, 0xef, 0x2b, 0x98, 0x1a,
8306*6236dae4SAndroid Build Coastguard Worker   0x9e, 0x03, 0x11, 0x59, 0x9e, 0x22, 0x93, 0x3b, 0x01, 0x77, 0xea, 0x91,
8307*6236dae4SAndroid Build Coastguard Worker   0x5a, 0x5b, 0x3c, 0x3e, 0x9f, 0x1e, 0x72, 0x52, 0x41, 0xc9, 0x4d, 0xa2,
8308*6236dae4SAndroid Build Coastguard Worker   0x46, 0x2c, 0xba, 0x88, 0x06, 0x83, 0xc8, 0x09, 0x41, 0x7f, 0x12, 0x50,
8309*6236dae4SAndroid Build Coastguard Worker   0x71, 0x48, 0x8c, 0x91, 0x37, 0x4b, 0x2f, 0xf1, 0xa2, 0x91, 0xff, 0x20,
8310*6236dae4SAndroid Build Coastguard Worker   0xdc, 0x51, 0x09, 0xc8, 0x30, 0xa3, 0xc0, 0xd2, 0x45, 0xec, 0xf9, 0x52,
8311*6236dae4SAndroid Build Coastguard Worker   0x7e, 0x22, 0x88, 0x6c, 0x27, 0xe6, 0x29, 0x62, 0xb7, 0x40, 0x21, 0x66,
8312*6236dae4SAndroid Build Coastguard Worker   0x32, 0x50, 0xe8, 0x67, 0x7a, 0x2a, 0x40, 0x3c, 0xa0, 0xe6, 0xcb, 0xf0,
8313*6236dae4SAndroid Build Coastguard Worker   0x6d, 0xed, 0xd9, 0x0d, 0x40, 0x47, 0x6b, 0x48, 0x75, 0xa2, 0x07, 0xc9,
8314*6236dae4SAndroid Build Coastguard Worker   0x94, 0x81, 0x85, 0x46, 0x4e, 0xaa, 0x39, 0x04, 0x71, 0x49, 0xe1, 0x96,
8315*6236dae4SAndroid Build Coastguard Worker   0xec, 0x31, 0xa1, 0x88, 0x38, 0x73, 0x8d, 0x3f, 0xd6, 0x66, 0x5c, 0x99,
8316*6236dae4SAndroid Build Coastguard Worker   0x6d, 0x2b, 0x5a, 0xf8, 0xa7, 0xbc, 0x42, 0xce, 0x17, 0xd1, 0x5b, 0xc2,
8317*6236dae4SAndroid Build Coastguard Worker   0xcb, 0xc4, 0xa2, 0x1b, 0x77, 0x74, 0x0f, 0x62, 0x8d, 0xbb, 0xc4, 0xf4,
8318*6236dae4SAndroid Build Coastguard Worker   0x8c, 0x8a, 0xa7, 0x3e, 0x53, 0xbd, 0x30, 0xab, 0x68, 0x25, 0x5e, 0x89,
8319*6236dae4SAndroid Build Coastguard Worker   0x56, 0x8d, 0xcb, 0x6a, 0x94, 0x54, 0x57, 0x6b, 0xc1, 0x5b, 0xc5, 0x44,
8320*6236dae4SAndroid Build Coastguard Worker   0x01, 0xad, 0x5c, 0x93, 0x66, 0xb4, 0xa4, 0xef, 0xb2, 0x40, 0x0b, 0xb4,
8321*6236dae4SAndroid Build Coastguard Worker   0x19, 0x24, 0x55, 0x98, 0xb1, 0x0f, 0x1c, 0xf0, 0x95, 0x62, 0x94, 0x91,
8322*6236dae4SAndroid Build Coastguard Worker   0x81, 0x70, 0x2f, 0xbe, 0x74, 0x5b, 0xdd, 0x63, 0xef, 0x5d, 0xbf, 0x10,
8323*6236dae4SAndroid Build Coastguard Worker   0x65, 0x7d, 0x94, 0xde, 0xac, 0xe7, 0xb3, 0xf1, 0x78, 0xef, 0x11, 0xb4,
8324*6236dae4SAndroid Build Coastguard Worker   0x07, 0x4a, 0x9b, 0xe7, 0xdb, 0x8f, 0x9f, 0xb2, 0x13, 0x55, 0x12, 0x0c,
8325*6236dae4SAndroid Build Coastguard Worker   0x89, 0xd7, 0xe1, 0xb1, 0xbd, 0x47, 0x0d, 0x0a, 0x0f, 0x2e, 0x59, 0x6f,
8326*6236dae4SAndroid Build Coastguard Worker   0x51, 0xcc, 0xcf, 0xf3, 0xff, 0x35, 0xa4, 0xda, 0x2f, 0x17, 0x53, 0x4b,
8327*6236dae4SAndroid Build Coastguard Worker   0xce, 0x5a, 0x7f, 0xb7, 0x15, 0xca, 0x37, 0x99, 0x7f, 0x21, 0x7b, 0xf7,
8328*6236dae4SAndroid Build Coastguard Worker   0x71, 0xeb, 0x9f, 0x58, 0x13, 0xee, 0x5f, 0xd1, 0x1e, 0xa8, 0xad, 0xbd,
8329*6236dae4SAndroid Build Coastguard Worker   0xb1, 0x1d, 0xbd, 0x14, 0x3d, 0x3f, 0xe3, 0x71, 0x3a, 0x8e, 0xb3, 0xc9,
8330*6236dae4SAndroid Build Coastguard Worker   0x04, 0x18, 0xc9, 0x2f, 0x97, 0xa0, 0x62, 0x81, 0x11, 0xd5, 0x12, 0xe9,
8331*6236dae4SAndroid Build Coastguard Worker   0xb3, 0x36, 0xaa, 0xd0, 0x2c, 0x1e, 0x92, 0x8b, 0x4c, 0x33, 0xa0, 0xc2,
8332*6236dae4SAndroid Build Coastguard Worker   0x4d, 0x32, 0x24, 0x5f, 0x40, 0xee, 0x5d, 0xc1, 0x71, 0x64, 0x10, 0x44,
8333*6236dae4SAndroid Build Coastguard Worker   0x54, 0xcf, 0x28, 0x60, 0x05, 0xba, 0x20, 0x41, 0xbc, 0xb8, 0x4d, 0x1f,
8334*6236dae4SAndroid Build Coastguard Worker   0xb1, 0xed, 0x74, 0xe2, 0x25, 0x4c, 0xf1, 0x7c, 0x10, 0x1c, 0x18, 0x3d,
8335*6236dae4SAndroid Build Coastguard Worker   0x96, 0x2e, 0x2a, 0xe4, 0x6d, 0x92, 0x69, 0x3c, 0x42, 0x20, 0x34, 0x11,
8336*6236dae4SAndroid Build Coastguard Worker   0x88, 0xcc, 0xc6, 0x43, 0xd8, 0x36, 0x6a, 0x0f, 0x47, 0x0a, 0x3c, 0xde,
8337*6236dae4SAndroid Build Coastguard Worker   0x2a, 0xa2, 0x2e, 0xdc, 0xa1, 0xc1, 0x41, 0x29, 0x11, 0x8c, 0xa4, 0x2c,
8338*6236dae4SAndroid Build Coastguard Worker   0xd0, 0x21, 0x6e, 0x7c, 0xfc, 0x8f, 0x46, 0x63, 0x7f, 0x40, 0x1d, 0xf4,
8339*6236dae4SAndroid Build Coastguard Worker   0x37, 0x38, 0x8a, 0xff, 0x6b, 0x11, 0x73, 0x6e, 0x2e, 0xe4, 0xdc, 0xf9,
8340*6236dae4SAndroid Build Coastguard Worker   0xee, 0xb7, 0xff, 0xea, 0x3a, 0x5f, 0x53, 0x37, 0x9c, 0x7e, 0x7c, 0x92,
8341*6236dae4SAndroid Build Coastguard Worker   0xdc, 0x35, 0xa3, 0x62, 0x2f, 0x9a, 0xe6, 0x91, 0xfb, 0x60, 0xb0, 0x24,
8342*6236dae4SAndroid Build Coastguard Worker   0x93, 0x51, 0xdc, 0xaa, 0x6b, 0xa6, 0xdc, 0xa8, 0x08, 0x32, 0x23, 0xab,
8343*6236dae4SAndroid Build Coastguard Worker   0x82, 0xcd, 0x99, 0x74, 0xa3, 0x05, 0x4d, 0xc5, 0x10, 0xc5, 0xb7, 0x2c,
8344*6236dae4SAndroid Build Coastguard Worker   0xc6, 0x55, 0xa3, 0x84, 0x9a, 0x21, 0xcf, 0xe8, 0x7a, 0x35, 0xdc, 0xc2,
8345*6236dae4SAndroid Build Coastguard Worker   0xdf, 0xac, 0x32, 0xe4, 0x8b, 0x24, 0x0f, 0xd4, 0xbe, 0x55, 0x81, 0x7c,
8346*6236dae4SAndroid Build Coastguard Worker   0xbc, 0xdf, 0x9e, 0x15, 0x7c, 0x63, 0x4d, 0x71, 0x40, 0xe0, 0x7b, 0x01,
8347*6236dae4SAndroid Build Coastguard Worker   0x93, 0xfa, 0xb1, 0xbc, 0x82, 0xbb, 0xb0, 0xb9, 0xb1, 0x31, 0x8f, 0x53,
8348*6236dae4SAndroid Build Coastguard Worker   0x2e, 0x96, 0x80, 0x6f, 0x69, 0x6c, 0xc6, 0xa2, 0x6e, 0xd5, 0x8d, 0x07,
8349*6236dae4SAndroid Build Coastguard Worker   0x17, 0x24, 0xbf, 0x0b, 0xa8, 0x01, 0x21, 0xf3, 0xd9, 0x0d, 0x62, 0xf1,
8350*6236dae4SAndroid Build Coastguard Worker   0x20, 0xbc, 0x47, 0xd8, 0x25, 0xf0, 0x4f, 0xa6, 0xad, 0xaf, 0xa9, 0x94,
8351*6236dae4SAndroid Build Coastguard Worker   0xe9, 0x25, 0x42, 0xef, 0xa2, 0x27, 0x06, 0x31, 0xfb, 0x40, 0x5f, 0xc9,
8352*6236dae4SAndroid Build Coastguard Worker   0xd3, 0xf2, 0x7f, 0xcc, 0x49, 0xfe, 0xf5, 0x0e, 0xef, 0x82, 0xd6, 0xe1,
8353*6236dae4SAndroid Build Coastguard Worker   0xe8, 0x17, 0x8c, 0xf6, 0xa7, 0x57, 0x65, 0x52, 0xf9, 0xbd, 0xb0, 0xfa,
8354*6236dae4SAndroid Build Coastguard Worker   0xfd, 0x37, 0x11, 0xc5, 0xaa, 0xcf, 0xe0, 0x29, 0x7e, 0xc6, 0xe8, 0x8b,
8355*6236dae4SAndroid Build Coastguard Worker   0x4e, 0x6b, 0x9f, 0x3f, 0xda, 0xa3, 0x43, 0x6b, 0xe0, 0x04, 0x6f, 0xe9,
8356*6236dae4SAndroid Build Coastguard Worker   0x44, 0xf3, 0x88, 0xb2, 0x41, 0xac, 0x44, 0x8a, 0x93, 0x2a, 0xf6, 0x44,
8357*6236dae4SAndroid Build Coastguard Worker   0x06, 0x66, 0x6e, 0xbb, 0xf9, 0xee, 0x5c, 0x1c, 0x90, 0x63, 0x67, 0xba,
8358*6236dae4SAndroid Build Coastguard Worker   0x0a, 0xb3, 0x98, 0x73, 0xc4, 0x87, 0x86, 0x0d, 0x5e, 0xef, 0xf5, 0xd6,
8359*6236dae4SAndroid Build Coastguard Worker   0xd1, 0x42, 0x5a, 0x87, 0xff, 0x88, 0x45, 0x48, 0x1e, 0x94, 0xd6, 0x70,
8360*6236dae4SAndroid Build Coastguard Worker   0xa8, 0x51, 0xe3, 0xb7, 0x30, 0xfe, 0x8e, 0x59, 0x7c, 0xe3, 0x7b, 0x17,
8361*6236dae4SAndroid Build Coastguard Worker   0x90, 0xe6, 0xef, 0x33, 0xd0, 0x27, 0x09, 0x2e, 0x25, 0x2d, 0x09, 0x9d,
8362*6236dae4SAndroid Build Coastguard Worker   0x31, 0x9d, 0xb4, 0xdc, 0x68, 0x9e, 0xc3, 0x87, 0x53, 0xfa, 0x2a, 0x81,
8363*6236dae4SAndroid Build Coastguard Worker   0x98, 0x25, 0xf3, 0xd1, 0x45, 0x50, 0xe1, 0xe2, 0x65, 0x42, 0x03, 0xcc,
8364*6236dae4SAndroid Build Coastguard Worker   0x6a, 0x0d, 0xde, 0x12, 0x7e, 0x67, 0xf2, 0x04, 0x4e, 0x54, 0x1a, 0x85,
8365*6236dae4SAndroid Build Coastguard Worker   0x88, 0x89, 0x04, 0x80, 0xff, 0x0f, 0x96, 0xe8, 0x3a, 0x79, 0x97, 0x47,
8366*6236dae4SAndroid Build Coastguard Worker   0x0b, 0xd8, 0x6e, 0x67, 0xab, 0xc5, 0x76, 0x19, 0x1c, 0xc5, 0xd1, 0x74,
8367*6236dae4SAndroid Build Coastguard Worker   0x36, 0xa0, 0x16, 0x60, 0x57, 0x40, 0x84, 0x00, 0x0c, 0x06, 0xa7, 0x49,
8368*6236dae4SAndroid Build Coastguard Worker   0x70, 0x26, 0x7d, 0xbb, 0x0d, 0x07, 0xf7, 0x73, 0x34, 0x67, 0x51, 0xa3,
8369*6236dae4SAndroid Build Coastguard Worker   0x08, 0x66, 0xf3, 0x57, 0x3d, 0x2f, 0x01, 0x7f, 0x64, 0x0d, 0x87, 0x20,
8370*6236dae4SAndroid Build Coastguard Worker   0xfc, 0x17, 0xf6, 0xe6, 0x4e, 0x53, 0xd3, 0xe3, 0x5e, 0xbc, 0xa8, 0x09,
8371*6236dae4SAndroid Build Coastguard Worker   0x17, 0xa9, 0x51, 0x6c, 0x42, 0x2a, 0x4a, 0xc8, 0x13, 0xe7, 0x63, 0x13,
8372*6236dae4SAndroid Build Coastguard Worker   0x73, 0x14, 0xd8, 0x98, 0x06, 0xce, 0x14, 0x60, 0xcd, 0xd8, 0x9f, 0x0d,
8373*6236dae4SAndroid Build Coastguard Worker   0xf6, 0x15, 0xfb, 0xa1, 0xb1, 0x87, 0x94, 0x22, 0xc4, 0x68, 0xc4, 0xb2,
8374*6236dae4SAndroid Build Coastguard Worker   0xdd, 0xea, 0x43, 0x6d, 0x62, 0x9c, 0xe6, 0xd9, 0x0e, 0x45, 0x53, 0x90,
8375*6236dae4SAndroid Build Coastguard Worker   0x6e, 0xd5, 0x55, 0xb2, 0xb5, 0xfb, 0x4c, 0xa6, 0xad, 0x5d, 0x0f, 0xc8,
8376*6236dae4SAndroid Build Coastguard Worker   0x11, 0xb1, 0xc2, 0xbf, 0x5a, 0x5f, 0xe7, 0x68, 0x2a, 0x86, 0xf5, 0x3c,
8377*6236dae4SAndroid Build Coastguard Worker   0x0b, 0x87, 0x42, 0xfa, 0xf8, 0xec, 0xa7, 0x2b, 0x73, 0xa0, 0x71, 0xd4,
8378*6236dae4SAndroid Build Coastguard Worker   0x83, 0xce, 0xf8, 0xfb, 0x11, 0xa5, 0xae, 0x51, 0x31, 0x69, 0xa3, 0x25,
8379*6236dae4SAndroid Build Coastguard Worker   0x78, 0xd7, 0x4d, 0xf8, 0x62, 0xac, 0xd4, 0x64, 0x41, 0xa7, 0x6c, 0x01,
8380*6236dae4SAndroid Build Coastguard Worker   0xa4, 0xc5, 0x31, 0x51, 0x6e, 0x2b, 0x96, 0x1b, 0x36, 0xf8, 0x72, 0xc8,
8381*6236dae4SAndroid Build Coastguard Worker   0x43, 0x79, 0x02, 0x20, 0x19, 0x29, 0xf4, 0xef, 0x01, 0x55, 0x48, 0x95,
8382*6236dae4SAndroid Build Coastguard Worker   0x27, 0xee, 0x88, 0x33, 0xb2, 0xc0, 0x84, 0x66, 0xb5, 0xeb, 0xf0, 0xe3,
8383*6236dae4SAndroid Build Coastguard Worker   0x6c, 0x52, 0x8e, 0x97, 0xd3, 0x6e, 0xce, 0x06, 0x1e, 0xcc, 0x95, 0x7c,
8384*6236dae4SAndroid Build Coastguard Worker   0xd3, 0x74, 0xe3, 0xa2, 0x9b, 0xc2, 0xa9, 0x86, 0xb5, 0xa7, 0xd1, 0x02,
8385*6236dae4SAndroid Build Coastguard Worker   0x43, 0x39, 0x04, 0xf0, 0xdc, 0x2f, 0x8d, 0x66, 0x94, 0x06, 0x0b, 0x8a,
8386*6236dae4SAndroid Build Coastguard Worker   0xf3, 0xaf, 0xee, 0x29, 0xa1, 0xd5, 0x23, 0x38, 0xf0, 0xc2, 0x3a, 0x32,
8387*6236dae4SAndroid Build Coastguard Worker   0x82, 0x04, 0x3d, 0x3c, 0xe3, 0xec, 0x79, 0x6f, 0xfb, 0x65, 0x6f, 0x63,
8388*6236dae4SAndroid Build Coastguard Worker   0x4f, 0x3b, 0xb7, 0x75, 0xa3, 0xaf, 0xf2, 0x19, 0x6e, 0x07, 0xae, 0xf9,
8389*6236dae4SAndroid Build Coastguard Worker   0xab, 0xfe, 0xd7, 0x59, 0xed, 0xbf, 0xb0, 0xb3, 0x8d, 0x2f, 0xbc, 0xeb,
8390*6236dae4SAndroid Build Coastguard Worker   0xf3, 0x43, 0xb7, 0xc5, 0xf8, 0x02, 0x5e, 0x0c, 0x3c, 0xf6, 0x1c, 0x1f,
8391*6236dae4SAndroid Build Coastguard Worker   0x03, 0x7e, 0x1b, 0xd5, 0x1e, 0x4e, 0x9a, 0x30, 0xd8, 0xfc, 0x49, 0xed,
8392*6236dae4SAndroid Build Coastguard Worker   0xec, 0x04, 0x26, 0xd5, 0x5d, 0xf6, 0xa3, 0x6d, 0xcb, 0x92, 0x14, 0x6b,
8393*6236dae4SAndroid Build Coastguard Worker   0x64, 0xb2, 0x41, 0x32, 0xbc, 0x26, 0x86, 0x22, 0x0c, 0x19, 0xd3, 0xfb,
8394*6236dae4SAndroid Build Coastguard Worker   0xf0, 0x8f, 0xae, 0xfd, 0x6f, 0x88, 0x26, 0xf8, 0xdf, 0x52, 0xa6, 0x69,
8395*6236dae4SAndroid Build Coastguard Worker   0xeb, 0x75, 0x73, 0x52, 0x87, 0xe9, 0xe6, 0xe6, 0x8b, 0xc1, 0xee, 0xe6,
8396*6236dae4SAndroid Build Coastguard Worker   0x8b, 0x97, 0xcf, 0x2f, 0x76, 0x76, 0x76, 0xb7, 0x46, 0xc3, 0x95, 0x65,
8397*6236dae4SAndroid Build Coastguard Worker   0x03, 0x0d, 0x2d, 0xe8, 0x2e, 0x01, 0x5c, 0x0d, 0xe7, 0x12, 0x9c, 0xb7,
8398*6236dae4SAndroid Build Coastguard Worker   0x1b, 0x1b, 0x4f, 0xd1, 0x71, 0x40, 0x0d, 0xfc, 0xb6, 0xb6, 0x37, 0xd7,
8399*6236dae4SAndroid Build Coastguard Worker   0x9f, 0xf5, 0x76, 0x7a, 0x5b, 0xa6, 0xae, 0x92, 0x01, 0xd0, 0x6a, 0xaa,
8400*6236dae4SAndroid Build Coastguard Worker   0x16, 0x09, 0x64, 0x5b, 0x51, 0xd9, 0x4e, 0x96, 0x0b, 0x72, 0xac, 0xf9,
8401*6236dae4SAndroid Build Coastguard Worker   0x09, 0x45, 0x1c, 0x6c, 0xd9, 0x12, 0x62, 0xc9, 0x6e, 0xba, 0x98, 0x29,
8402*6236dae4SAndroid Build Coastguard Worker   0x14, 0xe8, 0xf2, 0x5a, 0xce, 0xe4, 0x31, 0x4e, 0xc2, 0x84, 0x97, 0x71,
8403*6236dae4SAndroid Build Coastguard Worker   0x33, 0x07, 0xd9, 0xdf, 0x67, 0x59, 0x0d, 0x9a, 0x35, 0xc5, 0x3c, 0xd2,
8404*6236dae4SAndroid Build Coastguard Worker   0x81, 0x69, 0xb1, 0x4b, 0xee, 0x27, 0x5a, 0x83, 0xb6, 0xd1, 0xf2, 0x45,
8405*6236dae4SAndroid Build Coastguard Worker   0xb0, 0x56, 0xd0, 0x3b, 0x10, 0x7e, 0x84, 0x6a, 0x92, 0x91, 0x70, 0xc6,
8406*6236dae4SAndroid Build Coastguard Worker   0x27, 0xaa, 0xac, 0xaa, 0x41, 0xa4, 0x82, 0x08, 0x7a, 0x53, 0xdc, 0x22,
8407*6236dae4SAndroid Build Coastguard Worker   0xcf, 0x74, 0xa9, 0x12, 0x2b, 0x80, 0xa9, 0x4a, 0xf8, 0xa6, 0x9a, 0x5f,
8408*6236dae4SAndroid Build Coastguard Worker   0xa6, 0xf8, 0xc3, 0x4e, 0x73, 0x5a, 0xa9, 0xa7, 0x61, 0xec, 0x5c, 0x0e,
8409*6236dae4SAndroid Build Coastguard Worker   0x37, 0x37, 0x16, 0xbc, 0x58, 0xad, 0x94, 0xae, 0xae, 0x08, 0x0c, 0xc2,
8410*6236dae4SAndroid Build Coastguard Worker   0x09, 0x51, 0xb6, 0x38, 0xbf, 0x09, 0x25, 0xbe, 0xf4, 0x25, 0xcd, 0x8c,
8411*6236dae4SAndroid Build Coastguard Worker   0xe0, 0x82, 0xa5, 0xc4, 0xa3, 0xa8, 0x83, 0x82, 0xa8, 0xb3, 0x64, 0x62,
8412*6236dae4SAndroid Build Coastguard Worker   0x85, 0x60, 0xf5, 0x76, 0x2d, 0x50, 0x2f, 0xdb, 0x77, 0x73, 0xe6, 0x67,
8413*6236dae4SAndroid Build Coastguard Worker   0x5e, 0x78, 0x32, 0x13, 0x6e, 0xff, 0xfa, 0x4c, 0xb8, 0xf5, 0x3f, 0x9f,
8414*6236dae4SAndroid Build Coastguard Worker   0x09, 0x95, 0x07, 0x93, 0x85, 0x1c, 0xa8, 0x98, 0x6b, 0xd1, 0xbf, 0x0e,
8415*6236dae4SAndroid Build Coastguard Worker   0x13, 0x6e, 0xfd, 0x7a, 0x4c, 0xb8, 0xb9, 0x2c, 0x13, 0x6e, 0x3f, 0x86,
8416*6236dae4SAndroid Build Coastguard Worker   0x09, 0x61, 0xbf, 0xc7, 0xa8, 0x4c, 0x34, 0x98, 0x70, 0xe7, 0xd7, 0x65,
8417*6236dae4SAndroid Build Coastguard Worker   0x42, 0x84, 0x0f, 0x6f, 0xec, 0x09, 0x16, 0xb6, 0x1c, 0x84, 0x73, 0x03,
8418*6236dae4SAndroid Build Coastguard Worker   0x1e, 0xbf, 0xdb, 0x09, 0x0d, 0xab, 0xa3, 0x7a, 0x88, 0x41, 0xcc, 0xea,
8419*6236dae4SAndroid Build Coastguard Worker   0xbf, 0xe7, 0x5e, 0x6f, 0xff, 0x26, 0x02, 0x67, 0xf3, 0xa1, 0xbd, 0x2e,
8420*6236dae4SAndroid Build Coastguard Worker   0x53, 0xce, 0xd1, 0xf9, 0x5e, 0x73, 0xa5, 0xe0, 0x5b, 0x3f, 0x92, 0xe3,
8421*6236dae4SAndroid Build Coastguard Worker   0x76, 0x0f, 0xf5, 0x87, 0x1f, 0xdb, 0xd6, 0x97, 0xf4, 0x9b, 0xb1, 0x96,
8422*6236dae4SAndroid Build Coastguard Worker   0x42, 0xff, 0xf4, 0xf0, 0xeb, 0xbe, 0x24, 0xfa, 0x88, 0x32, 0xa7, 0xca,
8423*6236dae4SAndroid Build Coastguard Worker   0x1e, 0x7b, 0x11, 0xa9, 0xbe, 0x8e, 0xd0, 0xf7, 0xfc, 0x48, 0x23, 0x55,
8424*6236dae4SAndroid Build Coastguard Worker   0x7d, 0xc0, 0x3c, 0xee, 0xba, 0x26, 0x35, 0x06, 0x7b, 0x00, 0xe4, 0x91,
8425*6236dae4SAndroid Build Coastguard Worker   0xde, 0x07, 0xd4, 0xc9, 0x82, 0x31, 0xbe, 0x28, 0x9e, 0x22, 0x43, 0x57,
8426*6236dae4SAndroid Build Coastguard Worker   0x61, 0xff, 0x84, 0x3b, 0x17, 0x89, 0xe9, 0xe4, 0xf6, 0x95, 0xd5, 0xfa,
8427*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x24, 0x60, 0x14, 0x7a, 0x6c, 0xcd, 0x74, 0x24, 0x78, 0x60, 0x76,
8428*6236dae4SAndroid Build Coastguard Worker   0x32, 0xab, 0x37, 0xd4, 0x21, 0x6d, 0x5a, 0xa6, 0x9a, 0x10, 0x1b, 0x70,
8429*6236dae4SAndroid Build Coastguard Worker   0x22, 0x99, 0xdf, 0x6a, 0xd8, 0x31, 0x84, 0xfc, 0x28, 0x60, 0xfa, 0x0e,
8430*6236dae4SAndroid Build Coastguard Worker   0xbd, 0xf1, 0x3d, 0xaf, 0x68, 0x31, 0xbb, 0x73, 0x21, 0x9f, 0xd1, 0x63,
8431*6236dae4SAndroid Build Coastguard Worker   0x0b, 0x6c, 0x9b, 0x13, 0xae, 0x87, 0xe6, 0x5e, 0x9a, 0x31, 0x2a, 0xc5,
8432*6236dae4SAndroid Build Coastguard Worker   0xc1, 0xc1, 0x4e, 0xe8, 0xd5, 0x0e, 0x0c, 0xd9, 0x0e, 0x59, 0xf1, 0x2f,
8433*6236dae4SAndroid Build Coastguard Worker   0x12, 0xfc, 0x8d, 0xfc, 0x63, 0x17, 0x3f, 0x4c, 0x70, 0x21, 0xfc, 0xcf,
8434*6236dae4SAndroid Build Coastguard Worker   0x2b, 0xfa, 0x37, 0x7e, 0x52, 0x01, 0xe2, 0x9d, 0x7d, 0x1e, 0x06, 0x09,
8435*6236dae4SAndroid Build Coastguard Worker   0xad, 0x72, 0x9a, 0x1d, 0x39, 0x8c, 0x2f, 0xf8, 0xae, 0xb0, 0x38, 0xe8,
8436*6236dae4SAndroid Build Coastguard Worker   0xee, 0x9a, 0xd1, 0x07, 0xc0, 0xcd, 0x85, 0x02, 0xce, 0x6d, 0x47, 0xca,
8437*6236dae4SAndroid Build Coastguard Worker   0xd3, 0xc8, 0x3b, 0x73, 0xf3, 0x16, 0xdc, 0xf6, 0x3b, 0x8a, 0xde, 0x67,
8438*6236dae4SAndroid Build Coastguard Worker   0x3f, 0x23, 0x6e, 0x03, 0x77, 0x0b, 0xba, 0xdc, 0xb8, 0xc9, 0x2f, 0xff,
8439*6236dae4SAndroid Build Coastguard Worker   0xc6, 0x2e, 0xdf, 0x32, 0xf3, 0xcd, 0x8d, 0x17, 0xbe, 0xcb, 0xef, 0x43,
8440*6236dae4SAndroid Build Coastguard Worker   0x25, 0xdd, 0x3e, 0x6c, 0x2b, 0x19, 0xca, 0xa0, 0x27, 0xfc, 0x82, 0x81,
8441*6236dae4SAndroid Build Coastguard Worker   0xc5, 0x2e, 0x09, 0x7d, 0x14, 0xe3, 0xeb, 0x01, 0xb7, 0x05, 0x02, 0x73,
8442*6236dae4SAndroid Build Coastguard Worker   0x15, 0x62, 0x73, 0x22, 0x15, 0x44, 0xc4, 0x24, 0xcd, 0xe6, 0xdb, 0xe8,
8443*6236dae4SAndroid Build Coastguard Worker   0x7c, 0xc9, 0xa4, 0x6c, 0x1c, 0xf4, 0x71, 0xce, 0xe8, 0xf6, 0xb2, 0x1d,
8444*6236dae4SAndroid Build Coastguard Worker   0xd0, 0x77, 0xa7, 0x29, 0x7a, 0x5f, 0xd8, 0x0e, 0x12, 0x7f, 0xde, 0xd9,
8445*6236dae4SAndroid Build Coastguard Worker   0xc0, 0x3d, 0xd5, 0x41, 0xe0, 0x00, 0x15, 0xe3, 0x42, 0x60, 0x23, 0xff,
8446*6236dae4SAndroid Build Coastguard Worker   0xbc, 0x9d, 0xfc, 0xe1, 0x9e, 0x25, 0x15, 0x37, 0x86, 0x05, 0xf9, 0x30,
8447*6236dae4SAndroid Build Coastguard Worker   0x29, 0x92, 0x42, 0x7c, 0x17, 0x49, 0x1c, 0x09, 0xff, 0x63, 0x7e, 0xbc,
8448*6236dae4SAndroid Build Coastguard Worker   0x9c, 0x66, 0xbf, 0xdb, 0xf4, 0x8d, 0xfc, 0xa9, 0xeb, 0x16, 0xc8, 0x0c,
8449*6236dae4SAndroid Build Coastguard Worker   0x92, 0x32, 0xe0, 0x23, 0x15, 0x8d, 0x44, 0x51, 0x4a, 0x15, 0x91, 0xd3,
8450*6236dae4SAndroid Build Coastguard Worker   0x54, 0xce, 0x24, 0xec, 0x96, 0xa0, 0xc9, 0x98, 0x1f, 0xc2, 0x50, 0x91,
8451*6236dae4SAndroid Build Coastguard Worker   0xdf, 0x59, 0xdb, 0xa4, 0x5c, 0x70, 0xaa, 0x31, 0x7b, 0x97, 0xba, 0x1e,
8452*6236dae4SAndroid Build Coastguard Worker   0xf4, 0x7e, 0x32, 0xee, 0x72, 0x3d, 0x4e, 0xd8, 0x7d, 0x6a, 0xbf, 0x42,
8453*6236dae4SAndroid Build Coastguard Worker   0x9f, 0x19, 0x95, 0xc9, 0xad, 0xe3, 0x19, 0x61, 0x64, 0xe9, 0x0b, 0xca,
8454*6236dae4SAndroid Build Coastguard Worker   0xa8, 0x30, 0x19, 0xff, 0xf0, 0x7b, 0x4c, 0x9d, 0xad, 0x02, 0xe9, 0xcb,
8455*6236dae4SAndroid Build Coastguard Worker   0xd5, 0xb0, 0x4c, 0x25, 0xd7, 0x0c, 0x9b, 0xbb, 0x54, 0xdc, 0x87, 0x72,
8456*6236dae4SAndroid Build Coastguard Worker   0x88, 0x85, 0x22, 0x97, 0xa9, 0x62, 0x53, 0xda, 0xfe, 0x96, 0x82, 0x8c,
8457*6236dae4SAndroid Build Coastguard Worker   0x49, 0x70, 0x98, 0xbd, 0x40, 0xad, 0xbc, 0xe3, 0x3e, 0x36, 0x05, 0x56,
8458*6236dae4SAndroid Build Coastguard Worker   0xa8, 0x37, 0x31, 0x7e, 0x26, 0xbe, 0xde, 0x95, 0x32, 0x15, 0xd3, 0x52,
8459*6236dae4SAndroid Build Coastguard Worker   0x66, 0x9a, 0x60, 0xd1, 0xc6, 0x55, 0x36, 0x6d, 0x6b, 0x15, 0xf1, 0x67,
8460*6236dae4SAndroid Build Coastguard Worker   0xc5, 0x67, 0xf1, 0x9a, 0x9c, 0xad, 0xe2, 0x26, 0xad, 0xc8, 0x8c, 0x65,
8461*6236dae4SAndroid Build Coastguard Worker   0x98, 0x12, 0x38, 0xea, 0x57, 0xe4, 0x96, 0x93, 0xfb, 0x96, 0xf0, 0x45,
8462*6236dae4SAndroid Build Coastguard Worker   0xb0, 0xc0, 0x95, 0xfc, 0x1d, 0x94, 0xb8, 0x31, 0x07, 0x4b, 0x95, 0x73,
8463*6236dae4SAndroid Build Coastguard Worker   0xb8, 0x58, 0xd0, 0xa2, 0x0b, 0x0f, 0x68, 0x75, 0xc1, 0xc5, 0x69, 0xe8,
8464*6236dae4SAndroid Build Coastguard Worker   0xfe, 0x89, 0x30, 0xdd, 0x58, 0xfa, 0xe0, 0x71, 0x9e, 0x42, 0x31, 0xfd,
8465*6236dae4SAndroid Build Coastguard Worker   0x57, 0xf7, 0x62, 0xff, 0xe9, 0xa1, 0x74, 0x24, 0xe2, 0xf1, 0xba, 0x88,
8466*6236dae4SAndroid Build Coastguard Worker   0x55, 0x96, 0xee, 0xab, 0x18, 0xfe, 0xfc, 0x41, 0x24, 0x0d, 0x23, 0xb0,
8467*6236dae4SAndroid Build Coastguard Worker   0x2f, 0xc4, 0xa3, 0x86, 0xc2, 0x8a, 0xf0, 0x59, 0xb8, 0xed, 0xdf, 0xf0,
8468*6236dae4SAndroid Build Coastguard Worker   0x2a, 0x9d, 0x70, 0x9f, 0x2d, 0x1f, 0x15, 0x05, 0x54, 0xa0, 0x9c, 0xf7,
8469*6236dae4SAndroid Build Coastguard Worker   0x1d, 0x93, 0x5b, 0x72, 0xe3, 0x76, 0x88, 0x9c, 0x76, 0x18, 0x02, 0xd1,
8470*6236dae4SAndroid Build Coastguard Worker   0x2e, 0x58, 0xdf, 0xd1, 0x21, 0x0c, 0x7f, 0xf4, 0xf1, 0xc3, 0xbb, 0xfe,
8471*6236dae4SAndroid Build Coastguard Worker   0x87, 0xb3, 0xd8, 0xeb, 0x64, 0xf1, 0xfe, 0xfc, 0xe8, 0x15, 0xd6, 0x32,
8472*6236dae4SAndroid Build Coastguard Worker   0x9c, 0x9f, 0x1e, 0x9e, 0x9e, 0x44, 0xab, 0x9b, 0x6b, 0x0b, 0x37, 0xc6,
8473*6236dae4SAndroid Build Coastguard Worker   0x6c, 0x85, 0xe9, 0xc6, 0x63, 0x23, 0x39, 0x2c, 0x68, 0xcc, 0x2c, 0x56,
8474*6236dae4SAndroid Build Coastguard Worker   0x91, 0x78, 0xfe, 0x68, 0xdf, 0x0a, 0xff, 0xb6, 0x9c, 0xbe, 0xe2, 0xc6,
8475*6236dae4SAndroid Build Coastguard Worker   0xba, 0x84, 0x8b, 0xb0, 0x22, 0x6f, 0xa1, 0x8c, 0xe2, 0xe6, 0x7e, 0x53,
8476*6236dae4SAndroid Build Coastguard Worker   0x69, 0x8a, 0xd7, 0xff, 0x0d, 0xa3, 0xcc, 0x18, 0x38, 0xa5, 0x1c, 0x51,
8477*6236dae4SAndroid Build Coastguard Worker   0x17, 0x63, 0x67, 0x79, 0x59, 0xe9, 0x6e, 0x27, 0x17, 0x85, 0x5e, 0x58,
8478*6236dae4SAndroid Build Coastguard Worker   0xa1, 0xf8, 0x80, 0x10, 0xdc, 0xd9, 0x6d, 0xb9, 0x37, 0x68, 0x34, 0xd2,
8479*6236dae4SAndroid Build Coastguard Worker   0x77, 0x2d, 0x6b, 0x54, 0x8b, 0x79, 0x83, 0x51, 0x51, 0xa9, 0x05, 0xa2,
8480*6236dae4SAndroid Build Coastguard Worker   0x79, 0x83, 0xda, 0xfe, 0x4a, 0x46, 0x11, 0xe1, 0xf8, 0xb1, 0x02, 0x0d,
8481*6236dae4SAndroid Build Coastguard Worker   0x0a, 0xc8, 0x59, 0x59, 0xf8, 0x39, 0x79, 0xf4, 0x0a, 0x50, 0x20, 0xcf,
8482*6236dae4SAndroid Build Coastguard Worker   0xf8, 0xda, 0x93, 0x89, 0x18, 0x3c, 0x39, 0xc9, 0x4e, 0x86, 0x07, 0xf0,
8483*6236dae4SAndroid Build Coastguard Worker   0xb7, 0xce, 0x26, 0x10, 0x6c, 0x91, 0xdf, 0xfc, 0x86, 0x5e, 0x46, 0xa2,
8484*6236dae4SAndroid Build Coastguard Worker   0x22, 0xe0, 0x8e, 0x9d, 0x14, 0x0e, 0x87, 0x57, 0x0b, 0x35, 0x4a, 0x99,
8485*6236dae4SAndroid Build Coastguard Worker   0x7f, 0x2d, 0x75, 0x05, 0x84, 0x94, 0xe4, 0x09, 0x29, 0x7d, 0x78, 0x9e,
8486*6236dae4SAndroid Build Coastguard Worker   0x59, 0xcd, 0x73, 0x16, 0x33, 0x27, 0x13, 0xab, 0x49, 0x44, 0x4c, 0x1e,
8487*6236dae4SAndroid Build Coastguard Worker   0xe8, 0xe2, 0xae, 0x74, 0x79, 0x6b, 0xe4, 0xde, 0x5a, 0xb0, 0x3b, 0x5f,
8488*6236dae4SAndroid Build Coastguard Worker   0x36, 0xdb, 0x22, 0x48, 0xe9, 0x3f, 0x4e, 0x85, 0x67, 0xc5, 0x08, 0x4f,
8489*6236dae4SAndroid Build Coastguard Worker   0x34, 0x9b, 0x2e, 0xa1, 0x02, 0xe1, 0xe4, 0x5e, 0x9b, 0xb9, 0x79, 0xf5,
8490*6236dae4SAndroid Build Coastguard Worker   0xb6, 0x9c, 0xbd, 0xb2, 0xaa, 0xe0, 0x91, 0xcf, 0x76, 0x7b, 0x5b, 0x6b,
8491*6236dae4SAndroid Build Coastguard Worker   0x3d, 0x37, 0xef, 0x06, 0xd3, 0x1b, 0x80, 0x54, 0x7f, 0x49, 0x0c, 0x5c,
8492*6236dae4SAndroid Build Coastguard Worker   0x14, 0x57, 0x7e, 0xf1, 0x32, 0x3c, 0xbb, 0x9b, 0x65, 0xa1, 0x83, 0x92,
8493*6236dae4SAndroid Build Coastguard Worker   0xab, 0xed, 0xe6, 0x68, 0xa7, 0x2e, 0x8b, 0x62, 0x24, 0xd8, 0x94, 0x8c,
8494*6236dae4SAndroid Build Coastguard Worker   0x45, 0xf9, 0x34, 0x7e, 0x66, 0xe2, 0x7d, 0xd6, 0x22, 0xdc, 0x03, 0x42,
8495*6236dae4SAndroid Build Coastguard Worker   0xed, 0x17, 0x73, 0x2c, 0xfb, 0xa2, 0x28, 0xd0, 0x71, 0xd1, 0xb8, 0xc0,
8496*6236dae4SAndroid Build Coastguard Worker   0xda, 0xd7, 0xdb, 0x99, 0x79, 0x8b, 0x78, 0x2a, 0x45, 0x98, 0x1b, 0xae,
8497*6236dae4SAndroid Build Coastguard Worker   0xe6, 0x4b, 0x2f, 0x48, 0x3f, 0x25, 0xfc, 0xaa, 0x2e, 0xfd, 0x92, 0x32,
8498*6236dae4SAndroid Build Coastguard Worker   0xb6, 0x4c, 0x11, 0xd0, 0xa8, 0x1b, 0x82, 0x19, 0xc2, 0x31, 0x92, 0xa1,
8499*6236dae4SAndroid Build Coastguard Worker   0xab, 0xef, 0x1b, 0x44, 0xfb, 0x15, 0xd8, 0x8a, 0x95, 0xae, 0x81, 0x65,
8500*6236dae4SAndroid Build Coastguard Worker   0x1b, 0xdf, 0x53, 0x36, 0x47, 0x86, 0x99, 0x13, 0xd4, 0x2b, 0xea, 0xe7,
8501*6236dae4SAndroid Build Coastguard Worker   0xb4, 0x2c, 0xfc, 0xfc, 0x41, 0xd2, 0x23, 0x14, 0xda, 0x1b, 0xf4, 0xfe,
8502*6236dae4SAndroid Build Coastguard Worker   0x83, 0x1b, 0x90, 0x2d, 0x94, 0x0e, 0x69, 0x7e, 0x88, 0x5f, 0xf5, 0x58,
8503*6236dae4SAndroid Build Coastguard Worker   0xf8, 0x2f, 0xb0, 0x36, 0x04, 0xdd, 0x12, 0x49, 0x67, 0x66, 0x93, 0x11,
8504*6236dae4SAndroid Build Coastguard Worker   0x8a, 0x7f, 0xa6, 0x39, 0x5f, 0xce, 0x91, 0x1a, 0x23, 0xbe, 0xd6, 0x3d,
8505*6236dae4SAndroid Build Coastguard Worker   0x43, 0x75, 0x79, 0x06, 0x32, 0xa9, 0xa0, 0x23, 0x34, 0xa9, 0x6c, 0x21,
8506*6236dae4SAndroid Build Coastguard Worker   0xb3, 0x09, 0xa1, 0x5f, 0x70, 0x2f, 0x6c, 0x81, 0x1f, 0x17, 0x9d, 0xd2,
8507*6236dae4SAndroid Build Coastguard Worker   0x17, 0xbd, 0x71, 0x14, 0xbd, 0x4a, 0xf3, 0xfb, 0xe6, 0x84, 0xb0, 0x54,
8508*6236dae4SAndroid Build Coastguard Worker   0x07, 0xf4, 0x00, 0x0e, 0x78, 0x48, 0x3b, 0x08, 0x4a, 0x40, 0x23, 0x74,
8509*6236dae4SAndroid Build Coastguard Worker   0x7c, 0x6c, 0x07, 0x62, 0xa6, 0xe8, 0x4f, 0xa9, 0x39, 0xe7, 0x90, 0x20,
8510*6236dae4SAndroid Build Coastguard Worker   0xf8, 0xcc, 0x90, 0x41, 0x11, 0x28, 0x5d, 0x62, 0xac, 0x52, 0x47, 0x0e,
8511*6236dae4SAndroid Build Coastguard Worker   0x4d, 0x59, 0xa3, 0x4f, 0x3e, 0x86, 0x0c, 0xd4, 0x00, 0x80, 0x2c, 0xcb,
8512*6236dae4SAndroid Build Coastguard Worker   0x6a, 0x36, 0xf8, 0x49, 0x1a, 0x63, 0xa1, 0x5f, 0xa4, 0x14, 0x2a, 0x88,
8513*6236dae4SAndroid Build Coastguard Worker   0x55, 0x0f, 0xbb, 0x0a, 0x0f, 0x70, 0xd0, 0xb3, 0xc6, 0x1a, 0xc0, 0xd0,
8514*6236dae4SAndroid Build Coastguard Worker   0x70, 0x94, 0x4b, 0x97, 0x39, 0x99, 0xde, 0x51, 0xb3, 0xa4, 0x74, 0x11,
8515*6236dae4SAndroid Build Coastguard Worker   0x7a, 0x91, 0xb7, 0xeb, 0x7a, 0x7e, 0xe2, 0x0b, 0x3c, 0x69, 0x5c, 0x33,
8516*6236dae4SAndroid Build Coastguard Worker   0xd4, 0xba, 0x23, 0x99, 0x96, 0x5c, 0x02, 0x67, 0x2a, 0x3f, 0xf1, 0xf1,
8517*6236dae4SAndroid Build Coastguard Worker   0xb9, 0x63, 0xa9, 0xe0, 0xab, 0xba, 0x7f, 0xc1, 0xff, 0xf8, 0x6b, 0x68,
8518*6236dae4SAndroid Build Coastguard Worker   0x96, 0xb1, 0x22, 0x4c, 0x89, 0x08, 0x1f, 0x7c, 0x9c, 0xa4, 0x1a, 0xbd,
8519*6236dae4SAndroid Build Coastguard Worker   0x3e, 0xef, 0x03, 0x8e, 0x70, 0x58, 0x3c, 0x36, 0x39, 0x3d, 0x96, 0xf8,
8520*6236dae4SAndroid Build Coastguard Worker   0xc0, 0x07, 0xd1, 0x54, 0x1c, 0x2e, 0xc7, 0xbf, 0x52, 0x3f, 0x4f, 0xd4,
8521*6236dae4SAndroid Build Coastguard Worker   0x5f, 0xa5, 0xee, 0x5f, 0x81, 0xc0, 0xc4, 0x2e, 0xab, 0xb0, 0x17, 0x3a,
8522*6236dae4SAndroid Build Coastguard Worker   0x79, 0x1c, 0xbc, 0xe6, 0xc1, 0x17, 0x58, 0x2f, 0x5b, 0xe2, 0x1f, 0xb8,
8523*6236dae4SAndroid Build Coastguard Worker   0xbb, 0x94, 0x48, 0xac, 0x4d, 0x07, 0xb5, 0x6a, 0x73, 0x5a, 0xd4, 0xdc,
8524*6236dae4SAndroid Build Coastguard Worker   0x01, 0x71, 0x8c, 0xb1, 0x2c, 0xd0, 0x51, 0x4a, 0x74, 0x8a, 0xe2, 0x67,
8525*6236dae4SAndroid Build Coastguard Worker   0xc3, 0x97, 0x65, 0xd7, 0x51, 0xa9, 0x71, 0x64, 0xf2, 0x80, 0xcd, 0xa6,
8526*6236dae4SAndroid Build Coastguard Worker   0x54, 0xdc, 0x20, 0x25, 0x3e, 0xda, 0x26, 0xce, 0xd1, 0x4a, 0x02, 0xaa,
8527*6236dae4SAndroid Build Coastguard Worker   0x30, 0x57, 0x06, 0x91, 0x77, 0xcd, 0xf4, 0x4f, 0xbc, 0x29, 0xb2, 0xd1,
8528*6236dae4SAndroid Build Coastguard Worker   0xa2, 0x7e, 0x38, 0x5e, 0x8f, 0xe2, 0x60, 0x46, 0xbe, 0x2d, 0xe4, 0x4d,
8529*6236dae4SAndroid Build Coastguard Worker   0x2a, 0x17, 0xd3, 0xc6, 0x07, 0xcd, 0xb0, 0x09, 0xc0, 0x94, 0x5a, 0x92,
8530*6236dae4SAndroid Build Coastguard Worker   0x63, 0xe0, 0x31, 0x4f, 0x6a, 0x3d, 0x60, 0x8e, 0x88, 0xc6, 0x69, 0x12,
8531*6236dae4SAndroid Build Coastguard Worker   0x06, 0x6c, 0x8e, 0x26, 0xd3, 0x30, 0xf5, 0x4b, 0xe8, 0x6c, 0x73, 0xee,
8532*6236dae4SAndroid Build Coastguard Worker   0x27, 0x5d, 0x3c, 0x2e, 0x57, 0x75, 0x2b, 0xe0, 0xef, 0x65, 0x3d, 0x6b,
8533*6236dae4SAndroid Build Coastguard Worker   0xce, 0xed, 0x65, 0x4a, 0x25, 0xad, 0x7e, 0xd6, 0x52, 0xb5, 0xee, 0xee,
8534*6236dae4SAndroid Build Coastguard Worker   0xb5, 0x66, 0x6a, 0xe1, 0x75, 0x35, 0x25, 0x40, 0x41, 0xd8, 0xd8, 0xac,
8535*6236dae4SAndroid Build Coastguard Worker   0x26, 0x66, 0x69, 0x95, 0x99, 0x6a, 0x89, 0x24, 0x85, 0x97, 0x51, 0x16,
8536*6236dae4SAndroid Build Coastguard Worker   0x78, 0xcd, 0x38, 0x73, 0x0d, 0x0e, 0xbb, 0xd5, 0x4c, 0x5c, 0x77, 0x42,
8537*6236dae4SAndroid Build Coastguard Worker   0xea, 0x8d, 0xf8, 0xae, 0xb8, 0xb1, 0xad, 0xd3, 0x23, 0x18, 0x79, 0x00,
8538*6236dae4SAndroid Build Coastguard Worker   0xc3, 0xc5, 0x61, 0xa7, 0xec, 0xba, 0xc9, 0x9b, 0x05, 0x66, 0xcd, 0x47,
8539*6236dae4SAndroid Build Coastguard Worker   0x31, 0xc8, 0xa4, 0xe9, 0x13, 0x88, 0x6e, 0x89, 0x60, 0xfe, 0x4d, 0x95,
8540*6236dae4SAndroid Build Coastguard Worker   0x4e, 0xb6, 0x7e, 0x6e, 0x84, 0x06, 0x3f, 0xeb, 0xe9, 0x4b, 0xed, 0xc6,
8541*6236dae4SAndroid Build Coastguard Worker   0x5d, 0x57, 0x47, 0x34, 0x7f, 0xe1, 0xd2, 0xb6, 0x46, 0x15, 0xeb, 0xa8,
8542*6236dae4SAndroid Build Coastguard Worker   0x55, 0xb9, 0xd8, 0x78, 0xf2, 0x41, 0xa3, 0x68, 0x6e, 0xef, 0xdc, 0xc8,
8543*6236dae4SAndroid Build Coastguard Worker   0xdd, 0x10, 0xdd, 0x80, 0x50, 0x6d, 0x99, 0xed, 0x19, 0x26, 0xdb, 0xf0,
8544*6236dae4SAndroid Build Coastguard Worker   0x81, 0xa1, 0x8e, 0x68, 0x4c, 0x32, 0x13, 0x73, 0xa9, 0xbb, 0x76, 0xbe,
8545*6236dae4SAndroid Build Coastguard Worker   0xc5, 0x46, 0xab, 0xb7, 0x2f, 0x98, 0x99, 0x2a, 0x2d, 0x52, 0xf9, 0x39,
8546*6236dae4SAndroid Build Coastguard Worker   0xb9, 0x73, 0x6d, 0xff, 0xaa, 0xf6, 0x24, 0x17, 0x74, 0x73, 0xa4, 0x6b,
8547*6236dae4SAndroid Build Coastguard Worker   0x80, 0x3e, 0x84, 0x13, 0xcb, 0xd2, 0xea, 0x69, 0x9b, 0xcb, 0x0b, 0xf9,
8548*6236dae4SAndroid Build Coastguard Worker   0x1d, 0xb6, 0x36, 0x84, 0xc2, 0x3c, 0x6f, 0x73, 0x87, 0x09, 0x26, 0x39,
8549*6236dae4SAndroid Build Coastguard Worker   0x84, 0xcb, 0x64, 0xfa, 0x22, 0x89, 0x62, 0x7d, 0x0a, 0xef, 0x3c, 0x12,
8550*6236dae4SAndroid Build Coastguard Worker   0x71, 0x59, 0xee, 0x3a, 0x7b, 0x29, 0x17, 0xe5, 0x29, 0x89, 0x66, 0xee,
8551*6236dae4SAndroid Build Coastguard Worker   0x0c, 0x0e, 0x0f, 0x18, 0xc5, 0xb6, 0x46, 0xd0, 0xbd, 0x3b, 0x43, 0x84,
8552*6236dae4SAndroid Build Coastguard Worker   0xa5, 0x48, 0xd2, 0x2a, 0x1a, 0x1d, 0x26, 0x98, 0x49, 0x43, 0xae, 0x72,
8553*6236dae4SAndroid Build Coastguard Worker   0xfe, 0x88, 0xfc, 0x95, 0xf2, 0x6b, 0x88, 0x38, 0x96, 0x7a, 0xbd, 0x47,
8554*6236dae4SAndroid Build Coastguard Worker   0xfb, 0xc7, 0x1a, 0x83, 0x4b, 0x91, 0xdd, 0x7c, 0xba, 0xd1, 0x43, 0xbf,
8555*6236dae4SAndroid Build Coastguard Worker   0x11, 0xdd, 0x68, 0xec, 0x75, 0x2a, 0x35, 0x58, 0xb7, 0xf5, 0x68, 0x4f,
8556*6236dae4SAndroid Build Coastguard Worker   0x25, 0x9e, 0x15, 0xdc, 0x66, 0x53, 0xba, 0x8d, 0x48, 0x83, 0xe0, 0xa1,
8557*6236dae4SAndroid Build Coastguard Worker   0xeb, 0xaa, 0x7a, 0x4a, 0x24, 0x58, 0x95, 0x97, 0x82, 0x31, 0x87, 0x66,
8558*6236dae4SAndroid Build Coastguard Worker   0x30, 0x66, 0x5c, 0xdf, 0x4f, 0xd3, 0x68, 0x1f, 0xff, 0x5c, 0x40, 0x37,
8559*6236dae4SAndroid Build Coastguard Worker   0xf3, 0xe0, 0x6f, 0x43, 0x3a, 0x33, 0x3c, 0x66, 0x49, 0xb9, 0x3f, 0xe5,
8560*6236dae4SAndroid Build Coastguard Worker   0x84, 0xab, 0xa7, 0x90, 0xf0, 0x61, 0x86, 0xa1, 0x73, 0x86, 0x7f, 0x7e,
8561*6236dae4SAndroid Build Coastguard Worker   0x2f, 0x47, 0xfe, 0xc7, 0xb9, 0x04, 0x38, 0xea, 0x0a, 0x11, 0x7e, 0xbb,
8562*6236dae4SAndroid Build Coastguard Worker   0xf5, 0xff, 0x96, 0x2b, 0xcd, 0xa6, 0x57, 0x68, 0x57, 0xed, 0x87, 0x60,
8563*6236dae4SAndroid Build Coastguard Worker   0x5f, 0x9c, 0x4d, 0x96, 0xc7, 0x7e, 0x9b, 0x25, 0xca, 0xe0, 0x47, 0x87,
8564*6236dae4SAndroid Build Coastguard Worker   0xaf, 0xde, 0x1c, 0xc5, 0xf0, 0x67, 0xff, 0x20, 0x3e, 0x38, 0xea, 0x6f,
8565*6236dae4SAndroid Build Coastguard Worker   0xed, 0x3e, 0x8b, 0x0f, 0x0f, 0xdf, 0xbe, 0xf8, 0x8d, 0x16, 0x5e, 0x8e,
8566*6236dae4SAndroid Build Coastguard Worker   0x2d, 0xa4, 0xfd, 0x82, 0x85, 0xcb, 0x63, 0xbf, 0xcd, 0xc2, 0x65, 0xf0,
8567*6236dae4SAndroid Build Coastguard Worker   0x32, 0xfd, 0x89, 0x5a, 0xf1, 0x3c, 0x55, 0x9e, 0x3e, 0xb8, 0x58, 0xbe,
8568*6236dae4SAndroid Build Coastguard Worker   0x51, 0x82, 0x7a, 0x81, 0xaf, 0x18, 0xbc, 0x92, 0xf2, 0xf8, 0xe6, 0xa5,
8569*6236dae4SAndroid Build Coastguard Worker   0x7b, 0xcb, 0xf1, 0xc6, 0xa7, 0xe9, 0x05, 0x52, 0x71, 0xef, 0x2b, 0x06,
8570*6236dae4SAndroid Build Coastguard Worker   0xf2, 0x2d, 0x7c, 0xb7, 0xed, 0x5e, 0x68, 0x68, 0x06, 0x4f, 0x22, 0xaf,
8571*6236dae4SAndroid Build Coastguard Worker   0x7c, 0xf5, 0x0f, 0xba, 0xc5, 0x49, 0x85, 0xf0, 0xb7, 0x82, 0x6b, 0x6e,
8572*6236dae4SAndroid Build Coastguard Worker   0xa2, 0x7d, 0xfe, 0xef, 0xfa, 0x17, 0x21, 0xf6, 0x33, 0x70, 0x24, 0xa8,
8573*6236dae4SAndroid Build Coastguard Worker   0xc7, 0x4a, 0x95, 0x0e, 0x77, 0x7b, 0x67, 0xac, 0x60, 0x31, 0xa1, 0x4d,
8574*6236dae4SAndroid Build Coastguard Worker   0x0b, 0x73, 0xb7, 0x7b, 0x29, 0xbe, 0xea, 0x59, 0x5f, 0x8a, 0x7e, 0xd3,
8575*6236dae4SAndroid Build Coastguard Worker   0x33, 0x55, 0x93, 0xa6, 0xdd, 0x8b, 0x49, 0x32, 0x45, 0x07, 0x44, 0xea,
8576*6236dae4SAndroid Build Coastguard Worker   0x7c, 0xb0, 0x32, 0xe8, 0xee, 0x21, 0x7c, 0x63, 0x4c, 0x44, 0xb8, 0x49,
8577*6236dae4SAndroid Build Coastguard Worker   0x08, 0x0f, 0xce, 0xe9, 0x13, 0xf5, 0x06, 0x49, 0x22, 0xf3, 0xc5, 0x13,
8578*6236dae4SAndroid Build Coastguard Worker   0x23, 0x35, 0x83, 0x7a, 0x54, 0x88, 0x79, 0xc2, 0x7d, 0xe8, 0xd9, 0xd6,
8579*6236dae4SAndroid Build Coastguard Worker   0x1d, 0x73, 0x85, 0x6a, 0x74, 0x78, 0xfa, 0xee, 0xdd, 0xd1, 0x61, 0x3b,
8580*6236dae4SAndroid Build Coastguard Worker   0x6f, 0xc2, 0x62, 0x72, 0x10, 0x4a, 0xb1, 0xb8, 0x0e, 0x82, 0x35, 0x4d,
8581*6236dae4SAndroid Build Coastguard Worker   0xd2, 0xab, 0xd6, 0x84, 0xc1, 0x79, 0x06, 0xf0, 0xaf, 0x5b, 0x81, 0xa8,
8582*6236dae4SAndroid Build Coastguard Worker   0xa1, 0x5f, 0x0b, 0xd6, 0x8d, 0x34, 0x30, 0x62, 0x7e, 0xf3, 0x90, 0xd3,
8583*6236dae4SAndroid Build Coastguard Worker   0x03, 0xdc, 0x67, 0x5d, 0x9c, 0x14, 0xf6, 0xad, 0x66, 0xa5, 0x80, 0xa5,
8584*6236dae4SAndroid Build Coastguard Worker   0x91, 0x3f, 0x4c, 0x67, 0x40, 0xd3, 0x4d, 0x46, 0xa3, 0x75, 0xa9, 0xe0,
8585*6236dae4SAndroid Build Coastguard Worker   0x15, 0xc8, 0x2b, 0xf8, 0xf0, 0xbc, 0x93, 0xc3, 0x8d, 0x50, 0x10, 0x38,
8586*6236dae4SAndroid Build Coastguard Worker   0x25, 0x2e, 0x2e, 0xb8, 0xc7, 0xea, 0x24, 0x29, 0xaf, 0x31, 0x05, 0xc8,
8587*6236dae4SAndroid Build Coastguard Worker   0xa9, 0x4b, 0x26, 0xfc, 0x30, 0x6a, 0x58, 0x32, 0x1a, 0x85, 0x30, 0x59,
8588*6236dae4SAndroid Build Coastguard Worker   0x29, 0xa0, 0xe7, 0x42, 0x3a, 0xc8, 0x84, 0x48, 0x54, 0xe5, 0xf5, 0x1e,
8589*6236dae4SAndroid Build Coastguard Worker   0x66, 0x78, 0xeb, 0xeb, 0x79, 0x7a, 0x8b, 0x9f, 0x61, 0xf8, 0x6d, 0xc4,
8590*6236dae4SAndroid Build Coastguard Worker   0x56, 0xf5, 0x7b, 0x2b, 0x70, 0x77, 0x3e, 0x8e, 0x94, 0xde, 0x3b, 0x8e,
8591*6236dae4SAndroid Build Coastguard Worker   0xdd, 0x09, 0x37, 0x10, 0x06, 0x9e, 0xa3, 0xc6, 0x6e, 0x82, 0x8b, 0xe2,
8592*6236dae4SAndroid Build Coastguard Worker   0xd1, 0xea, 0x0d, 0x33, 0x53, 0x23, 0x01, 0xdb, 0x4b, 0x45, 0x37, 0xc0,
8593*6236dae4SAndroid Build Coastguard Worker   0xfb, 0x83, 0x54, 0x99, 0x9c, 0xe4, 0xd9, 0x3c, 0x34, 0x72, 0xdb, 0xe9,
8594*6236dae4SAndroid Build Coastguard Worker   0x83, 0x02, 0x73, 0x55, 0x63, 0x00, 0xdd, 0xda, 0x64, 0x4e, 0x36, 0x43,
8595*6236dae4SAndroid Build Coastguard Worker   0x1f, 0x5b, 0x10, 0x92, 0x13, 0x8e, 0x04, 0xe6, 0x6e, 0xbb, 0xdf, 0x15,
8596*6236dae4SAndroid Build Coastguard Worker   0xfa, 0x07, 0xb0, 0x4b, 0x17, 0x75, 0x01, 0x2d, 0x2f, 0x67, 0x0c, 0x64,
8597*6236dae4SAndroid Build Coastguard Worker   0x85, 0x80, 0x1b, 0x74, 0x58, 0xe3, 0x40, 0x58, 0x24, 0x62, 0xe0, 0x25,
8598*6236dae4SAndroid Build Coastguard Worker   0x75, 0x2b, 0x53, 0x6e, 0x06, 0x90, 0x17, 0x37, 0x42, 0x88, 0xaf, 0xa1,
8599*6236dae4SAndroid Build Coastguard Worker   0x33, 0x8e, 0x6f, 0xca, 0x01, 0xce, 0xf2, 0xa9, 0xd7, 0xa1, 0x9c, 0xdb,
8600*6236dae4SAndroid Build Coastguard Worker   0x43, 0x30, 0xb6, 0xed, 0x17, 0x71, 0xbb, 0xad, 0x2e, 0x3a, 0xec, 0xdc,
8601*6236dae4SAndroid Build Coastguard Worker   0x3d, 0xa5, 0xeb, 0x83, 0x3c, 0x89, 0x55, 0x3d, 0xca, 0xf2, 0x47, 0xfb,
8602*6236dae4SAndroid Build Coastguard Worker   0x3d, 0xac, 0xe3, 0x43, 0xea, 0xa4, 0x39, 0x9b, 0xc5, 0x32, 0xeb, 0x3a,
8603*6236dae4SAndroid Build Coastguard Worker   0xb9, 0x2a, 0xdb, 0xbc, 0x60, 0xde, 0x52, 0x11, 0xb1, 0x74, 0xc2, 0xac,
8604*6236dae4SAndroid Build Coastguard Worker   0x2b, 0x03, 0x3b, 0xdf, 0xc5, 0xaf, 0x31, 0xf3, 0x25, 0x7e, 0x07, 0x24,
8605*6236dae4SAndroid Build Coastguard Worker   0xdc, 0x8b, 0xfe, 0xb3, 0x48, 0x3b, 0x4e, 0x94, 0x7c, 0xbe, 0x68, 0x7e,
8606*6236dae4SAndroid Build Coastguard Worker   0xcc, 0xd0, 0x98, 0xe2, 0x10, 0x1f, 0x5c, 0x12, 0xbf, 0xc3, 0xf9, 0x9c,
8607*6236dae4SAndroid Build Coastguard Worker   0x96, 0x59, 0xf5, 0x2b, 0x8e, 0xfe, 0x06, 0xa4, 0xc2, 0xde, 0xe3, 0x86,
8608*6236dae4SAndroid Build Coastguard Worker   0x5b, 0x90, 0xa5, 0x4b, 0x28, 0x90, 0xad, 0xeb, 0x21, 0xcb, 0x29, 0x06,
8609*6236dae4SAndroid Build Coastguard Worker   0x91, 0xce, 0x53, 0x48, 0xae, 0x51, 0xc2, 0xea, 0x43, 0xbf, 0x8d, 0x56,
8610*6236dae4SAndroid Build Coastguard Worker   0x62, 0x46, 0xff, 0x4d, 0x54, 0x91, 0xeb, 0xf4, 0xfe, 0x51, 0x66, 0x85,
8611*6236dae4SAndroid Build Coastguard Worker   0x79, 0xee, 0x37, 0x59, 0xa3, 0x19, 0x1d, 0x53, 0xed, 0x9d, 0x1f, 0x46,
8612*6236dae4SAndroid Build Coastguard Worker   0x14, 0xda, 0xff, 0xad, 0x16, 0x1e, 0xed, 0xc3, 0x1f, 0x0b, 0x97, 0xfc,
8613*6236dae4SAndroid Build Coastguard Worker   0x9b, 0xad, 0xf6, 0x37, 0x5c, 0xd8, 0xbc, 0xa6, 0x6a, 0xc1, 0x62, 0x1c,
8614*6236dae4SAndroid Build Coastguard Worker   0xd2, 0xfa, 0x1e, 0xec, 0xaf, 0x46, 0xf7, 0xbd, 0x17, 0xc4, 0x73, 0x74,
8615*6236dae4SAndroid Build Coastguard Worker   0xcf, 0x85, 0xda, 0xa6, 0xc5, 0x7b, 0x72, 0x15, 0xce, 0x40, 0x02, 0x5c,
8616*6236dae4SAndroid Build Coastguard Worker   0x68, 0x22, 0x92, 0x59, 0xf1, 0x8b, 0x95, 0x4f, 0xa7, 0x59, 0xd7, 0xaf,
8617*6236dae4SAndroid Build Coastguard Worker   0xab, 0x7f, 0x2e, 0xaf, 0x72, 0x22, 0x0e, 0xd7, 0xe3, 0xf7, 0xc6, 0x47,
8618*6236dae4SAndroid Build Coastguard Worker   0xb7, 0xfb, 0x65, 0xba, 0x3f, 0xa1, 0x80, 0x35, 0x34, 0x7f, 0xfa, 0x44,
8619*6236dae4SAndroid Build Coastguard Worker   0x83, 0xce, 0x8f, 0x51, 0xba, 0x1e, 0x47, 0x75, 0xc2, 0x31, 0x5b, 0x40,
8620*6236dae4SAndroid Build Coastguard Worker   0xf0, 0x65, 0xe5, 0xb5, 0x47, 0xf7, 0x36, 0x98, 0x58, 0x63, 0x37, 0x7c,
8621*6236dae4SAndroid Build Coastguard Worker   0xda, 0x2f, 0xaa, 0x99, 0xb4, 0x27, 0x9f, 0x9e, 0xfa, 0x4d, 0x8e, 0x7e,
8622*6236dae4SAndroid Build Coastguard Worker   0xb3, 0xde, 0xf1, 0xf7, 0x10, 0x07, 0xff, 0x3a, 0xe5, 0x7a, 0x4e, 0x80,
8623*6236dae4SAndroid Build Coastguard Worker   0x20, 0x50, 0xaf, 0xf7, 0xbf, 0xe5, 0x7a, 0xff, 0x5b, 0xae, 0xf7, 0xcb,
8624*6236dae4SAndroid Build Coastguard Worker   0xcb, 0xf5, 0x7e, 0xf7, 0x8a, 0x33, 0xff, 0x8c, 0x3d, 0xa1, 0xee, 0xcc,
8625*6236dae4SAndroid Build Coastguard Worker   0x1f, 0xe4, 0x57, 0xac, 0x3e, 0xdb, 0x7d, 0x19, 0x12, 0x0b, 0xc8, 0x67,
8626*6236dae4SAndroid Build Coastguard Worker   0xd9, 0x50, 0xb0, 0xc3, 0xf6, 0xe7, 0xf6, 0x90, 0x34, 0x28, 0x4e, 0x8d,
8627*6236dae4SAndroid Build Coastguard Worker   0xc4, 0x61, 0x27, 0x05, 0x4e, 0xc6, 0x61, 0xb3, 0xcb, 0x3a, 0x17, 0x7c,
8628*6236dae4SAndroid Build Coastguard Worker   0xfc, 0x05, 0x39, 0x02, 0x4f, 0x8a, 0xa9, 0xb6, 0xe7, 0xdb, 0xa9, 0xae,
8629*6236dae4SAndroid Build Coastguard Worker   0xca, 0xd9, 0x00, 0x8e, 0xf6, 0x7d, 0x67, 0xa9, 0x5b, 0xdb, 0x4d, 0x5a,
8630*6236dae4SAndroid Build Coastguard Worker   0xdb, 0x0e, 0x52, 0xa5, 0x1a, 0xc7, 0xb4, 0x54, 0xc4, 0x18, 0xf4, 0x3c,
8631*6236dae4SAndroid Build Coastguard Worker   0x74, 0xf6, 0x82, 0x68, 0x3d, 0xf7, 0xdb, 0xdc, 0x15, 0xed, 0x8f, 0xfc,
8632*6236dae4SAndroid Build Coastguard Worker   0x26, 0xd7, 0x03, 0x7d, 0x64, 0x56, 0x17, 0xf1, 0x70, 0x9c, 0x81, 0x04,
8633*6236dae4SAndroid Build Coastguard Worker   0x21, 0xff, 0xf6, 0xe2, 0x65, 0xb7, 0x1e, 0xfe, 0x0d, 0xd7, 0xde, 0xfe,
8634*6236dae4SAndroid Build Coastguard Worker   0xd2, 0x2f, 0x24, 0xc0, 0xf3, 0xe7, 0x21, 0x02, 0xd4, 0xe3, 0x6a, 0x73,
8635*6236dae4SAndroid Build Coastguard Worker   0xdb, 0xfa, 0xdd, 0xe5, 0x2f, 0x33, 0x44, 0xb9, 0x0b, 0xf9, 0xe0, 0xf9,
8636*6236dae4SAndroid Build Coastguard Worker   0xaa, 0xec, 0x1b, 0xf0, 0x47, 0x49, 0x4f, 0xa0, 0xb7, 0x28, 0xba, 0x9e,
8637*6236dae4SAndroid Build Coastguard Worker   0x56, 0xea, 0xbd, 0x35, 0x99, 0x35, 0x2a, 0xe0, 0x02, 0x98, 0x00, 0x04,
8638*6236dae4SAndroid Build Coastguard Worker   0x5d, 0xeb, 0x52, 0x8d, 0x74, 0x3b, 0xac, 0xfe, 0x57, 0xbd, 0xa6, 0xa2,
8639*6236dae4SAndroid Build Coastguard Worker   0xeb, 0x62, 0xb3, 0xb7, 0xcd, 0xf0, 0xa3, 0x0a, 0xf5, 0x2e, 0xf3, 0xf4,
8640*6236dae4SAndroid Build Coastguard Worker   0xda, 0x7d, 0xd0, 0x04, 0xa8, 0x43, 0xb0, 0xba, 0x14, 0x6f, 0x92, 0x71,
8641*6236dae4SAndroid Build Coastguard Worker   0x36, 0xd2, 0xe7, 0x7b, 0xd1, 0x7b, 0x74, 0x59, 0x60, 0xe7, 0x40, 0x9c,
8642*6236dae4SAndroid Build Coastguard Worker   0x0f, 0xdd, 0x44, 0x30, 0x76, 0x24, 0xbf, 0x0f, 0x0d, 0xe7, 0x36, 0x6e,
8643*6236dae4SAndroid Build Coastguard Worker   0x24, 0xd9, 0xfa, 0xe1, 0xfd, 0x89, 0x9f, 0xb6, 0xa8, 0x5b, 0x41, 0xc5,
8644*6236dae4SAndroid Build Coastguard Worker   0x06, 0x55, 0xba, 0x3e, 0x2a, 0x86, 0xd5, 0x3a, 0xee, 0xa2, 0x7e, 0xf8,
8645*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x9e, 0x8c, 0x17, 0x23, 0x6a, 0x66, 0xac, 0x7b, 0x20, 0x96, 0x9e,
8646*6236dae4SAndroid Build Coastguard Worker   0x69, 0x54, 0x69, 0xcb, 0x9f, 0x88, 0x3d, 0x32, 0x07, 0x86, 0x16, 0x7e,
8647*6236dae4SAndroid Build Coastguard Worker   0xef, 0x35, 0xec, 0xa0, 0x72, 0x67, 0x58, 0x10, 0xfc, 0x3f, 0xea, 0xb2,
8648*6236dae4SAndroid Build Coastguard Worker   0x8e, 0x89, 0x51, 0x01, 0x24, 0xc2, 0xc4, 0xe9, 0x79, 0xe7, 0x94, 0x33,
8649*6236dae4SAndroid Build Coastguard Worker   0xfb, 0x7b, 0xc3, 0xf8, 0x5d, 0x75, 0x79, 0x8f, 0x89, 0xba, 0x74, 0xd7,
8650*6236dae4SAndroid Build Coastguard Worker   0xca, 0x66, 0xb4, 0x76, 0xdc, 0x14, 0x45, 0x30, 0xc8, 0x19, 0x73, 0x56,
8651*6236dae4SAndroid Build Coastguard Worker   0xfb, 0xf2, 0x16, 0x16, 0x9b, 0x93, 0x59, 0xf2, 0xbb, 0x97, 0x47, 0xf8,
8652*6236dae4SAndroid Build Coastguard Worker   0xcc, 0x0f, 0x6b, 0xfb, 0x78, 0x70, 0xd4, 0xff, 0xb8, 0xb9, 0xf5, 0xe2,
8653*6236dae4SAndroid Build Coastguard Worker   0xe3, 0x57, 0x87, 0x6f, 0x3f, 0xf6, 0xdf, 0x1c, 0xa0, 0x5e, 0xf4, 0x44,
8654*6236dae4SAndroid Build Coastguard Worker   0x09, 0xfb, 0x6c, 0x73, 0xce, 0x71, 0x43, 0xcd, 0xfc, 0x31, 0x2e, 0x07,
8655*6236dae4SAndroid Build Coastguard Worker   0xf7, 0xd1, 0xdf, 0x44, 0xc8, 0xb8, 0x1f, 0xe8, 0xbf, 0x3f, 0xfb, 0x6d,
8656*6236dae4SAndroid Build Coastguard Worker   0x04, 0x2c, 0x7c, 0xc4, 0x94, 0xf5, 0xec, 0x73, 0xcd, 0xce, 0xc2, 0x25,
8657*6236dae4SAndroid Build Coastguard Worker   0x9b, 0x87, 0x7f, 0xab, 0x25, 0x9b, 0x0f, 0x34, 0xad, 0xb0, 0x5f, 0x7d,
8658*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x64, 0xee, 0x05, 0x35, 0x8b, 0xc6, 0x7a, 0xe9, 0xb1, 0xdf, 0x6a,
8659*6236dae4SAndroid Build Coastguard Worker   0xad, 0x34, 0x78, 0x35, 0x41, 0xdb, 0xf6, 0xb7, 0x5a, 0xe6, 0xcd, 0xe6,
8660*6236dae4SAndroid Build Coastguard Worker   0xbc, 0xd5, 0x51, 0x1d, 0x2c, 0x3d, 0xf1, 0x9b, 0xad, 0x0f, 0x86, 0xfe,
8661*6236dae4SAndroid Build Coastguard Worker   0x75, 0xd7, 0xf5, 0xa1, 0xdb, 0x34, 0xd7, 0xf7, 0x1b, 0x08, 0xe4, 0xde,
8662*6236dae4SAndroid Build Coastguard Worker   0x46, 0x3a, 0xd8, 0xda, 0x0e, 0xb2, 0x74, 0xa3, 0x92, 0x8d, 0xef, 0x42,
8663*6236dae4SAndroid Build Coastguard Worker   0xab, 0x19, 0x3e, 0x00, 0x0e, 0x3f, 0x17, 0xfd, 0x9d, 0x9b, 0x98, 0x28,
8664*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x61, 0xbf, 0x7f, 0x76, 0x1c, 0x6b, 0x6f, 0x2e, 0x86, 0xca, 0xe7,
8665*6236dae4SAndroid Build Coastguard Worker   0xc6, 0x08, 0x5c, 0x35, 0xa3, 0xed, 0x40, 0xde, 0xcd, 0x51, 0x43, 0x29,
8666*6236dae4SAndroid Build Coastguard Worker   0x2b, 0x3a, 0xe4, 0x5a, 0xa9, 0x35, 0xb0, 0x45, 0x72, 0x1f, 0x91, 0x78,
8667*6236dae4SAndroid Build Coastguard Worker   0x34, 0x1e, 0x8b, 0x7d, 0x6f, 0xfd, 0xcc, 0xc3, 0x05, 0x2b, 0x27, 0xeb,
8668*6236dae4SAndroid Build Coastguard Worker   0x8a, 0xee, 0x77, 0xb7, 0x15, 0xc6, 0xc0, 0xc4, 0xfa, 0xe8, 0x22, 0x6a,
8669*6236dae4SAndroid Build Coastguard Worker   0x5f, 0xb8, 0x6c, 0xdf, 0x3a, 0x95, 0x74, 0xce, 0x9d, 0xb0, 0x17, 0x75,
8670*6236dae4SAndroid Build Coastguard Worker   0xe2, 0x0f, 0xd1, 0x5e, 0xc7, 0x23, 0xd1, 0x29, 0x56, 0x18, 0x55, 0x75,
8671*6236dae4SAndroid Build Coastguard Worker   0x3a, 0xa1, 0xc0, 0x5c, 0x49, 0xd8, 0xa6, 0xd8, 0x70, 0xb0, 0xd1, 0x56,
8672*6236dae4SAndroid Build Coastguard Worker   0xf0, 0x0a, 0x7b, 0x65, 0x58, 0x9f, 0x90, 0xea, 0xf5, 0xe5, 0xa5, 0x97,
8673*6236dae4SAndroid Build Coastguard Worker   0xe9, 0xc7, 0x01, 0x16, 0x36, 0x0e, 0x61, 0xcf, 0xb0, 0x05, 0x20, 0xa9,
8674*6236dae4SAndroid Build Coastguard Worker   0x1d, 0x18, 0x5a, 0xb2, 0x2d, 0xa6, 0xc9, 0x2c, 0xcc, 0x29, 0x15, 0x59,
8675*6236dae4SAndroid Build Coastguard Worker   0x92, 0xb9, 0x31, 0x1b, 0x79, 0x18, 0x28, 0x1e, 0xe0, 0xa4, 0xd4, 0x8a,
8676*6236dae4SAndroid Build Coastguard Worker   0x47, 0x9c, 0x16, 0x55, 0x95, 0x0d, 0xb0, 0xff, 0xab, 0x5c, 0xa8, 0x55,
8677*6236dae4SAndroid Build Coastguard Worker   0xca, 0x05, 0x19, 0x8c, 0xda, 0x87, 0xb4, 0x74, 0x3a, 0xdd, 0x61, 0x42,
8678*6236dae4SAndroid Build Coastguard Worker   0x67, 0x9b, 0x44, 0xb4, 0x52, 0x0a, 0xab, 0x39, 0x21, 0x30, 0x98, 0x1d,
8679*6236dae4SAndroid Build Coastguard Worker   0xdf, 0x85, 0x37, 0x19, 0x0e, 0xcf, 0x0c, 0x97, 0x44, 0x83, 0x32, 0x4b,
8680*6236dae4SAndroid Build Coastguard Worker   0x2f, 0xa2, 0x49, 0xc1, 0xa4, 0x27, 0x83, 0xb2, 0x7d, 0x2b, 0x8f, 0x11,
8681*6236dae4SAndroid Build Coastguard Worker   0x4c, 0x7c, 0xd4, 0x8b, 0xfa, 0x58, 0xe1, 0x58, 0x61, 0xf7, 0x37, 0xaa,
8682*6236dae4SAndroid Build Coastguard Worker   0x7b, 0xa5, 0xe2, 0x2f, 0x5b, 0x53, 0x5b, 0xa6, 0x98, 0x2d, 0x7d, 0x93,
8683*6236dae4SAndroid Build Coastguard Worker   0xca, 0xb6, 0x26, 0xda, 0xb6, 0x7b, 0x4e, 0x49, 0x5e, 0x69, 0xba, 0x1f,
8684*6236dae4SAndroid Build Coastguard Worker   0x53, 0x7d, 0x3a, 0xb5, 0x7e, 0xd0, 0xf3, 0x4f, 0x5f, 0x8c, 0xf0, 0xd8,
8685*6236dae4SAndroid Build Coastguard Worker   0x6b, 0xd9, 0xa4, 0x45, 0x63, 0xed, 0xfd, 0x2b, 0x28, 0x05, 0x86, 0x9f,
8686*6236dae4SAndroid Build Coastguard Worker   0xf7, 0xa6, 0x8f, 0xf5, 0x8a, 0x3a, 0x51, 0xf8, 0xa7, 0x97, 0x77, 0xcf,
8687*6236dae4SAndroid Build Coastguard Worker   0x2f, 0x76, 0x6e, 0x56, 0xbc, 0x7a, 0x90, 0xf9, 0xe1, 0x32, 0xe7, 0x0b,
8688*6236dae4SAndroid Build Coastguard Worker   0xec, 0x6b, 0xfe, 0xae, 0xf0, 0x5b, 0xc9, 0xb4, 0x2b, 0x86, 0x8b, 0x52,
8689*6236dae4SAndroid Build Coastguard Worker   0xdd, 0x90, 0x86, 0x78, 0x35, 0xe1, 0xd1, 0x12, 0xcc, 0xa4, 0x9b, 0xdc,
8690*6236dae4SAndroid Build Coastguard Worker   0xfa, 0xc1, 0x53, 0x39, 0x6d, 0x15, 0x74, 0xa3, 0xee, 0xd9, 0x96, 0x3d,
8691*6236dae4SAndroid Build Coastguard Worker   0x23, 0x2b, 0xd8, 0xa2, 0x67, 0x42, 0x08, 0xe0, 0x2c, 0x81, 0x04, 0x67,
8692*6236dae4SAndroid Build Coastguard Worker   0xe0, 0xeb, 0x88, 0xd8, 0xbd, 0x79, 0x6e, 0xc9, 0xf3, 0x27, 0xf3, 0xab,
8693*6236dae4SAndroid Build Coastguard Worker   0xc6, 0x4d, 0xca, 0xf6, 0x4d, 0x96, 0x98, 0xad, 0xb2, 0xab, 0x65, 0x7a,
8694*6236dae4SAndroid Build Coastguard Worker   0x44, 0xd4, 0xc8, 0x41, 0x20, 0x34, 0xe7, 0xe5, 0x9e, 0x71, 0x63, 0x84,
8695*6236dae4SAndroid Build Coastguard Worker   0x00, 0x9c, 0xd1, 0xbb, 0x7e, 0xdf, 0x2f, 0x5d, 0xce, 0xcb, 0x74, 0x58,
8696*6236dae4SAndroid Build Coastguard Worker   0x5c, 0xe6, 0xd9, 0xcf, 0xd4, 0x44, 0x00, 0x93, 0xdc, 0xda, 0x95, 0x79,
8697*6236dae4SAndroid Build Coastguard Worker   0x8d, 0xea, 0xf1, 0xc8, 0xc9, 0x0a, 0xc6, 0xcc, 0x70, 0x5f, 0xfe, 0x71,
8698*6236dae4SAndroid Build Coastguard Worker   0x57, 0x23, 0xbc, 0x95, 0xb0, 0x44, 0x06, 0x41, 0x3e, 0x84, 0x10, 0x15,
8699*6236dae4SAndroid Build Coastguard Worker   0x25, 0x4a, 0x50, 0xd9, 0x44, 0x6a, 0xda, 0x45, 0x49, 0xd9, 0x1f, 0x7f,
8700*6236dae4SAndroid Build Coastguard Worker   0xd8, 0xdb, 0x1d, 0xdd, 0x56, 0x41, 0x27, 0xff, 0x17, 0x28, 0xf5, 0x0e,
8701*6236dae4SAndroid Build Coastguard Worker   0xb7, 0xcb, 0x20, 0xf8, 0x7b, 0x64, 0xed, 0x70, 0xaf, 0x26, 0xd3, 0x25,
8702*6236dae4SAndroid Build Coastguard Worker   0x38, 0x0d, 0x5d, 0x3f, 0x4a, 0x63, 0xbe, 0x69, 0xdd, 0xa6, 0x4c, 0x73,
8703*6236dae4SAndroid Build Coastguard Worker   0xdb, 0x30, 0xa9, 0x31, 0x93, 0x84, 0xfa, 0x2c, 0x35, 0x5b, 0x32, 0x99,
8704*6236dae4SAndroid Build Coastguard Worker   0x4c, 0x8d, 0x87, 0xbb, 0x2e, 0x1d, 0x60, 0x2a, 0x82, 0xa2, 0xf7, 0x4b,
8705*6236dae4SAndroid Build Coastguard Worker   0x4e, 0x00, 0xda, 0x5c, 0x82, 0x06, 0x99, 0x72, 0xcb, 0x23, 0x9c, 0x94,
8706*6236dae4SAndroid Build Coastguard Worker   0x3d, 0x53, 0x7c, 0xe2, 0xa8, 0x46, 0xca, 0xeb, 0x8b, 0x93, 0xa8, 0x25,
8707*6236dae4SAndroid Build Coastguard Worker   0x38, 0x48, 0x15, 0xab, 0x85, 0x78, 0x0a, 0xa6, 0x81, 0x03, 0xf4, 0xb0,
8708*6236dae4SAndroid Build Coastguard Worker   0x11, 0x0f, 0x22, 0x65, 0x68, 0xfa, 0x01, 0xfc, 0x1a, 0xb1, 0x37, 0x94,
8709*6236dae4SAndroid Build Coastguard Worker   0x2b, 0xda, 0xac, 0x65, 0x7b, 0xa3, 0x9b, 0x29, 0x72, 0x9e, 0xba, 0xe4,
8710*6236dae4SAndroid Build Coastguard Worker   0x29, 0x24, 0x5a, 0xde, 0xd4, 0xbc, 0xe3, 0xb8, 0x0b, 0x9f, 0xc7, 0x5a,
8711*6236dae4SAndroid Build Coastguard Worker   0x02, 0x45, 0x4e, 0x6a, 0xc2, 0x0c, 0x0c, 0x7c, 0x6c, 0x8a, 0xc0, 0x90,
8712*6236dae4SAndroid Build Coastguard Worker   0x0f, 0x86, 0x57, 0xba, 0x28, 0x3e, 0x58, 0x24, 0x4b, 0x38, 0x26, 0x9e,
8713*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x98, 0x6c, 0x2f, 0xf6, 0x5e, 0x06, 0x99, 0x63, 0x1c, 0xfe, 0xbf,
8714*6236dae4SAndroid Build Coastguard Worker   0x81, 0x10, 0x70, 0x6e, 0x66, 0x8e, 0xd7, 0x86, 0x2f, 0xe7, 0xa9, 0xfe,
8715*6236dae4SAndroid Build Coastguard Worker   0x03, 0x3d, 0xd1, 0x5c, 0xe8, 0x71, 0x0b, 0xe2, 0x40, 0xf0, 0xe4, 0xf9,
8716*6236dae4SAndroid Build Coastguard Worker   0xb5, 0xd6, 0x70, 0xe1, 0xc3, 0x84, 0x0d, 0xf0, 0x28, 0xa5, 0xa5, 0x5d,
8717*6236dae4SAndroid Build Coastguard Worker   0x1a, 0xa2, 0x32, 0x72, 0x55, 0xa4, 0xc6, 0xda, 0x1c, 0x64, 0xf7, 0x14,
8718*6236dae4SAndroid Build Coastguard Worker   0xd1, 0xd1, 0x90, 0x70, 0x74, 0x4f, 0xfe, 0xc5, 0x6c, 0xc9, 0xbf, 0x84,
8719*6236dae4SAndroid Build Coastguard Worker   0x45, 0xdf, 0x08, 0xa8, 0x3d, 0x0a, 0xd4, 0x40, 0x5e, 0x04, 0x63, 0x3d,
8720*6236dae4SAndroid Build Coastguard Worker   0xda, 0x77, 0x6e, 0xeb, 0xcf, 0x1f, 0xbc, 0xae, 0xe9, 0x10, 0xe3, 0x6b,
8721*6236dae4SAndroid Build Coastguard Worker   0x72, 0x39, 0x36, 0x85, 0xa9, 0x4a, 0x53, 0xf2, 0xea, 0xf8, 0x9d, 0xa5,
8722*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x30, 0x22, 0x49, 0x8d, 0xec, 0xc4, 0x5a, 0x23, 0x7c, 0x7f, 0x8e,
8723*6236dae4SAndroid Build Coastguard Worker   0xf4, 0xd4, 0x9e, 0x84, 0xc6, 0x81, 0x03, 0xd7, 0xc5, 0x20, 0xad, 0x6f,
8724*6236dae4SAndroid Build Coastguard Worker   0xd3, 0x54, 0x9c, 0x53, 0xba, 0x4b, 0x8e, 0x88, 0x11, 0xfa, 0x83, 0x8e,
8725*6236dae4SAndroid Build Coastguard Worker   0x12, 0xaa, 0x02, 0xc3, 0x73, 0x9a, 0xa9, 0xb4, 0xe2, 0x1e, 0x99, 0xc6,
8726*6236dae4SAndroid Build Coastguard Worker   0x83, 0xa7, 0x79, 0x6f, 0xde, 0xd1, 0x66, 0x1c, 0xed, 0xe0, 0x9a, 0xee,
8727*6236dae4SAndroid Build Coastguard Worker   0x8d, 0x80, 0x13, 0xda, 0x68, 0xf1, 0x63, 0x03, 0xad, 0x41, 0x6b, 0x29,
8728*6236dae4SAndroid Build Coastguard Worker   0xe4, 0xc1, 0xcd, 0x27, 0x6d, 0x36, 0x7e, 0x60, 0x99, 0x18, 0xaa, 0x15,
8729*6236dae4SAndroid Build Coastguard Worker   0x3f, 0x22, 0x6e, 0x82, 0xd1, 0x2a, 0x8b, 0xa1, 0xc3, 0x23, 0x2a, 0xdf,
8730*6236dae4SAndroid Build Coastguard Worker   0x36, 0x32, 0x2d, 0xbd, 0x6c, 0x31, 0xcc, 0x89, 0x0a, 0xa5, 0xe5, 0xcd,
8731*6236dae4SAndroid Build Coastguard Worker   0x13, 0x8e, 0xec, 0xcd, 0x94, 0xdf, 0x26, 0x53, 0xf8, 0x59, 0xc2, 0x05,
8732*6236dae4SAndroid Build Coastguard Worker   0xc0, 0x93, 0x64, 0x94, 0x46, 0xa1, 0x0c, 0x54, 0x07, 0x3e, 0x87, 0x27,
8733*6236dae4SAndroid Build Coastguard Worker   0xd6, 0xca, 0x4a, 0xa4, 0xad, 0xf7, 0xbb, 0x07, 0x0b, 0x44, 0xcf, 0xd8,
8734*6236dae4SAndroid Build Coastguard Worker   0x8b, 0x56, 0xa1, 0x98, 0x93, 0xc2, 0x66, 0x71, 0xd1, 0x6a, 0x02, 0xa2,
8735*6236dae4SAndroid Build Coastguard Worker   0x24, 0x1b, 0xb8, 0x4a, 0x81, 0x74, 0xc1, 0xca, 0x05, 0x0e, 0xc8, 0x6f,
8736*6236dae4SAndroid Build Coastguard Worker   0x49, 0xdc, 0x58, 0x64, 0xf1, 0x40, 0xb3, 0x80, 0xf6, 0xfc, 0xa5, 0x04,
8737*6236dae4SAndroid Build Coastguard Worker   0x4a, 0xb2, 0xb8, 0x9a, 0xfe, 0x4e, 0xbc, 0x84, 0x3d, 0xb7, 0xb1, 0xb4,
8738*6236dae4SAndroid Build Coastguard Worker   0x11, 0xd0, 0x17, 0xa4, 0x7b, 0xa9, 0x8c, 0x1f, 0xcb, 0x72, 0xe2, 0x07,
8739*6236dae4SAndroid Build Coastguard Worker   0xb2, 0xc2, 0x16, 0xf2, 0x96, 0xec, 0xcc, 0x2f, 0x0a, 0xd1, 0xbb, 0x25,
8740*6236dae4SAndroid Build Coastguard Worker   0x22, 0x8e, 0xb8, 0x91, 0x50, 0x74, 0x20, 0xf7, 0x66, 0xb5, 0x8f, 0xb5,
8741*6236dae4SAndroid Build Coastguard Worker   0xe8, 0xfd, 0xc3, 0xb3, 0xb5, 0xe8, 0xac, 0x15, 0x65, 0x96, 0x36, 0x36,
8742*6236dae4SAndroid Build Coastguard Worker   0xcd, 0xdb, 0x89, 0x6f, 0x3d, 0xe9, 0xff, 0x36, 0x3f, 0x20, 0xa9, 0x6d,
8743*6236dae4SAndroid Build Coastguard Worker   0x43, 0x4d, 0x13, 0x45, 0x4a, 0xea, 0xfb, 0xd5, 0xc5, 0x75, 0x6b, 0x2d,
8744*6236dae4SAndroid Build Coastguard Worker   0x07, 0x04, 0x35, 0xcc, 0xe8, 0x8f, 0x62, 0x88, 0xbb, 0xf2, 0x05, 0xa3,
8745*6236dae4SAndroid Build Coastguard Worker   0x1b, 0x88, 0xcf, 0x42, 0x4d, 0x2c, 0x34, 0x44, 0xab, 0xa1, 0xd5, 0xb1,
8746*6236dae4SAndroid Build Coastguard Worker   0x57, 0x35, 0x46, 0x84, 0xd0, 0x12, 0x65, 0x07, 0xc0, 0x99, 0xd6, 0x42,
8747*6236dae4SAndroid Build Coastguard Worker   0x48, 0x77, 0x78, 0x0f, 0xf1, 0x9d, 0xd6, 0x58, 0x04, 0x18, 0xda, 0x79,
8748*6236dae4SAndroid Build Coastguard Worker   0x1a, 0x02, 0xe5, 0xbf, 0x27, 0xf5, 0x46, 0x0e, 0xcc, 0xa8, 0xd7, 0x6e,
8749*6236dae4SAndroid Build Coastguard Worker   0x19, 0xed, 0x04, 0x91, 0x65, 0x72, 0x59, 0x61, 0xbb, 0x73, 0xcf, 0xe9,
8750*6236dae4SAndroid Build Coastguard Worker   0x13, 0xc7, 0x9a, 0x2f, 0x58, 0xb2, 0x08, 0x02, 0x4f, 0xdd, 0x9f, 0xc9,
8751*6236dae4SAndroid Build Coastguard Worker   0xd2, 0x19, 0x16, 0xd3, 0x7b, 0x24, 0x06, 0x3c, 0x56, 0x55, 0x57, 0x5b,
8752*6236dae4SAndroid Build Coastguard Worker   0x20, 0xf0, 0xb6, 0x7a, 0x2f, 0x18, 0x11, 0xea, 0x0a, 0x54, 0x98, 0x40,
8753*6236dae4SAndroid Build Coastguard Worker   0x1f, 0x4c, 0xce, 0x0a, 0xe6, 0x36, 0xac, 0xed, 0xf1, 0xc4, 0x36, 0xe9,
8754*6236dae4SAndroid Build Coastguard Worker   0xad, 0x2d, 0xcb, 0xd7, 0xcc, 0x78, 0xb4, 0xf9, 0xf0, 0xf7, 0xa8, 0x5a,
8755*6236dae4SAndroid Build Coastguard Worker   0x80, 0x91, 0x1e, 0xff, 0x15, 0x79, 0x97, 0x5b, 0x0e, 0xed, 0x8b, 0x85,
8756*6236dae4SAndroid Build Coastguard Worker   0xee, 0x71, 0x2b, 0x32, 0x6b, 0x84, 0x2c, 0x8b, 0x6d, 0xe6, 0xd2, 0x7c,
8757*6236dae4SAndroid Build Coastguard Worker   0xc4, 0x19, 0xaa, 0x83, 0xac, 0xa6, 0x76, 0xef, 0x6a, 0xd7, 0x37, 0x85,
8758*6236dae4SAndroid Build Coastguard Worker   0x0a, 0xbe, 0x83, 0xa1, 0xff, 0xd7, 0x5e, 0x5a, 0x38, 0x47, 0xfe, 0x7b,
8759*6236dae4SAndroid Build Coastguard Worker   0xd1, 0x5f, 0xe9, 0xa3, 0xf2, 0x36, 0xe3, 0x4d, 0x50, 0x0a, 0xed, 0x97,
8760*6236dae4SAndroid Build Coastguard Worker   0x47, 0xaf, 0x4f, 0xdf, 0x1f, 0x35, 0xf1, 0x73, 0x6a, 0x06, 0x5d, 0xa7,
8761*6236dae4SAndroid Build Coastguard Worker   0x14, 0xd1, 0xf6, 0xec, 0xb8, 0x75, 0x8c, 0x00, 0x0e, 0x92, 0xf0, 0xcc,
8762*6236dae4SAndroid Build Coastguard Worker   0xf2, 0x0c, 0x3d, 0x31, 0xd1, 0xd9, 0xb7, 0xaf, 0xcc, 0xec, 0x50, 0x2f,
8763*6236dae4SAndroid Build Coastguard Worker   0xcb, 0x69, 0x56, 0x3a, 0x68, 0x97, 0x77, 0xb1, 0xad, 0x4c, 0xa1, 0xde,
8764*6236dae4SAndroid Build Coastguard Worker   0xb5, 0xd6, 0x43, 0x41, 0xc6, 0xe9, 0xaf, 0x3a, 0x3f, 0x4a, 0xcd, 0xe5,
8765*6236dae4SAndroid Build Coastguard Worker   0x84, 0x6a, 0x85, 0xbb, 0xa3, 0xc6, 0xcd, 0x55, 0x85, 0xf0, 0x75, 0x66,
8766*6236dae4SAndroid Build Coastguard Worker   0x50, 0xcf, 0xd2, 0x60, 0x7b, 0x94, 0x51, 0xb3, 0xb9, 0xa2, 0x34, 0x89,
8767*6236dae4SAndroid Build Coastguard Worker   0xa8, 0x45, 0x0b, 0x76, 0x6d, 0xe9, 0x45, 0xfe, 0x87, 0x34, 0x95, 0x98,
8768*6236dae4SAndroid Build Coastguard Worker   0xbe, 0x12, 0xba, 0x6a, 0xae, 0xb0, 0xf2, 0x97, 0x22, 0xd3, 0xac, 0x02,
8769*6236dae4SAndroid Build Coastguard Worker   0xa0, 0x0b, 0x0c, 0x0f, 0x84, 0xa9, 0xef, 0xea, 0x72, 0x3b, 0x1d, 0x49,
8770*6236dae4SAndroid Build Coastguard Worker   0x2c, 0x70, 0x09, 0x19, 0xc8, 0x6d, 0x83, 0x6f, 0xae, 0x56, 0x6b, 0xdd,
8771*6236dae4SAndroid Build Coastguard Worker   0xc6, 0x54, 0xcd, 0x6f, 0x22, 0xf5, 0x39, 0xac, 0xfc, 0x65, 0xc5, 0x22,
8772*6236dae4SAndroid Build Coastguard Worker   0x13, 0x90, 0x66, 0x02, 0x52, 0xd8, 0xb3, 0x64, 0xd8, 0x18, 0x46, 0xbb,
8773*6236dae4SAndroid Build Coastguard Worker   0x1a, 0x99, 0xe5, 0xa1, 0xac, 0x7f, 0x5d, 0x71, 0xef, 0x51, 0xa8, 0x1e,
8774*6236dae4SAndroid Build Coastguard Worker   0x55, 0x5d, 0x4c, 0x51, 0x6b, 0x62, 0xd0, 0x3a, 0x6c, 0x90, 0x36, 0x2b,
8775*6236dae4SAndroid Build Coastguard Worker   0x53, 0xda, 0x27, 0x07, 0x04, 0x2d, 0x0a, 0x76, 0x42, 0xce, 0xf2, 0x59,
8776*6236dae4SAndroid Build Coastguard Worker   0x4a, 0xcd, 0xc2, 0x73, 0x05, 0x66, 0xd2, 0xe5, 0xe1, 0x30, 0x20, 0xec,
8777*6236dae4SAndroid Build Coastguard Worker   0x64, 0xe9, 0xee, 0x6f, 0x78, 0xdd, 0xd8, 0xe7, 0x21, 0x60, 0x05, 0x64,
8778*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x75, 0xb4, 0xfa, 0xef, 0xb0, 0xc0, 0x53, 0xed, 0x75, 0xdf, 0xd5,
8779*6236dae4SAndroid Build Coastguard Worker   0x91, 0x25, 0xaf, 0x45, 0xb2, 0xd7, 0x75, 0x9e, 0x44, 0x13, 0x6a, 0x9b,
8780*6236dae4SAndroid Build Coastguard Worker   0x19, 0x2c, 0xc2, 0x56, 0x4a, 0xb0, 0xd8, 0x45, 0x3f, 0x62, 0xe9, 0x34,
8781*6236dae4SAndroid Build Coastguard Worker   0x88, 0x33, 0xe2, 0x97, 0xb2, 0x49, 0x02, 0x0a, 0x33, 0x35, 0xb3, 0xe7,
8782*6236dae4SAndroid Build Coastguard Worker   0x58, 0x28, 0x9e, 0xce, 0xea, 0x3e, 0xaf, 0x51, 0x8c, 0xb1, 0xc4, 0x1d,
8783*6236dae4SAndroid Build Coastguard Worker   0x16, 0x25, 0xdd, 0xfd, 0xc8, 0xfa, 0xf6, 0xb0, 0x55, 0x84, 0x2f, 0xf9,
8784*6236dae4SAndroid Build Coastguard Worker   0x72, 0xf7, 0x25, 0x50, 0xda, 0xc7, 0xc9, 0xcb, 0x39, 0xb8, 0x8b, 0xaf,
8785*6236dae4SAndroid Build Coastguard Worker   0x48, 0x6f, 0x58, 0x4a, 0x35, 0x2a, 0x18, 0x22, 0xcb, 0x65, 0x90, 0x8a,
8786*6236dae4SAndroid Build Coastguard Worker   0x61, 0x24, 0x08, 0x60, 0x23, 0x45, 0xc4, 0x15, 0xff, 0x0e, 0xef, 0x3b,
8787*6236dae4SAndroid Build Coastguard Worker   0xc3, 0x3c, 0xb1, 0x40, 0xde, 0xcf, 0xa5, 0x27, 0x91, 0x44, 0xcd, 0x69,
8788*6236dae4SAndroid Build Coastguard Worker   0xc5, 0x1f, 0xae, 0x0a, 0x68, 0x2f, 0xfa, 0x90, 0x53, 0x39, 0x87, 0x70,
8789*6236dae4SAndroid Build Coastguard Worker   0xa1, 0xdc, 0x48, 0x59, 0x0e, 0xdb, 0x06, 0xdb, 0x0c, 0x77, 0x52, 0x40,
8790*6236dae4SAndroid Build Coastguard Worker   0x24, 0xfd, 0xbd, 0x29, 0x8a, 0x44, 0x1c, 0xb7, 0x12, 0x73, 0xe8, 0x08,
8791*6236dae4SAndroid Build Coastguard Worker   0x8b, 0x90, 0x33, 0x42, 0x2c, 0x8a, 0x5e, 0x83, 0x98, 0x0d, 0xa4, 0xe6,
8792*6236dae4SAndroid Build Coastguard Worker   0xb3, 0x17, 0x07, 0x96, 0x43, 0x63, 0x63, 0xee, 0x55, 0x3a, 0x1e, 0xc7,
8793*6236dae4SAndroid Build Coastguard Worker   0xdc, 0x27, 0x19, 0x5b, 0xbb, 0xa2, 0x71, 0xc5, 0x18, 0x5e, 0x54, 0x04,
8794*6236dae4SAndroid Build Coastguard Worker   0xe1, 0x1a, 0x9e, 0xde, 0x1d, 0x46, 0x50, 0x64, 0xd4, 0x24, 0x4c, 0x01,
8795*6236dae4SAndroid Build Coastguard Worker   0x3c, 0xa5, 0x54, 0x59, 0x83, 0xe4, 0x88, 0x40, 0x63, 0x9d, 0x51, 0x44,
8796*6236dae4SAndroid Build Coastguard Worker   0x1c, 0x5e, 0x12, 0xae, 0xc9, 0x73, 0x7b, 0xe3, 0x1a, 0xbd, 0xc0, 0x76,
8797*6236dae4SAndroid Build Coastguard Worker   0x82, 0x84, 0x46, 0x6f, 0x30, 0x6b, 0x0d, 0x61, 0x94, 0x08, 0xb2, 0x4b,
8798*6236dae4SAndroid Build Coastguard Worker   0xf8, 0x49, 0x73, 0x50, 0xaa, 0xb4, 0xae, 0xac, 0xb6, 0x90, 0x90, 0x44,
8799*6236dae4SAndroid Build Coastguard Worker   0xa4, 0x5d, 0x53, 0x56, 0x99, 0x3f, 0x1c, 0xd2, 0x69, 0xc4, 0x20, 0x45,
8800*6236dae4SAndroid Build Coastguard Worker   0xfc, 0x18, 0xf3, 0x7c, 0x3e, 0x62, 0xa5, 0x79, 0x9f, 0x66, 0x93, 0xde,
8801*6236dae4SAndroid Build Coastguard Worker   0x91, 0xb2, 0x07, 0x0c, 0xf2, 0xb9, 0x74, 0x99, 0x1a, 0xcc, 0x19, 0x0e,
8802*6236dae4SAndroid Build Coastguard Worker   0xa9, 0x00, 0x0a, 0x42, 0x59, 0x57, 0x8c, 0x6a, 0x42, 0xaf, 0xb3, 0x6f,
8803*6236dae4SAndroid Build Coastguard Worker   0xa0, 0x62, 0x00, 0x29, 0xe9, 0x62, 0x37, 0xfe, 0x78, 0x99, 0xd6, 0xf8,
8804*6236dae4SAndroid Build Coastguard Worker   0xdb, 0xd5, 0xed, 0x35, 0x24, 0x47, 0x78, 0xb8, 0x29, 0x02, 0xb9, 0x11,
8805*6236dae4SAndroid Build Coastguard Worker   0xd8, 0x54, 0x73, 0x1a, 0x06, 0x7c, 0x0a, 0x54, 0x1f, 0x27, 0xe9, 0x62,
8806*6236dae4SAndroid Build Coastguard Worker   0xbb, 0xb7, 0xe1, 0x5d, 0xd4, 0xc3, 0xab, 0xcb, 0x72, 0x1a, 0x5d, 0x82,
8807*6236dae4SAndroid Build Coastguard Worker   0xb6, 0x3c, 0x7d, 0x80, 0xaa, 0xfc, 0xa4, 0x47, 0x53, 0x7e, 0xf5, 0xf8,
8808*6236dae4SAndroid Build Coastguard Worker   0x95, 0x4b, 0x4b, 0x21, 0x1b, 0xd0, 0x2d, 0x3c, 0x9c, 0xb4, 0x4f, 0xc3,
8809*6236dae4SAndroid Build Coastguard Worker   0x2c, 0x43, 0x21, 0xa7, 0x72, 0xad, 0x19, 0xcd, 0x1a, 0xb7, 0x42, 0x7c,
8810*6236dae4SAndroid Build Coastguard Worker   0xfa, 0x4d, 0x78, 0xb8, 0xc6, 0x96, 0xf0, 0x08, 0x3a, 0x2c, 0x9d, 0xbf,
8811*6236dae4SAndroid Build Coastguard Worker   0x11, 0x0c, 0x35, 0x49, 0xf8, 0x84, 0x5d, 0x82, 0xe4, 0xd3, 0x8f, 0xf8,
8812*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x4b, 0x57, 0x93, 0x62, 0x84, 0xe8, 0x2d, 0xe9, 0x83, 0xb4, 0xc0,
8813*6236dae4SAndroid Build Coastguard Worker   0x07, 0x95, 0x16, 0x02, 0x7a, 0x53, 0xb9, 0xeb, 0xa2, 0x41, 0xe0, 0xe4,
8814*6236dae4SAndroid Build Coastguard Worker   0xeb, 0x4e, 0xfb, 0xb0, 0xa5, 0x6d, 0xf3, 0x5b, 0xea, 0x5b, 0x70, 0x78,
8815*6236dae4SAndroid Build Coastguard Worker   0x7a, 0xd9, 0x5d, 0x42, 0x1e, 0x15, 0xc3, 0xda, 0x59, 0x01, 0x3e, 0x30,
8816*6236dae4SAndroid Build Coastguard Worker   0x87, 0x61, 0xe9, 0xee, 0x0a, 0xac, 0x0c, 0x21, 0x50, 0xc8, 0x4d, 0xf2,
8817*6236dae4SAndroid Build Coastguard Worker   0xd0, 0xca, 0xf0, 0x41, 0x6f, 0x97, 0xe1, 0x87, 0xb6, 0x87, 0x9e, 0xb3,
8818*6236dae4SAndroid Build Coastguard Worker   0xc5, 0xbc, 0x39, 0xe1, 0xe1, 0x9a, 0x1b, 0xac, 0x3b, 0x4c, 0x73, 0x08,
8819*6236dae4SAndroid Build Coastguard Worker   0x6d, 0xb0, 0x74, 0xd0, 0xf5, 0x15, 0x64, 0xeb, 0xf4, 0x61, 0xea, 0x98,
8820*6236dae4SAndroid Build Coastguard Worker   0x07, 0xe7, 0x6e, 0xb0, 0x7c, 0xc3, 0xa3, 0xc2, 0x38, 0x87, 0xc3, 0x37,
8821*6236dae4SAndroid Build Coastguard Worker   0x2b, 0x87, 0xe9, 0x47, 0x9a, 0x1b, 0x37, 0x41, 0xfd, 0xb8, 0x98, 0x20,
8822*6236dae4SAndroid Build Coastguard Worker   0x63, 0x41, 0x50, 0xbc, 0x9f, 0xa0, 0xee, 0x6b, 0x25, 0xb0, 0xf4, 0xc9,
8823*6236dae4SAndroid Build Coastguard Worker   0x4b, 0x04, 0x51, 0x10, 0xf4, 0x73, 0xfa, 0x3d, 0x9b, 0xba, 0x73, 0xd8,
8824*6236dae4SAndroid Build Coastguard Worker   0xde, 0x7e, 0x8f, 0x7b, 0xeb, 0x71, 0xb2, 0xcd, 0xb4, 0x80, 0x79, 0x6b,
8825*6236dae4SAndroid Build Coastguard Worker   0xbb, 0x5f, 0xba, 0xa0, 0x9d, 0x39, 0xe2, 0x63, 0x73, 0x08, 0x12, 0x74,
8826*6236dae4SAndroid Build Coastguard Worker   0x4f, 0x4e, 0xae, 0x11, 0xab, 0xc4, 0xe8, 0x59, 0x1f, 0x73, 0x3f, 0x6c,
8827*6236dae4SAndroid Build Coastguard Worker   0xe7, 0x2c, 0x8e, 0x9f, 0xd6, 0xdd, 0xe6, 0x25, 0x09, 0x56, 0x90, 0xa9,
8828*6236dae4SAndroid Build Coastguard Worker   0xc4, 0x6f, 0x88, 0x40, 0xf8, 0xf9, 0x9c, 0xd9, 0xb8, 0x1f, 0x34, 0x27,
8829*6236dae4SAndroid Build Coastguard Worker   0xd2, 0x9b, 0xdd, 0xa3, 0x45, 0x38, 0x3f, 0x19, 0x96, 0xe0, 0x0d, 0x78,
8830*6236dae4SAndroid Build Coastguard Worker   0x25, 0x47, 0x8e, 0x2f, 0x60, 0xc3, 0xa5, 0xe5, 0xf8, 0x70, 0x9e, 0xcc,
8831*6236dae4SAndroid Build Coastguard Worker   0x45, 0x25, 0x07, 0xef, 0x32, 0x12, 0xe2, 0xf0, 0xdd, 0x3f, 0x5e, 0x84,
8832*6236dae4SAndroid Build Coastguard Worker   0x63, 0x68, 0x50, 0x5d, 0xb6, 0xb7, 0x56, 0x2a, 0xa9, 0x7e, 0x47, 0x75,
8833*6236dae4SAndroid Build Coastguard Worker   0x9c, 0x83, 0xaa, 0x18, 0xcf, 0xd0, 0x91, 0x92, 0xd4, 0x57, 0xbc, 0x43,
8834*6236dae4SAndroid Build Coastguard Worker   0x17, 0x3a, 0xcf, 0xb9, 0xfb, 0x99, 0xd7, 0xbe, 0xde, 0xee, 0xed, 0x28,
8835*6236dae4SAndroid Build Coastguard Worker   0x3c, 0x86, 0xc3, 0x31, 0xcb, 0x0a, 0x87, 0xcf, 0xdf, 0x56, 0x79, 0xda,
8836*6236dae4SAndroid Build Coastguard Worker   0x4e, 0x91, 0xf5, 0x10, 0xbb, 0x29, 0x65, 0x80, 0xf1, 0xe6, 0xdf, 0x21,
8837*6236dae4SAndroid Build Coastguard Worker   0xf2, 0xd5, 0xd6, 0x1d, 0x32, 0x4a, 0x31, 0x82, 0xc3, 0xdc, 0x41, 0x49,
8838*6236dae4SAndroid Build Coastguard Worker   0xed, 0xe6, 0x36, 0x8a, 0x1e, 0x3a, 0x9b, 0x73, 0x19, 0xb7, 0x9c, 0x3c,
8839*6236dae4SAndroid Build Coastguard Worker   0xc0, 0xb0, 0xf0, 0x80, 0x5d, 0x15, 0x43, 0x9a, 0x9a, 0x55, 0x79, 0xa2,
8840*6236dae4SAndroid Build Coastguard Worker   0x4e, 0x18, 0x70, 0x0e, 0xe5, 0xe7, 0xcd, 0xa0, 0x71, 0xb0, 0x17, 0xcd,
8841*6236dae4SAndroid Build Coastguard Worker   0xc4, 0x3d, 0xd3, 0xee, 0x64, 0x2c, 0x69, 0x51, 0x81, 0xc7, 0xff, 0x98,
8842*6236dae4SAndroid Build Coastguard Worker   0x99, 0xcd, 0xe1, 0xf5, 0xfb, 0xd6, 0x7b, 0x42, 0x9e, 0xae, 0x13, 0xe5,
8843*6236dae4SAndroid Build Coastguard Worker   0x20, 0xef, 0x00, 0xba, 0x52, 0x7c, 0xde, 0x50, 0x99, 0xb9, 0x94, 0xcc,
8844*6236dae4SAndroid Build Coastguard Worker   0x45, 0x9f, 0xd5, 0xd8, 0x91, 0x6b, 0x9e, 0x27, 0x41, 0x5c, 0x08, 0xac,
8845*6236dae4SAndroid Build Coastguard Worker   0x3d, 0x76, 0x5e, 0x1d, 0x9d, 0x1c, 0x11, 0x3d, 0x3b, 0x81, 0x3e, 0x6b,
8846*6236dae4SAndroid Build Coastguard Worker   0x17, 0x45, 0xe1, 0x78, 0xbb, 0x70, 0xe6, 0xa0, 0x6b, 0x2e, 0xc0, 0x36,
8847*6236dae4SAndroid Build Coastguard Worker   0x70, 0x72, 0x68, 0x0c, 0xe3, 0x50, 0x53, 0xe4, 0x8c, 0x32, 0x41, 0xa8,
8848*6236dae4SAndroid Build Coastguard Worker   0xf6, 0x81, 0x4a, 0xac, 0xd0, 0x29, 0xa2, 0x26, 0x0f, 0x35, 0x26, 0x18,
8849*6236dae4SAndroid Build Coastguard Worker   0xa5, 0xa5, 0x47, 0x44, 0xb0, 0x60, 0xf8, 0x93, 0x9c, 0x1f, 0xcf, 0x0d,
8850*6236dae4SAndroid Build Coastguard Worker   0xe7, 0x30, 0x97, 0x41, 0xd4, 0x6e, 0xb2, 0x22, 0xb8, 0xe1, 0x22, 0x5b,
8851*6236dae4SAndroid Build Coastguard Worker   0xc9, 0xfa, 0x38, 0xec, 0xce, 0x25, 0x18, 0x38, 0x6d, 0x9b, 0xc7, 0x2b,
8852*6236dae4SAndroid Build Coastguard Worker   0x53, 0x40, 0x85, 0xbb, 0xd5, 0xd3, 0x35, 0xbd, 0x1c, 0xc5, 0xc2, 0x5d,
8853*6236dae4SAndroid Build Coastguard Worker   0x4f, 0x49, 0xf0, 0x76, 0x49, 0x84, 0x69, 0xdd, 0x59, 0x75, 0xb5, 0xd8,
8854*6236dae4SAndroid Build Coastguard Worker   0x8d, 0x5d, 0x76, 0xf9, 0x2d, 0x10, 0x62, 0xfb, 0xf4, 0x9f, 0x60, 0xc1,
8855*6236dae4SAndroid Build Coastguard Worker   0x3e, 0x99, 0x69, 0xa4, 0xf3, 0xbf, 0x3e, 0x3e, 0x39, 0x5a, 0x8b, 0xde,
8856*6236dae4SAndroid Build Coastguard Worker   0x4b, 0x0a, 0x07, 0xda, 0x46, 0xf7, 0x35, 0x76, 0xa2, 0xc4, 0x01, 0x56,
8857*6236dae4SAndroid Build Coastguard Worker   0xb3, 0x1e, 0xe8, 0x3f, 0x5c, 0xa0, 0x8d, 0x86, 0x06, 0xf6, 0x9e, 0x0e,
8858*6236dae4SAndroid Build Coastguard Worker   0x25, 0xc4, 0xac, 0x49, 0xe2, 0x07, 0xfb, 0xf6, 0xd7, 0x37, 0x7b, 0x9b,
8859*6236dae4SAndroid Build Coastguard Worker   0x5d, 0xd7, 0x97, 0x63, 0xda, 0x02, 0x90, 0x53, 0x2b, 0x31, 0x5d, 0x6c,
8860*6236dae4SAndroid Build Coastguard Worker   0xf1, 0xd3, 0x6d, 0xcf, 0xe0, 0x7b, 0xfc, 0x70, 0xe5, 0x87, 0xb7, 0x28,
8861*6236dae4SAndroid Build Coastguard Worker   0x44, 0x66, 0xdd, 0x00, 0xb7, 0xc9, 0xbd, 0x6f, 0xe0, 0x6d, 0xc4, 0x3b,
8862*6236dae4SAndroid Build Coastguard Worker   0x2f, 0x5f, 0x36, 0x54, 0xb8, 0xca, 0x69, 0x01, 0xbc, 0xbb, 0xb1, 0x41,
8863*6236dae4SAndroid Build Coastguard Worker   0x6b, 0xf3, 0xe0, 0xe8, 0xe0, 0x17, 0xf1, 0x4b, 0x7a, 0xb1, 0xf9, 0x5a,
8864*6236dae4SAndroid Build Coastguard Worker   0x95, 0xc2, 0xc6, 0x8e, 0xe6, 0xbf, 0x17, 0xe3, 0x6f, 0x02, 0x9f, 0xa3,
8865*6236dae4SAndroid Build Coastguard Worker   0x1b, 0x71, 0xee, 0x5b, 0x2f, 0xf1, 0x73, 0x81, 0xb7, 0xe8, 0x61, 0xa6,
8866*6236dae4SAndroid Build Coastguard Worker   0x63, 0x71, 0x71, 0x81, 0x8e, 0x6d, 0x7c, 0x52, 0x01, 0x98, 0x6f, 0x93,
8867*6236dae4SAndroid Build Coastguard Worker   0x72, 0xe4, 0x2f, 0x77, 0xa3, 0x1b, 0x6f, 0xce, 0x5b, 0x2e, 0x65, 0xcd,
8868*6236dae4SAndroid Build Coastguard Worker   0x50, 0xfa, 0x3d, 0xee, 0x27, 0x7a, 0x5f, 0x56, 0xff, 0x7d, 0x8d, 0xc1,
8869*6236dae4SAndroid Build Coastguard Worker   0x1a, 0xda, 0x03, 0x6d, 0xc2, 0x8c, 0x36, 0x5f, 0xbe, 0xec, 0xe2, 0xcc,
8870*6236dae4SAndroid Build Coastguard Worker   0x76, 0x5f, 0xbe, 0x9c, 0x0b, 0xf6, 0xe7, 0x7c, 0xe6, 0xb6, 0xb0, 0x0e,
8871*6236dae4SAndroid Build Coastguard Worker   0x63, 0x7c, 0xdd, 0x32, 0x4d, 0x05, 0x9f, 0x89, 0xc2, 0xdf, 0xc1, 0xdf,
8872*6236dae4SAndroid Build Coastguard Worker   0x44, 0x9f, 0x45, 0xef, 0x4e, 0xcf, 0x8f, 0x1c, 0x5f, 0x2a, 0x9d, 0x5a,
8873*6236dae4SAndroid Build Coastguard Worker   0x4e, 0x7c, 0x70, 0x7c, 0x21, 0x94, 0x0c, 0x32, 0xc5, 0xfc, 0x66, 0xf6,
8874*6236dae4SAndroid Build Coastguard Worker   0x25, 0x81, 0x6d, 0xef, 0xbb, 0x68, 0x08, 0x38, 0x40, 0x23, 0x04, 0x5a,
8875*6236dae4SAndroid Build Coastguard Worker   0xd0, 0xae, 0x52, 0x80, 0x6f, 0x5b, 0xca, 0x53, 0xc1, 0x46, 0x6f, 0x78,
8876*6236dae4SAndroid Build Coastguard Worker   0xd7, 0xe0, 0x99, 0xfa, 0xb7, 0x28, 0x3a, 0x4b, 0xca, 0xca, 0xaf, 0x0b,
8877*6236dae4SAndroid Build Coastguard Worker   0x44, 0x5f, 0x85, 0x7a, 0x66, 0xc4, 0xf7, 0x55, 0x94, 0x13, 0xe3, 0x34,
8878*6236dae4SAndroid Build Coastguard Worker   0x36, 0x81, 0x08, 0x31, 0xa3, 0xe5, 0xdf, 0xd9, 0x20, 0x1b, 0x67, 0xf5,
8879*6236dae4SAndroid Build Coastguard Worker   0xfd, 0x1c, 0x17, 0x0d, 0xf6, 0x3b, 0x2c, 0x03, 0x29, 0x69, 0x08, 0x42,
8880*6236dae4SAndroid Build Coastguard Worker   0x98, 0x5d, 0x66, 0xb5, 0x8b, 0x1a, 0xbe, 0x0a, 0x5c, 0xb8, 0x46, 0x1e,
8881*6236dae4SAndroid Build Coastguard Worker   0x4d, 0x4e, 0x4a, 0x97, 0x68, 0xf5, 0x4a, 0x85, 0x10, 0x00, 0x5c, 0x62,
8882*6236dae4SAndroid Build Coastguard Worker   0x85, 0xff, 0x28, 0xa6, 0x2b, 0x9e, 0xeb, 0x25, 0x1d, 0x8f, 0xd8, 0xa8,
8883*6236dae4SAndroid Build Coastguard Worker   0xb1, 0x2f, 0xc4, 0xf4, 0xa4, 0x9c, 0x63, 0x72, 0xee, 0xdc, 0x51, 0x14,
8884*6236dae4SAndroid Build Coastguard Worker   0x32, 0xa1, 0x3e, 0x31, 0xee, 0xc7, 0x03, 0xae, 0x2a, 0x02, 0xda, 0xa6,
8885*6236dae4SAndroid Build Coastguard Worker   0x4c, 0x38, 0x45, 0xef, 0xc0, 0x61, 0xdc, 0x1a, 0xac, 0x15, 0x87, 0x20,
8886*6236dae4SAndroid Build Coastguard Worker   0xc6, 0xd1, 0x9f, 0x23, 0x83, 0x78, 0x2d, 0x3c, 0x38, 0x90, 0x39, 0x4a,
8887*6236dae4SAndroid Build Coastguard Worker   0xa7, 0x5a, 0xab, 0x94, 0x37, 0xc7, 0x81, 0x43, 0x76, 0x91, 0x5d, 0xce,
8888*6236dae4SAndroid Build Coastguard Worker   0xca, 0x70, 0xfd, 0x0b, 0xb9, 0xa9, 0x24, 0xd5, 0x4c, 0x3b, 0x71, 0x27,
8889*6236dae4SAndroid Build Coastguard Worker   0xb7, 0x89, 0x82, 0x58, 0x50, 0xf7, 0x74, 0x15, 0x3a, 0xea, 0x30, 0x52,
8890*6236dae4SAndroid Build Coastguard Worker   0xd0, 0x08, 0x6c, 0x93, 0xee, 0xed, 0x0a, 0xc2, 0x7c, 0x80, 0x52, 0x8d,
8891*6236dae4SAndroid Build Coastguard Worker   0xfe, 0x35, 0x49, 0x91, 0x94, 0x76, 0xe0, 0x49, 0x6d, 0x91, 0x3b, 0x24,
8892*6236dae4SAndroid Build Coastguard Worker   0x16, 0x81, 0x5c, 0x88, 0x3a, 0x08, 0x35, 0xa3, 0x21, 0x12, 0x04, 0xb2,
8893*6236dae4SAndroid Build Coastguard Worker   0xe0, 0x69, 0xf9, 0x1a, 0xc1, 0xc4, 0xa7, 0xc9, 0xbd, 0x7a, 0x55, 0x20,
8894*6236dae4SAndroid Build Coastguard Worker   0x48, 0x3a, 0xc8, 0x4b, 0x94, 0x8f, 0x3e, 0x56, 0x28, 0x0a, 0x45, 0xda,
8895*6236dae4SAndroid Build Coastguard Worker   0x51, 0x96, 0x8f, 0xbc, 0x4d, 0xf0, 0xfc, 0x6d, 0x3e, 0x2e, 0x92, 0x91,
8896*6236dae4SAndroid Build Coastguard Worker   0xf5, 0x96, 0x4e, 0xb5, 0x14, 0x4c, 0x40, 0xef, 0x65, 0x73, 0xbd, 0xc4,
8897*6236dae4SAndroid Build Coastguard Worker   0x3a, 0xdc, 0x6b, 0xde, 0xe5, 0x68, 0xd5, 0x41, 0xb2, 0xa5, 0xc3, 0xe3,
8898*6236dae4SAndroid Build Coastguard Worker   0x78, 0xe0, 0x58, 0x80, 0x22, 0xaf, 0x30, 0x2e, 0xeb, 0x5a, 0x8f, 0xe6,
8899*6236dae4SAndroid Build Coastguard Worker   0x12, 0xc0, 0x48, 0xe7, 0xfd, 0x32, 0xdd, 0xe3, 0xd3, 0xbb, 0x1a, 0xfe,
8900*6236dae4SAndroid Build Coastguard Worker   0x99, 0x8e, 0x5c, 0x8f, 0x60, 0xd4, 0x3f, 0xfe, 0xaf, 0xa3, 0x3f, 0x3a,
8901*6236dae4SAndroid Build Coastguard Worker   0xb0, 0xcf, 0x94, 0xdb, 0xda, 0x8a, 0x77, 0x76, 0x1e, 0x88, 0xe4, 0x97,
8902*6236dae4SAndroid Build Coastguard Worker   0xc9, 0xad, 0x41, 0xab, 0xf9, 0x96, 0x7b, 0xc6, 0x48, 0x84, 0xdd, 0xc0,
8903*6236dae4SAndroid Build Coastguard Worker   0xad, 0x26, 0x63, 0x71, 0xfa, 0x01, 0xf5, 0x38, 0x9a, 0x4a, 0x79, 0x20,
8904*6236dae4SAndroid Build Coastguard Worker   0xc4, 0xb5, 0x17, 0x41, 0x2f, 0x31, 0x61, 0xca, 0x94, 0x36, 0xe6, 0x40,
8905*6236dae4SAndroid Build Coastguard Worker   0x55, 0x93, 0x04, 0x33, 0xc2, 0xf1, 0x03, 0xe6, 0x8a, 0x09, 0x45, 0x22,
8906*6236dae4SAndroid Build Coastguard Worker   0xc8, 0x17, 0x88, 0x81, 0x28, 0x46, 0x2e, 0x8f, 0xfc, 0x38, 0x29, 0xf5,
8907*6236dae4SAndroid Build Coastguard Worker   0x16, 0xc1, 0x49, 0xc1, 0x5c, 0x97, 0x27, 0xc4, 0xed, 0x62, 0x02, 0x48,
8908*6236dae4SAndroid Build Coastguard Worker   0xd7, 0x6d, 0x4c, 0x0c, 0x28, 0xa3, 0xfd, 0x0f, 0xef, 0x4f, 0xe6, 0x20,
8909*6236dae4SAndroid Build Coastguard Worker   0xf9, 0xf4, 0x69, 0xdf, 0x71, 0x83, 0x3a, 0xef, 0x53, 0xc2, 0xf0, 0x2f,
8910*6236dae4SAndroid Build Coastguard Worker   0x41, 0x62, 0x5e, 0x82, 0x3a, 0xe7, 0xb4, 0x4d, 0x50, 0xcd, 0x9e, 0x88,
8911*6236dae4SAndroid Build Coastguard Worker   0x24, 0x7e, 0xcd, 0x90, 0x97, 0x16, 0xef, 0x71, 0x3d, 0xb6, 0x78, 0xa7,
8912*6236dae4SAndroid Build Coastguard Worker   0xd9, 0x6c, 0x1f, 0x17, 0x7e, 0xe7, 0x62, 0x9c, 0x08, 0x85, 0x67, 0x25,
8913*6236dae4SAndroid Build Coastguard Worker   0x66, 0x69, 0xd1, 0xfe, 0xf8, 0x4c, 0xa9, 0x91, 0x05, 0xea, 0xa3, 0xe3,
8914*6236dae4SAndroid Build Coastguard Worker   0xb6, 0xe9, 0x71, 0xba, 0xc9, 0x27, 0x53, 0xe4, 0xdb, 0xa8, 0xf3, 0x29,
8915*6236dae4SAndroid Build Coastguard Worker   0x86, 0x10, 0x3b, 0x3a, 0xcd, 0x38, 0xf5, 0xd3, 0x1b, 0x94, 0x14, 0x98,
8916*6236dae4SAndroid Build Coastguard Worker   0xef, 0x53, 0x17, 0x0e, 0x6e, 0x49, 0x33, 0xf8, 0x88, 0xb3, 0xd6, 0x34,
8917*6236dae4SAndroid Build Coastguard Worker   0x9a, 0xf4, 0x26, 0x23, 0xd4, 0x58, 0x78, 0xa5, 0x5d, 0x54, 0x4e, 0xd9,
8918*6236dae4SAndroid Build Coastguard Worker   0x01, 0x08, 0x67, 0xcc, 0x0d, 0x93, 0x30, 0x91, 0x30, 0x3a, 0x91, 0xf9,
8919*6236dae4SAndroid Build Coastguard Worker   0xed, 0x49, 0x2c, 0x9a, 0x15, 0x4e, 0x9d, 0x5a, 0x23, 0x61, 0x33, 0xb4,
8920*6236dae4SAndroid Build Coastguard Worker   0xd8, 0x64, 0x8c, 0x7d, 0xe0, 0x4d, 0x08, 0x02, 0xd7, 0x28, 0x82, 0x0d,
8921*6236dae4SAndroid Build Coastguard Worker   0xe7, 0x94, 0xe4, 0x26, 0x64, 0xd5, 0xd8, 0xda, 0x3f, 0xbc, 0xea, 0x53,
8922*6236dae4SAndroid Build Coastguard Worker   0xe9, 0xda, 0x51, 0x6e, 0xbc, 0x00, 0xca, 0x6a, 0xb6, 0x4d, 0x67, 0x89,
8923*6236dae4SAndroid Build Coastguard Worker   0xca, 0xcf, 0x85, 0x03, 0x09, 0x11, 0xe3, 0x93, 0xa7, 0x0c, 0xb8, 0xf8,
8924*6236dae4SAndroid Build Coastguard Worker   0xe5, 0xb9, 0x21, 0xfb, 0x03, 0x24, 0x33, 0x7a, 0xb2, 0xe2, 0xe4, 0x92,
8925*6236dae4SAndroid Build Coastguard Worker   0x82, 0x6d, 0x58, 0x54, 0xef, 0xf0, 0xb1, 0x13, 0xc8, 0x77, 0x1b, 0xd9,
8926*6236dae4SAndroid Build Coastguard Worker   0x3b, 0x9d, 0xeb, 0xe7, 0xf4, 0xf2, 0x72, 0xb6, 0xa7, 0xa6, 0x32, 0x73,
8927*6236dae4SAndroid Build Coastguard Worker   0xe2, 0xd9, 0x53, 0x67, 0x0c, 0xf1, 0xe1, 0xe8, 0xd1, 0x13, 0x65, 0x29,
8928*6236dae4SAndroid Build Coastguard Worker   0x18, 0x24, 0x8d, 0x9d, 0x72, 0xf4, 0x43, 0x86, 0x51, 0x8a, 0x5f, 0x65,
8929*6236dae4SAndroid Build Coastguard Worker   0x70, 0x57, 0x57, 0x8c, 0x2e, 0x4e, 0xb6, 0x13, 0x03, 0x01, 0xa9, 0x7c,
8930*6236dae4SAndroid Build Coastguard Worker   0x62, 0x38, 0xad, 0xd8, 0x6f, 0xe2, 0xc1, 0xcd, 0xa3, 0x12, 0xfb, 0x8a,
8931*6236dae4SAndroid Build Coastguard Worker   0x89, 0xb2, 0xc3, 0x11, 0x08, 0x73, 0x9a, 0xad, 0xd2, 0x36, 0xda, 0x62,
8932*6236dae4SAndroid Build Coastguard Worker   0x62, 0x3d, 0x3e, 0x44, 0x33, 0x53, 0xcf, 0x2e, 0x58, 0xb9, 0x98, 0xbe,
8933*6236dae4SAndroid Build Coastguard Worker   0x19, 0xa0, 0x8e, 0x42, 0x7e, 0x73, 0x06, 0x68, 0x15, 0x99, 0x9a, 0x41,
8934*6236dae4SAndroid Build Coastguard Worker   0x2e, 0x83, 0xf3, 0x5d, 0x21, 0x94, 0xda, 0x6f, 0xc1, 0x95, 0xda, 0xfa,
8935*6236dae4SAndroid Build Coastguard Worker   0x1d, 0x4c, 0xea, 0xb6, 0xc4, 0x6b, 0x8f, 0xfd, 0x87, 0x9a, 0x65, 0x2b,
8936*6236dae4SAndroid Build Coastguard Worker   0x30, 0x51, 0x43, 0x18, 0xb6, 0xe7, 0x64, 0xbd, 0xaa, 0xc9, 0x42, 0x65,
8937*6236dae4SAndroid Build Coastguard Worker   0xde, 0x73, 0x93, 0xb4, 0xee, 0x1b, 0x8b, 0xa3, 0x02, 0x09, 0xf7, 0xb0,
8938*6236dae4SAndroid Build Coastguard Worker   0x61, 0xd4, 0x35, 0x2f, 0x04, 0x97, 0x39, 0x94, 0xb1, 0x45, 0x99, 0xa8,
8939*6236dae4SAndroid Build Coastguard Worker   0xf8, 0x88, 0xab, 0x72, 0x70, 0xf2, 0x61, 0xf4, 0xe7, 0xd8, 0xf6, 0x65,
8940*6236dae4SAndroid Build Coastguard Worker   0x5e, 0xbd, 0x4f, 0xc1, 0xca, 0xb2, 0x09, 0x8c, 0x64, 0xea, 0x7f, 0x32,
8941*6236dae4SAndroid Build Coastguard Worker   0xc7, 0xad, 0x26, 0x0a, 0x8d, 0x9d, 0x06, 0x9a, 0xb7, 0x4e, 0x3e, 0x08,
8942*6236dae4SAndroid Build Coastguard Worker   0x13, 0x1e, 0x14, 0x2e, 0x2a, 0x2a, 0xc8, 0xd3, 0x3b, 0x6c, 0x60, 0x38,
8943*6236dae4SAndroid Build Coastguard Worker   0x7f, 0x38, 0xdf, 0xd0, 0xfa, 0xf6, 0xe0, 0xfd, 0xbb, 0xe3, 0x77, 0x5f,
8944*6236dae4SAndroid Build Coastguard Worker   0xed, 0xa1, 0x30, 0x48, 0xcb, 0x21, 0x2a, 0xcc, 0xd1, 0x4f, 0xb3, 0x51,
8945*6236dae4SAndroid Build Coastguard Worker   0x36, 0x64, 0xf1, 0x28, 0x3d, 0x56, 0x1a, 0xe5, 0xed, 0xa9, 0x04, 0xab,
8946*6236dae4SAndroid Build Coastguard Worker   0x08, 0xa3, 0xdb, 0xeb, 0xfd, 0x41, 0x75, 0x2b, 0x58, 0x9d, 0x5f, 0x16,
8947*6236dae4SAndroid Build Coastguard Worker   0x97, 0x33, 0xc3, 0x41, 0x43, 0xd2, 0xfa, 0x28, 0x3c, 0x49, 0x49, 0x2d,
8948*6236dae4SAndroid Build Coastguard Worker   0xb8, 0x2d, 0xcc, 0xb8, 0xe8, 0xbf, 0x07, 0x9d, 0xec, 0xd5, 0xc9, 0x49,
8949*6236dae4SAndroid Build Coastguard Worker   0xa0, 0x5d, 0x18, 0x17, 0x4b, 0x08, 0x8f, 0x71, 0xf6, 0x2b, 0x0d, 0x64,
8950*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x2b, 0x30, 0x0b, 0x03, 0xb4, 0x2c, 0x14, 0xb1, 0x0d, 0x51, 0x0f,
8951*6236dae4SAndroid Build Coastguard Worker   0x26, 0xc2, 0xb7, 0x7e, 0xd5, 0x02, 0x95, 0xd4, 0x50, 0xa6, 0x3a, 0xed,
8952*6236dae4SAndroid Build Coastguard Worker   0x70, 0x46, 0xc5, 0x61, 0x65, 0x8d, 0xbd, 0x93, 0x2e, 0x6a, 0xd4, 0x44,
8953*6236dae4SAndroid Build Coastguard Worker   0x97, 0xbc, 0xa9, 0x4f, 0xff, 0x33, 0xd8, 0x74, 0x9a, 0xfc, 0x2f, 0x8e,
8954*6236dae4SAndroid Build Coastguard Worker   0xb6, 0x62, 0xcf, 0x3d, 0xd6, 0x39, 0x2f, 0x8a, 0x80, 0x5e, 0xb1, 0xc9,
8955*6236dae4SAndroid Build Coastguard Worker   0xec, 0x66, 0xce, 0x49, 0x42, 0x0a, 0xd5, 0x79, 0x00, 0x73, 0xb3, 0x2e,
8956*6236dae4SAndroid Build Coastguard Worker   0x0f, 0x47, 0x96, 0x22, 0xb4, 0xfe, 0xd1, 0x18, 0xa5, 0xa0, 0x79, 0x88,
8957*6236dae4SAndroid Build Coastguard Worker   0xa5, 0x55, 0xe1, 0x5d, 0xe3, 0xcb, 0x9e, 0xdb, 0xb4, 0x14, 0xff, 0x88,
8958*6236dae4SAndroid Build Coastguard Worker   0x41, 0x07, 0x83, 0x9b, 0xa2, 0x17, 0xf5, 0x0b, 0x78, 0x3e, 0xa4, 0x15,
8959*6236dae4SAndroid Build Coastguard Worker   0x27, 0x0c, 0x6c, 0xa6, 0xf8, 0xeb, 0xb4, 0x0f, 0x5c, 0x77, 0x62, 0x92,
8960*6236dae4SAndroid Build Coastguard Worker   0x8d, 0xf1, 0xe6, 0xe5, 0xb4, 0x88, 0xe6, 0x7a, 0xfd, 0x74, 0x1c, 0x3a,
8961*6236dae4SAndroid Build Coastguard Worker   0x48, 0x83, 0xd4, 0x28, 0x6d, 0xf8, 0x05, 0x8a, 0x5d, 0x23, 0xab, 0x75,
8962*6236dae4SAndroid Build Coastguard Worker   0x62, 0x90, 0xcd, 0x1d, 0xdc, 0xa2, 0x38, 0xce, 0x0b, 0x77, 0xa4, 0xa5,
8963*6236dae4SAndroid Build Coastguard Worker   0x75, 0xa8, 0x26, 0xd1, 0x43, 0xfe, 0x2b, 0xea, 0x51, 0x1f, 0xfe, 0xb9,
8964*6236dae4SAndroid Build Coastguard Worker   0x6d, 0x4f, 0xef, 0x91, 0xaf, 0xcd, 0xf0, 0x25, 0x96, 0x0e, 0x6b, 0xa2,
8965*6236dae4SAndroid Build Coastguard Worker   0x1a, 0x21, 0x7c, 0xb0, 0x4b, 0xc4, 0xf1, 0x8c, 0x53, 0x3c, 0xda, 0xc9,
8966*6236dae4SAndroid Build Coastguard Worker   0x8d, 0xa1, 0x5f, 0xdd, 0xa6, 0x68, 0x61, 0x78, 0xd9, 0x54, 0xa7, 0xdc,
8967*6236dae4SAndroid Build Coastguard Worker   0x42, 0x41, 0x1e, 0x72, 0xe1, 0xf4, 0xdc, 0x97, 0xe5, 0xe6, 0xef, 0x5a,
8968*6236dae4SAndroid Build Coastguard Worker   0x6f, 0x1a, 0x17, 0x15, 0xd7, 0x1e, 0x06, 0xc8, 0x85, 0x9f, 0x3e, 0x74,
8969*6236dae4SAndroid Build Coastguard Worker   0x6e, 0x02, 0x69, 0xa6, 0x97, 0x54, 0x72, 0x63, 0x73, 0xaa, 0xe7, 0xca,
8970*6236dae4SAndroid Build Coastguard Worker   0x64, 0x2d, 0x30, 0x6e, 0xeb, 0x4b, 0xc4, 0x1e, 0xc6, 0x1d, 0xab, 0x43,
8971*6236dae4SAndroid Build Coastguard Worker   0x25, 0x91, 0x53, 0x7c, 0xec, 0xe6, 0xa6, 0x48, 0xba, 0x06, 0xa1, 0x17,
8972*6236dae4SAndroid Build Coastguard Worker   0x06, 0x86, 0x13, 0xcc, 0x05, 0xc9, 0x32, 0x98, 0x7b, 0x3f, 0x48, 0x70,
8973*6236dae4SAndroid Build Coastguard Worker   0x3e, 0xcb, 0x6f, 0x0a, 0xfa, 0x8d, 0x24, 0x8a, 0x04, 0xb2, 0x29, 0xb3,
8974*6236dae4SAndroid Build Coastguard Worker   0xb9, 0xa5, 0xc8, 0xe7, 0x2d, 0xaa, 0xaa, 0x47, 0x52, 0x0b, 0xf9, 0x60,
8975*6236dae4SAndroid Build Coastguard Worker   0x2d, 0x14, 0x39, 0x6a, 0x60, 0x8b, 0x58, 0x38, 0x91, 0x36, 0x2b, 0xf0,
8976*6236dae4SAndroid Build Coastguard Worker   0xd1, 0xc4, 0xa3, 0xd0, 0xa5, 0x5b, 0xe6, 0x8a, 0x5e, 0x4e, 0xc7, 0xe8,
8977*6236dae4SAndroid Build Coastguard Worker   0xcf, 0x70, 0xc0, 0x46, 0xf4, 0x2e, 0x94, 0xab, 0x30, 0x33, 0xce, 0xce,
8978*6236dae4SAndroid Build Coastguard Worker   0xf9, 0x97, 0x9c, 0x29, 0xed, 0x36, 0xb4, 0xb6, 0xae, 0x15, 0x2c, 0x1a,
8979*6236dae4SAndroid Build Coastguard Worker   0xa0, 0x63, 0x49, 0xf2, 0x60, 0x78, 0x55, 0x14, 0x02, 0x66, 0x33, 0xef,
8980*6236dae4SAndroid Build Coastguard Worker   0x0e, 0x88, 0x48, 0x77, 0x22, 0xdc, 0xcc, 0x39, 0xaa, 0x8d, 0xe9, 0x45,
8981*6236dae4SAndroid Build Coastguard Worker   0x60, 0xf3, 0x31, 0xbc, 0x1a, 0x1a, 0xb7, 0xc3, 0x49, 0xa3, 0xc7, 0x50,
8982*6236dae4SAndroid Build Coastguard Worker   0x53, 0x73, 0xe0, 0xf9, 0x18, 0xbd, 0x41, 0x64, 0xbe, 0xdf, 0xd5, 0x85,
8983*6236dae4SAndroid Build Coastguard Worker   0x64, 0x0a, 0x6b, 0x15, 0x61, 0xf2, 0x48, 0xf1, 0x82, 0x4b, 0x94, 0xe0,
8984*6236dae4SAndroid Build Coastguard Worker   0x1d, 0xcc, 0xe5, 0x0c, 0x24, 0x8f, 0x8c, 0xc1, 0x37, 0x22, 0xb3, 0x39,
8985*6236dae4SAndroid Build Coastguard Worker   0x6f, 0x86, 0x57, 0x69, 0xa6, 0x59, 0x4d, 0xe2, 0xe8, 0xcf, 0x5b, 0x1b,
8986*6236dae4SAndroid Build Coastguard Worker   0xf3, 0xee, 0x1e, 0x1c, 0x48, 0xf1, 0x73, 0xf0, 0x34, 0x56, 0xc6, 0xfe,
8987*6236dae4SAndroid Build Coastguard Worker   0xa6, 0xdb, 0xd9, 0x56, 0xe6, 0xe1, 0xd5, 0x86, 0x70, 0x03, 0xec, 0xa2,
8988*6236dae4SAndroid Build Coastguard Worker   0x82, 0xff, 0xcc, 0xa3, 0xff, 0x9c, 0xf4, 0x1d, 0x69, 0x00, 0xe5, 0xde,
8989*6236dae4SAndroid Build Coastguard Worker   0xf5, 0x49, 0xc5, 0x4e, 0x11, 0x86, 0x4a, 0x94, 0x12, 0x00, 0xeb, 0x38,
8990*6236dae4SAndroid Build Coastguard Worker   0xa5, 0x4b, 0xc0, 0x3f, 0x40, 0xe8, 0x2a, 0x59, 0xf6, 0x1e, 0x9b, 0x7b,
8991*6236dae4SAndroid Build Coastguard Worker   0x8d, 0x91, 0xc4, 0x33, 0xb2, 0xf0, 0xbd, 0xc3, 0x2f, 0x38, 0xa9, 0x50,
8992*6236dae4SAndroid Build Coastguard Worker   0x5e, 0xb5, 0xca, 0x25, 0x75, 0x07, 0x3a, 0xc6, 0x98, 0x55, 0x8b, 0xc8,
8993*6236dae4SAndroid Build Coastguard Worker   0x4b, 0x94, 0x46, 0xd4, 0x92, 0x83, 0x0e, 0x3a, 0x8e, 0xe6, 0xbb, 0x42,
8994*6236dae4SAndroid Build Coastguard Worker   0x60, 0x2e, 0x51, 0x40, 0xfc, 0x75, 0xf5, 0x34, 0x69, 0xfe, 0x64, 0x62,
8995*6236dae4SAndroid Build Coastguard Worker   0x3b, 0xf6, 0x24, 0x22, 0x6a, 0xc7, 0x7e, 0x37, 0x26, 0x15, 0xca, 0xec,
8996*6236dae4SAndroid Build Coastguard Worker   0xd8, 0x49, 0xa4, 0xba, 0x82, 0x88, 0x8b, 0x5f, 0x7a, 0xe2, 0x0d, 0x43,
8997*6236dae4SAndroid Build Coastguard Worker   0x21, 0xd2, 0x18, 0x3b, 0x68, 0x15, 0x0f, 0x79, 0x2d, 0x38, 0x7f, 0x3b,
8998*6236dae4SAndroid Build Coastguard Worker   0x96, 0x68, 0xd8, 0x3e, 0xca, 0xed, 0xcf, 0x1f, 0xd3, 0x12, 0x58, 0x0a,
8999*6236dae4SAndroid Build Coastguard Worker   0xc9, 0xdc, 0x76, 0xa5, 0x1d, 0x1e, 0xa4, 0x13, 0xad, 0xe2, 0x28, 0x6b,
9000*6236dae4SAndroid Build Coastguard Worker   0x46, 0xff, 0xf7, 0x31, 0xa0, 0xa4, 0x46, 0x45, 0xec, 0xde, 0x84, 0xf5,
9001*6236dae4SAndroid Build Coastguard Worker   0x82, 0x76, 0x1d, 0x0d, 0x9a, 0x00, 0xe8, 0x4b, 0x05, 0xf5, 0x69, 0x36,
9002*6236dae4SAndroid Build Coastguard Worker   0x4e, 0xca, 0x31, 0xf1, 0xe2, 0xc5, 0x6c, 0x1c, 0x32, 0x8d, 0x51, 0x06,
9003*6236dae4SAndroid Build Coastguard Worker   0x49, 0x1f, 0xda, 0xac, 0xaa, 0x66, 0xe2, 0x38, 0x30, 0x90, 0xb9, 0xb6,
9004*6236dae4SAndroid Build Coastguard Worker   0xd7, 0xca, 0x18, 0xe6, 0x43, 0x9f, 0xae, 0xc6, 0x98, 0xee, 0x38, 0x57,
9005*6236dae4SAndroid Build Coastguard Worker   0xbb, 0xe3, 0xfe, 0x83, 0x6c, 0x3b, 0x18, 0x24, 0x26, 0xb6, 0xbd, 0x65,
9006*6236dae4SAndroid Build Coastguard Worker   0xe7, 0x2f, 0x71, 0x52, 0x74, 0x14, 0xa7, 0xc8, 0x44, 0x25, 0x28, 0xa1,
9007*6236dae4SAndroid Build Coastguard Worker   0x78, 0xa7, 0xb6, 0x86, 0xeb, 0x9c, 0x9e, 0x9d, 0x1f, 0x9f, 0xbe, 0xeb,
9008*6236dae4SAndroid Build Coastguard Worker   0x47, 0xff, 0xde, 0x59, 0x7e, 0x2f, 0x1b, 0x5b, 0xd3, 0xf9, 0x77, 0xb0,
9009*6236dae4SAndroid Build Coastguard Worker   0x28, 0xbf, 0x8b, 0x74, 0xbc, 0x25, 0x2b, 0xcd, 0x9b, 0x6d, 0xe2, 0xbe,
9010*6236dae4SAndroid Build Coastguard Worker   0xeb, 0xda, 0xf1, 0xe7, 0xa7, 0xd8, 0x8a, 0xbf, 0xc6, 0xb1, 0xb3, 0x86,
9011*6236dae4SAndroid Build Coastguard Worker   0xa0, 0x13, 0xc1, 0x3d, 0xa3, 0x6f, 0x4a, 0xef, 0x09, 0xe1, 0x86, 0x16,
9012*6236dae4SAndroid Build Coastguard Worker   0x32, 0x9e, 0xe7, 0xa8, 0x35, 0xed, 0x4b, 0xda, 0x8e, 0x1d, 0xbe, 0xf4,
9013*6236dae4SAndroid Build Coastguard Worker   0xac, 0x59, 0xd9, 0x1a, 0x3e, 0x7c, 0x13, 0xc9, 0x0d, 0xd0, 0x28, 0xec,
9014*6236dae4SAndroid Build Coastguard Worker   0x90, 0x17, 0xac, 0x9b, 0x5d, 0xbc, 0x3a, 0xab, 0x7c, 0x77, 0xa8, 0xfa,
9015*6236dae4SAndroid Build Coastguard Worker   0x5a, 0x05, 0x12, 0x02, 0xbf, 0x3a, 0x3a, 0x47, 0x67, 0x25, 0x01, 0xb4,
9016*6236dae4SAndroid Build Coastguard Worker   0xd8, 0x09, 0x92, 0xd3, 0x57, 0xd4, 0xc9, 0xc4, 0xa8, 0xbc, 0x8a, 0xc9,
9017*6236dae4SAndroid Build Coastguard Worker   0x82, 0x07, 0x1e, 0x8c, 0x9b, 0x71, 0x92, 0x07, 0xab, 0xe9, 0xc1, 0xe0,
9018*6236dae4SAndroid Build Coastguard Worker   0x38, 0x04, 0x6a, 0x14, 0xb6, 0xf3, 0x96, 0x7a, 0xfd, 0x9c, 0xa6, 0xd8,
9019*6236dae4SAndroid Build Coastguard Worker   0x0c, 0x62, 0x7d, 0xf6, 0xe1, 0x5c, 0xfc, 0xb5, 0x18, 0xdd, 0x3c, 0x3f,
9020*6236dae4SAndroid Build Coastguard Worker   0xea, 0x7a, 0x4d, 0x7e, 0x30, 0x0e, 0x31, 0xa6, 0xb2, 0xd8, 0x3a, 0x1d,
9021*6236dae4SAndroid Build Coastguard Worker   0x5e, 0xe5, 0xc5, 0xb8, 0xb8, 0xc4, 0x2d, 0x21, 0x2d, 0xee, 0xdb, 0x74,
9022*6236dae4SAndroid Build Coastguard Worker   0xf0, 0xea, 0xe0, 0x1b, 0xd4, 0xab, 0xd0, 0xf7, 0x7a, 0xf6, 0xfe, 0xf4,
9023*6236dae4SAndroid Build Coastguard Worker   0xec, 0xf5, 0xf1, 0xbb, 0x57, 0xdd, 0xe8, 0xf0, 0xf4, 0xec, 0x6f, 0xdd,
9024*6236dae4SAndroid Build Coastguard Worker   0xe8, 0xed, 0xe9, 0x37, 0x47, 0x81, 0x6a, 0x2a, 0x6c, 0x30, 0xe6, 0x71,
9025*6236dae4SAndroid Build Coastguard Worker   0xe4, 0x3b, 0xf4, 0xbf, 0xa1, 0xa9, 0xe2, 0x38, 0x83, 0xb8, 0xfb, 0xa5,
9026*6236dae4SAndroid Build Coastguard Worker   0x7b, 0x9b, 0x1e, 0x98, 0x6c, 0x08, 0x3a, 0xcb, 0x40, 0x3a, 0xd0, 0x25,
9027*6236dae4SAndroid Build Coastguard Worker   0xde, 0x1c, 0x1d, 0xbc, 0xea, 0x7a, 0x6d, 0x1e, 0xb1, 0x0f, 0x37, 0x7c,
9028*6236dae4SAndroid Build Coastguard Worker   0x0c, 0xd7, 0x67, 0x16, 0x4d, 0x4d, 0xfc, 0xd8, 0x38, 0x24, 0x4d, 0x89,
9029*6236dae4SAndroid Build Coastguard Worker   0xa3, 0xe4, 0x2c, 0x11, 0x80, 0x61, 0x09, 0x07, 0x6d, 0x34, 0x2f, 0x49,
9030*6236dae4SAndroid Build Coastguard Worker   0x50, 0x7a, 0xa2, 0x4e, 0x99, 0xc0, 0x0b, 0x2b, 0x3c, 0x51, 0x69, 0x75,
9031*6236dae4SAndroid Build Coastguard Worker   0x8d, 0x17, 0x81, 0xb6, 0xa6, 0x0a, 0x3e, 0xad, 0x07, 0x77, 0x0b, 0x5b,
9032*6236dae4SAndroid Build Coastguard Worker   0xe6, 0x00, 0x2c, 0x77, 0x1b, 0x60, 0x6c, 0x24, 0xef, 0xd8, 0x05, 0x9f,
9033*6236dae4SAndroid Build Coastguard Worker   0xdc, 0x0b, 0xf8, 0x41, 0x8a, 0xb7, 0x5b, 0x45, 0xb6, 0xca, 0x85, 0x6d,
9034*6236dae4SAndroid Build Coastguard Worker   0xd2, 0xb5, 0xd8, 0x6e, 0xa1, 0x3b, 0x21, 0x51, 0x94, 0x6b, 0x24, 0x9e,
9035*6236dae4SAndroid Build Coastguard Worker   0x12, 0xa8, 0xab, 0xcd, 0xc6, 0xbf, 0xe3, 0x1f, 0x4b, 0x53, 0xe5, 0x80,
9036*6236dae4SAndroid Build Coastguard Worker   0x87, 0x60, 0x76, 0x01, 0x6c, 0x99, 0x72, 0x46, 0xb3, 0xf6, 0x28, 0xd5,
9037*6236dae4SAndroid Build Coastguard Worker   0x30, 0x57, 0x7c, 0xac, 0x7e, 0xa3, 0x45, 0x8a, 0xa6, 0xe9, 0x1e, 0x23,
9038*6236dae4SAndroid Build Coastguard Worker   0xce, 0x42, 0x86, 0xd6, 0x56, 0x3f, 0x6a, 0x53, 0x4c, 0xb8, 0x4e, 0x3b,
9039*6236dae4SAndroid Build Coastguard Worker   0x5c, 0x67, 0xc0, 0x8a, 0xd2, 0x2d, 0x36, 0x2d, 0x05, 0x59, 0x41, 0x74,
9040*6236dae4SAndroid Build Coastguard Worker   0x89, 0x42, 0xa8, 0x86, 0x9e, 0x7f, 0x15, 0x14, 0x0d, 0xef, 0x62, 0xa4,
9041*6236dae4SAndroid Build Coastguard Worker   0x27, 0x41, 0x94, 0xe4, 0x12, 0x19, 0xc0, 0x90, 0x7b, 0xcc, 0x9e, 0x0e,
9042*6236dae4SAndroid Build Coastguard Worker   0xb7, 0x4a, 0xa7, 0xdd, 0x1a, 0x54, 0xe6, 0xe0, 0x45, 0x91, 0x69, 0x9d,
9043*6236dae4SAndroid Build Coastguard Worker   0xc9, 0x70, 0x08, 0xbb, 0x2f, 0x17, 0x85, 0x39, 0xe5, 0xdb, 0x1b, 0x77,
9044*6236dae4SAndroid Build Coastguard Worker   0x36, 0xda, 0x84, 0x5a, 0x55, 0x15, 0xc5, 0x9c, 0x02, 0xc6, 0x38, 0x02,
9045*6236dae4SAndroid Build Coastguard Worker   0x1e, 0xe9, 0x56, 0x5f, 0xcf, 0x11, 0x8c, 0x6e, 0xf4, 0xc2, 0x00, 0x51,
9046*6236dae4SAndroid Build Coastguard Worker   0x19, 0x11, 0x75, 0x72, 0x0c, 0xc7, 0x21, 0x80, 0xe6, 0x3a, 0x2a, 0x70,
9047*6236dae4SAndroid Build Coastguard Worker   0x46, 0x9c, 0xfc, 0x45, 0xfa, 0x25, 0x51, 0x1f, 0xc6, 0xf2, 0x3f, 0x7c,
9048*6236dae4SAndroid Build Coastguard Worker   0x76, 0x7a, 0xb6, 0x1d, 0xfc, 0x32, 0xfe, 0xe2, 0xa1, 0x4f, 0x7b, 0x7b,
9049*6236dae4SAndroid Build Coastguard Worker   0xf6, 0xfe, 0xe8, 0xfc, 0xbd, 0xff, 0x8d, 0xe3, 0xb7, 0x07, 0xe1, 0xd5,
9050*6236dae4SAndroid Build Coastguard Worker   0xe1, 0x2f, 0xe6, 0x7d, 0x83, 0x24, 0x01, 0x7e, 0xc5, 0x2f, 0xc5, 0x71,
9051*6236dae4SAndroid Build Coastguard Worker   0x50, 0x9e, 0x37, 0x02, 0xc9, 0x4c, 0xab, 0xfd, 0xb7, 0x73, 0xa8, 0x89,
9052*6236dae4SAndroid Build Coastguard Worker   0xbf, 0x58, 0xb0, 0xa6, 0x37, 0x47, 0x27, 0x67, 0xfe, 0x9a, 0xbe, 0x79,
9053*6236dae4SAndroid Build Coastguard Worker   0xff, 0xfa, 0x6f, 0xcd, 0x14, 0xaa, 0xed, 0x9d, 0xc0, 0x57, 0x7f, 0x67,
9054*6236dae4SAndroid Build Coastguard Worker   0xaf, 0xf5, 0x77, 0x9c, 0xb7, 0x72, 0x7e, 0xb4, 0x84, 0x83, 0xfa, 0xbb,
9055*6236dae4SAndroid Build Coastguard Worker   0xe8, 0xdd, 0x09, 0xec, 0xda, 0xa2, 0x42, 0x19, 0x38, 0x9c, 0x55, 0x31,
9056*6236dae4SAndroid Build Coastguard Worker   0x06, 0xd5, 0x6b, 0xff, 0xfb, 0xbf, 0x10, 0xdc, 0x03, 0xd5, 0x8f, 0xee,
9057*6236dae4SAndroid Build Coastguard Worker   0xc1, 0x7d, 0x53, 0x7e, 0xdf, 0xc5, 0x3f, 0x7f, 0xec, 0xf5, 0x7a, 0x9f,
9058*6236dae4SAndroid Build Coastguard Worker   0xfb, 0xbd, 0x2f, 0xc9, 0x53, 0x67, 0xe8, 0x8c, 0x0f, 0x62, 0x82, 0x74,
9059*6236dae4SAndroid Build Coastguard Worker   0xcb, 0x7d, 0x42, 0x75, 0xc0, 0x54, 0xf7, 0x8c, 0x41, 0xc2, 0x69, 0x92,
9060*6236dae4SAndroid Build Coastguard Worker   0x95, 0xd4, 0x7e, 0x3e, 0x78, 0xaf, 0x23, 0x2d, 0x6d, 0xed, 0xba, 0x51,
9061*6236dae4SAndroid Build Coastguard Worker   0x78, 0x05, 0xa7, 0x9d, 0xa5, 0xc2, 0x6a, 0xb5, 0x26, 0x40, 0x32, 0xf6,
9062*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x4f, 0x46, 0x9e, 0x3b, 0x8c, 0x1b, 0x71, 0xe3, 0x67, 0x4b, 0x0c,
9063*6236dae4SAndroid Build Coastguard Worker   0x4d, 0xb0, 0x69, 0x69, 0xaf, 0xf4, 0x5c, 0xaf, 0x28, 0x59, 0xfa, 0xc8,
9064*6236dae4SAndroid Build Coastguard Worker   0x4c, 0x3f, 0xe8, 0x7a, 0xe2, 0x6e, 0xf5, 0xe8, 0xa8, 0xa6, 0x94, 0x1d,
9065*6236dae4SAndroid Build Coastguard Worker   0x8a, 0xa1, 0x24, 0x74, 0x7b, 0x21, 0x0b, 0xad, 0xa7, 0xf5, 0x70, 0x1d,
9066*6236dae4SAndroid Build Coastguard Worker   0xd7, 0x59, 0x35, 0x14, 0x59, 0xa3, 0x89, 0x7a, 0xae, 0x44, 0xb7, 0x1a,
9067*6236dae4SAndroid Build Coastguard Worker   0x83, 0x30, 0x43, 0x38, 0x09, 0xcf, 0x29, 0x56, 0xb4, 0xb0, 0x25, 0x8e,
9068*6236dae4SAndroid Build Coastguard Worker   0x61, 0xc4, 0x6a, 0x88, 0x2f, 0x34, 0x5d, 0x78, 0xd7, 0xa1, 0x8b, 0xa9,
9069*6236dae4SAndroid Build Coastguard Worker   0xa0, 0x6d, 0x87, 0x3d, 0xa9, 0xeb, 0x14, 0xde, 0xfb, 0x56, 0x16, 0x5d,
9070*6236dae4SAndroid Build Coastguard Worker   0x02, 0xca, 0xc2, 0x98, 0xf0, 0x45, 0x3d, 0x26, 0x2f, 0x1a, 0x17, 0x8f,
9071*6236dae4SAndroid Build Coastguard Worker   0xfa, 0x69, 0xdd, 0x4d, 0xd7, 0xf6, 0x7d, 0x01, 0xe8, 0x61, 0xe9, 0x17,
9072*6236dae4SAndroid Build Coastguard Worker   0xa9, 0x3e, 0x13, 0x5c, 0x69, 0xb0, 0x36, 0xc6, 0x05, 0xd6, 0x59, 0xf9,
9073*6236dae4SAndroid Build Coastguard Worker   0xf7, 0x15, 0xd4, 0xe7, 0xe9, 0xf5, 0x20, 0x9c, 0x8f, 0x72, 0x2d, 0xda,
9074*6236dae4SAndroid Build Coastguard Worker   0x91, 0x81, 0xe6, 0xca, 0x24, 0x7a, 0x95, 0x28, 0x86, 0xf9, 0x4c, 0xae,
9075*6236dae4SAndroid Build Coastguard Worker   0xac, 0xc3, 0x3c, 0xb4, 0x84, 0x5e, 0xf4, 0x6d, 0x36, 0x1e, 0x0d, 0x93,
9076*6236dae4SAndroid Build Coastguard Worker   0x92, 0x72, 0x83, 0xfd, 0x5b, 0x5c, 0xd8, 0x84, 0x0f, 0x72, 0x55, 0xd0,
9077*6236dae4SAndroid Build Coastguard Worker   0x57, 0xed, 0xc9, 0xd1, 0xee, 0xe1, 0x61, 0xae, 0x0f, 0x54, 0x1a, 0x9b,
9078*6236dae4SAndroid Build Coastguard Worker   0xcd, 0xc0, 0x34, 0x98, 0x79, 0x65, 0xf4, 0xcc, 0x3e, 0x4a, 0x63, 0xbc,
9079*6236dae4SAndroid Build Coastguard Worker   0x51, 0x9b, 0x6d, 0x8f, 0x9b, 0xfb, 0xaa, 0x21, 0xb8, 0x78, 0xc7, 0x0f,
9080*6236dae4SAndroid Build Coastguard Worker   0x23, 0x66, 0xd3, 0x9b, 0x1d, 0xf2, 0x3d, 0x3e, 0xeb, 0xf2, 0xbf, 0x9e,
9081*6236dae4SAndroid Build Coastguard Worker   0xd9, 0xc2, 0x54, 0xc7, 0x8e, 0x65, 0x73, 0x8c, 0x8d, 0x97, 0xe3, 0x33,
9082*6236dae4SAndroid Build Coastguard Worker   0x85, 0xed, 0xe8, 0xf9, 0x1b, 0xc5, 0x65, 0x45, 0x5a, 0x7f, 0x2f, 0x3c,
9083*6236dae4SAndroid Build Coastguard Worker   0x66, 0xca, 0xa9, 0xbc, 0x13, 0xcc, 0x69, 0x83, 0x9c, 0x72, 0xeb, 0x79,
9084*6236dae4SAndroid Build Coastguard Worker   0xf2, 0xd8, 0xb9, 0x8a, 0xdf, 0x5f, 0xa9, 0x8c, 0x6f, 0x18, 0x9f, 0x45,
9085*6236dae4SAndroid Build Coastguard Worker   0x53, 0x6b, 0x75, 0x33, 0x9a, 0x64, 0xf9, 0xac, 0x4e, 0x51, 0xaf, 0xa6,
9086*6236dae4SAndroid Build Coastguard Worker   0xfa, 0x46, 0x31, 0xa7, 0x88, 0x0c, 0x21, 0xca, 0x72, 0x71, 0xb9, 0x78,
9087*6236dae4SAndroid Build Coastguard Worker   0xe2, 0xd2, 0x5c, 0x1c, 0x5e, 0xe3, 0x02, 0xe6, 0x5a, 0xce, 0x72, 0xca,
9088*6236dae4SAndroid Build Coastguard Worker   0xc3, 0xc3, 0x94, 0xa0, 0xf1, 0x38, 0x1d, 0x3b, 0xad, 0xe9, 0x65, 0xf6,
9089*6236dae4SAndroid Build Coastguard Worker   0xe3, 0xc2, 0xf7, 0x33, 0xd2, 0x9d, 0x0a, 0xfc, 0x71, 0x9c, 0x33, 0x42,
9090*6236dae4SAndroid Build Coastguard Worker   0x02, 0x42, 0x49, 0x54, 0x52, 0x15, 0xe5, 0xcb, 0x7e, 0x5b, 0xd6, 0x45,
9091*6236dae4SAndroid Build Coastguard Worker   0x4b, 0x2e, 0xbc, 0xbc, 0x57, 0x66, 0x18, 0x3e, 0xb4, 0xcc, 0x26, 0xe4,
9092*6236dae4SAndroid Build Coastguard Worker   0x0a, 0x32, 0x12, 0xe9, 0x96, 0x4e, 0x7e, 0x81, 0x65, 0xf1, 0x54, 0xdf,
9093*6236dae4SAndroid Build Coastguard Worker   0x26, 0x84, 0x40, 0x67, 0x8e, 0x1f, 0xfd, 0x9a, 0x52, 0xe1, 0xa7, 0x17,
9094*6236dae4SAndroid Build Coastguard Worker   0x0c, 0x74, 0x7a, 0x7f, 0x32, 0x1b, 0xe9, 0x4e, 0xc1, 0xa6, 0x2a, 0x3b,
9095*6236dae4SAndroid Build Coastguard Worker   0xe1, 0x8a, 0xe1, 0x66, 0xfb, 0x7e, 0x50, 0x22, 0x74, 0x62, 0x5d, 0xfd,
9096*6236dae4SAndroid Build Coastguard Worker   0x48, 0xc8, 0x32, 0x04, 0x2c, 0xe3, 0xc9, 0x66, 0xb4, 0xfd, 0x1a, 0xd0,
9097*6236dae4SAndroid Build Coastguard Worker   0x9b, 0xad, 0x0f, 0xb5, 0xbe, 0x64, 0x4a, 0x9c, 0xec, 0xe7, 0x10, 0x95,
9098*6236dae4SAndroid Build Coastguard Worker   0x99, 0x32, 0x0f, 0x90, 0x2a, 0x8b, 0x3f, 0xf4, 0x72, 0xc1, 0x87, 0x2e,
9099*6236dae4SAndroid Build Coastguard Worker   0x08, 0x43, 0x18, 0x49, 0x68, 0x20, 0xeb, 0x6f, 0xf5, 0xd8, 0x9a, 0x51,
9100*6236dae4SAndroid Build Coastguard Worker   0x05, 0xbc, 0x70, 0xe7, 0x81, 0x71, 0x28, 0x0d, 0x09, 0xb8, 0x55, 0x4a,
9101*6236dae4SAndroid Build Coastguard Worker   0xe4, 0xf0, 0xf5, 0xd6, 0x10, 0xcf, 0x77, 0x7b, 0x1b, 0x8f, 0xaf, 0xeb,
9102*6236dae4SAndroid Build Coastguard Worker   0xb2, 0xfe, 0x2c, 0xf4, 0x95, 0x8f, 0xe4, 0x27, 0xb4, 0xc5, 0x92, 0xae,
9103*6236dae4SAndroid Build Coastguard Worker   0x5c, 0xcc, 0x93, 0x2b, 0xcb, 0x1b, 0xf5, 0xcc, 0x45, 0xce, 0x7d, 0xbe,
9104*6236dae4SAndroid Build Coastguard Worker   0xb7, 0xb3, 0xb3, 0xbd, 0xb7, 0xb9, 0x85, 0xbb, 0xb4, 0x01, 0xf6, 0xe6,
9105*6236dae4SAndroid Build Coastguard Worker   0x43, 0xfe, 0x1a, 0xd8, 0x06, 0x0c, 0x1e, 0xc4, 0x14, 0x5c, 0x6c, 0x3b,
9106*6236dae4SAndroid Build Coastguard Worker   0xf4, 0x30, 0xcf, 0x92, 0xba, 0xd4, 0xe2, 0x02, 0xb8, 0xfd, 0x6b, 0x63,
9107*6236dae4SAndroid Build Coastguard Worker   0xd9, 0xca, 0xeb, 0x75, 0x71, 0x99, 0x92, 0xac, 0x60, 0x45, 0x9f, 0x87,
9108*6236dae4SAndroid Build Coastguard Worker   0xed, 0x3d, 0x08, 0x11, 0x4a, 0x59, 0x1b, 0xd5, 0x38, 0x1d, 0x5d, 0x82,
9109*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x33, 0x99, 0xa4, 0x65, 0x07, 0x4f, 0x19, 0xbd, 0x4c, 0x0d, 0x75,
9110*6236dae4SAndroid Build Coastguard Worker   0x5f, 0xb1, 0xc9, 0xa8, 0x3e, 0xc3, 0xf6, 0x81, 0x9c, 0x6a, 0x7b, 0x64,
9111*6236dae4SAndroid Build Coastguard Worker   0x95, 0x15, 0xab, 0x29, 0x75, 0x9e, 0x41, 0xda, 0x94, 0x43, 0x6a, 0xaf,
9112*6236dae4SAndroid Build Coastguard Worker   0x8c, 0xde, 0x52, 0xcd, 0x96, 0xb5, 0xba, 0x3f, 0x66, 0xdc, 0x86, 0xac,
9113*6236dae4SAndroid Build Coastguard Worker   0x33, 0x8a, 0x5d, 0x1a, 0xf4, 0x93, 0x20, 0x5a, 0xf5, 0x68, 0x36, 0x1d,
9114*6236dae4SAndroid Build Coastguard Worker   0x33, 0xb4, 0x36, 0xe7, 0xe4, 0xda, 0x29, 0x86, 0x70, 0xfb, 0xb5, 0x2b,
9115*6236dae4SAndroid Build Coastguard Worker   0x3a, 0xf1, 0x11, 0x06, 0x4f, 0x30, 0x6b, 0x8f, 0xc2, 0x28, 0x64, 0x66,
9116*6236dae4SAndroid Build Coastguard Worker   0xad, 0xd0, 0xc5, 0x3e, 0xc1, 0xef, 0x0d, 0xd2, 0x9a, 0x8a, 0x7b, 0xc1,
9117*6236dae4SAndroid Build Coastguard Worker   0xea, 0x46, 0xf7, 0xa6, 0x1f, 0xd6, 0x1b, 0xab, 0x41, 0x85, 0x31, 0xd0,
9118*6236dae4SAndroid Build Coastguard Worker   0x0c, 0x26, 0x8b, 0xc7, 0x6c, 0x30, 0x46, 0xa0, 0x38, 0x04, 0x75, 0xc1,
9119*6236dae4SAndroid Build Coastguard Worker   0xd2, 0x3b, 0xe9, 0x39, 0xdc, 0x8b, 0xce, 0xc6, 0x29, 0xf6, 0xd8, 0x35,
9120*6236dae4SAndroid Build Coastguard Worker   0x1d, 0x6d, 0x7c, 0x71, 0xc1, 0xd6, 0x13, 0x95, 0x33, 0xce, 0x0f, 0x97,
9121*6236dae4SAndroid Build Coastguard Worker   0xbe, 0xa6, 0xb6, 0xed, 0x12, 0xdb, 0x9c, 0x4c, 0x41, 0x99, 0x91, 0xec,
9122*6236dae4SAndroid Build Coastguard Worker   0x41, 0xaf, 0x00, 0x9e, 0xb6, 0x2c, 0xa2, 0x4a, 0x50, 0x3f, 0x30, 0x3b,
9123*6236dae4SAndroid Build Coastguard Worker   0x4e, 0xae, 0xef, 0x9d, 0xde, 0xe9, 0x94, 0xd7, 0x3c, 0x1c, 0xa3, 0x0b,
9124*6236dae4SAndroid Build Coastguard Worker   0x1f, 0xbd, 0x74, 0x1c, 0xe5, 0xa4, 0x98, 0xc4, 0x15, 0x3b, 0xc3, 0xee,
9125*6236dae4SAndroid Build Coastguard Worker   0x39, 0x7a, 0x47, 0xa9, 0x63, 0xe9, 0x28, 0xe4, 0xbb, 0xa8, 0x1d, 0x4c,
9126*6236dae4SAndroid Build Coastguard Worker   0x1f, 0x33, 0x40, 0x98, 0xe0, 0x94, 0xc3, 0xab, 0x24, 0xc7, 0x15, 0xf9,
9127*6236dae4SAndroid Build Coastguard Worker   0xb5, 0xd0, 0x48, 0x8a, 0xae, 0xc1, 0x28, 0x37, 0xec, 0x47, 0xba, 0x9d,
9128*6236dae4SAndroid Build Coastguard Worker   0x66, 0xbf, 0x4b, 0xec, 0x8b, 0xdc, 0x78, 0x8a, 0x1a, 0x17, 0x5a, 0xac,
9129*6236dae4SAndroid Build Coastguard Worker   0xa6, 0x1e, 0xdb, 0xaa, 0x6e, 0x4a, 0xd4, 0x43, 0x89, 0x22, 0xb1, 0x7c,
9130*6236dae4SAndroid Build Coastguard Worker   0x6a, 0x06, 0x94, 0x9b, 0x68, 0x9a, 0x14, 0x6d, 0x45, 0x6f, 0x8a, 0x5b,
9131*6236dae4SAndroid Build Coastguard Worker   0x54, 0xb4, 0x42, 0x91, 0x1d, 0x05, 0x2f, 0x2a, 0x67, 0xa9, 0xd4, 0x8b,
9132*6236dae4SAndroid Build Coastguard Worker   0x24, 0xee, 0x3a, 0x29, 0x1e, 0xf7, 0xdf, 0x70, 0x01, 0x4c, 0xa9, 0xfc,
9133*6236dae4SAndroid Build Coastguard Worker   0xe1, 0x73, 0x71, 0x1f, 0x87, 0xd0, 0xf7, 0xd1, 0x55, 0xc2, 0x40, 0x01,
9134*6236dae4SAndroid Build Coastguard Worker   0x70, 0xe1, 0x83, 0x9e, 0x43, 0x75, 0x27, 0x70, 0x1f, 0x52, 0xf2, 0xde,
9135*6236dae4SAndroid Build Coastguard Worker   0x25, 0x75, 0x74, 0x73, 0x3c, 0x35, 0xb8, 0x18, 0x34, 0x9a, 0x91, 0x82,
9136*6236dae4SAndroid Build Coastguard Worker   0x88, 0x0c, 0x56, 0x8e, 0xc2, 0xc8, 0x15, 0x04, 0x53, 0x66, 0x66, 0x44,
9137*6236dae4SAndroid Build Coastguard Worker   0x07, 0xb0, 0x98, 0x0c, 0xb4, 0x80, 0xa2, 0x8d, 0x7c, 0xd8, 0x15, 0x60,
9138*6236dae4SAndroid Build Coastguard Worker   0x30, 0x5f, 0xdd, 0xc4, 0x73, 0xca, 0x07, 0x2d, 0x6d, 0x1f, 0xb3, 0x47,
9139*6236dae4SAndroid Build Coastguard Worker   0x55, 0x4f, 0x13, 0x8a, 0x21, 0xa5, 0x48, 0x90, 0xc0, 0x52, 0xdf, 0x98,
9140*6236dae4SAndroid Build Coastguard Worker   0x63, 0x88, 0x8b, 0x33, 0xdd, 0x3f, 0x5c, 0xf4, 0xa9, 0xca, 0xbc, 0x44,
9141*6236dae4SAndroid Build Coastguard Worker   0xa3, 0x98, 0x72, 0x67, 0xb3, 0x97, 0xb8, 0x8d, 0xb6, 0x1e, 0xbe, 0x67,
9142*6236dae4SAndroid Build Coastguard Worker   0x5a, 0xa8, 0x7b, 0x77, 0xf1, 0x98, 0x6b, 0xa5, 0x13, 0x5b, 0x29, 0x0d,
9143*6236dae4SAndroid Build Coastguard Worker   0xab, 0x81, 0xf1, 0x77, 0x36, 0x76, 0x50, 0x75, 0x81, 0x17, 0x67, 0x94,
9144*6236dae4SAndroid Build Coastguard Worker   0xd1, 0xa1, 0x59, 0xfb, 0x94, 0x39, 0x4c, 0x21, 0x38, 0x18, 0x77, 0x7c,
9145*6236dae4SAndroid Build Coastguard Worker   0xef, 0x69, 0x0a, 0x44, 0x13, 0x76, 0x24, 0xe6, 0xaa, 0xf6, 0x08, 0x57,
9146*6236dae4SAndroid Build Coastguard Worker   0x98, 0xb6, 0xdc, 0x1c, 0x99, 0x10, 0xd1, 0x6b, 0x05, 0x73, 0xa0, 0xd9,
9147*6236dae4SAndroid Build Coastguard Worker   0x8b, 0x21, 0x58, 0xa9, 0xd2, 0x9d, 0x72, 0x05, 0x7c, 0x72, 0x55, 0x4a,
9148*6236dae4SAndroid Build Coastguard Worker   0x2f, 0xa6, 0x0f, 0x9f, 0x61, 0xef, 0xda, 0xca, 0x28, 0xf8, 0xc9, 0x3e,
9149*6236dae4SAndroid Build Coastguard Worker   0x2f, 0xbe, 0x44, 0xba, 0x72, 0x48, 0x13, 0xc7, 0xd1, 0xa5, 0xae, 0xc9,
9150*6236dae4SAndroid Build Coastguard Worker   0x09, 0xde, 0x82, 0x3b, 0x77, 0xd6, 0x43, 0xe2, 0x95, 0xeb, 0xe3, 0x77,
9151*6236dae4SAndroid Build Coastguard Worker   0x55, 0x04, 0x03, 0xc1, 0x5a, 0x71, 0xc1, 0xc2, 0xce, 0x9a, 0x8b, 0x61,
9152*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x8c, 0xf9, 0xd5, 0x50, 0xcc, 0xcd, 0x59, 0x81, 0x3b, 0xcd, 0x68,
9153*6236dae4SAndroid Build Coastguard Worker   0x15, 0xe7, 0x81, 0xbb, 0xb0, 0x7b, 0x77, 0xb7, 0xc6, 0xc4, 0x65, 0xce,
9154*6236dae4SAndroid Build Coastguard Worker   0x15, 0x61, 0x12, 0x5f, 0xf8, 0xfa, 0x33, 0x9e, 0xfa, 0xe5, 0x2f, 0xe9,
9155*6236dae4SAndroid Build Coastguard Worker   0xe6, 0x25, 0xbb, 0x2c, 0xd6, 0x79, 0x0b, 0x7c, 0x99, 0x87, 0xc3, 0x2a,
9156*6236dae4SAndroid Build Coastguard Worker   0x0e, 0xd0, 0x57, 0x70, 0x97, 0xdb, 0xbe, 0x88, 0xbc, 0x15, 0xb9, 0x14,
9157*6236dae4SAndroid Build Coastguard Worker   0x7b, 0x17, 0xaf, 0x3d, 0xfe, 0x31, 0x82, 0x89, 0xaa, 0x05, 0x7b, 0x84,
9158*6236dae4SAndroid Build Coastguard Worker   0xd0, 0x35, 0xef, 0x8f, 0x5e, 0x7f, 0xe8, 0x1f, 0xbd, 0x22, 0x20, 0xce,
9159*6236dae4SAndroid Build Coastguard Worker   0xc4, 0xcf, 0xab, 0xca, 0x65, 0x93, 0xf9, 0x74, 0xc1, 0xa0, 0x05, 0x2b,
9160*6236dae4SAndroid Build Coastguard Worker   0x7a, 0x7a, 0xd1, 0x2f, 0xd4, 0x09, 0x42, 0xf7, 0xe2, 0x3c, 0x0d, 0xe1,
9161*6236dae4SAndroid Build Coastguard Worker   0x51, 0x84, 0x74, 0x56, 0x6e, 0xf8, 0xfd, 0x97, 0x01, 0x00, 0xf3, 0xb8,
9162*6236dae4SAndroid Build Coastguard Worker   0xa3, 0x74, 0x0c, 0x12, 0x68, 0x9f, 0xeb, 0x28, 0xbc, 0xbe, 0x2a, 0x6f,
9163*6236dae4SAndroid Build Coastguard Worker   0x8d, 0x6d, 0x04, 0x0a, 0x4b, 0x3a, 0x15, 0x84, 0xaa, 0x09, 0x9c, 0x64,
9164*6236dae4SAndroid Build Coastguard Worker   0xce, 0x5e, 0x40, 0x93, 0x46, 0xaf, 0x10, 0xca, 0x37, 0xd1, 0x4b, 0x91,
9165*6236dae4SAndroid Build Coastguard Worker   0x73, 0x2d, 0x83, 0x54, 0x45, 0xa1, 0x42, 0xfa, 0xbc, 0x5c, 0x26, 0x6a,
9166*6236dae4SAndroid Build Coastguard Worker   0x7c, 0x58, 0x92, 0x33, 0xc5, 0x57, 0xb3, 0xba, 0x95, 0x37, 0xe3, 0xe1,
9167*6236dae4SAndroid Build Coastguard Worker   0x19, 0x90, 0x2c, 0x44, 0xec, 0x73, 0x54, 0x20, 0x68, 0x32, 0xc9, 0xf8,
9168*6236dae4SAndroid Build Coastguard Worker   0xb2, 0x80, 0x3b, 0xe7, 0x6a, 0x62, 0x40, 0xb5, 0x18, 0xf8, 0xb4, 0x5a,
9169*6236dae4SAndroid Build Coastguard Worker   0xeb, 0xf9, 0xaa, 0x58, 0xd0, 0x74, 0xa2, 0xdc, 0xe2, 0x94, 0xd1, 0x0c,
9170*6236dae4SAndroid Build Coastguard Worker   0xd1, 0x9c, 0xb4, 0xb2, 0x85, 0x12, 0x0c, 0xd9, 0x17, 0xd2, 0x17, 0xfc,
9171*6236dae4SAndroid Build Coastguard Worker   0x41, 0xa2, 0x07, 0x93, 0xd0, 0xb3, 0x75, 0x7e, 0x4e, 0xcb, 0xa2, 0x1d,
9172*6236dae4SAndroid Build Coastguard Worker   0x29, 0x55, 0xcf, 0xb2, 0xca, 0x71, 0x77, 0xee, 0x7f, 0x78, 0x96, 0xb6,
9173*6236dae4SAndroid Build Coastguard Worker   0xc3, 0x0f, 0xbb, 0x8f, 0xe2, 0x31, 0x7d, 0x67, 0x92, 0xdc, 0x71, 0xb4,
9174*6236dae4SAndroid Build Coastguard Worker   0x74, 0x1e, 0x1b, 0x71, 0x3e, 0x86, 0x1a, 0xc1, 0x25, 0xbb, 0x18, 0xc8,
9175*6236dae4SAndroid Build Coastguard Worker   0xa0, 0xb7, 0x48, 0x26, 0x5c, 0x11, 0x63, 0x38, 0x44, 0x14, 0x2d, 0x0a,
9176*6236dae4SAndroid Build Coastguard Worker   0x27, 0xf9, 0x49, 0x8f, 0x78, 0xaf, 0x88, 0x4f, 0x7f, 0x90, 0x72, 0x1a,
9177*6236dae4SAndroid Build Coastguard Worker   0x40, 0x82, 0xe4, 0xc1, 0xd8, 0xc4, 0x2a, 0x56, 0x93, 0xca, 0xd4, 0xd6,
9178*6236dae4SAndroid Build Coastguard Worker   0xf0, 0xc7, 0x64, 0xfc, 0x4a, 0x90, 0x9d, 0xbe, 0xef, 0x77, 0xfb, 0x11,
9179*6236dae4SAndroid Build Coastguard Worker   0x05, 0x01, 0x38, 0x58, 0xe3, 0x34, 0x9c, 0xf3, 0x31, 0xce, 0x26, 0x59,
9180*6236dae4SAndroid Build Coastguard Worker   0x4d, 0xc8, 0x42, 0xd9, 0x50, 0x2f, 0xd2, 0x0b, 0x1b, 0xd8, 0x66, 0x46,
9181*6236dae4SAndroid Build Coastguard Worker   0x6e, 0x3b, 0x90, 0x50, 0x8b, 0xd0, 0xb1, 0x04, 0xcd, 0x01, 0x46, 0xe9,
9182*6236dae4SAndroid Build Coastguard Worker   0x36, 0x5b, 0xac, 0xca, 0x46, 0x11, 0x58, 0x18, 0xc1, 0x92, 0x5c, 0x51,
9183*6236dae4SAndroid Build Coastguard Worker   0x5a, 0x90, 0x5f, 0xc7, 0x2d, 0x05, 0x2e, 0x14, 0x41, 0x41, 0x65, 0x81,
9184*6236dae4SAndroid Build Coastguard Worker   0xe0, 0x6a, 0x70, 0x49, 0xac, 0x67, 0xe5, 0xea, 0x0b, 0x90, 0x24, 0x15,
9185*6236dae4SAndroid Build Coastguard Worker   0xc6, 0x70, 0x80, 0x71, 0xb2, 0x62, 0x44, 0x20, 0x34, 0x1e, 0xd0, 0xd1,
9186*6236dae4SAndroid Build Coastguard Worker   0x24, 0xa3, 0x62, 0x09, 0x41, 0x6a, 0x96, 0x09, 0xad, 0x60, 0x46, 0xc2,
9187*6236dae4SAndroid Build Coastguard Worker   0x5d, 0x36, 0x99, 0x4d, 0x68, 0x84, 0x2e, 0x23, 0x72, 0x4d, 0xd0, 0x5d,
9188*6236dae4SAndroid Build Coastguard Worker   0xa2, 0xbb, 0x4b, 0x65, 0x73, 0xf5, 0xfc, 0x2c, 0x1c, 0x14, 0xbb, 0xc4,
9189*6236dae4SAndroid Build Coastguard Worker   0xf3, 0x35, 0x6b, 0x52, 0x6a, 0xba, 0xcb, 0x01, 0xfc, 0xd7, 0x60, 0x6f,
9190*6236dae4SAndroid Build Coastguard Worker   0xc3, 0xaa, 0xdb, 0x1b, 0x86, 0xc5, 0x37, 0x37, 0x1e, 0xc3, 0xe5, 0xd1,
9191*6236dae4SAndroid Build Coastguard Worker   0x7e, 0x3e, 0x9b, 0x7c, 0xee, 0xaf, 0xc1, 0x17, 0x5c, 0xc4, 0xdd, 0x52,
9192*6236dae4SAndroid Build Coastguard Worker   0xd7, 0x64, 0x63, 0x2c, 0xc2, 0xb4, 0xa8, 0x09, 0x0b, 0x9e, 0xe8, 0x7c,
9193*6236dae4SAndroid Build Coastguard Worker   0xf9, 0xd8, 0xe5, 0x34, 0x75, 0x47, 0x5f, 0x21, 0x4a, 0xd9, 0x0c, 0x11,
9194*6236dae4SAndroid Build Coastguard Worker   0x36, 0xb4, 0xe5, 0xf4, 0x5c, 0xb2, 0x91, 0x36, 0x9b, 0xf6, 0xbc, 0xac,
9195*6236dae4SAndroid Build Coastguard Worker   0x68, 0x95, 0x52, 0xc6, 0x89, 0x0a, 0x9f, 0xdf, 0x90, 0x52, 0x07, 0x89,
9196*6236dae4SAndroid Build Coastguard Worker   0xfc, 0x60, 0x52, 0x8d, 0x6c, 0x91, 0x89, 0xf1, 0x66, 0x55, 0x28, 0xd1,
9197*6236dae4SAndroid Build Coastguard Worker   0x48, 0x84, 0x16, 0x49, 0x52, 0xef, 0x7a, 0x64, 0x77, 0x2a, 0xa3, 0x96,
9198*6236dae4SAndroid Build Coastguard Worker   0xef, 0x21, 0x51, 0x78, 0xf7, 0xbb, 0x0a, 0xce, 0x04, 0x5a, 0x87, 0xef,
9199*6236dae4SAndroid Build Coastguard Worker   0x0b, 0x72, 0x94, 0xd4, 0xc2, 0xe2, 0xaa, 0xee, 0x6c, 0xbc, 0xe8, 0x46,
9200*6236dae4SAndroid Build Coastguard Worker   0x3b, 0x5b, 0x2f, 0xbb, 0x58, 0xa0, 0x87, 0x7f, 0x6c, 0xe1, 0x1f, 0xdb,
9201*6236dae4SAndroid Build Coastguard Worker   0xf8, 0xc8, 0x2e, 0xe8, 0x92, 0x0b, 0x74, 0xa8, 0x39, 0xed, 0xab, 0x18,
9202*6236dae4SAndroid Build Coastguard Worker   0x40, 0x08, 0x25, 0xf8, 0xa0, 0x98, 0x39, 0xea, 0x54, 0xe2, 0x10, 0x5c,
9203*6236dae4SAndroid Build Coastguard Worker   0xd3, 0x91, 0x58, 0x0c, 0xdd, 0x26, 0x19, 0x71, 0x9c, 0x97, 0xbc, 0x4d,
9204*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x86, 0xa2, 0xc3, 0xda, 0xdc, 0x4d, 0xf8, 0x6f, 0x7d, 0x05, 0x3c,
9205*6236dae4SAndroid Build Coastguard Worker   0x83, 0xc4, 0x56, 0x5a, 0xea, 0x80, 0x40, 0xe2, 0x19, 0x67, 0x71, 0x79,
9206*6236dae4SAndroid Build Coastguard Worker   0x04, 0xc5, 0xaf, 0xb0, 0xe7, 0x1f, 0x39, 0x12, 0xee, 0xd4, 0x6c, 0xcc,
9207*6236dae4SAndroid Build Coastguard Worker   0xe6, 0x17, 0xca, 0x8e, 0x0a, 0xf9, 0x92, 0x9d, 0x7f, 0x95, 0xdb, 0x06,
9208*6236dae4SAndroid Build Coastguard Worker   0xd6, 0x20, 0x3c, 0x07, 0xf6, 0x67, 0x4c, 0x46, 0xbf, 0x82, 0x49, 0x52,
9209*6236dae4SAndroid Build Coastguard Worker   0xfd, 0x9b, 0x93, 0x65, 0xc8, 0xc7, 0x90, 0x3d, 0xcd, 0x92, 0x3b, 0xd2,
9210*6236dae4SAndroid Build Coastguard Worker   0x90, 0xfa, 0xa1, 0xee, 0x21, 0x26, 0x37, 0x54, 0xa4, 0x4c, 0x7a, 0x07,
9211*6236dae4SAndroid Build Coastguard Worker   0xb4, 0x67, 0x3c, 0xf4, 0xc8, 0xdc, 0x5e, 0xf6, 0xd6, 0x95, 0xd2, 0x5a,
9212*6236dae4SAndroid Build Coastguard Worker   0xba, 0x2a, 0x03, 0xc5, 0x1c, 0x8d, 0x13, 0x08, 0xdb, 0xc0, 0xc2, 0x88,
9213*6236dae4SAndroid Build Coastguard Worker   0xe4, 0x72, 0x51, 0xcb, 0x99, 0x67, 0x00, 0x57, 0xc9, 0x61, 0x9d, 0x27,
9214*6236dae4SAndroid Build Coastguard Worker   0x3b, 0xfa, 0x64, 0x4d, 0xd1, 0xbe, 0x3e, 0xef, 0x3d, 0x7b, 0x66, 0xf0,
9215*6236dae4SAndroid Build Coastguard Worker   0xe9, 0xb8, 0x4e, 0x11, 0xcc, 0x76, 0xad, 0xab, 0x62, 0x59, 0x4d, 0x1e,
9216*6236dae4SAndroid Build Coastguard Worker   0x9d, 0xf8, 0x00, 0x3d, 0xad, 0x7b, 0xa1, 0x18, 0xb5, 0x2a, 0xd3, 0x52,
9217*6236dae4SAndroid Build Coastguard Worker   0xea, 0x02, 0x22, 0x9e, 0xa4, 0x0d, 0xe5, 0xd3, 0xa4, 0xda, 0xfe, 0x17,
9218*6236dae4SAndroid Build Coastguard Worker   0x1b, 0x03, 0xf3, 0x79, 0x36, 0x09, 0x32, 0x74, 0xb0, 0xd2, 0xbb, 0xda,
9219*6236dae4SAndroid Build Coastguard Worker   0xef, 0x70, 0x1c, 0x50, 0xf3, 0xfe, 0x08, 0x79, 0x17, 0x3d, 0x7f, 0x40,
9220*6236dae4SAndroid Build Coastguard Worker   0xb4, 0x55, 0x09, 0xf7, 0x29, 0xba, 0xfa, 0x39, 0x1b, 0x45, 0xfb, 0xda,
9221*6236dae4SAndroid Build Coastguard Worker   0x83, 0x2d, 0x8c, 0x9d, 0x8a, 0x07, 0x08, 0x9e, 0x84, 0x9d, 0xae, 0xd8,
9222*6236dae4SAndroid Build Coastguard Worker   0xca, 0xd5, 0xc7, 0xa3, 0x55, 0x19, 0x61, 0xad, 0x0b, 0x36, 0x2c, 0x05,
9223*6236dae4SAndroid Build Coastguard Worker   0xc1, 0xfb, 0x07, 0xfd, 0x93, 0xe8, 0xec, 0xe4, 0xe0, 0xf8, 0x1d, 0xbc,
9224*6236dae4SAndroid Build Coastguard Worker   0x13, 0xfb, 0x11, 0x1b, 0xd3, 0xb0, 0x80, 0xd0, 0x6c, 0x3d, 0xd5, 0xbd,
9225*6236dae4SAndroid Build Coastguard Worker   0xd5, 0xd4, 0xa0, 0xf9, 0x21, 0x1f, 0x73, 0x7c, 0x44, 0xf7, 0x7c, 0x03,
9226*6236dae4SAndroid Build Coastguard Worker   0x30, 0x20, 0x9e, 0x69, 0x21, 0xc8, 0xbc, 0x12, 0x08, 0xbb, 0x0f, 0x0d,
9227*6236dae4SAndroid Build Coastguard Worker   0xb4, 0xec, 0x46, 0x17, 0x3b, 0xda, 0x00, 0x60, 0x89, 0xcc, 0xf8, 0xac,
9228*6236dae4SAndroid Build Coastguard Worker   0x43, 0xab, 0x41, 0xda, 0xd9, 0xe4, 0x51, 0x9a, 0x3c, 0xcc, 0x89, 0x0d,
9229*6236dae4SAndroid Build Coastguard Worker   0x42, 0xe0, 0x25, 0x67, 0x68, 0x6a, 0xee, 0xd0, 0xaa, 0xb2, 0x0c, 0x16,
9230*6236dae4SAndroid Build Coastguard Worker   0x88, 0x44, 0x54, 0x4a, 0x88, 0x75, 0x89, 0x42, 0x25, 0xb9, 0xfd, 0x9d,
9231*6236dae4SAndroid Build Coastguard Worker   0x02, 0x78, 0x41, 0x64, 0x32, 0x11, 0x0b, 0xc2, 0x6f, 0x59, 0xa9, 0x3c,
9232*6236dae4SAndroid Build Coastguard Worker   0xa7, 0xf2, 0xa0, 0xb8, 0xeb, 0xda, 0xb0, 0x01, 0xe7, 0xf3, 0x88, 0x06,
9233*6236dae4SAndroid Build Coastguard Worker   0x4e, 0xd9, 0xda, 0x97, 0x20, 0x03, 0x09, 0x2a, 0x5e, 0x10, 0x9e, 0x0a,
9234*6236dae4SAndroid Build Coastguard Worker   0xee, 0x3e, 0x88, 0x4d, 0x05, 0xfd, 0xea, 0xfc, 0x09, 0xa8, 0xec, 0x30,
9235*6236dae4SAndroid Build Coastguard Worker   0xa0, 0x9b, 0x8e, 0xb0, 0x2c, 0x63, 0x36, 0x58, 0x0e, 0xff, 0x97, 0x4d,
9236*6236dae4SAndroid Build Coastguard Worker   0x92, 0xb9, 0xd1, 0x59, 0xdf, 0x8c, 0xc1, 0xd3, 0xde, 0x6b, 0x73, 0x70,
9237*6236dae4SAndroid Build Coastguard Worker   0xd6, 0xd6, 0xe9, 0x8e, 0xa8, 0x6c, 0xd4, 0x54, 0x5f, 0xd9, 0xc2, 0xe0,
9238*6236dae4SAndroid Build Coastguard Worker   0x9c, 0x59, 0xb3, 0xc9, 0x60, 0x4f, 0x5a, 0x42, 0x56, 0x2e, 0x39, 0xf3,
9239*6236dae4SAndroid Build Coastguard Worker   0xed, 0x96, 0x49, 0xfb, 0xc8, 0x0e, 0x76, 0x4b, 0x37, 0xb0, 0xe3, 0xce,
9240*6236dae4SAndroid Build Coastguard Worker   0xb3, 0xf3, 0xa3, 0xeb, 0xf4, 0x71, 0xdb, 0x76, 0xd4, 0x9b, 0x0a, 0x37,
9241*6236dae4SAndroid Build Coastguard Worker   0x05, 0x20, 0x74, 0x14, 0x8e, 0xc6, 0x44, 0x21, 0x68, 0x7a, 0x7a, 0x66,
9242*6236dae4SAndroid Build Coastguard Worker   0x5d, 0xca, 0x99, 0x9e, 0x92, 0xc8, 0xdf, 0xf8, 0xa6, 0x3b, 0xda, 0x93,
9243*6236dae4SAndroid Build Coastguard Worker   0x1a, 0xe1, 0x29, 0x55, 0xfb, 0x78, 0xec, 0xab, 0xab, 0xe2, 0x36, 0x0e,
9244*6236dae4SAndroid Build Coastguard Worker   0xc1, 0xf3, 0x9b, 0x44, 0x56, 0xb1, 0xc8, 0x2b, 0x7a, 0x1a, 0xd3, 0x61,
9245*6236dae4SAndroid Build Coastguard Worker   0x6b, 0x39, 0x62, 0x46, 0x33, 0xc2, 0x31, 0x6c, 0xfd, 0x11, 0x36, 0xa7,
9246*6236dae4SAndroid Build Coastguard Worker   0xf7, 0x5b, 0xd9, 0x73, 0xde, 0x37, 0x61, 0x0d, 0x2e, 0x0c, 0x94, 0xa0,
9247*6236dae4SAndroid Build Coastguard Worker   0x3d, 0x31, 0x2e, 0x06, 0xc0, 0x88, 0xdc, 0xdd, 0x45, 0xdc, 0x43, 0x9a,
9248*6236dae4SAndroid Build Coastguard Worker   0x6f, 0xd4, 0x00, 0x51, 0xd0, 0xd2, 0x8d, 0x40, 0xbd, 0x2f, 0xdc, 0xe4,
9249*6236dae4SAndroid Build Coastguard Worker   0xf1, 0x5e, 0x97, 0x36, 0x6f, 0xf9, 0x96, 0x3b, 0x96, 0x26, 0x66, 0xc9,
9250*6236dae4SAndroid Build Coastguard Worker   0x4b, 0xf6, 0xab, 0xcd, 0x0b, 0xc4, 0xc2, 0xbd, 0x24, 0x84, 0xde, 0x49,
9251*6236dae4SAndroid Build Coastguard Worker   0x5a, 0x37, 0x6a, 0xe9, 0x1c, 0x42, 0x7a, 0x57, 0x35, 0x7d, 0x8a, 0x1c,
9252*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x7f, 0x9f, 0x65, 0x29, 0x01, 0x11, 0xa5, 0x26, 0x86, 0x40, 0x64,
9253*6236dae4SAndroid Build Coastguard Worker   0xd6, 0x61, 0x23, 0x1a, 0x16, 0x1f, 0x35, 0x54, 0xf7, 0xae, 0x6a, 0xd8,
9254*6236dae4SAndroid Build Coastguard Worker   0x05, 0x54, 0x62, 0xde, 0xd2, 0x4e, 0x1d, 0xe2, 0xda, 0x26, 0xa0, 0x22,
9255*6236dae4SAndroid Build Coastguard Worker   0x51, 0x48, 0xdf, 0x69, 0xa4, 0xa2, 0x65, 0x1b, 0x0a, 0x1e, 0xc2, 0xda,
9256*6236dae4SAndroid Build Coastguard Worker   0x4c, 0x52, 0x5d, 0xfb, 0xd6, 0x55, 0x37, 0x9a, 0x16, 0x35, 0xab, 0x34,
9257*6236dae4SAndroid Build Coastguard Worker   0x88, 0x63, 0x7b, 0x93, 0x9a, 0x5b, 0x08, 0xe6, 0x02, 0x0a, 0x58, 0x32,
9258*6236dae4SAndroid Build Coastguard Worker   0x5e, 0xaf, 0xea, 0x11, 0x2a, 0x8e, 0xb3, 0x7c, 0x8c, 0x93, 0xc4, 0xa1,
9259*6236dae4SAndroid Build Coastguard Worker   0xd4, 0xf1, 0xdb, 0x66, 0x88, 0x3a, 0x84, 0x7c, 0xef, 0x71, 0x25, 0x65,
9260*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x99, 0x3b, 0x8f, 0x6c, 0x82, 0xba, 0xe1, 0x9b, 0xc0, 0x9f, 0x88,
9261*6236dae4SAndroid Build Coastguard Worker   0xe6, 0xe5, 0x77, 0x38, 0x70, 0x49, 0x85, 0x57, 0x0c, 0xaf, 0x98, 0x08,
9262*6236dae4SAndroid Build Coastguard Worker   0xd9, 0x60, 0xd6, 0x65, 0x71, 0x93, 0xab, 0xe5, 0xf8, 0xe1, 0x06, 0xd7,
9263*6236dae4SAndroid Build Coastguard Worker   0x04, 0xc7, 0x75, 0x50, 0x54, 0x54, 0xdb, 0x0a, 0x44, 0x82, 0xcf, 0x4b,
9264*6236dae4SAndroid Build Coastguard Worker   0x17, 0xe3, 0x45, 0xbc, 0x12, 0x73, 0xa3, 0x91, 0x25, 0xd1, 0xda, 0xa9,
9265*6236dae4SAndroid Build Coastguard Worker   0xa7, 0xc8, 0x8e, 0x83, 0xd5, 0x5e, 0xb7, 0x92, 0x46, 0xdc, 0x8b, 0xdc,
9266*6236dae4SAndroid Build Coastguard Worker   0x47, 0xbe, 0x7c, 0x00, 0xa8, 0x1d, 0x3e, 0x68, 0xfc, 0x39, 0x24, 0x8c,
9267*6236dae4SAndroid Build Coastguard Worker   0xa8, 0xa2, 0x18, 0xfb, 0xaa, 0xcd, 0x05, 0x06, 0x0f, 0x05, 0xb3, 0x9b,
9268*6236dae4SAndroid Build Coastguard Worker   0x5d, 0x94, 0xd4, 0xf6, 0xd2, 0x98, 0xb3, 0xd1, 0x6f, 0x42, 0x5d, 0x2b,
9269*6236dae4SAndroid Build Coastguard Worker   0x1e, 0xd9, 0x69, 0x03, 0x63, 0x92, 0xa6, 0xc8, 0x59, 0x85, 0x82, 0x0b,
9270*6236dae4SAndroid Build Coastguard Worker   0x6c, 0x6e, 0xfa, 0x0a, 0x05, 0xc2, 0x20, 0x70, 0x52, 0x66, 0x82, 0xd6,
9271*6236dae4SAndroid Build Coastguard Worker   0x3c, 0x1c, 0x83, 0x09, 0x10, 0x08, 0xbd, 0x36, 0x7c, 0x64, 0x98, 0x24,
9272*6236dae4SAndroid Build Coastguard Worker   0x31, 0x43, 0x6b, 0x75, 0x3c, 0xc3, 0xcf, 0x99, 0x18, 0x06, 0x37, 0xd7,
9273*6236dae4SAndroid Build Coastguard Worker   0x30, 0xc5, 0x95, 0xb2, 0x9f, 0xa1, 0x16, 0x06, 0x2c, 0x66, 0x9d, 0xe6,
9274*6236dae4SAndroid Build Coastguard Worker   0x3a, 0xda, 0xbf, 0xd0, 0xf4, 0x9d, 0x69, 0xb7, 0x2f, 0x98, 0xa3, 0xeb,
9275*6236dae4SAndroid Build Coastguard Worker   0xb3, 0xff, 0x92, 0xc7, 0x49, 0xa5, 0xf7, 0x98, 0x13, 0x7e, 0x46, 0x40,
9276*6236dae4SAndroid Build Coastguard Worker   0x20, 0x33, 0x1f, 0x6e, 0x3f, 0x23, 0xb8, 0xe9, 0xc1, 0x8e, 0x23, 0x54,
9277*6236dae4SAndroid Build Coastguard Worker   0x20, 0xc0, 0xe6, 0x86, 0x3b, 0x39, 0xd5, 0xc9, 0x15, 0x23, 0x96, 0x40,
9278*6236dae4SAndroid Build Coastguard Worker   0x2b, 0x9c, 0x1e, 0x35, 0x98, 0x05, 0xe1, 0x25, 0x90, 0xa2, 0xd3, 0x9e,
9279*6236dae4SAndroid Build Coastguard Worker   0xb2, 0x22, 0x98, 0x2d, 0xd8, 0x80, 0x14, 0xb8, 0xa1, 0x4a, 0x45, 0x49,
9280*6236dae4SAndroid Build Coastguard Worker   0x63, 0x4a, 0x6a, 0x3e, 0x06, 0xc0, 0x0a, 0xf8, 0xa5, 0x55, 0x05, 0x62,
9281*6236dae4SAndroid Build Coastguard Worker   0xa7, 0xd7, 0xd6, 0x1a, 0x89, 0x96, 0x45, 0xa3, 0xdd, 0xe6, 0x1f, 0x6d,
9282*6236dae4SAndroid Build Coastguard Worker   0x65, 0xc8, 0xd6, 0x23, 0xf3, 0x53, 0xc3, 0xa5, 0x9d, 0x8d, 0x97, 0xcf,
9283*6236dae4SAndroid Build Coastguard Worker   0x1e, 0x32, 0x39, 0xb8, 0xcd, 0xd0, 0x93, 0x8e, 0x7f, 0xf2, 0xb8, 0xf3,
9284*6236dae4SAndroid Build Coastguard Worker   0x3f, 0x07, 0xdf, 0x64, 0xd1, 0xf9, 0xe7, 0xde, 0x21, 0xd5, 0x75, 0xd5,
9285*6236dae4SAndroid Build Coastguard Worker   0x6e, 0x49, 0x33, 0x2f, 0x69, 0xc1, 0xa6, 0xfe, 0x04, 0x95, 0x9f, 0xa6,
9286*6236dae4SAndroid Build Coastguard Worker   0xaf, 0x79, 0x89, 0xf3, 0xcb, 0x8e, 0xca, 0x5f, 0x72, 0x7a, 0x9f, 0x72,
9287*6236dae4SAndroid Build Coastguard Worker   0x78, 0x93, 0xa7, 0x9c, 0xde, 0xe4, 0x0f, 0x3a, 0xbe, 0xa6, 0xbc, 0xe7,
9288*6236dae4SAndroid Build Coastguard Worker   0xb1, 0x87, 0x57, 0xb9, 0xe6, 0x7f, 0x8f, 0x6f, 0xf0, 0xf8, 0x26, 0xcb,
9289*6236dae4SAndroid Build Coastguard Worker   0x9f, 0xdf, 0xdd, 0x78, 0x90, 0x54, 0x1e, 0xc6, 0xbf, 0x5f, 0xdd, 0x84,
9290*6236dae4SAndroid Build Coastguard Worker   0xb6, 0x26, 0x0e, 0xbc, 0x6e, 0xfa, 0xfe, 0xb4, 0x4c, 0x7b, 0x29, 0x78,
9291*6236dae4SAndroid Build Coastguard Worker   0xe1, 0x7e, 0x0f, 0xc1, 0xac, 0xd8, 0x42, 0x59, 0x62, 0xd7, 0x6c, 0xa3,
9292*6236dae4SAndroid Build Coastguard Worker   0xe2, 0x99, 0x2e, 0x1c, 0xd9, 0x8b, 0xef, 0x68, 0xb7, 0x45, 0x9b, 0x3b,
9293*6236dae4SAndroid Build Coastguard Worker   0xd3, 0x13, 0xf5, 0x4c, 0xd7, 0x74, 0x09, 0x7a, 0xd3, 0x34, 0xa3, 0x53,
9294*6236dae4SAndroid Build Coastguard Worker   0x0f, 0x8a, 0x21, 0xb0, 0x6d, 0xf4, 0x55, 0xbf, 0x1f, 0x1f, 0x9c, 0x1d,
9295*6236dae4SAndroid Build Coastguard Worker   0x47, 0x0f, 0x78, 0x31, 0xf0, 0x15, 0x67, 0x8e, 0xd9, 0xd2, 0xba, 0x57,
9296*6236dae4SAndroid Build Coastguard Worker   0x83, 0xaa, 0xe6, 0x9f, 0x4b, 0xec, 0xcb, 0x83, 0xe5, 0x4a, 0xcd, 0x35,
9297*6236dae4SAndroid Build Coastguard Worker   0x82, 0x09, 0xd1, 0xde, 0xbc, 0x83, 0x2a, 0x6a, 0x94, 0x25, 0xeb, 0xd2,
9298*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x52, 0x24, 0x23, 0x54, 0xfb, 0x24, 0x12, 0x62, 0x01, 0xfa, 0x6d,
9299*6236dae4SAndroid Build Coastguard Worker   0x51, 0xea, 0xd2, 0x03, 0x5e, 0xb2, 0x0d, 0x02, 0x9a, 0x13, 0x18, 0xf9,
9300*6236dae4SAndroid Build Coastguard Worker   0xe6, 0xcb, 0x67, 0x9b, 0x70, 0x66, 0xef, 0x39, 0x67, 0x47, 0x5e, 0xde,
9301*6236dae4SAndroid Build Coastguard Worker   0xe9, 0x6d, 0xaf, 0xef, 0xf4, 0x76, 0x50, 0x26, 0x4b, 0xb6, 0x2f, 0x15,
9302*6236dae4SAndroid Build Coastguard Worker   0xbc, 0xca, 0xf0, 0xe1, 0x0c, 0x18, 0x16, 0xcd, 0xef, 0x8e, 0x0e, 0x23,
9303*6236dae4SAndroid Build Coastguard Worker   0x2e, 0x75, 0xa5, 0xe6, 0x39, 0x2d, 0x4f, 0x89, 0x03, 0x06, 0x21, 0x8c,
9304*6236dae4SAndroid Build Coastguard Worker   0xc2, 0x47, 0xc9, 0xf3, 0x46, 0x7a, 0xe4, 0x50, 0x0b, 0x9b, 0x50, 0x75,
9305*6236dae4SAndroid Build Coastguard Worker   0x73, 0x33, 0x11, 0x94, 0xb6, 0x6c, 0x6c, 0x2b, 0x42, 0x3a, 0xfc, 0xca,
9306*6236dae4SAndroid Build Coastguard Worker   0xc7, 0x18, 0x72, 0x48, 0xe2, 0x10, 0xec, 0x89, 0x5c, 0xe0, 0x4c, 0xea,
9307*6236dae4SAndroid Build Coastguard Worker   0x09, 0xac, 0xd0, 0x1e, 0x46, 0x1d, 0x04, 0x73, 0x5c, 0x0c, 0x36, 0x1a,
9308*6236dae4SAndroid Build Coastguard Worker   0xe9, 0x79, 0x12, 0x44, 0xd0, 0x1b, 0x9f, 0x54, 0x15, 0x95, 0xc3, 0x89,
9309*6236dae4SAndroid Build Coastguard Worker   0x31, 0xfa, 0x2f, 0xfe, 0x3e, 0xca, 0x7b, 0xcb, 0x7a, 0x2c, 0xb2, 0x7a,
9310*6236dae4SAndroid Build Coastguard Worker   0x91, 0x63, 0xc2, 0xac, 0x96, 0x8f, 0xba, 0xf8, 0x23, 0xe6, 0x2d, 0x48,
9311*6236dae4SAndroid Build Coastguard Worker   0x9c, 0x10, 0xed, 0x4b, 0x8b, 0xb9, 0x09, 0xa5, 0x0f, 0x7b, 0x15, 0x9c,
9312*6236dae4SAndroid Build Coastguard Worker   0xa1, 0xcc, 0xf8, 0x81, 0x9f, 0xe9, 0xe8, 0x01, 0x7f, 0x1c, 0x7e, 0x8c,
9313*6236dae4SAndroid Build Coastguard Worker   0xc7, 0x2a, 0xd3, 0x64, 0x2c, 0xb3, 0x72, 0xbe, 0xe3, 0xff, 0x12, 0xa9,
9314*6236dae4SAndroid Build Coastguard Worker   0xc7, 0xa9, 0xb2, 0x7e, 0xa5, 0xa5, 0x04, 0x3c, 0x9d, 0x29, 0x18, 0x8f,
9315*6236dae4SAndroid Build Coastguard Worker   0xc0, 0x24, 0xa9, 0x87, 0xda, 0x63, 0x08, 0xee, 0xcd, 0x6c, 0x0a, 0x32,
9316*6236dae4SAndroid Build Coastguard Worker   0xff, 0x49, 0xbe, 0x95, 0x20, 0xbd, 0xd8, 0xad, 0xf3, 0xcb, 0x39, 0x2a,
9317*6236dae4SAndroid Build Coastguard Worker   0x28, 0xf5, 0xc5, 0x28, 0x42, 0xd9, 0x89, 0x24, 0x51, 0xe9, 0xb1, 0x40,
9318*6236dae4SAndroid Build Coastguard Worker   0xdc, 0x4b, 0x09, 0x51, 0x3b, 0x08, 0x16, 0x90, 0xf5, 0x73, 0x06, 0x43,
9319*6236dae4SAndroid Build Coastguard Worker   0x08, 0x55, 0x2b, 0xd3, 0x95, 0x8d, 0xdb, 0xa5, 0x31, 0xd9, 0x45, 0x64,
9320*6236dae4SAndroid Build Coastguard Worker   0x7a, 0x11, 0x61, 0x68, 0xc0, 0xe6, 0x1c, 0xe8, 0xb0, 0x82, 0xe1, 0xb6,
9321*6236dae4SAndroid Build Coastguard Worker   0xd6, 0xbe, 0x0e, 0x42, 0x57, 0x5c, 0x5d, 0xc8, 0xd5, 0xf0, 0xe0, 0xfd,
9322*6236dae4SAndroid Build Coastguard Worker   0xf3, 0x6b, 0x5d, 0x09, 0x72, 0x29, 0xfd, 0x96, 0x77, 0x82, 0x0e, 0xf9,
9323*6236dae4SAndroid Build Coastguard Worker   0x14, 0x9d, 0x5c, 0x76, 0x2a, 0x5a, 0xa5, 0x72, 0x0e, 0x81, 0xd6, 0x53,
9324*6236dae4SAndroid Build Coastguard Worker   0xfd, 0xd9, 0x35, 0x91, 0x43, 0x85, 0x11, 0xc4, 0xdc, 0x6b, 0xbd, 0xe8,
9325*6236dae4SAndroid Build Coastguard Worker   0x21, 0x7b, 0x3e, 0xa0, 0xbf, 0x7b, 0xd7, 0xcd, 0xc2, 0xb6, 0x6b, 0xff,
9326*6236dae4SAndroid Build Coastguard Worker   0xa3, 0x4c, 0x69, 0xde, 0xe3, 0x38, 0xd0, 0x7c, 0xc2, 0xf4, 0x9c, 0x5c,
9327*6236dae4SAndroid Build Coastguard Worker   0xa4, 0x97, 0x73, 0xa7, 0xd6, 0xff, 0x35, 0xab, 0xff, 0xa7, 0xeb, 0xe5,
9328*6236dae4SAndroid Build Coastguard Worker   0xce, 0xb9, 0x6c, 0x74, 0x43, 0xdc, 0x7b, 0xbe, 0xb1, 0xb1, 0xf1, 0x28,
9329*6236dae4SAndroid Build Coastguard Worker   0x79, 0xfd, 0xe0, 0x79, 0x6e, 0x14, 0x4f, 0xb5, 0x4f, 0x74, 0x2c, 0x25,
9330*6236dae4SAndroid Build Coastguard Worker   0xd3, 0x01, 0x73, 0x37, 0x8c, 0xc2, 0x30, 0x7e, 0xd8, 0x31, 0xc7, 0x07,
9331*6236dae4SAndroid Build Coastguard Worker   0x99, 0xb2, 0x1b, 0x18, 0x4c, 0x83, 0x6d, 0x71, 0x9f, 0x9f, 0x1e, 0x38,
9332*6236dae4SAndroid Build Coastguard Worker   0xcc, 0xff, 0x63, 0x2c, 0xeb, 0xdd, 0xe8, 0x09, 0x96, 0xf5, 0xee, 0xff,
9333*6236dae4SAndroid Build Coastguard Worker   0x1a, 0xd6, 0xff, 0x72, 0x07, 0x78, 0x3e, 0x3b, 0xac, 0x62, 0xa2, 0x3b,
9334*6236dae4SAndroid Build Coastguard Worker   0x56, 0x22, 0xc0, 0x7f, 0xd5, 0xa4, 0x5e, 0xb3, 0x3a, 0x1d, 0x42, 0x1c,
9335*6236dae4SAndroid Build Coastguard Worker   0x31, 0xed, 0x8e, 0xcf, 0xbe, 0x79, 0xd6, 0x25, 0x30, 0xd7, 0xbe, 0x8f,
9336*6236dae4SAndroid Build Coastguard Worker   0x6b, 0x7c, 0xf2, 0xea, 0xe0, 0xac, 0xf7, 0x14, 0x29, 0xb1, 0xb4, 0x70,
9337*6236dae4SAndroid Build Coastguard Worker   0xf8, 0x1b, 0x79, 0xeb, 0xa7, 0x69, 0x3a, 0x8a, 0x39, 0x01, 0x63, 0x9f,
9338*6236dae4SAndroid Build Coastguard Worker   0xfe, 0x11, 0xcc, 0x6d, 0x52, 0xb4, 0x5b, 0xe2, 0x79, 0xcc, 0xcb, 0x90,
9339*6236dae4SAndroid Build Coastguard Worker   0xa4, 0x33, 0x27, 0x47, 0x8e, 0x5e, 0x06, 0x35, 0x2b, 0x17, 0x78, 0x6c,
9340*6236dae4SAndroid Build Coastguard Worker   0x2c, 0x74, 0xaa, 0x7c, 0x1f, 0x5c, 0x91, 0x8f, 0xd6, 0x18, 0x7c, 0x89,
9341*6236dae4SAndroid Build Coastguard Worker   0xbe, 0x4c, 0x5c, 0x26, 0xe9, 0x82, 0x28, 0x0e, 0x2e, 0xb1, 0x57, 0x85,
9342*6236dae4SAndroid Build Coastguard Worker   0xf6, 0xc1, 0x72, 0x9f, 0x21, 0x39, 0xe1, 0x37, 0x8e, 0xe6, 0x03, 0x74,
9343*6236dae4SAndroid Build Coastguard Worker   0x6f, 0x97, 0xc2, 0xb9, 0x23, 0xdc, 0xdb, 0x64, 0x7b, 0x03, 0x43, 0x73,
9344*6236dae4SAndroid Build Coastguard Worker   0x82, 0xc2, 0xf9, 0x87, 0xcb, 0x72, 0x87, 0xd2, 0xdb, 0x1b, 0x1b, 0xcd,
9345*6236dae4SAndroid Build Coastguard Worker   0x09, 0x3f, 0x94, 0x7b, 0xd6, 0x5e, 0xe0, 0xbc, 0x0c, 0xcb, 0x85, 0x9b,
9346*6236dae4SAndroid Build Coastguard Worker   0xe5, 0xce, 0xa0, 0xb1, 0x47, 0x98, 0xcc, 0xc4, 0x09, 0x1b, 0x6d, 0xa1,
9347*6236dae4SAndroid Build Coastguard Worker   0xe8, 0xee, 0x00, 0x27, 0x13, 0x32, 0x45, 0xcc, 0x27, 0x9a, 0xfb, 0x75,
9348*6236dae4SAndroid Build Coastguard Worker   0x7c, 0xe1, 0xbe, 0xe0, 0x79, 0x5e, 0x18, 0x3a, 0x48, 0x5a, 0xa1, 0x88,
9349*6236dae4SAndroid Build Coastguard Worker   0xb1, 0xd9, 0x98, 0x95, 0xcd, 0xe5, 0xdc, 0xd4, 0x28, 0x9b, 0x45, 0x50,
9350*6236dae4SAndroid Build Coastguard Worker   0xf8, 0x9b, 0x9f, 0x90, 0xee, 0xbc, 0xbb, 0xb8, 0x42, 0xad, 0xc8, 0xeb,
9351*6236dae4SAndroid Build Coastguard Worker   0x12, 0xbb, 0xb6, 0xdb, 0x42, 0x1c, 0x96, 0x32, 0xb3, 0xca, 0xc1, 0x84,
9352*6236dae4SAndroid Build Coastguard Worker   0xc0, 0x22, 0x4c, 0x84, 0x44, 0x88, 0x88, 0x6a, 0x5e, 0x5e, 0x99, 0x48,
9353*6236dae4SAndroid Build Coastguard Worker   0xac, 0x28, 0xad, 0x87, 0x3d, 0xcb, 0x3d, 0xd4, 0x42, 0x67, 0x88, 0x85,
9354*6236dae4SAndroid Build Coastguard Worker   0x8a, 0x25, 0x27, 0x82, 0xc1, 0x05, 0xd0, 0xe5, 0xaa, 0x47, 0xea, 0x29,
9355*6236dae4SAndroid Build Coastguard Worker   0x30, 0xc7, 0xa7, 0xa5, 0x59, 0x91, 0x73, 0x00, 0x25, 0xfe, 0x27, 0xf1,
9356*6236dae4SAndroid Build Coastguard Worker   0x66, 0x5c, 0x61, 0x22, 0x07, 0x1a, 0xf9, 0xf1, 0x20, 0x4d, 0xbc, 0x0a,
9357*6236dae4SAndroid Build Coastguard Worker   0x64, 0x1f, 0x31, 0x55, 0x1d, 0x83, 0x46, 0x2a, 0x26, 0x25, 0xd7, 0x84,
9358*6236dae4SAndroid Build Coastguard Worker   0x20, 0x2f, 0x02, 0x1b, 0xd6, 0xf7, 0x58, 0x37, 0x75, 0x2b, 0xd8, 0x45,
9359*6236dae4SAndroid Build Coastguard Worker   0xed, 0xeb, 0xae, 0x7f, 0xb2, 0x4d, 0x9b, 0x77, 0x7e, 0xd2, 0x77, 0x1b,
9360*6236dae4SAndroid Build Coastguard Worker   0x13, 0x57, 0x94, 0x98, 0x45, 0x98, 0x5a, 0x5f, 0x1e, 0x1d, 0xf4, 0xcf,
9361*6236dae4SAndroid Build Coastguard Worker   0x7b, 0x21, 0x22, 0xfa, 0xc0, 0x1f, 0x16, 0x65, 0x0f, 0xbb, 0x43, 0x8c,
9362*6236dae4SAndroid Build Coastguard Worker   0x93, 0x7b, 0xec, 0x0f, 0x25, 0x50, 0x5d, 0x38, 0x37, 0x9e, 0x9a, 0x0e,
9363*6236dae4SAndroid Build Coastguard Worker   0x8e, 0xfe, 0x0b, 0x06, 0xd3, 0xa0, 0xf4, 0x70, 0xbf, 0x09, 0x09, 0xec,
9364*6236dae4SAndroid Build Coastguard Worker   0x8e, 0x94, 0x89, 0x99, 0x02, 0x35, 0x62, 0x5e, 0x2a, 0x32, 0x29, 0xc6,
9365*6236dae4SAndroid Build Coastguard Worker   0x98, 0x55, 0x86, 0xdf, 0x69, 0xfa, 0xaa, 0x16, 0x80, 0x76, 0xba, 0xf3,
9366*6236dae4SAndroid Build Coastguard Worker   0x1f, 0x23, 0xd2, 0x9a, 0xb4, 0xa4, 0xc1, 0x41, 0x94, 0x58, 0x9c, 0x4e,
9367*6236dae4SAndroid Build Coastguard Worker   0x64, 0x60, 0x5f, 0x02, 0xc5, 0x82, 0x84, 0xd9, 0x4c, 0x58, 0xe9, 0xd5,
9368*6236dae4SAndroid Build Coastguard Worker   0xb5, 0xa6, 0xec, 0x0c, 0x6b, 0xc2, 0x21, 0x4c, 0x96, 0x4f, 0x20, 0x68,
9369*6236dae4SAndroid Build Coastguard Worker   0xee, 0xf6, 0x63, 0x78, 0x63, 0x56, 0x17, 0xf1, 0x70, 0x8c, 0x79, 0xa2,
9370*6236dae4SAndroid Build Coastguard Worker   0x31, 0x36, 0xb7, 0x0f, 0xf8, 0x0d, 0xdc, 0xc6, 0xab, 0x4d, 0xa0, 0x4f,
9371*6236dae4SAndroid Build Coastguard Worker   0x02, 0x36, 0x61, 0x89, 0xce, 0x80, 0x07, 0x11, 0x8f, 0x04, 0xff, 0x85,
9372*6236dae4SAndroid Build Coastguard Worker   0xa1, 0x40, 0x91, 0xf4, 0x15, 0xd0, 0x5a, 0x1c, 0x2f, 0x4d, 0x43, 0xbc,
9373*6236dae4SAndroid Build Coastguard Worker   0xcb, 0x4e, 0x07, 0x49, 0x74, 0xb6, 0xed, 0x64, 0x14, 0x38, 0x49, 0xf8,
9374*6236dae4SAndroid Build Coastguard Worker   0x34, 0x84, 0x3e, 0xe4, 0xf6, 0xc4, 0x74, 0x7a, 0x60, 0xf6, 0xd1, 0x97,
9375*6236dae4SAndroid Build Coastguard Worker   0x85, 0xcd, 0x85, 0x57, 0x19, 0x2f, 0x8e, 0xf0, 0x0e, 0x04, 0x20, 0x95,
9376*6236dae4SAndroid Build Coastguard Worker   0x76, 0x08, 0x56, 0xd5, 0x1e, 0x6e, 0x80, 0x2d, 0x55, 0xc1, 0xd2, 0x3d,
9377*6236dae4SAndroid Build Coastguard Worker   0x03, 0x59, 0x4a, 0x69, 0xb8, 0xcf, 0x7b, 0xcf, 0x9f, 0x03, 0x1b, 0x33,
9378*6236dae4SAndroid Build Coastguard Worker   0x9e, 0x5a, 0xd2, 0x84, 0x06, 0x25, 0x34, 0x9c, 0x8c, 0xf3, 0x04, 0x84,
9379*6236dae4SAndroid Build Coastguard Worker   0x40, 0xa1, 0xeb, 0x4f, 0xe7, 0xd1, 0x13, 0x5d, 0xd0, 0x85, 0xe7, 0x4b,
9380*6236dae4SAndroid Build Coastguard Worker   0x72, 0xa7, 0xad, 0xf4, 0xbd, 0xd2, 0x8c, 0x68, 0x84, 0x9b, 0xef, 0x69,
9381*6236dae4SAndroid Build Coastguard Worker   0x6b, 0xb4, 0xbe, 0xca, 0x12, 0xb9, 0xe5, 0xcc, 0x50, 0x3c, 0xb1, 0xd3,
9382*6236dae4SAndroid Build Coastguard Worker   0x7e, 0x63, 0xa8, 0xaa, 0x26, 0xac, 0xc6, 0xda, 0x93, 0x99, 0x02, 0xdf,
9383*6236dae4SAndroid Build Coastguard Worker   0x90, 0x70, 0xa7, 0xdf, 0xe1, 0x7d, 0x04, 0xcb, 0x19, 0x8b, 0x0f, 0x19,
9384*6236dae4SAndroid Build Coastguard Worker   0x77, 0xd4, 0x00, 0xda, 0x3e, 0x89, 0x0b, 0x5b, 0x7c, 0xb5, 0x64, 0x1e,
9385*6236dae4SAndroid Build Coastguard Worker   0x0b, 0x3b, 0xde, 0x42, 0x03, 0xf5, 0x1a, 0x15, 0x48, 0xcf, 0x5b, 0xbe,
9386*6236dae4SAndroid Build Coastguard Worker   0x12, 0x78, 0x81, 0xa0, 0x4b, 0x11, 0x6e, 0xc9, 0xc3, 0x5f, 0x91, 0xad,
9387*6236dae4SAndroid Build Coastguard Worker   0x58, 0x5b, 0x20, 0xf6, 0x34, 0x95, 0xd6, 0x25, 0x20, 0x8e, 0x36, 0x0c,
9388*6236dae4SAndroid Build Coastguard Worker   0x22, 0x5f, 0x45, 0xc3, 0xab, 0x14, 0xd4, 0xbb, 0xde, 0x53, 0x84, 0x42,
9389*6236dae4SAndroid Build Coastguard Worker   0x9b, 0xf7, 0x5c, 0x11, 0xf1, 0xeb, 0x0b, 0x05, 0x43, 0x94, 0x65, 0x13,
9390*6236dae4SAndroid Build Coastguard Worker   0xb7, 0x76, 0x7c, 0x02, 0x03, 0xcf, 0x8e, 0x42, 0x5d, 0x8a, 0x09, 0x36,
9391*6236dae4SAndroid Build Coastguard Worker   0x87, 0xf0, 0x79, 0x18, 0xe9, 0xe6, 0x3d, 0xb7, 0x71, 0xc6, 0xa5, 0xaf,
9392*6236dae4SAndroid Build Coastguard Worker   0xc3, 0x85, 0x60, 0x2a, 0xda, 0x6d, 0x9b, 0x1f, 0x74, 0x1d, 0x62, 0xfe,
9393*6236dae4SAndroid Build Coastguard Worker   0x8e, 0xef, 0x46, 0xd1, 0x66, 0x6d, 0xf6, 0xd9, 0x56, 0x8f, 0x57, 0xa3,
9394*6236dae4SAndroid Build Coastguard Worker   0xba, 0x6b, 0x73, 0x07, 0xf9, 0xca, 0x42, 0x55, 0x03, 0xcf, 0x30, 0x66,
9395*6236dae4SAndroid Build Coastguard Worker   0xf5, 0xa7, 0x08, 0xb2, 0x67, 0xae, 0xa4, 0x38, 0xbe, 0xa8, 0xa7, 0x66,
9396*6236dae4SAndroid Build Coastguard Worker   0x65, 0x4f, 0xa1, 0x2e, 0xbe, 0xe7, 0xe3, 0xd7, 0x78, 0x64, 0x43, 0xfa,
9397*6236dae4SAndroid Build Coastguard Worker   0x83, 0x60, 0xae, 0x6a, 0x84, 0x77, 0x2a, 0x3c, 0x59, 0xeb, 0x30, 0xe8,
9398*6236dae4SAndroid Build Coastguard Worker   0x02, 0x0e, 0xcd, 0x2e, 0x73, 0x3c, 0xcf, 0x4b, 0x31, 0xa8, 0xa4, 0x44,
9399*6236dae4SAndroid Build Coastguard Worker   0x63, 0x05, 0xb3, 0xd4, 0x73, 0x8d, 0x66, 0x94, 0xdc, 0x3d, 0xc9, 0x28,
9400*6236dae4SAndroid Build Coastguard Worker   0x03, 0x66, 0xbd, 0xb8, 0xb8, 0x20, 0xbc, 0x31, 0x60, 0xff, 0xba, 0xcc,
9401*6236dae4SAndroid Build Coastguard Worker   0x06, 0xb3, 0x40, 0x34, 0x86, 0x7a, 0xf9, 0x59, 0x18, 0x15, 0xfe, 0xa6,
9402*6236dae4SAndroid Build Coastguard Worker   0xfd, 0x06, 0x23, 0x3a, 0x3d, 0x8d, 0x78, 0x6d, 0xba, 0x2c, 0x5b, 0x86,
9403*6236dae4SAndroid Build Coastguard Worker   0xb8, 0xe1, 0xf1, 0xe8, 0x1c, 0x8e, 0x3c, 0x27, 0xbc, 0x0b, 0xba, 0xab,
9404*6236dae4SAndroid Build Coastguard Worker   0x16, 0x32, 0xa5, 0x5f, 0xce, 0x04, 0x2c, 0x27, 0x1d, 0xd5, 0xa9, 0xef,
9405*6236dae4SAndroid Build Coastguard Worker   0x0b, 0x9d, 0xe4, 0xc7, 0x70, 0xa7, 0xb2, 0xa7, 0xaf, 0x28, 0x11, 0xb3,
9406*6236dae4SAndroid Build Coastguard Worker   0x36, 0x85, 0x9e, 0xb2, 0xa1, 0x68, 0xc4, 0x92, 0xa6, 0x65, 0x19, 0x8c,
9407*6236dae4SAndroid Build Coastguard Worker   0x7a, 0xc8, 0x21, 0x42, 0x8d, 0xa7, 0xd9, 0xc0, 0x6d, 0x30, 0x06, 0xf5,
9408*6236dae4SAndroid Build Coastguard Worker   0x73, 0x4c, 0x00, 0xa9, 0x69, 0x3e, 0x2c, 0xef, 0xa7, 0x6e, 0x27, 0xf5,
9409*6236dae4SAndroid Build Coastguard Worker   0xd1, 0x2f, 0x39, 0x15, 0xe4, 0xdf, 0xc7, 0xc4, 0x64, 0x75, 0xe7, 0x04,
9410*6236dae4SAndroid Build Coastguard Worker   0x80, 0x98, 0xc9, 0xa9, 0x52, 0xbb, 0x50, 0x2f, 0xe8, 0x96, 0xb2, 0x1d,
9411*6236dae4SAndroid Build Coastguard Worker   0x84, 0xb0, 0x56, 0x5d, 0x80, 0x89, 0x2f, 0x66, 0xd4, 0x33, 0xc6, 0x00,
9412*6236dae4SAndroid Build Coastguard Worker   0xb7, 0x2c, 0xcd, 0x30, 0xc0, 0x89, 0xd3, 0xed, 0xb9, 0x48, 0x51, 0x5b,
9413*6236dae4SAndroid Build Coastguard Worker   0x5d, 0x7e, 0xea, 0x66, 0xcb, 0x3b, 0x5d, 0xfd, 0x93, 0xa6, 0xe4, 0x57,
9414*6236dae4SAndroid Build Coastguard Worker   0x47, 0x14, 0xac, 0x1a, 0xc4, 0xac, 0x02, 0xa3, 0x58, 0xfe, 0xb8, 0xd9,
9415*6236dae4SAndroid Build Coastguard Worker   0xea, 0x4a, 0xee, 0x5e, 0xa0, 0x55, 0x0c, 0x95, 0x1e, 0xe6, 0x5a, 0xde,
9416*6236dae4SAndroid Build Coastguard Worker   0x60, 0xd5, 0x04, 0xc4, 0xed, 0x2a, 0x67, 0x43, 0xd5, 0x4c, 0xf8, 0xb4,
9417*6236dae4SAndroid Build Coastguard Worker   0x62, 0x35, 0x22, 0x8e, 0x17, 0x31, 0x20, 0xcc, 0x28, 0xf5, 0x4a, 0xa9,
9418*6236dae4SAndroid Build Coastguard Worker   0x6d, 0xab, 0x35, 0x1c, 0x81, 0xb9, 0x8b, 0x8a, 0xe4, 0x30, 0x38, 0xfb,
9419*6236dae4SAndroid Build Coastguard Worker   0x6c, 0xf3, 0xf9, 0xb3, 0xb5, 0x27, 0x50, 0x0a, 0x3e, 0xf8, 0xc8, 0x5b,
9420*6236dae4SAndroid Build Coastguard Worker   0x97, 0x39, 0x10, 0x81, 0xf4, 0xe0, 0x79, 0x04, 0x83, 0x14, 0xde, 0xc3,
9421*6236dae4SAndroid Build Coastguard Worker   0x7f, 0x6e, 0xf5, 0x5c, 0xaa, 0x2a, 0x4b, 0x55, 0xda, 0x79, 0xca, 0x03,
9422*6236dae4SAndroid Build Coastguard Worker   0xa2, 0xca, 0x47, 0xc8, 0x48, 0x48, 0x1f, 0xd5, 0x1b, 0x91, 0xc1, 0x06,
9423*6236dae4SAndroid Build Coastguard Worker   0xb3, 0x6c, 0x4c, 0x25, 0x1a, 0x2a, 0xaf, 0x89, 0xfd, 0x7d, 0x3f, 0x61,
9424*6236dae4SAndroid Build Coastguard Worker   0x9b, 0xce, 0xec, 0x37, 0x8c, 0xb7, 0x75, 0x02, 0x6c, 0x5f, 0xc4, 0x9b,
9425*6236dae4SAndroid Build Coastguard Worker   0xf8, 0xef, 0x7a, 0x5c, 0xdd, 0x6c, 0xca, 0x4c, 0xe9, 0xef, 0xbd, 0xe6,
9426*6236dae4SAndroid Build Coastguard Worker   0xbf, 0xb6, 0x1c, 0xa9, 0x60, 0x07, 0xf8, 0xe5, 0x7c, 0xb1, 0xfd, 0x2b,
9427*6236dae4SAndroid Build Coastguard Worker   0xf3, 0xc5, 0xf6, 0x13, 0xf9, 0xe2, 0xf9, 0xee, 0xb3, 0x17, 0x4f, 0xe2,
9428*6236dae4SAndroid Build Coastguard Worker   0x8b, 0xed, 0x5f, 0x8b, 0x2f, 0x9c, 0x6d, 0xf9, 0x63, 0xf8, 0xc2, 0x61,
9429*6236dae4SAndroid Build Coastguard Worker   0xcc, 0xa7, 0xf1, 0x85, 0xa6, 0xc4, 0x06, 0xdb, 0x26, 0xbe, 0x57, 0xe8,
9430*6236dae4SAndroid Build Coastguard Worker   0x08, 0xaa, 0x20, 0x43, 0xa0, 0x0c, 0xc6, 0xc8, 0x91, 0x77, 0x3c, 0xa0,
9431*6236dae4SAndroid Build Coastguard Worker   0x2e, 0x86, 0x87, 0x67, 0xe4, 0x3e, 0x74, 0xb8, 0x04, 0xdc, 0xb7, 0x16,
9432*6236dae4SAndroid Build Coastguard Worker   0x09, 0x9c, 0x9c, 0x13, 0xd3, 0x71, 0x02, 0xdc, 0xb2, 0x12, 0xaf, 0x68,
9433*6236dae4SAndroid Build Coastguard Worker   0xe4, 0x4c, 0x71, 0xff, 0x1c, 0x54, 0x0e, 0xce, 0x6c, 0xfe, 0xe3, 0x93,
9434*6236dae4SAndroid Build Coastguard Worker   0xd7, 0x7f, 0x6f, 0xbf, 0x07, 0x13, 0x59, 0x20, 0x52, 0xea, 0xbb, 0xfa,
9435*6236dae4SAndroid Build Coastguard Worker   0xe9, 0xa9, 0xcf, 0xbc, 0xfb, 0x4e, 0xfe, 0x7b, 0x93, 0x01, 0xee, 0x41,
9436*6236dae4SAndroid Build Coastguard Worker   0x23, 0x8a, 0xf9, 0x3b, 0xc1, 0x12, 0x95, 0xca, 0xd4, 0x0c, 0xb1, 0xed,
9437*6236dae4SAndroid Build Coastguard Worker   0xab, 0xb4, 0x1a, 0x14, 0x63, 0x24, 0x67, 0x8e, 0xa2, 0xe0, 0x7e, 0x9c,
9438*6236dae4SAndroid Build Coastguard Worker   0x8a, 0x9a, 0x85, 0x3b, 0x87, 0x5c, 0x8e, 0x9e, 0xee, 0x76, 0x3c, 0x95,
9439*6236dae4SAndroid Build Coastguard Worker   0x6a, 0xd7, 0xaa, 0x76, 0xee, 0x7a, 0x4f, 0x42, 0xda, 0xa0, 0xa4, 0x37,
9440*6236dae4SAndroid Build Coastguard Worker   0x26, 0x43, 0x81, 0xfa, 0x0a, 0xcc, 0xc8, 0x21, 0x17, 0xc9, 0x4d, 0x02,
9441*6236dae4SAndroid Build Coastguard Worker   0x0d, 0x06, 0xfe, 0xe5, 0x4b, 0x1a, 0x1a, 0x0b, 0x8a, 0x8f, 0x97, 0xd4,
9442*6236dae4SAndroid Build Coastguard Worker   0xed, 0x9e, 0xb5, 0xeb, 0x71, 0x40, 0x4a, 0x50, 0xc2, 0xba, 0xba, 0xee,
9443*6236dae4SAndroid Build Coastguard Worker   0x84, 0xa4, 0xa1, 0x1a, 0x92, 0x78, 0x6a, 0xe2, 0x23, 0xf5, 0x8c, 0x7c,
9444*6236dae4SAndroid Build Coastguard Worker   0x01, 0xca, 0xb2, 0xdc, 0x3c, 0x07, 0xf1, 0x25, 0x8e, 0x0e, 0x0d, 0x60,
9445*6236dae4SAndroid Build Coastguard Worker   0x2f, 0xfe, 0x96, 0x4a, 0xbd, 0x81, 0x52, 0xa1, 0x72, 0x71, 0x59, 0x02,
9446*6236dae4SAndroid Build Coastguard Worker   0xc7, 0x41, 0xec, 0xbb, 0x52, 0xb4, 0x24, 0xf3, 0xf0, 0x10, 0x27, 0xb0,
9447*6236dae4SAndroid Build Coastguard Worker   0xe6, 0xb6, 0xf6, 0xf3, 0x13, 0x54, 0x4d, 0x62, 0xef, 0xe9, 0x2b, 0x9c,
9448*6236dae4SAndroid Build Coastguard Worker   0xe8, 0x68, 0x36, 0x99, 0x6a, 0x23, 0x2f, 0xcc, 0x4c, 0x89, 0x33, 0x02,
9449*6236dae4SAndroid Build Coastguard Worker   0x8f, 0x55, 0x7c, 0x12, 0xa9, 0x2f, 0xc5, 0x58, 0x58, 0x08, 0x21, 0x1a,
9450*6236dae4SAndroid Build Coastguard Worker   0xe5, 0x84, 0x94, 0x69, 0x70, 0x44, 0x4a, 0x79, 0x4d, 0x9c, 0x02, 0x8a,
9451*6236dae4SAndroid Build Coastguard Worker   0x34, 0x74, 0x5c, 0x37, 0x9b, 0xe9, 0xf8, 0xd0, 0x8f, 0xa3, 0x74, 0x30,
9452*6236dae4SAndroid Build Coastguard Worker   0xbb, 0x54, 0xe4, 0x61, 0x03, 0x78, 0xd2, 0x3c, 0x4f, 0x54, 0xa0, 0x82,
9453*6236dae4SAndroid Build Coastguard Worker   0x3d, 0x19, 0xd2, 0x2e, 0xf7, 0x22, 0xcd, 0xef, 0x09, 0x32, 0xbe, 0xce,
9454*6236dae4SAndroid Build Coastguard Worker   0x2a, 0xdf, 0x0c, 0x19, 0x2e, 0x6f, 0x16, 0xcc, 0xd9, 0x65, 0x87, 0x1c,
9455*6236dae4SAndroid Build Coastguard Worker   0xf1, 0x9d, 0xec, 0xc4, 0x52, 0x42, 0xa1, 0x4d, 0xe8, 0x2e, 0x51, 0xd9,
9456*6236dae4SAndroid Build Coastguard Worker   0x8e, 0x4a, 0x72, 0xa2, 0xcd, 0x36, 0xbd, 0x05, 0xb9, 0x1a, 0x2d, 0xf3,
9457*6236dae4SAndroid Build Coastguard Worker   0xb8, 0x1e, 0x4e, 0xe3, 0x8b, 0x04, 0xdb, 0x08, 0x7a, 0xe8, 0x36, 0x52,
9458*6236dae4SAndroid Build Coastguard Worker   0xed, 0x26, 0x07, 0xea, 0xfc, 0xf0, 0x2c, 0x7a, 0x8d, 0x52, 0xf2, 0x14,
9459*6236dae4SAndroid Build Coastguard Worker   0x9e, 0x8c, 0x56, 0xe1, 0x36, 0x7f, 0xbe, 0xb3, 0xb9, 0xbd, 0xf4, 0x65,
9460*6236dae4SAndroid Build Coastguard Worker   0xee, 0x7e, 0x6f, 0x59, 0xcb, 0xfe, 0xa5, 0x3f, 0xf5, 0xbc, 0x08, 0x15,
9461*6236dae4SAndroid Build Coastguard Worker   0x19, 0x9f, 0xcf, 0xca, 0x5c, 0x3b, 0x38, 0xc0, 0xbc, 0x3f, 0xbe, 0x3b,
9462*6236dae4SAndroid Build Coastguard Worker   0x7d, 0x75, 0x74, 0x72, 0xf0, 0x37, 0x03, 0x93, 0xdd, 0x77, 0x3b, 0x83,
9463*6236dae4SAndroid Build Coastguard Worker   0xa7, 0x49, 0x75, 0xff, 0xb1, 0x4a, 0x61, 0x46, 0x35, 0x76, 0x07, 0x0f,
9464*6236dae4SAndroid Build Coastguard Worker   0xb4, 0x07, 0xb7, 0x7d, 0xc1, 0x15, 0x5e, 0x9c, 0x2b, 0xbe, 0x17, 0xf4,
9465*6236dae4SAndroid Build Coastguard Worker   0x0a, 0x61, 0xd7, 0x19, 0xd2, 0x7b, 0xa3, 0x07, 0x37, 0xbe, 0x14, 0x7f,
9466*6236dae4SAndroid Build Coastguard Worker   0x71, 0xe7, 0x74, 0x7b, 0xda, 0x1c, 0xbc, 0xb5, 0x44, 0x5a, 0x1d, 0x89,
9467*6236dae4SAndroid Build Coastguard Worker   0xa8, 0xf3, 0xa0, 0xb5, 0x10, 0xc3, 0x29, 0x43, 0x7f, 0x8a, 0x48, 0x57,
9468*6236dae4SAndroid Build Coastguard Worker   0xac, 0x24, 0xbf, 0xb8, 0x68, 0x75, 0x87, 0x23, 0x5c, 0x1f, 0xaa, 0x31,
9469*6236dae4SAndroid Build Coastguard Worker   0x7f, 0xca, 0xb6, 0x08, 0x2d, 0x17, 0xbb, 0x60, 0x6b, 0x52, 0x57, 0xd2,
9470*6236dae4SAndroid Build Coastguard Worker   0x71, 0x9e, 0xd6, 0xb1, 0xac, 0x62, 0x1f, 0xfe, 0xfb, 0xd9, 0x4d, 0x32,
9471*6236dae4SAndroid Build Coastguard Worker   0xf6, 0xd0, 0x6c, 0x93, 0xaa, 0x32, 0xa7, 0xd2, 0x5c, 0x20, 0xf8, 0xa6,
9472*6236dae4SAndroid Build Coastguard Worker   0x39, 0xf3, 0x3d, 0x05, 0x0f, 0x4c, 0x47, 0xe6, 0x49, 0x10, 0x17, 0x7b,
9473*6236dae4SAndroid Build Coastguard Worker   0xde, 0x1d, 0x71, 0xfe, 0xb7, 0xb3, 0xa3, 0xcf, 0xf6, 0xf1, 0xfa, 0xf9,
9474*6236dae4SAndroid Build Coastguard Worker   0x1c, 0x01, 0x08, 0xaa, 0xc6, 0x6d, 0x44, 0x25, 0x35, 0xde, 0x8a, 0xbf,
9475*6236dae4SAndroid Build Coastguard Worker   0x7b, 0x75, 0xdc, 0x3f, 0x3b, 0x39, 0x3d, 0xfc, 0x6c, 0xff, 0x3b, 0xf4,
9476*6236dae4SAndroid Build Coastguard Worker   0x12, 0x80, 0xde, 0x72, 0xef, 0xbc, 0x6b, 0x7e, 0x16, 0x29, 0xd6, 0xb5,
9477*6236dae4SAndroid Build Coastguard Worker   0x0f, 0xb9, 0x7e, 0xf4, 0xed, 0xc7, 0xa3, 0x77, 0xdf, 0x7c, 0xb6, 0x7f,
9478*6236dae4SAndroid Build Coastguard Worker   0x93, 0x94, 0x5d, 0x5c, 0x1f, 0xbf, 0x8d, 0xd5, 0x7b, 0xf9, 0x4d, 0x56,
9479*6236dae4SAndroid Build Coastguard Worker   0x16, 0x39, 0xba, 0xdc, 0x23, 0xf8, 0x65, 0x86, 0xe7, 0x64, 0x49, 0x8a,
9480*6236dae4SAndroid Build Coastguard Worker   0xd7, 0xb2, 0xa6, 0x9b, 0x7a, 0x73, 0x63, 0x43, 0xc8, 0x32, 0x1f, 0x4c,
9481*6236dae4SAndroid Build Coastguard Worker   0xb8, 0x46, 0xcb, 0x76, 0x30, 0xbe, 0xae, 0xb2, 0x9f, 0xd3, 0x08, 0xe6,
9482*6236dae4SAndroid Build Coastguard Worker   0x33, 0x9e, 0xf9, 0xcd, 0x9d, 0xcf, 0x19, 0xfa, 0x1a, 0xa8, 0x8b, 0x7f,
9483*6236dae4SAndroid Build Coastguard Worker   0x8b, 0xbe, 0x3c, 0xf9, 0x1a, 0xbb, 0x74, 0x9a, 0x70, 0x32, 0x35, 0x4d,
9484*6236dae4SAndroid Build Coastguard Worker   0x02, 0x21, 0xfe, 0xf9, 0xee, 0xe6, 0xd6, 0x9a, 0x08, 0x7d, 0xc1, 0x0d,
9485*6236dae4SAndroid Build Coastguard Worker   0x1c, 0x00, 0x09, 0xae, 0x3d, 0x2c, 0xaa, 0x9f, 0x05, 0x9a, 0xa4, 0x0d,
9486*6236dae4SAndroid Build Coastguard Worker   0xbe, 0x69, 0x3b, 0x0a, 0x68, 0xf8, 0x8b, 0x6a, 0xb3, 0xa9, 0x20, 0x0e,
9487*6236dae4SAndroid Build Coastguard Worker   0x7e, 0x0b, 0xc7, 0x04, 0x8b, 0x96, 0xbd, 0xd0, 0x1f, 0x4d, 0x4a, 0xbd,
9488*6236dae4SAndroid Build Coastguard Worker   0xe3, 0x0e, 0xe8, 0x18, 0x4c, 0x47, 0xc2, 0x87, 0x0b, 0x55, 0xaf, 0xdf,
9489*6236dae4SAndroid Build Coastguard Worker   0x59, 0x95, 0x6b, 0x10, 0x7c, 0x73, 0x63, 0x6b, 0x27, 0xaa, 0xc3, 0xad,
9490*6236dae4SAndroid Build Coastguard Worker   0x9f, 0xda, 0x9b, 0x04, 0x1a, 0x91, 0x30, 0x72, 0x78, 0x7f, 0x9c, 0x64,
9491*6236dae4SAndroid Build Coastguard Worker   0x76, 0x82, 0x33, 0x29, 0xb8, 0xcb, 0x19, 0x51, 0x47, 0x4f, 0x80, 0xc2,
9492*6236dae4SAndroid Build Coastguard Worker   0x32, 0x2f, 0x56, 0x95, 0x26, 0x88, 0x0d, 0x8a, 0x90, 0x10, 0x1c, 0x3b,
9493*6236dae4SAndroid Build Coastguard Worker   0x72, 0x22, 0x43, 0xe3, 0xf4, 0x12, 0x9d, 0xe3, 0xa6, 0x29, 0xae, 0x69,
9494*6236dae4SAndroid Build Coastguard Worker   0x96, 0x11, 0x52, 0x12, 0x92, 0x21, 0x3a, 0x50, 0x08, 0x38, 0x92, 0xcb,
9495*6236dae4SAndroid Build Coastguard Worker   0x29, 0x19, 0xf8, 0x1e, 0x24, 0x8d, 0x09, 0x2b, 0x35, 0x66, 0x27, 0xe8,
9496*6236dae4SAndroid Build Coastguard Worker   0x68, 0xf3, 0x41, 0x24, 0x75, 0x6b, 0x5a, 0x44, 0x74, 0x4c, 0xc8, 0xa7,
9497*6236dae4SAndroid Build Coastguard Worker   0xec, 0x85, 0xa5, 0xab, 0xee, 0xc4, 0xe6, 0xcb, 0xad, 0xde, 0xe6, 0xb3,
9498*6236dae4SAndroid Build Coastguard Worker   0x17, 0x88, 0xcc, 0xb9, 0xa8, 0x3e, 0x7a, 0xe7, 0x45, 0xe3, 0xd6, 0xf8,
9499*6236dae4SAndroid Build Coastguard Worker   0x99, 0xe4, 0x17, 0xb6, 0x8f, 0xa1, 0x38, 0xf5, 0x3e, 0xfe, 0x75, 0x6e,
9500*6236dae4SAndroid Build Coastguard Worker   0x9f, 0x74, 0xf6, 0x08, 0x53, 0xb4, 0x83, 0xcd, 0x20, 0x22, 0xa4, 0xa9,
9501*6236dae4SAndroid Build Coastguard Worker   0x71, 0x9f, 0x14, 0x23, 0x56, 0x45, 0xb1, 0xfd, 0x83, 0xc5, 0xcd, 0x99,
9502*6236dae4SAndroid Build Coastguard Worker   0xd3, 0xe8, 0x89, 0xf3, 0x0e, 0x48, 0xaf, 0x85, 0xc7, 0x49, 0x0b, 0x41,
9503*6236dae4SAndroid Build Coastguard Worker   0x2e, 0x9d, 0x33, 0xa4, 0xc1, 0x30, 0xf2, 0x53, 0x6a, 0x08, 0x35, 0x07,
9504*6236dae4SAndroid Build Coastguard Worker   0x13, 0x58, 0xf7, 0x71, 0x20, 0xbc, 0x1b, 0x50, 0xf3, 0x00, 0xd2, 0x7c,
9505*6236dae4SAndroid Build Coastguard Worker   0xae, 0x49, 0x3a, 0x89, 0x69, 0x03, 0xc1, 0x20, 0x87, 0xa9, 0x74, 0x11,
9506*6236dae4SAndroid Build Coastguard Worker   0xa8, 0x02, 0x5d, 0x55, 0x30, 0x91, 0x35, 0x73, 0x5b, 0xa9, 0x70, 0xb6,
9507*6236dae4SAndroid Build Coastguard Worker   0x30, 0xea, 0x47, 0xa6, 0x21, 0x2e, 0xcc, 0xb3, 0x52, 0x73, 0x0f, 0x91,
9508*6236dae4SAndroid Build Coastguard Worker   0x82, 0xc8, 0xdd, 0xc6, 0x24, 0x09, 0xe6, 0x13, 0x52, 0x34, 0x9c, 0xf0,
9509*6236dae4SAndroid Build Coastguard Worker   0x4a, 0xa4, 0x8d, 0x32, 0xb5, 0x00, 0xa1, 0xa5, 0x89, 0x07, 0x96, 0x26,
9510*6236dae4SAndroid Build Coastguard Worker   0xb5, 0x3a, 0xc1, 0xb5, 0x48, 0x0b, 0xf9, 0xb0, 0x3d, 0x6b, 0x4c, 0x53,
9511*6236dae4SAndroid Build Coastguard Worker   0x36, 0xee, 0xcd, 0xa5, 0x0d, 0x83, 0xe2, 0x10, 0x78, 0x61, 0xc3, 0x7d,
9512*6236dae4SAndroid Build Coastguard Worker   0x4d, 0x37, 0x34, 0x7b, 0x7a, 0x5b, 0x24, 0xf1, 0x34, 0xc5, 0x3a, 0x58,
9513*6236dae4SAndroid Build Coastguard Worker   0x56, 0xdd, 0x47, 0xc7, 0x88, 0xd6, 0xf5, 0xba, 0xef, 0x2b, 0x8c, 0xd8,
9514*6236dae4SAndroid Build Coastguard Worker   0x08, 0x5b, 0xd2, 0xac, 0xc6, 0x6b, 0x06, 0xda, 0x99, 0x10, 0x55, 0x98,
9515*6236dae4SAndroid Build Coastguard Worker   0x37, 0x02, 0x1d, 0x17, 0x22, 0xd3, 0x00, 0xda, 0x34, 0x1d, 0xe2, 0x70,
9516*6236dae4SAndroid Build Coastguard Worker   0xad, 0xa4, 0xb9, 0xa4, 0xc2, 0x14, 0xf8, 0xb5, 0x75, 0x86, 0x46, 0x52,
9517*6236dae4SAndroid Build Coastguard Worker   0x79, 0x88, 0x46, 0xb6, 0xd7, 0x85, 0xa0, 0x35, 0x56, 0x9e, 0xde, 0xba,
9518*6236dae4SAndroid Build Coastguard Worker   0x63, 0x59, 0x9b, 0xc8, 0x8c, 0xf7, 0x47, 0xf7, 0x82, 0xfd, 0x39, 0xea,
9519*6236dae4SAndroid Build Coastguard Worker   0x7c, 0x0b, 0xc3, 0x6f, 0x6c, 0xc2, 0xbe, 0x4d, 0xa3, 0xad, 0x8d, 0xad,
9520*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x68, 0x73, 0x6b, 0x6f, 0xf3, 0xc5, 0xde, 0xc6, 0xc6, 0x12, 0x38,
9521*6236dae4SAndroid Build Coastguard Worker   0xfb, 0x30, 0x4a, 0xfc, 0xab, 0x0c, 0x43, 0x87, 0x77, 0x71, 0x68, 0xb9,
9522*6236dae4SAndroid Build Coastguard Worker   0x1e, 0x57, 0x88, 0x22, 0x13, 0xed, 0x7f, 0x73, 0xf4, 0xbe, 0x7f, 0x7c,
9523*6236dae4SAndroid Build Coastguard Worker   0xfa, 0xee, 0xf3, 0xa0, 0xd7, 0x4d, 0x7e, 0x89, 0xbb, 0x95, 0xc1, 0xa1,
9524*6236dae4SAndroid Build Coastguard Worker   0x30, 0xf0, 0x56, 0x36, 0x94, 0x8b, 0x2e, 0x7a, 0x75, 0x15, 0xd3, 0x29,
9525*6236dae4SAndroid Build Coastguard Worker   0x05, 0x15, 0x05, 0x1f, 0x69, 0xb3, 0xc8, 0x70, 0x98, 0x4e, 0x6b, 0x06,
9526*6236dae4SAndroid Build Coastguard Worker   0xc1, 0x91, 0xc7, 0x4d, 0x52, 0x12, 0xc5, 0xd6, 0x22, 0xf6, 0xfc, 0x6c,
9527*6236dae4SAndroid Build Coastguard Worker   0x74, 0xf5, 0x6f, 0x9b, 0xe6, 0x6f, 0x5b, 0xfe, 0x29, 0xe6, 0x5f, 0x6c,
9528*6236dae4SAndroid Build Coastguard Worker   0xcf, 0x43, 0x25, 0x71, 0xdd, 0xfe, 0x15, 0x23, 0x9b, 0x69, 0xdf, 0x25,
9529*6236dae4SAndroid Build Coastguard Worker   0x98, 0x6f, 0xb7, 0xc1, 0x1a, 0x8c, 0xa2, 0x87, 0x8d, 0x49, 0xd3, 0x0b,
9530*6236dae4SAndroid Build Coastguard Worker   0xaf, 0xe2, 0x19, 0x9b, 0x99, 0x8a, 0xee, 0xc0, 0x06, 0x48, 0x15, 0xfd,
9531*6236dae4SAndroid Build Coastguard Worker   0xf5, 0xc3, 0xf1, 0x61, 0xcc, 0x91, 0x40, 0x12, 0x9c, 0xeb, 0x70, 0x26,
9532*6236dae4SAndroid Build Coastguard Worker   0x4d, 0x62, 0x8c, 0x37, 0xa1, 0x70, 0x3a, 0xbd, 0x93, 0x3c, 0x3a, 0x9b,
9533*6236dae4SAndroid Build Coastguard Worker   0x32, 0x94, 0x12, 0x62, 0xf9, 0x33, 0xc4, 0xb0, 0x4b, 0xd1, 0xf6, 0x70,
9534*6236dae4SAndroid Build Coastguard Worker   0x98, 0xb3, 0xd1, 0x78, 0x11, 0x1e, 0xbe, 0xd9, 0x74, 0xa0, 0x1b, 0xcc,
9535*6236dae4SAndroid Build Coastguard Worker   0x73, 0x9b, 0xa1, 0xe7, 0x36, 0xfd, 0xe7, 0xb6, 0x42, 0xcf, 0x6d, 0xf9,
9536*6236dae4SAndroid Build Coastguard Worker   0xcf, 0x6d, 0x87, 0x9e, 0x73, 0x36, 0xc0, 0x3f, 0x20, 0x7a, 0x9d, 0x09,
9537*6236dae4SAndroid Build Coastguard Worker   0xa3, 0xe1, 0xa7, 0x16, 0xb1, 0xb0, 0xf7, 0xf8, 0xb6, 0x75, 0x07, 0x2e,
9538*6236dae4SAndroid Build Coastguard Worker   0xe4, 0xe5, 0x86, 0x1b, 0xd4, 0x70, 0x91, 0x71, 0x2c, 0x76, 0x9d, 0x61,
9539*6236dae4SAndroid Build Coastguard Worker   0x5c, 0x1f, 0xe3, 0x76, 0xcf, 0xf9, 0x9a, 0x53, 0x9e, 0xda, 0x72, 0x92,
9540*6236dae4SAndroid Build Coastguard Worker   0x2e, 0xe7, 0x16, 0x95, 0x9b, 0xd8, 0x69, 0x08, 0x18, 0x30, 0x41, 0xc7,
9541*6236dae4SAndroid Build Coastguard Worker   0xd5, 0xe6, 0x76, 0x3c, 0xcc, 0xa6, 0x57, 0xa8, 0xac, 0xec, 0xcb, 0x5f,
9542*6236dae4SAndroid Build Coastguard Worker   0x66, 0xd8, 0x28, 0x13, 0x43, 0x74, 0xbe, 0xa2, 0x7b, 0xd2, 0x07, 0x33,
9543*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x76, 0x25, 0x91, 0xf6, 0x83, 0xf4, 0x5a, 0x44, 0xef, 0x55, 0xb6,
9544*6236dae4SAndroid Build Coastguard Worker   0x27, 0x89, 0x1f, 0x93, 0xf5, 0xc0, 0x15, 0x4c, 0x69, 0x15, 0xbc, 0x87,
9545*6236dae4SAndroid Build Coastguard Worker   0xbc, 0x46, 0xa4, 0x38, 0xbf, 0xe2, 0xaf, 0x53, 0x73, 0x72, 0x99, 0x9a,
9546*6236dae4SAndroid Build Coastguard Worker   0x8c, 0xcd, 0xfd, 0x47, 0x35, 0x03, 0xb6, 0x1d, 0x76, 0x4b, 0xc6, 0x88,
9547*6236dae4SAndroid Build Coastguard Worker   0xdb, 0x23, 0xaf, 0x68, 0xdf, 0x2a, 0xe0, 0x11, 0xf8, 0xb6, 0x0c, 0xde,
9548*6236dae4SAndroid Build Coastguard Worker   0x98, 0xaa, 0xb1, 0x29, 0x8b, 0xa0, 0x4e, 0xf5, 0xe1, 0xfd, 0x89, 0x67,
9549*6236dae4SAndroid Build Coastguard Worker   0x0c, 0x99, 0xcd, 0x47, 0xda, 0xf7, 0xaa, 0x74, 0x1d, 0xee, 0x87, 0x6a,
9550*6236dae4SAndroid Build Coastguard Worker   0x9d, 0xc2, 0x70, 0xf2, 0xd5, 0xab, 0x7a, 0x32, 0x7e, 0xc0, 0xcd, 0x26,
9551*6236dae4SAndroid Build Coastguard Worker   0xad, 0x32, 0xb9, 0x75, 0xdb, 0x88, 0xf3, 0x51, 0x2c, 0xac, 0x1c, 0x49,
9552*6236dae4SAndroid Build Coastguard Worker   0x22, 0xde, 0x51, 0xad, 0xbd, 0x69, 0x0d, 0x87, 0x5e, 0x00, 0xcc, 0x10,
9553*6236dae4SAndroid Build Coastguard Worker   0xc0, 0x33, 0xb4, 0x89, 0xba, 0x0c, 0xe9, 0x40, 0x06, 0x61, 0x36, 0xa1,
9554*6236dae4SAndroid Build Coastguard Worker   0x9e, 0xb1, 0x9c, 0x7c, 0x6c, 0x7b, 0x54, 0xe0, 0x0b, 0x08, 0xef, 0x95,
9555*6236dae4SAndroid Build Coastguard Worker   0x7a, 0xc9, 0x04, 0xa6, 0x19, 0x45, 0x49, 0x7d, 0xd7, 0xc9, 0x1d, 0x19,
9556*6236dae4SAndroid Build Coastguard Worker   0x22, 0x57, 0xe5, 0xa6, 0x1d, 0x50, 0x42, 0x1c, 0x2f, 0x39, 0xa8, 0x8a,
9557*6236dae4SAndroid Build Coastguard Worker   0xfe, 0xe1, 0x46, 0x44, 0x83, 0xb1, 0x61, 0x39, 0x1f, 0x0f, 0x8e, 0xfa,
9558*6236dae4SAndroid Build Coastguard Worker   0x1f, 0x37, 0xb7, 0x5e, 0x7c, 0xfc, 0xea, 0xf0, 0xed, 0xc7, 0xfe, 0x9b,
9559*6236dae4SAndroid Build Coastguard Worker   0x83, 0xad, 0xdd, 0x67, 0xbf, 0xd0, 0xbb, 0x08, 0x9f, 0xc0, 0x9c, 0x1a,
9560*6236dae4SAndroid Build Coastguard Worker   0xc2, 0x94, 0xd8, 0xc7, 0x3f, 0x3f, 0xf7, 0xd1, 0xfa, 0x22, 0xa2, 0xa4,
9561*6236dae4SAndroid Build Coastguard Worker   0x57, 0x48, 0x84, 0x36, 0x33, 0x42, 0x9d, 0x30, 0x1b, 0xf0, 0xb2, 0x5b,
9562*6236dae4SAndroid Build Coastguard Worker   0x69, 0x49, 0x73, 0xf2, 0x97, 0x88, 0x3b, 0x3a, 0xfd, 0xf7, 0x67, 0x9d,
9563*6236dae4SAndroid Build Coastguard Worker   0xae, 0xd4, 0xa4, 0xc1, 0x07, 0x62, 0xf8, 0x77, 0x44, 0x7e, 0xa1, 0x28,
9564*6236dae4SAndroid Build Coastguard Worker   0xda, 0xdd, 0xd8, 0xdd, 0x91, 0xfa, 0x1b, 0x9e, 0x23, 0x83, 0x43, 0xf9,
9565*6236dae4SAndroid Build Coastguard Worker   0x39, 0x24, 0xf4, 0x4b, 0x53, 0xea, 0x44, 0x5c, 0xe3, 0xe0, 0x6d, 0xa1,
9566*6236dae4SAndroid Build Coastguard Worker   0xfb, 0xb5, 0xb1, 0x42, 0xce, 0xb9, 0xeb, 0xda, 0x6e, 0xdb, 0x61, 0x0b,
9567*6236dae4SAndroid Build Coastguard Worker   0xc4, 0x34, 0x93, 0x03, 0xd6, 0xa5, 0x69, 0xf6, 0x5a, 0xe1, 0xe3, 0xa2,
9568*6236dae4SAndroid Build Coastguard Worker   0xbc, 0x96, 0x14, 0x2c, 0xc5, 0xdd, 0x24, 0xa1, 0xd6, 0x5e, 0x2c, 0x0b,
9569*6236dae4SAndroid Build Coastguard Worker   0x39, 0x23, 0xe5, 0xdc, 0x43, 0xc1, 0x30, 0x70, 0xba, 0x6c, 0xa1, 0x98,
9570*6236dae4SAndroid Build Coastguard Worker   0x36, 0xd7, 0xd2, 0xc0, 0xd2, 0x9c, 0x23, 0x03, 0x04, 0xfb, 0x2a, 0x9f,
9571*6236dae4SAndroid Build Coastguard Worker   0xe1, 0x9e, 0xd0, 0x28, 0xad, 0x41, 0x9e, 0xc0, 0x64, 0x86, 0x3e, 0x38,
9572*6236dae4SAndroid Build Coastguard Worker   0xcc, 0x83, 0x5a, 0x8e, 0x21, 0xf7, 0x3e, 0x1b, 0x05, 0x21, 0x8e, 0x31,
9573*6236dae4SAndroid Build Coastguard Worker   0xcf, 0xe0, 0xee, 0x92, 0xbd, 0xaf, 0xdd, 0x01, 0x71, 0xda, 0xed, 0x2c,
9574*6236dae4SAndroid Build Coastguard Worker   0x2e, 0xd3, 0xaa, 0x6c, 0x1e, 0x48, 0x8a, 0x22, 0x15, 0x3b, 0x73, 0xed,
9575*6236dae4SAndroid Build Coastguard Worker   0x69, 0xb2, 0x8d, 0xdc, 0x2c, 0x96, 0x4d, 0xe8, 0xe6, 0x42, 0x4f, 0x7f,
9576*6236dae4SAndroid Build Coastguard Worker   0xba, 0x38, 0x82, 0x14, 0x48, 0x85, 0x57, 0xe9, 0xbd, 0x3c, 0x09, 0xcd,
9577*6236dae4SAndroid Build Coastguard Worker   0x82, 0xa7, 0xb7, 0x23, 0x67, 0x2e, 0xf4, 0xc7, 0x83, 0x14, 0xa5, 0xa7,
9578*6236dae4SAndroid Build Coastguard Worker   0x82, 0x75, 0xb0, 0x74, 0xfa, 0xb4, 0xa6, 0x2f, 0x7a, 0x14, 0x35, 0x85,
9579*6236dae4SAndroid Build Coastguard Worker   0x98, 0x4f, 0xa4, 0xa5, 0x98, 0xfa, 0xed, 0x73, 0x45, 0xca, 0x80, 0x77,
9580*6236dae4SAndroid Build Coastguard Worker   0x5c, 0xfe, 0xe7, 0x50, 0x18, 0x55, 0x98, 0xb0, 0x1a, 0xf0, 0x1a, 0xcb,
9581*6236dae4SAndroid Build Coastguard Worker   0x26, 0x9b, 0xe8, 0x00, 0x8e, 0xbe, 0x48, 0xfa, 0xa1, 0x5e, 0x4e, 0x0f,
9582*6236dae4SAndroid Build Coastguard Worker   0xa2, 0x02, 0x50, 0xb2, 0x8c, 0x34, 0x8e, 0xc5, 0x41, 0xc4, 0x5b, 0xf5,
9583*6236dae4SAndroid Build Coastguard Worker   0x89, 0x0f, 0x0a, 0x8e, 0x61, 0x34, 0xf9, 0x04, 0xd9, 0xd8, 0xfc, 0xf9,
9584*6236dae4SAndroid Build Coastguard Worker   0x46, 0x08, 0x18, 0x75, 0x22, 0x63, 0xb9, 0x11, 0x66, 0x6f, 0x11, 0x71,
9585*6236dae4SAndroid Build Coastguard Worker   0xf1, 0x72, 0x6b, 0xb8, 0x8f, 0x28, 0x88, 0x3e, 0x8a, 0x90, 0x26, 0x55,
9586*6236dae4SAndroid Build Coastguard Worker   0x0d, 0x05, 0x9f, 0x49, 0xd6, 0xc4, 0x71, 0x40, 0xd7, 0xc6, 0xa8, 0x7a,
9587*6236dae4SAndroid Build Coastguard Worker   0x85, 0x80, 0x52, 0x0f, 0x21, 0xfd, 0xe1, 0x30, 0x20, 0xb1, 0x30, 0x31,
9588*6236dae4SAndroid Build Coastguard Worker   0x54, 0xa3, 0x74, 0xaa, 0xd4, 0xb5, 0xfa, 0x4d, 0xa1, 0xa5, 0x91, 0x18,
9589*6236dae4SAndroid Build Coastguard Worker   0x0b, 0x46, 0xa8, 0xe6, 0x63, 0xd2, 0x3f, 0xc1, 0x99, 0xcc, 0x1b, 0xb6,
9590*6236dae4SAndroid Build Coastguard Worker   0xe4, 0xd5, 0xb6, 0xed, 0xab, 0x85, 0xa8, 0xae, 0x3e, 0x71, 0xdb, 0x37,
9591*6236dae4SAndroid Build Coastguard Worker   0xff, 0x87, 0x6d, 0xfb, 0xe6, 0xff, 0x2d, 0xdb, 0xbe, 0xf9, 0xab, 0x6c,
9592*6236dae4SAndroid Build Coastguard Worker   0xfb, 0xd6, 0x13, 0xb7, 0x7d, 0xeb, 0x7f, 0xd8, 0xb6, 0x6f, 0xfd, 0xdf,
9593*6236dae4SAndroid Build Coastguard Worker   0xb2, 0xed, 0x5b, 0xbf, 0xca, 0xb6, 0x6f, 0x3f, 0x71, 0xdb, 0xb7, 0x7f,
9594*6236dae4SAndroid Build Coastguard Worker   0xfd, 0x6d, 0xff, 0x57, 0x73, 0x9c, 0x50, 0x9f, 0x36, 0xba, 0xdd, 0xd5,
9595*6236dae4SAndroid Build Coastguard Worker   0x2e, 0xca, 0x1a, 0xe9, 0xc4, 0x5c, 0x82, 0x80, 0x9e, 0x5f, 0xfc, 0xbd,
9596*6236dae4SAndroid Build Coastguard Worker   0x58, 0x59, 0xd5, 0xd3, 0x36, 0x73, 0xfb, 0x97, 0x35, 0x81, 0xb0, 0x2e,
9597*6236dae4SAndroid Build Coastguard Worker   0x86, 0xa0, 0x0f, 0x2d, 0xd4, 0xae, 0x1c, 0xb3, 0x41, 0xd1, 0xe4, 0x6a,
9598*6236dae4SAndroid Build Coastguard Worker   0x6e, 0xeb, 0x1d, 0xef, 0xa6, 0xda, 0xe7, 0xa1, 0xed, 0x14, 0xff, 0xac,
9599*6236dae4SAndroid Build Coastguard Worker   0xbf, 0xa1, 0x92, 0x02, 0xca, 0x08, 0xe2, 0x7c, 0xdc, 0x8c, 0x9f, 0x8d,
9600*6236dae4SAndroid Build Coastguard Worker   0xbc, 0x46, 0x9e, 0x0f, 0xed, 0x2a, 0xbb, 0xc4, 0x1e, 0x1b, 0x4f, 0x20,
9601*6236dae4SAndroid Build Coastguard Worker   0xd8, 0xaf, 0x95, 0x9c, 0xe6, 0xe4, 0x82, 0xfd, 0x31, 0xc9, 0x69, 0xe1,
9602*6236dae4SAndroid Build Coastguard Worker   0xe4, 0xb3, 0x96, 0x9b, 0xc8, 0x3d, 0xb5, 0x65, 0x9c, 0x82, 0xb4, 0x1a,
9603*6236dae4SAndroid Build Coastguard Worker   0xf9, 0xb5, 0x7e, 0xd2, 0xa2, 0xdc, 0xc6, 0x4f, 0x10, 0x24, 0x83, 0x9a,
9604*6236dae4SAndroid Build Coastguard Worker   0xd6, 0x8d, 0x18, 0xe7, 0x1d, 0x93, 0x82, 0x8f, 0xe4, 0x5d, 0x9b, 0x94,
9605*6236dae4SAndroid Build Coastguard Worker   0xc2, 0xc7, 0xc1, 0xc7, 0x48, 0x17, 0x94, 0x1c, 0x03, 0x09, 0xae, 0x70,
9606*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x52, 0x61, 0xd2, 0x95, 0xfa, 0x0f, 0xfd, 0x88, 0x14, 0x05, 0x12,
9607*6236dae4SAndroid Build Coastguard Worker   0x46, 0x27, 0xf5, 0x40, 0x08, 0xf6, 0x01, 0xa2, 0xcc, 0xc7, 0xe5, 0x0d,
9608*6236dae4SAndroid Build Coastguard Worker   0x2e, 0xbb, 0xe6, 0x87, 0x14, 0x57, 0x4c, 0x37, 0x89, 0x93, 0x6a, 0x98,
9609*6236dae4SAndroid Build Coastguard Worker   0x65, 0xe1, 0xe8, 0x86, 0x26, 0x6b, 0x25, 0xd4, 0xac, 0x28, 0xa2, 0xe7,
9610*6236dae4SAndroid Build Coastguard Worker   0x23, 0x4c, 0xf6, 0xc0, 0xf5, 0xe2, 0x51, 0xc6, 0xab, 0x80, 0xf0, 0xdf,
9611*6236dae4SAndroid Build Coastguard Worker   0x71, 0x79, 0x20, 0x74, 0x2e, 0x0b, 0x0d, 0xb5, 0x76, 0x03, 0xbd, 0x97,
9612*6236dae4SAndroid Build Coastguard Worker   0x50, 0xae, 0x70, 0xab, 0x6e, 0xee, 0x5e, 0x86, 0x05, 0x44, 0x59, 0x8e,
9613*6236dae4SAndroid Build Coastguard Worker   0x89, 0xd2, 0x52, 0xb2, 0x24, 0x41, 0x78, 0x8e, 0x3d, 0xb4, 0xba, 0x66,
9614*6236dae4SAndroid Build Coastguard Worker   0x7d, 0xf0, 0x5c, 0x3c, 0x9d, 0xb8, 0x83, 0x71, 0x1e, 0xfc, 0x3d, 0x99,
9615*6236dae4SAndroid Build Coastguard Worker   0x2f, 0xd8, 0x56, 0x2c, 0x91, 0x9a, 0x7d, 0x79, 0x59, 0x51, 0xcc, 0x17,
9616*6236dae4SAndroid Build Coastguard Worker   0x25, 0xfc, 0x61, 0xd9, 0x28, 0x77, 0x6b, 0xc6, 0x27, 0x4d, 0x12, 0x0e,
9617*6236dae4SAndroid Build Coastguard Worker   0x5e, 0x7b, 0x70, 0xe6, 0xa5, 0x23, 0x18, 0x03, 0x01, 0xa4, 0x77, 0x8c,
9618*6236dae4SAndroid Build Coastguard Worker   0x15, 0x45, 0xab, 0xcd, 0xbd, 0xd4, 0x52, 0x4c, 0x17, 0xe2, 0xad, 0x3d,
9619*6236dae4SAndroid Build Coastguard Worker   0xe8, 0x1f, 0x1e, 0x1f, 0x37, 0x70, 0xa5, 0x90, 0x6a, 0xdc, 0x81, 0x95,
9620*6236dae4SAndroid Build Coastguard Worker   0x20, 0x5c, 0x2b, 0xec, 0xfb, 0x98, 0x96, 0xb6, 0xb1, 0x56, 0x20, 0x90,
9621*6236dae4SAndroid Build Coastguard Worker   0x36, 0x81, 0xf3, 0x4e, 0x21, 0x71, 0x90, 0x3c, 0x19, 0x77, 0x31, 0xa0,
9622*6236dae4SAndroid Build Coastguard Worker   0x36, 0x6f, 0x64, 0xa5, 0xe5, 0x30, 0xcd, 0x0c, 0x7b, 0x2d, 0x5c, 0xcd,
9623*6236dae4SAndroid Build Coastguard Worker   0x26, 0x49, 0x5e, 0xfd, 0x3f, 0x97, 0xcb, 0xe8, 0xf2, 0xee, 0xb8, 0xb8,
9624*6236dae4SAndroid Build Coastguard Worker   0x7c, 0x6c, 0x36, 0x63, 0x18, 0x13, 0x45, 0x86, 0x63, 0x39, 0xe2, 0xa6,
9625*6236dae4SAndroid Build Coastguard Worker   0x65, 0xf5, 0xbc, 0xd3, 0x82, 0xeb, 0xf0, 0xba, 0x22, 0x93, 0x0e, 0x54,
9626*6236dae4SAndroid Build Coastguard Worker   0x49, 0xff, 0x07, 0xcc, 0xda, 0x9a, 0x90, 0xcf, 0x9d, 0x7a, 0x03, 0xf1,
9627*6236dae4SAndroid Build Coastguard Worker   0xc8, 0x40, 0x55, 0xcd, 0xf4, 0xe2, 0x3e, 0xf4, 0x62, 0x08, 0x07, 0x8a,
9628*6236dae4SAndroid Build Coastguard Worker   0xdc, 0x24, 0xef, 0xe3, 0x5f, 0x1f, 0x5b, 0xd9, 0x12, 0xa4, 0xb5, 0x1f,
9629*6236dae4SAndroid Build Coastguard Worker   0xc2, 0xd3, 0x8f, 0x10, 0x3e, 0xbf, 0xab, 0xd8, 0x69, 0xc8, 0x9d, 0x87,
9630*6236dae4SAndroid Build Coastguard Worker   0x05, 0x0f, 0xcb, 0x9d, 0x5f, 0x43, 0xec, 0x08, 0xea, 0x48, 0xe7, 0xcf,
9631*6236dae4SAndroid Build Coastguard Worker   0x1d, 0xc4, 0xfe, 0xf0, 0x7c, 0x26, 0x8f, 0x1a, 0x07, 0x58, 0xf5, 0xff,
9632*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x33, 0xfe, 0x2b, 0x9c, 0x6e, 0x3f, 0x71, 0xd9, 0x65, 0x57, 0xf7,
9633*6236dae4SAndroid Build Coastguard Worker   0x8c, 0xcf, 0xf2, 0xec, 0x2e, 0x16, 0x20, 0xe4, 0xfd, 0x69, 0x52, 0x5f,
9634*6236dae4SAndroid Build Coastguard Worker   0x7d, 0x1e, 0x56, 0x1b, 0x0e, 0x59, 0xed, 0x8e, 0x14, 0x99, 0x83, 0xa8,
9635*6236dae4SAndroid Build Coastguard Worker   0xf2, 0x01, 0x5e, 0x06, 0xca, 0x4f, 0x30, 0xff, 0x9c, 0xc7, 0xe8, 0xba,
9636*6236dae4SAndroid Build Coastguard Worker   0x4d, 0xe7, 0x49, 0x75, 0x08, 0xe4, 0xaf, 0xe7, 0x69, 0x8d, 0xfe, 0xab,
9637*6236dae4SAndroid Build Coastguard Worker   0x65, 0x89, 0xe3, 0x4e, 0x95, 0xff, 0x13, 0xe3, 0x84, 0x97, 0xcd, 0x59,
9638*6236dae4SAndroid Build Coastguard Worker   0x6c, 0x56, 0x7a, 0x9d, 0x53, 0xfb, 0x88, 0x29, 0x62, 0x1d, 0xc4, 0x14,
9639*6236dae4SAndroid Build Coastguard Worker   0x93, 0x0e, 0x9e, 0x4f, 0x56, 0xd7, 0x9c, 0x2e, 0x9f, 0x2d, 0x3c, 0x1d,
9640*6236dae4SAndroid Build Coastguard Worker   0xcc, 0x58, 0x1b, 0x4b, 0x42, 0x4a, 0x21, 0xb5, 0x6d, 0xa4, 0xfe, 0x7e,
9641*6236dae4SAndroid Build Coastguard Worker   0x78, 0x7f, 0x12, 0x4e, 0xe2, 0x2f, 0xc5, 0x77, 0xce, 0x2f, 0xd1, 0xbd,
9642*6236dae4SAndroid Build Coastguard Worker   0x99, 0xb5, 0x73, 0x07, 0xe0, 0x65, 0xb7, 0xdf, 0x49, 0x32, 0x45, 0xa1,
9643*6236dae4SAndroid Build Coastguard Worker   0x1b, 0xd0, 0x3c, 0x9d, 0xaf, 0x13, 0x88, 0x5c, 0xf4, 0xee, 0xf4, 0xfc,
9644*6236dae4SAndroid Build Coastguard Worker   0x88, 0xc5, 0x2d, 0xda, 0x9b, 0x14, 0x1c, 0xe3, 0xda, 0x6a, 0xbc, 0x42,
9645*6236dae4SAndroid Build Coastguard Worker   0xa9, 0xd7, 0xea, 0xba, 0x26, 0x63, 0x8e, 0xfd, 0x82, 0x7e, 0xae, 0x57,
9646*6236dae4SAndroid Build Coastguard Worker   0x28, 0x38, 0xb5, 0x0c, 0xb1, 0xee, 0xc6, 0x54, 0xed, 0x7e, 0x43, 0x6b,
9647*6236dae4SAndroid Build Coastguard Worker   0x3b, 0x64, 0x4b, 0x9b, 0x35, 0xe0, 0xe6, 0x22, 0xd8, 0xa3, 0xea, 0x29,
9648*6236dae4SAndroid Build Coastguard Worker   0xf1, 0x4e, 0xb6, 0xda, 0x55, 0x96, 0x5f, 0x9b, 0x79, 0x95, 0x7c, 0x64,
9649*6236dae4SAndroid Build Coastguard Worker   0xec, 0xd7, 0xb4, 0xa2, 0xc1, 0x21, 0xdf, 0x85, 0xaf, 0x28, 0xaa, 0xe4,
9650*6236dae4SAndroid Build Coastguard Worker   0x80, 0x05, 0x89, 0x45, 0xc1, 0xbd, 0xd7, 0x10, 0xb2, 0x68, 0x9c, 0x5d,
9651*6236dae4SAndroid Build Coastguard Worker   0xa7, 0xe3, 0x7b, 0x29, 0xe1, 0xa7, 0xc8, 0x28, 0x6d, 0x6c, 0x84, 0xe9,
9652*6236dae4SAndroid Build Coastguard Worker   0x53, 0x0a, 0xd6, 0xe6, 0xf5, 0x96, 0xcb, 0xc6, 0x3d, 0x17, 0xec, 0x41,
9653*6236dae4SAndroid Build Coastguard Worker   0x82, 0x6f, 0x0a, 0x80, 0xb3, 0x0a, 0xd6, 0x2e, 0xdb, 0x2f, 0x7c, 0xcc,
9654*6236dae4SAndroid Build Coastguard Worker   0xcf, 0x3e, 0x9c, 0x9b, 0xa6, 0xf6, 0xf3, 0x1b, 0x9e, 0x07, 0xd1, 0xe1,
9655*6236dae4SAndroid Build Coastguard Worker   0x9b, 0xa5, 0x1b, 0x28, 0x54, 0x57, 0x4d, 0x7b, 0x2e, 0xcc, 0x66, 0x59,
9656*6236dae4SAndroid Build Coastguard Worker   0x53, 0xdb, 0x0b, 0x84, 0x1f, 0xf0, 0x82, 0x73, 0x90, 0xbc, 0xfc, 0x13,
9657*6236dae4SAndroid Build Coastguard Worker   0x49, 0x60, 0x12, 0x45, 0x31, 0x3a, 0x18, 0x53, 0x5a, 0x50, 0x9d, 0x62,
9658*6236dae4SAndroid Build Coastguard Worker   0xd4, 0xa8, 0xfd, 0x9d, 0x9e, 0xfb, 0x1d, 0xc6, 0xf8, 0x58, 0x0b, 0x34,
9659*6236dae4SAndroid Build Coastguard Worker   0x27, 0x6d, 0xc8, 0x4b, 0xe7, 0xdb, 0x38, 0x4f, 0x05, 0xfb, 0x93, 0x99,
9660*6236dae4SAndroid Build Coastguard Worker   0x11, 0xac, 0x3d, 0x96, 0x30, 0x52, 0x9a, 0xa2, 0x7f, 0xc6, 0x09, 0x1d,
9661*6236dae4SAndroid Build Coastguard Worker   0xd3, 0xfa, 0x5b, 0xa8, 0x4b, 0x1a, 0xdf, 0x47, 0x52, 0xda, 0x28, 0xc2,
9662*6236dae4SAndroid Build Coastguard Worker   0x9e, 0x7b, 0xa1, 0xc9, 0x6a, 0x31, 0xdd, 0x8a, 0xdb, 0x5b, 0x79, 0x41,
9663*6236dae4SAndroid Build Coastguard Worker   0x1f, 0xd8, 0xc2, 0x00, 0x49, 0xff, 0xd6, 0x02, 0x62, 0x42, 0xd9, 0xeb,
9664*6236dae4SAndroid Build Coastguard Worker   0x1f, 0x67, 0x95, 0xfc, 0x78, 0x98, 0xa8, 0xaf, 0x26, 0x9d, 0x5c, 0xd8,
9665*6236dae4SAndroid Build Coastguard Worker   0xc1, 0xd8, 0xa3, 0x41, 0x3e, 0x62, 0x4d, 0x05, 0x28, 0x7a, 0x84, 0x6f,
9666*6236dae4SAndroid Build Coastguard Worker   0xf8, 0x83, 0xfd, 0x85, 0x46, 0x99, 0x26, 0x59, 0x69, 0x68, 0x85, 0xc1,
9667*6236dae4SAndroid Build Coastguard Worker   0x6e, 0x3c, 0x0c, 0x6d, 0xbe, 0x12, 0xce, 0xa3, 0xbc, 0xab, 0x82, 0xd1,
9668*6236dae4SAndroid Build Coastguard Worker   0x20, 0x7b, 0xd2, 0x5a, 0x18, 0x2d, 0x4e, 0x53, 0x88, 0xdf, 0xc1, 0x3b,
9669*6236dae4SAndroid Build Coastguard Worker   0x6c, 0x00, 0x0b, 0xef, 0x90, 0x49, 0xc5, 0xd3, 0x83, 0x2f, 0x7b, 0x61,
9670*6236dae4SAndroid Build Coastguard Worker   0x39, 0x77, 0x1e, 0x51, 0x52, 0x5e, 0x92, 0x5f, 0xab, 0xcb, 0xe6, 0x34,
9671*6236dae4SAndroid Build Coastguard Worker   0x03, 0xe8, 0x92, 0x7a, 0xa5, 0x61, 0x5b, 0xf9, 0xbe, 0xf6, 0x28, 0x0f,
9672*6236dae4SAndroid Build Coastguard Worker   0x5c, 0xc1, 0x52, 0x8a, 0x2a, 0x8c, 0x81, 0x0b, 0x6b, 0x04, 0x72, 0x09,
9673*6236dae4SAndroid Build Coastguard Worker   0x23, 0x0a, 0x7f, 0xaa, 0x13, 0xe4, 0x02, 0x15, 0xaa, 0x46, 0x8d, 0x03,
9674*6236dae4SAndroid Build Coastguard Worker   0x20, 0x5e, 0x2c, 0x5f, 0xf1, 0x4d, 0x94, 0x79, 0xe1, 0x06, 0x5d, 0x3c,
9675*6236dae4SAndroid Build Coastguard Worker   0x29, 0x03, 0xf7, 0x9b, 0x53, 0x49, 0xad, 0x30, 0xc5, 0x9e, 0x73, 0x60,
9676*6236dae4SAndroid Build Coastguard Worker   0x39, 0x6f, 0x2a, 0x99, 0x8f, 0x02, 0xc8, 0xf7, 0x3b, 0x46, 0x36, 0x77,
9677*6236dae4SAndroid Build Coastguard Worker   0xb7, 0xb7, 0xb6, 0x22, 0xd6, 0x6b, 0x18, 0xa1, 0x86, 0x53, 0xf7, 0x10,
9678*6236dae4SAndroid Build Coastguard Worker   0xbe, 0x31, 0x4d, 0xa8, 0x4a, 0x94, 0x6f, 0x1c, 0xec, 0x79, 0x93, 0x70,
9679*6236dae4SAndroid Build Coastguard Worker   0x28, 0x1b, 0xe8, 0x3c, 0xa7, 0xa6, 0x86, 0xb6, 0x8b, 0x7a, 0xdf, 0xc0,
9680*6236dae4SAndroid Build Coastguard Worker   0x49, 0x2e, 0x46, 0xf7, 0x76, 0x60, 0xe0, 0x98, 0x12, 0xe5, 0x14, 0x48,
9681*6236dae4SAndroid Build Coastguard Worker   0x17, 0x81, 0x95, 0xe0, 0xc8, 0x58, 0x15, 0x05, 0x41, 0x1b, 0xa4, 0x61,
9682*6236dae4SAndroid Build Coastguard Worker   0x2f, 0x5d, 0x18, 0xd4, 0xf6, 0x2c, 0x47, 0x36, 0xcc, 0xe9, 0xaf, 0xd8,
9683*6236dae4SAndroid Build Coastguard Worker   0x49, 0x64, 0x56, 0x52, 0x2b, 0x9f, 0x8c, 0x7b, 0x8f, 0xdf, 0x26, 0xf7,
9684*6236dae4SAndroid Build Coastguard Worker   0xcb, 0x66, 0x73, 0x9d, 0xcf, 0x4f, 0xa0, 0x9a, 0xf3, 0x7c, 0x27, 0x9b,
9685*6236dae4SAndroid Build Coastguard Worker   0x5c, 0x7e, 0xbf, 0x19, 0x6f, 0x6e, 0x6c, 0x6c, 0xfc, 0xd8, 0x9b, 0x22,
9686*6236dae4SAndroid Build Coastguard Worker   0xbf, 0x71, 0xd2, 0x26, 0xfc, 0xd9, 0x6b, 0xe4, 0x38, 0xcf, 0xb9, 0x7c,
9687*6236dae4SAndroid Build Coastguard Worker   0x1d, 0xf6, 0xeb, 0xfc, 0x03, 0xff, 0xb3, 0xd9, 0xc5, 0x3f, 0xb7, 0xfe,
9688*6236dae4SAndroid Build Coastguard Worker   0xd9, 0x79, 0x40, 0xed, 0xc5, 0xf7, 0xf7, 0xe1, 0x0f, 0x2f, 0x12, 0x67,
9689*6236dae4SAndroid Build Coastguard Worker   0xf0, 0xca, 0x90, 0xcb, 0x68, 0xc3, 0xea, 0xe1, 0x95, 0x57, 0xfc, 0x42,
9690*6236dae4SAndroid Build Coastguard Worker   0x92, 0x1d, 0x1b, 0x76, 0x5e, 0xc1, 0xe6, 0x98, 0x8e, 0xa3, 0x7e, 0x83,
9691*6236dae4SAndroid Build Coastguard Worker   0x65, 0xe3, 0x55, 0x95, 0x61, 0x61, 0xd0, 0xd5, 0x6a, 0x8d, 0xeb, 0x85,
9692*6236dae4SAndroid Build Coastguard Worker   0x87, 0x45, 0x7e, 0x91, 0x5d, 0xb2, 0xb8, 0x0c, 0x68, 0x78, 0x8e, 0x26,
9693*6236dae4SAndroid Build Coastguard Worker   0x8c, 0x53, 0xc1, 0x8a, 0x1b, 0xae, 0x69, 0xc7, 0xe3, 0x31, 0xbc, 0x4a,
9694*6236dae4SAndroid Build Coastguard Worker   0x27, 0x22, 0x4a, 0x57, 0xb5, 0x90, 0xa5, 0x83, 0x2b, 0x86, 0x05, 0x77,
9695*6236dae4SAndroid Build Coastguard Worker   0xfc, 0xdb, 0xae, 0x73, 0x21, 0xbf, 0x81, 0xc5, 0x68, 0xdb, 0x5d, 0x73,
9696*6236dae4SAndroid Build Coastguard Worker   0x01, 0x52, 0x9e, 0x62, 0x12, 0x5d, 0xce, 0xd0, 0x21, 0x32, 0x48, 0xe4,
9697*6236dae4SAndroid Build Coastguard Worker   0xa6, 0x51, 0xc4, 0x3d, 0x0a, 0xcf, 0x87, 0xe0, 0x16, 0x41, 0x5c, 0xa6,
9698*6236dae4SAndroid Build Coastguard Worker   0x25, 0x5d, 0x70, 0x70, 0xf8, 0x06, 0xb1, 0x28, 0x5c, 0x72, 0xdf, 0x52,
9699*6236dae4SAndroid Build Coastguard Worker   0x72, 0x28, 0x1c, 0xe6, 0x57, 0xc7, 0x87, 0x20, 0xaf, 0x5e, 0x9f, 0x9f,
9700*6236dae4SAndroid Build Coastguard Worker   0x75, 0xa9, 0x64, 0xbd, 0x4b, 0x40, 0x63, 0x6d, 0x31, 0x42, 0x75, 0xec,
9701*6236dae4SAndroid Build Coastguard Worker   0x88, 0x6c, 0x82, 0xe7, 0x4e, 0x62, 0xf6, 0x89, 0x4d, 0xfe, 0xb7, 0xf0,
9702*6236dae4SAndroid Build Coastguard Worker   0x4c, 0x0a, 0xe5, 0x44, 0x2d, 0xa7, 0x6e, 0xb3, 0x4a, 0xba, 0x0b, 0x87,
9703*6236dae4SAndroid Build Coastguard Worker   0x18, 0x5d, 0xaf, 0x3c, 0x03, 0x54, 0xb7, 0xb3, 0xdb, 0xdb, 0xe0, 0x35,
9704*6236dae4SAndroid Build Coastguard Worker   0x22, 0x09, 0x25, 0x01, 0x56, 0x40, 0x31, 0xc8, 0x25, 0xaa, 0xe9, 0x24,
9705*6236dae4SAndroid Build Coastguard Worker   0x49, 0x38, 0x13, 0xcd, 0x4c, 0xa7, 0x1b, 0x71, 0x8b, 0x4f, 0xfa, 0x77,
9706*6236dae4SAndroid Build Coastguard Worker   0xac, 0xbf, 0x75, 0xca, 0x3e, 0x16, 0xda, 0x07, 0x6e, 0x1b, 0x2d, 0x3c,
9707*6236dae4SAndroid Build Coastguard Worker   0x65, 0xad, 0xae, 0x8a, 0xd4, 0x34, 0x33, 0x52, 0xe4, 0x28, 0x01, 0xec,
9708*6236dae4SAndroid Build Coastguard Worker   0x0d, 0x75, 0xbd, 0x24, 0x9e, 0x40, 0xa6, 0x90, 0x72, 0xca, 0xae, 0xe9,
9709*6236dae4SAndroid Build Coastguard Worker   0xee, 0x1a, 0x17, 0x78, 0x41, 0xc8, 0x65, 0x26, 0x18, 0x00, 0xf1, 0x69,
9710*6236dae4SAndroid Build Coastguard Worker   0x97, 0x9a, 0xb2, 0xa1, 0xfa, 0x12, 0xcc, 0xc4, 0xd5, 0xa4, 0xed, 0xb9,
9711*6236dae4SAndroid Build Coastguard Worker   0x90, 0x40, 0xa7, 0xb9, 0x62, 0xcc, 0x74, 0xb9, 0xe3, 0xfa, 0x70, 0x86,
9712*6236dae4SAndroid Build Coastguard Worker   0x9e, 0x1a, 0x64, 0x5e, 0x84, 0x0b, 0x94, 0xfe, 0x5d, 0x18, 0x59, 0x46,
9713*6236dae4SAndroid Build Coastguard Worker   0xd2, 0xd2, 0x66, 0x05, 0x80, 0xf4, 0x10, 0x6c, 0x80, 0x0d, 0x21, 0xd1,
9714*6236dae4SAndroid Build Coastguard Worker   0xb6, 0xed, 0x7b, 0x22, 0xc0, 0x44, 0x29, 0x42, 0xc1, 0x7e, 0x0f, 0xb7,
9715*6236dae4SAndroid Build Coastguard Worker   0xfd, 0xa4, 0x17, 0x7d, 0x99, 0xde, 0x26, 0x65, 0xfa, 0x6f, 0xcb, 0xaa,
9716*6236dae4SAndroid Build Coastguard Worker   0xe5, 0xf0, 0xe7, 0x42, 0x09, 0xf0, 0xa5, 0x74, 0x68, 0x63, 0xe3, 0x23,
9717*6236dae4SAndroid Build Coastguard Worker   0x84, 0xfa, 0x41, 0xbc, 0xba, 0xa6, 0xe5, 0x4d, 0xec, 0x4a, 0x52, 0x65,
9718*6236dae4SAndroid Build Coastguard Worker   0x9b, 0x3b, 0x91, 0x13, 0x5f, 0xd3, 0x76, 0xe0, 0xa2, 0x35, 0x21, 0x21,
9719*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x03, 0x5d, 0x54, 0x87, 0xa9, 0x03, 0x96, 0x24, 0xc2, 0x85, 0xae,
9720*6236dae4SAndroid Build Coastguard Worker   0x46, 0xf2, 0x58, 0x48, 0x9e, 0x48, 0xe7, 0x53, 0x0c, 0xd3, 0x7f, 0x76,
9721*6236dae4SAndroid Build Coastguard Worker   0xd0, 0x69, 0xb5, 0x0b, 0xf6, 0x30, 0x09, 0x66, 0x48, 0x31, 0xba, 0x8c,
9722*6236dae4SAndroid Build Coastguard Worker   0x9a, 0x26, 0xae, 0x5c, 0x41, 0x78, 0xe5, 0x81, 0xdd, 0xc8, 0x2a, 0x0f,
9723*6236dae4SAndroid Build Coastguard Worker   0x72, 0xe6, 0x6d, 0x96, 0x6f, 0x6f, 0x09, 0x45, 0x97, 0xf5, 0xf5, 0x7f,
9724*6236dae4SAndroid Build Coastguard Worker   0xe9, 0xe3, 0x7f, 0xac, 0xbf, 0x3f, 0x3a, 0x78, 0xf5, 0xf6, 0xc8, 0x12,
9725*6236dae4SAndroid Build Coastguard Worker   0xf3, 0x40, 0xdb, 0xdd, 0xc5, 0xc9, 0x25, 0x4e, 0x28, 0x98, 0xe4, 0x20,
9726*6236dae4SAndroid Build Coastguard Worker   0x36, 0x9b, 0x4a, 0x58, 0xba, 0x94, 0xf1, 0x95, 0x03, 0x7a, 0x85, 0x93,
9727*6236dae4SAndroid Build Coastguard Worker   0x4c, 0x4c, 0xa1, 0x83, 0x0b, 0xae, 0xa8, 0xa1, 0x97, 0xd6, 0xa9, 0x2a,
9728*6236dae4SAndroid Build Coastguard Worker   0xf4, 0xee, 0x1a, 0x8c, 0x93, 0xfc, 0xda, 0xd4, 0x03, 0xf2, 0x40, 0x70,
9729*6236dae4SAndroid Build Coastguard Worker   0x4a, 0x67, 0x25, 0x03, 0x7c, 0xd9, 0x1f, 0x0a, 0x99, 0x59, 0xb9, 0x68,
9730*6236dae4SAndroid Build Coastguard Worker   0x0d, 0xf7, 0xf7, 0x19, 0xaa, 0xf6, 0x70, 0x3e, 0x4b, 0x82, 0xbd, 0x21,
9731*6236dae4SAndroid Build Coastguard Worker   0xf2, 0x4b, 0xcd, 0xa2, 0xbb, 0xb9, 0x06, 0x18, 0x8e, 0x8e, 0xd5, 0x1b,
9732*6236dae4SAndroid Build Coastguard Worker   0x5c, 0x37, 0x3f, 0xe5, 0x63, 0x2a, 0x72, 0xe2, 0x19, 0xe3, 0xfd, 0x68,
9733*6236dae4SAndroid Build Coastguard Worker   0xf5, 0xe3, 0x9c, 0x63, 0x26, 0xd9, 0x70, 0x28, 0xed, 0xa9, 0x6e, 0x68,
9734*6236dae4SAndroid Build Coastguard Worker   0x32, 0xad, 0xef, 0x8d, 0x3a, 0x45, 0xee, 0xd0, 0x36, 0x85, 0x57, 0x3b,
9735*6236dae4SAndroid Build Coastguard Worker   0x9d, 0xb5, 0xae, 0xe9, 0xd3, 0xea, 0xb9, 0xad, 0x11, 0x96, 0x42, 0x5b,
9736*6236dae4SAndroid Build Coastguard Worker   0x03, 0xc9, 0x22, 0xb0, 0x2f, 0x65, 0x8a, 0xca, 0x38, 0xe7, 0xd1, 0x3b,
9737*6236dae4SAndroid Build Coastguard Worker   0xfd, 0x80, 0x4d, 0x36, 0xde, 0x94, 0x80, 0xed, 0x3d, 0x09, 0x48, 0xf4,
9738*6236dae4SAndroid Build Coastguard Worker   0x8d, 0xb4, 0xae, 0xd0, 0x40, 0x8d, 0xa6, 0x54, 0x43, 0xe6, 0xaa, 0x6b,
9739*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x14, 0x1d, 0x05, 0xab, 0x9d, 0xa8, 0xb3, 0xf6, 0x07, 0xfb, 0x2c,
9740*6236dae4SAndroid Build Coastguard Worker   0x0e, 0xa2, 0x0e, 0xb3, 0xd5, 0xc6, 0xc6, 0xf3, 0x07, 0x54, 0x01, 0xd3,
9741*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x11, 0xf4, 0x01, 0xf8, 0x73, 0x4f, 0x13, 0x50, 0xe6, 0x69, 0x06,
9742*6236dae4SAndroid Build Coastguard Worker   0x46, 0xcd, 0x6a, 0x74, 0x5b, 0xa2, 0x94, 0x15, 0xb1, 0x94, 0x08, 0x67,
9743*6236dae4SAndroid Build Coastguard Worker   0x92, 0x6d, 0x0a, 0x9b, 0xb4, 0x13, 0xca, 0x90, 0xeb, 0x45, 0xa7, 0xd6,
9744*6236dae4SAndroid Build Coastguard Worker   0x3b, 0x92, 0xb3, 0xbb, 0xa7, 0x2e, 0x87, 0xda, 0xc5, 0x0a, 0xff, 0x2e,
9745*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x2c, 0xc9, 0x38, 0xa8, 0x22, 0x50, 0x5f, 0xb1, 0x2a, 0xa3, 0x8e,
9746*6236dae4SAndroid Build Coastguard Worker   0xa3, 0x46, 0xc7, 0x70, 0xfa, 0x2c, 0xe2, 0x14, 0x5d, 0x63, 0x1d, 0x98,
9747*6236dae4SAndroid Build Coastguard Worker   0x11, 0x58, 0x8b, 0x61, 0xca, 0xbc, 0xe2, 0x45, 0x5e, 0x44, 0xe0, 0xf6,
9748*6236dae4SAndroid Build Coastguard Worker   0x9a, 0xb7, 0xde, 0x4a, 0x12, 0xf1, 0xc6, 0xc0, 0x06, 0xb3, 0x69, 0x64,
9749*6236dae4SAndroid Build Coastguard Worker   0x0d, 0x19, 0x46, 0x5b, 0x05, 0x96, 0x1b, 0x17, 0x79, 0xd7, 0x83, 0xa0,
9750*6236dae4SAndroid Build Coastguard Worker   0xa7, 0x62, 0x5f, 0x76, 0xbf, 0x53, 0xad, 0xc8, 0x64, 0x5a, 0xc0, 0xa5,
9751*6236dae4SAndroid Build Coastguard Worker   0x3c, 0x18, 0xa7, 0x26, 0xca, 0xc7, 0x6f, 0xea, 0x81, 0xb6, 0x1f, 0xc7,
9752*6236dae4SAndroid Build Coastguard Worker   0x83, 0x37, 0xbf, 0x05, 0x34, 0x27, 0xe3, 0x9a, 0xcd, 0x00, 0x1e, 0xed,
9753*6236dae4SAndroid Build Coastguard Worker   0x32, 0x74, 0x8b, 0xb7, 0x24, 0xb8, 0xcc, 0x44, 0x16, 0x0a, 0x22, 0x7e,
9754*6236dae4SAndroid Build Coastguard Worker   0xc6, 0xb9, 0x4b, 0x95, 0x4b, 0xab, 0x2b, 0xd8, 0x16, 0xd7, 0x1b, 0x29,
9755*6236dae4SAndroid Build Coastguard Worker   0x6d, 0x05, 0xe0, 0x50, 0x7a, 0x46, 0x1a, 0x61, 0x96, 0x71, 0x75, 0x0a,
9756*6236dae4SAndroid Build Coastguard Worker   0x50, 0x98, 0x1a, 0x59, 0x62, 0x4e, 0x30, 0x56, 0xd2, 0xd8, 0x0a, 0x3a,
9757*6236dae4SAndroid Build Coastguard Worker   0x54, 0xbd, 0xd3, 0x9c, 0xdd, 0x54, 0x85, 0xb6, 0x9a, 0x88, 0x86, 0x7e,
9758*6236dae4SAndroid Build Coastguard Worker   0x83, 0x9f, 0x11, 0xb7, 0x83, 0xab, 0x78, 0x44, 0x21, 0xce, 0x3d, 0xd6,
9759*6236dae4SAndroid Build Coastguard Worker   0xc7, 0xf0, 0xbd, 0x88, 0xf5, 0x3f, 0x70, 0x95, 0x70, 0xdf, 0x4d, 0x24,
9760*6236dae4SAndroid Build Coastguard Worker   0x4e, 0x65, 0x29, 0x5f, 0xf9, 0x08, 0x36, 0xbc, 0x52, 0x0b, 0x27, 0xae,
9761*6236dae4SAndroid Build Coastguard Worker   0xd0, 0x93, 0x8c, 0x6a, 0x43, 0x37, 0xf5, 0x4d, 0xc6, 0xf4, 0xe7, 0x24,
9762*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x04, 0xee, 0x0d, 0x5a, 0x12, 0xd7, 0x16, 0x79, 0x5e, 0xdc, 0x34,
9763*6236dae4SAndroid Build Coastguard Worker   0x61, 0x7c, 0x0f, 0x54, 0x3b, 0x11, 0x05, 0x2c, 0x23, 0x47, 0x2e, 0xdf,
9764*6236dae4SAndroid Build Coastguard Worker   0x46, 0x57, 0x8a, 0xbd, 0xc6, 0xbd, 0x73, 0x11, 0x1b, 0x87, 0x56, 0x91,
9765*6236dae4SAndroid Build Coastguard Worker   0x28, 0x82, 0x84, 0x97, 0x49, 0xc0, 0x16, 0x7d, 0x69, 0x62, 0x3f, 0xc8,
9766*6236dae4SAndroid Build Coastguard Worker   0x60, 0x39, 0x0a, 0x05, 0x96, 0x0f, 0x88, 0x38, 0x82, 0x5f, 0xe4, 0x0b,
9767*6236dae4SAndroid Build Coastguard Worker   0x4d, 0xf4, 0x66, 0x76, 0x74, 0x90, 0x55, 0x1c, 0xb6, 0xe8, 0xb8, 0xbf,
9768*6236dae4SAndroid Build Coastguard Worker   0xf0, 0xd7, 0x69, 0x09, 0xba, 0x55, 0x01, 0xeb, 0xfe, 0x66, 0x57, 0x03,
9769*6236dae4SAndroid Build Coastguard Worker   0xc0, 0x0a, 0x94, 0xc7, 0x7a, 0xae, 0x9c, 0x52, 0x3c, 0x46, 0x3c, 0x75,
9770*6236dae4SAndroid Build Coastguard Worker   0x2f, 0x72, 0xcc, 0xd5, 0xd3, 0x48, 0x5b, 0x7d, 0x53, 0x14, 0x5d, 0xf6,
9771*6236dae4SAndroid Build Coastguard Worker   0x0b, 0xb5, 0x38, 0xb4, 0x4b, 0x4e, 0x08, 0xe0, 0x3e, 0x0c, 0x29, 0xf9,
9772*6236dae4SAndroid Build Coastguard Worker   0xf5, 0x3e, 0xbc, 0x45, 0xfc, 0x4d, 0x0e, 0xbe, 0x92, 0xf6, 0x83, 0xde,
9773*6236dae4SAndroid Build Coastguard Worker   0x75, 0xd8, 0xcf, 0x41, 0x9d, 0xd0, 0xfa, 0xcc, 0xb4, 0xcf, 0x33, 0x74,
9774*6236dae4SAndroid Build Coastguard Worker   0x27, 0x1a, 0xe9, 0x1c, 0xaa, 0xcb, 0x33, 0x39, 0xae, 0xb6, 0xdb, 0x68,
9775*6236dae4SAndroid Build Coastguard Worker   0x2b, 0x4f, 0x10, 0x0d, 0x94, 0xea, 0x0a, 0x55, 0x7c, 0x54, 0x3d, 0xc9,
9776*6236dae4SAndroid Build Coastguard Worker   0xb1, 0xf4, 0x49, 0xb8, 0x2f, 0x25, 0xd2, 0xec, 0xdd, 0xf9, 0xc9, 0xdb,
9777*6236dae4SAndroid Build Coastguard Worker   0x6e, 0xeb, 0xd4, 0x89, 0xae, 0x6c, 0xfd, 0x30, 0x46, 0xe2, 0x24, 0xc1,
9778*6236dae4SAndroid Build Coastguard Worker   0x4e, 0xdd, 0x9c, 0xc4, 0xcb, 0xe4, 0x30, 0x59, 0x10, 0x0c, 0xdf, 0x8a,
9779*6236dae4SAndroid Build Coastguard Worker   0x94, 0xeb, 0x4a, 0x32, 0x6d, 0x29, 0x40, 0x21, 0xea, 0x6b, 0x62, 0xb2,
9780*6236dae4SAndroid Build Coastguard Worker   0xfa, 0xb9, 0xbf, 0xc8, 0x83, 0x15, 0x6d, 0x3d, 0xb9, 0xe7, 0xe0, 0xda,
9781*6236dae4SAndroid Build Coastguard Worker   0x01, 0x59, 0xb3, 0xa8, 0x03, 0xec, 0xb9, 0x35, 0xb7, 0xec, 0x57, 0x79,
9782*6236dae4SAndroid Build Coastguard Worker   0x29, 0x28, 0x5d, 0xb8, 0x4b, 0x78, 0xf4, 0xaa, 0xb8, 0xcd, 0xe3, 0x13,
9783*6236dae4SAndroid Build Coastguard Worker   0x84, 0x96, 0x8a, 0x4e, 0x8a, 0x4b, 0x3c, 0x40, 0xef, 0xc2, 0x9e, 0xc2,
9784*6236dae4SAndroid Build Coastguard Worker   0x0f, 0x67, 0xef, 0xa2, 0x55, 0x54, 0x54, 0x10, 0x3d, 0x51, 0xba, 0x62,
9785*6236dae4SAndroid Build Coastguard Worker   0xe0, 0xa3, 0x6b, 0x62, 0x87, 0x57, 0xac, 0x0b, 0xca, 0x6c, 0xba, 0xd1,
9786*6236dae4SAndroid Build Coastguard Worker   0xd1, 0x77, 0x07, 0x6f, 0xcf, 0x4e, 0x8e, 0x7e, 0x60, 0x53, 0xdc, 0x5b,
9787*6236dae4SAndroid Build Coastguard Worker   0x0e, 0xfe, 0xf8, 0x0b, 0xe7, 0x22, 0xa2, 0x98, 0x36, 0xa6, 0x8e, 0xc0,
9788*6236dae4SAndroid Build Coastguard Worker   0x4c, 0xee, 0xe7, 0x29, 0x06, 0x2c, 0x15, 0x2d, 0xc8, 0xe3, 0xd9, 0x71,
9789*6236dae4SAndroid Build Coastguard Worker   0xac, 0xbd, 0x27, 0x48, 0x60, 0x0d, 0xb2, 0x1c, 0xdd, 0x08, 0xe4, 0x28,
9790*6236dae4SAndroid Build Coastguard Worker   0x30, 0xfd, 0xdd, 0xbf, 0xf6, 0xc3, 0xf7, 0xe6, 0x38, 0x74, 0xa3, 0x77,
9791*6236dae4SAndroid Build Coastguard Worker   0x5a, 0xcc, 0xd0, 0xa5, 0x4d, 0xc7, 0x23, 0xf8, 0x2a, 0xbb, 0xa4, 0x18,
9792*6236dae4SAndroid Build Coastguard Worker   0x7c, 0x2b, 0x01, 0x1c, 0xb9, 0x43, 0x2e, 0x7d, 0xaf, 0xf1, 0x0c, 0x36,
9793*6236dae4SAndroid Build Coastguard Worker   0xbc, 0x96, 0xfc, 0x8c, 0x2a, 0x1d, 0xb3, 0x2b, 0x7e, 0xee, 0xf5, 0xc8,
9794*6236dae4SAndroid Build Coastguard Worker   0x12, 0x92, 0x76, 0x91, 0x4a, 0xa3, 0xbd, 0xe4, 0x02, 0x29, 0x95, 0x46,
9795*6236dae4SAndroid Build Coastguard Worker   0x63, 0x8c, 0x37, 0x50, 0xac, 0x5d, 0xe6, 0x10, 0xbe, 0x14, 0x44, 0xf9,
9796*6236dae4SAndroid Build Coastguard Worker   0x32, 0x52, 0x7f, 0x2f, 0xea, 0xc4, 0xb3, 0x68, 0xaf, 0xf3, 0x07, 0x2b,
9797*6236dae4SAndroid Build Coastguard Worker   0x1c, 0xb4, 0x47, 0xe5, 0x5e, 0x95, 0x82, 0x40, 0x7f, 0x20, 0xe4, 0xe6,
9798*6236dae4SAndroid Build Coastguard Worker   0x86, 0x41, 0x5a, 0x83, 0x71, 0x5f, 0x51, 0xa9, 0xad, 0x30, 0x81, 0x4a,
9799*6236dae4SAndroid Build Coastguard Worker   0xe9, 0x6a, 0xed, 0x98, 0x47, 0x78, 0xd9, 0x01, 0x4b, 0x82, 0xe0, 0x10,
9800*6236dae4SAndroid Build Coastguard Worker   0xc3, 0x73, 0x30, 0xbb, 0xbc, 0x0c, 0x00, 0x29, 0xe7, 0xb8, 0x5e, 0x72,
9801*6236dae4SAndroid Build Coastguard Worker   0x60, 0xa2, 0x3f, 0x70, 0xa5, 0x8a, 0x38, 0x42, 0x07, 0xe4, 0xe8, 0x50,
9802*6236dae4SAndroid Build Coastguard Worker   0x62, 0x88, 0x36, 0x8f, 0x2c, 0x46, 0x68, 0x72, 0x1c, 0x68, 0x4c, 0x94,
9803*6236dae4SAndroid Build Coastguard Worker   0xf0, 0x9f, 0xfc, 0xe1, 0x58, 0x7b, 0x5e, 0xf9, 0x7c, 0xc5, 0xa4, 0xcb,
9804*6236dae4SAndroid Build Coastguard Worker   0x74, 0x44, 0xb9, 0x24, 0xe9, 0xdf, 0x61, 0x63, 0x04, 0x76, 0x0f, 0xe7,
9805*6236dae4SAndroid Build Coastguard Worker   0xdf, 0x8d, 0x56, 0xf6, 0x57, 0xe4, 0xb9, 0x4e, 0x50, 0x45, 0xe6, 0x77,
9806*6236dae4SAndroid Build Coastguard Worker   0x38, 0xc5, 0x82, 0xad, 0xa3, 0xa1, 0x71, 0xe3, 0xa3, 0xf2, 0x9d, 0x8d,
9807*6236dae4SAndroid Build Coastguard Worker   0xe0, 0x26, 0x14, 0xaf, 0x2e, 0x1c, 0xb4, 0xb1, 0xb4, 0xb4, 0xe9, 0x8a,
9808*6236dae4SAndroid Build Coastguard Worker   0x43, 0xac, 0xad, 0xc0, 0xd0, 0xd4, 0x75, 0xe6, 0x3c, 0xd7, 0x95, 0x7f,
9809*6236dae4SAndroid Build Coastguard Worker   0xd7, 0x19, 0x68, 0xbb, 0xd3, 0x64, 0x4c, 0x01, 0x47, 0x8a, 0x1c, 0x64,
9810*6236dae4SAndroid Build Coastguard Worker   0x23, 0xfb, 0xd5, 0x79, 0x07, 0x8f, 0xeb, 0x5d, 0xd0, 0x89, 0x43, 0x96,
9811*6236dae4SAndroid Build Coastguard Worker   0x48, 0x10, 0x7a, 0xa4, 0x0d, 0xb5, 0x41, 0xf9, 0x02, 0xbe, 0x07, 0xde,
9812*6236dae4SAndroid Build Coastguard Worker   0xe9, 0xfa, 0xad, 0x95, 0x2f, 0xe3, 0xa2, 0x40, 0x47, 0x35, 0xee, 0xe1,
9813*6236dae4SAndroid Build Coastguard Worker   0xbc, 0x09, 0x68, 0x74, 0xc2, 0x32, 0x32, 0xdf, 0xdb, 0x26, 0xb2, 0x48,
9814*6236dae4SAndroid Build Coastguard Worker   0x36, 0x03, 0x3e, 0x29, 0xba, 0x85, 0x38, 0x21, 0xba, 0x73, 0xe0, 0xb6,
9815*6236dae4SAndroid Build Coastguard Worker   0x44, 0xce, 0x6b, 0x50, 0xcf, 0xc2, 0x9d, 0x48, 0xcc, 0x58, 0x0b, 0x69,
9816*6236dae4SAndroid Build Coastguard Worker   0xff, 0xf0, 0x18, 0x27, 0x25, 0x29, 0x3a, 0xc0, 0x46, 0xa6, 0xa2, 0x96,
9817*6236dae4SAndroid Build Coastguard Worker   0x98, 0x44, 0x02, 0x40, 0xd4, 0xd2, 0x77, 0xd9, 0x88, 0x9d, 0x9e, 0xab,
9818*6236dae4SAndroid Build Coastguard Worker   0x65, 0xf0, 0x55, 0x5a, 0x98, 0x35, 0xbd, 0xf9, 0x8d, 0x20, 0x0c, 0x69,
9819*6236dae4SAndroid Build Coastguard Worker   0xc3, 0x65, 0x2c, 0xc1, 0x78, 0xe7, 0x37, 0x22, 0x11, 0x02, 0x95, 0xc8,
9820*6236dae4SAndroid Build Coastguard Worker   0xaf, 0x24, 0x0b, 0xc1, 0x8d, 0x93, 0x0b, 0xae, 0x08, 0xfb, 0xed, 0xc5,
9821*6236dae4SAndroid Build Coastguard Worker   0xc0, 0xd5, 0xe4, 0x2e, 0xcd, 0x5d, 0xcb, 0x28, 0xb8, 0x56, 0xf5, 0x02,
9822*6236dae4SAndroid Build Coastguard Worker   0xca, 0xbc, 0xaa, 0xe7, 0x7c, 0xd6, 0x4d, 0x9a, 0x21, 0x05, 0x68, 0x30,
9823*6236dae4SAndroid Build Coastguard Worker   0xce, 0xaf, 0x43, 0x48, 0x06, 0x6b, 0xd7, 0x8c, 0xed, 0x2f, 0x88, 0x75,
9824*6236dae4SAndroid Build Coastguard Worker   0xd0, 0x6d, 0xcc, 0xd6, 0x87, 0x73, 0x77, 0x2f, 0x29, 0xa6, 0x18, 0x7f,
9825*6236dae4SAndroid Build Coastguard Worker   0x80, 0xc1, 0xaf, 0xb5, 0x08, 0x01, 0x47, 0x4e, 0xef, 0xd2, 0xe1, 0xac,
9826*6236dae4SAndroid Build Coastguard Worker   0x0e, 0x02, 0x60, 0x9c, 0x5f, 0x29, 0x16, 0x3f, 0x4f, 0x69, 0x95, 0x0e,
9827*6236dae4SAndroid Build Coastguard Worker   0xb1, 0x40, 0x58, 0x77, 0xce, 0x14, 0x69, 0x7b, 0xaf, 0xb3, 0x26, 0x99,
9828*6236dae4SAndroid Build Coastguard Worker   0x3d, 0x94, 0x7b, 0x60, 0x21, 0xb8, 0x3d, 0x25, 0x0b, 0xb3, 0x04, 0x65,
9829*6236dae4SAndroid Build Coastguard Worker   0xca, 0x65, 0xca, 0x01, 0x0d, 0x9b, 0xe9, 0x16, 0xfc, 0x3c, 0x9c, 0xaf,
9830*6236dae4SAndroid Build Coastguard Worker   0x32, 0xf8, 0xf5, 0xd7, 0xec, 0xae, 0x77, 0x3e, 0x2e, 0xac, 0x3d, 0x54,
9831*6236dae4SAndroid Build Coastguard Worker   0x4f, 0x7e, 0xe5, 0x89, 0x21, 0xef, 0xcb, 0xc5, 0x05, 0x79, 0x8c, 0x0e,
9832*6236dae4SAndroid Build Coastguard Worker   0x6e, 0xe0, 0x60, 0x92, 0x2f, 0x49, 0x5f, 0x55, 0xe2, 0x7b, 0xa5, 0x7b,
9833*6236dae4SAndroid Build Coastguard Worker   0xc9, 0xb8, 0x8e, 0xab, 0x9b, 0x61, 0xb8, 0xfa, 0x55, 0xa0, 0x50, 0x0c,
9834*6236dae4SAndroid Build Coastguard Worker   0xc0, 0xe7, 0x01, 0x3c, 0xdc, 0xbf, 0x19, 0xee, 0xa9, 0xa5, 0x0f, 0x7c,
9835*6236dae4SAndroid Build Coastguard Worker   0xa9, 0xe2, 0xcd, 0x5b, 0xec, 0x41, 0x75, 0x9f, 0x0f, 0xaf, 0x5e, 0xbd,
9836*6236dae4SAndroid Build Coastguard Worker   0xeb, 0x87, 0x87, 0x26, 0xa6, 0xa6, 0xe9, 0x93, 0x87, 0x29, 0xa1, 0xa7,
9837*6236dae4SAndroid Build Coastguard Worker   0xe1, 0x5a, 0xc6, 0x46, 0x23, 0xec, 0xd8, 0x95, 0x86, 0x2c, 0xe8, 0x22,
9838*6236dae4SAndroid Build Coastguard Worker   0x39, 0x70, 0x7e, 0x1b, 0x1e, 0xae, 0xf9, 0x8a, 0x71, 0xba, 0xe2, 0x55,
9839*6236dae4SAndroid Build Coastguard Worker   0xcb, 0x62, 0x48, 0x74, 0x31, 0xca, 0xa0, 0x8d, 0x13, 0xa4, 0x08, 0xaf,
9840*6236dae4SAndroid Build Coastguard Worker   0x29, 0x3c, 0x5c, 0x7d, 0x85, 0x21, 0x3b, 0xe0, 0x2a, 0x19, 0xb1, 0x9c,
9841*6236dae4SAndroid Build Coastguard Worker   0x9f, 0xbe, 0x3a, 0x00, 0xe6, 0x18, 0x67, 0x0d, 0x52, 0x59, 0x90, 0x33,
9842*6236dae4SAndroid Build Coastguard Worker   0xf9, 0xa5, 0x26, 0x01, 0x6a, 0x96, 0x82, 0x46, 0x56, 0xbd, 0xc1, 0x0e,
9843*6236dae4SAndroid Build Coastguard Worker   0xaf, 0x92, 0xf2, 0xb0, 0xc8, 0x6f, 0xc2, 0xb3, 0x6a, 0xe5, 0x54, 0x32,
9844*6236dae4SAndroid Build Coastguard Worker   0xbc, 0x86, 0xf3, 0xdd, 0x21, 0xbc, 0x9d, 0x0c, 0x6b, 0xea, 0x79, 0x40,
9845*6236dae4SAndroid Build Coastguard Worker   0x2d, 0x48, 0x34, 0x45, 0x3c, 0x3c, 0xdc, 0x2a, 0x86, 0x8b, 0xa3, 0xa3,
9846*6236dae4SAndroid Build Coastguard Worker   0x2f, 0x0f, 0x5f, 0x1d, 0x1f, 0xae, 0xb5, 0x67, 0xf2, 0x8a, 0x10, 0xac,
9847*6236dae4SAndroid Build Coastguard Worker   0x44, 0xf6, 0xb0, 0x96, 0xc0, 0x1b, 0x65, 0xd8, 0xce, 0x99, 0x04, 0x3d,
9848*6236dae4SAndroid Build Coastguard Worker   0x2c, 0xf6, 0x27, 0x6b, 0x8b, 0x73, 0x3e, 0x39, 0x41, 0x04, 0x09, 0x6a,
9849*6236dae4SAndroid Build Coastguard Worker   0xde, 0x4d, 0xf2, 0xe9, 0x5a, 0x33, 0x7a, 0x26, 0xe9, 0x04, 0x23, 0xe0,
9850*6236dae4SAndroid Build Coastguard Worker   0x46, 0xbb, 0x90, 0x1e, 0x04, 0xaf, 0xa9, 0xbb, 0x1c, 0x7c, 0x2c, 0x0e,
9851*6236dae4SAndroid Build Coastguard Worker   0x0f, 0x37, 0x42, 0xa5, 0x1a, 0x15, 0x15, 0xae, 0x9d, 0xf3, 0x3c, 0xb7,
9852*6236dae4SAndroid Build Coastguard Worker   0x97, 0x55, 0x82, 0x38, 0xb6, 0x24, 0x8a, 0x68, 0xba, 0x31, 0xde, 0xf1,
9853*6236dae4SAndroid Build Coastguard Worker   0xfd, 0x83, 0xfe, 0x89, 0xd7, 0x62, 0x4d, 0x65, 0x13, 0x5c, 0x10, 0x68,
9854*6236dae4SAndroid Build Coastguard Worker   0x68, 0x32, 0x40, 0x50, 0xf8, 0xab, 0x06, 0x2d, 0xf9, 0xf0, 0xfd, 0xc1,
9855*6236dae4SAndroid Build Coastguard Worker   0x5b, 0x60, 0x33, 0x0e, 0xb7, 0xfb, 0x39, 0xaf, 0x44, 0x1a, 0xf8, 0x31,
9856*6236dae4SAndroid Build Coastguard Worker   0xcd, 0xc2, 0xdb, 0x6a, 0x69, 0xca, 0x16, 0xfe, 0x84, 0x76, 0x6c, 0xe3,
9857*6236dae4SAndroid Build Coastguard Worker   0x0e, 0x3c, 0x1c, 0x5e, 0xf4, 0x46, 0x78, 0xd3, 0x3f, 0xef, 0xeb, 0x7f,
9858*6236dae4SAndroid Build Coastguard Worker   0x74, 0x4e, 0x74, 0x22, 0xd3, 0xaa, 0x01, 0xcf, 0xa7, 0x8f, 0x03, 0xcf,
9859*6236dae4SAndroid Build Coastguard Worker   0x6d, 0xf1, 0x7f, 0xd6, 0xb7, 0xcc, 0x0b, 0x06, 0xe7, 0x43, 0xe9, 0xd3,
9860*6236dae4SAndroid Build Coastguard Worker   0x0b, 0xbc, 0xb6, 0x2d, 0xaf, 0x6d, 0x2f, 0x7a, 0x2d, 0xf0, 0x5e, 0x3f,
9861*6236dae4SAndroid Build Coastguard Worker   0x0e, 0xf5, 0x04, 0xf2, 0x24, 0x40, 0x16, 0xc8, 0x12, 0x5e, 0xd8, 0xe3,
9862*6236dae4SAndroid Build Coastguard Worker   0xe6, 0xd5, 0xbb, 0xe6, 0x00, 0x26, 0x9a, 0x8c, 0xbf, 0x89, 0x15, 0x25,
9863*6236dae4SAndroid Build Coastguard Worker   0x44, 0xb4, 0x30, 0xc7, 0x2a, 0x0b, 0xb8, 0x43, 0xcf, 0x6e, 0x9e, 0x39,
9864*6236dae4SAndroid Build Coastguard Worker   0xb1, 0x74, 0xdc, 0x48, 0xfa, 0x91, 0xd1, 0xfd, 0xbd, 0x37, 0xd4, 0x66,
9865*6236dae4SAndroid Build Coastguard Worker   0x0e, 0x2f, 0xca, 0x58, 0xd4, 0xdf, 0xec, 0x06, 0xba, 0xf8, 0xcd, 0xdf,
9866*6236dae4SAndroid Build Coastguard Worker   0xcb, 0x93, 0xa4, 0xbc, 0x4c, 0x03, 0xd9, 0x1e, 0x1e, 0xad, 0xcc, 0x52,
9867*6236dae4SAndroid Build Coastguard Worker   0x6d, 0x32, 0x0e, 0xdc, 0x9e, 0x63, 0x7c, 0x9d, 0xa3, 0xda, 0x5d, 0x09,
9868*6236dae4SAndroid Build Coastguard Worker   0x6e, 0xd3, 0x8f, 0xca, 0x79, 0xe2, 0x0d, 0xd6, 0xba, 0xf5, 0xd5, 0x97,
9869*6236dae4SAndroid Build Coastguard Worker   0xde, 0x34, 0x80, 0x5b, 0x7f, 0x46, 0xd9, 0x6d, 0x04, 0xd8, 0x28, 0x75,
9870*6236dae4SAndroid Build Coastguard Worker   0x65, 0xd7, 0xea, 0x4d, 0x96, 0x44, 0x97, 0x3f, 0x67, 0x53, 0x02, 0x07,
9871*6236dae4SAndroid Build Coastguard Worker   0xc1, 0xea, 0x86, 0x35, 0xba, 0xbb, 0x4d, 0x22, 0x75, 0xf8, 0x73, 0x3c,
9872*6236dae4SAndroid Build Coastguard Worker   0x21, 0x23, 0xf8, 0x16, 0x53, 0xe2, 0x2d, 0x46, 0xec, 0xfb, 0xfd, 0x93,
9873*6236dae4SAndroid Build Coastguard Worker   0x47, 0x13, 0x42, 0x43, 0xfc, 0x8b, 0xab, 0x0c, 0xc8, 0xf2, 0x94, 0xff,
9874*6236dae4SAndroid Build Coastguard Worker   0x2c, 0xb3, 0x31, 0xf8, 0xc2, 0xc7, 0x6f, 0xbf, 0x0c, 0xcf, 0x86, 0x46,
9875*6236dae4SAndroid Build Coastguard Worker   0x1b, 0xa5, 0x88, 0x6e, 0xa4, 0xad, 0x10, 0x6f, 0xb3, 0x1c, 0x4c, 0xe4,
9876*6236dae4SAndroid Build Coastguard Worker   0x11, 0xdc, 0x90, 0xe3, 0x29, 0xdf, 0x90, 0xf3, 0xc7, 0x3e, 0xc3, 0x16,
9877*6236dae4SAndroid Build Coastguard Worker   0x0a, 0xfc, 0x1f, 0x7c, 0xee, 0x4a, 0xe5, 0xf8, 0xd9, 0x6c, 0x30, 0x06,
9878*6236dae4SAndroid Build Coastguard Worker   0xda, 0xf7, 0x67, 0x17, 0x17, 0xd9, 0x5d, 0x74, 0x92, 0x55, 0xb5, 0x08,
9879*6236dae4SAndroid Build Coastguard Worker   0x49, 0xb2, 0x84, 0x38, 0x98, 0x13, 0xa8, 0x35, 0x76, 0x6f, 0x09, 0xae,
9880*6236dae4SAndroid Build Coastguard Worker   0xfc, 0xa0, 0x13, 0xda, 0x28, 0x10, 0xb6, 0xc8, 0x4a, 0xac, 0xd9, 0x75,
9881*6236dae4SAndroid Build Coastguard Worker   0xa6, 0xfc, 0xad, 0x6a, 0x76, 0x11, 0xcf, 0xdb, 0xbc, 0xbb, 0xb4, 0xf2,
9882*6236dae4SAndroid Build Coastguard Worker   0x6d, 0xde, 0xfe, 0xd9, 0xbb, 0xa3, 0xaf, 0x4e, 0xf5, 0x3f, 0xcb, 0x50,
9883*6236dae4SAndroid Build Coastguard Worker   0xb4, 0xcf, 0xab, 0xc6, 0xff, 0xb8, 0x25, 0x4c, 0x88, 0x5a, 0x86, 0x97,
9884*6236dae4SAndroid Build Coastguard Worker   0xbf, 0xed, 0x77, 0x42, 0x2e, 0x5f, 0x1d, 0xa6, 0xcb, 0x28, 0x8a, 0x7e,
9885*6236dae4SAndroid Build Coastguard Worker   0x36, 0xa5, 0x2b, 0x6e, 0x28, 0xfe, 0x0b, 0x7f, 0x62, 0x98, 0xb7, 0xcf,
9886*6236dae4SAndroid Build Coastguard Worker   0x36, 0x69, 0x11, 0x82, 0x9e, 0x43, 0xb7, 0x86, 0xfe, 0x67, 0xe1, 0x5c,
9887*6236dae4SAndroid Build Coastguard Worker   0xa5, 0x12, 0x7a, 0x8e, 0x76, 0x44, 0xe5, 0xe5, 0x7d, 0x06, 0x14, 0x7e,
9888*6236dae4SAndroid Build Coastguard Worker   0xcf, 0x09, 0x5b, 0x67, 0xe2, 0x81, 0x58, 0x5b, 0x44, 0x92, 0x39, 0x84,
9889*6236dae4SAndroid Build Coastguard Worker   0x86, 0x9d, 0x0f, 0x82, 0xef, 0xe3, 0x45, 0xf9, 0x96, 0x2e, 0xc8, 0xf0,
9890*6236dae4SAndroid Build Coastguard Worker   0x8b, 0x7c, 0x55, 0xcb, 0x15, 0x6a, 0xae, 0xd5, 0x85, 0xeb, 0xfa, 0x90,
9891*6236dae4SAndroid Build Coastguard Worker   0x67, 0x18, 0xcf, 0x9a, 0x83, 0x79, 0xc2, 0xbf, 0x34, 0xa2, 0xb8, 0x30,
9892*6236dae4SAndroid Build Coastguard Worker   0x01, 0xd9, 0xd0, 0x38, 0x77, 0x7d, 0x4a, 0x45, 0xac, 0xe6, 0x8e, 0x75,
9893*6236dae4SAndroid Build Coastguard Worker   0x27, 0xc9, 0x8a, 0x55, 0xf3, 0x92, 0x9a, 0xa3, 0x36, 0xfe, 0x5c, 0xd5,
9894*6236dae4SAndroid Build Coastguard Worker   0xa3, 0x87, 0x24, 0x10, 0x3e, 0xb3, 0xc6, 0xe9, 0x42, 0x4e, 0x0d, 0x07,
9895*6236dae4SAndroid Build Coastguard Worker   0x8b, 0x99, 0xf0, 0x34, 0x1e, 0x92, 0x3d, 0x9e, 0x1d, 0x67, 0x0d, 0x38,
9896*6236dae4SAndroid Build Coastguard Worker   0xb2, 0x94, 0x8c, 0xfd, 0x74, 0x8b, 0xf6, 0x13, 0x81, 0x18, 0x63, 0xdc,
9897*6236dae4SAndroid Build Coastguard Worker   0x3b, 0xda, 0x67, 0x4b, 0xe9, 0xf3, 0x80, 0x73, 0x85, 0x87, 0x50, 0x48,
9898*6236dae4SAndroid Build Coastguard Worker   0x3f, 0xd7, 0xa6, 0x22, 0xcb, 0x9a, 0x62, 0xa8, 0xc9, 0x05, 0x2a, 0x6b,
9899*6236dae4SAndroid Build Coastguard Worker   0x89, 0x89, 0x98, 0x8d, 0x58, 0xaa, 0xfb, 0xa5, 0x5a, 0x25, 0x47, 0x1c,
9900*6236dae4SAndroid Build Coastguard Worker   0x78, 0x0c, 0x71, 0x66, 0x4a, 0x14, 0x13, 0xa5, 0x01, 0xfa, 0x5b, 0x31,
9901*6236dae4SAndroid Build Coastguard Worker   0x90, 0x4f, 0x69, 0x11, 0x0c, 0x87, 0xcc, 0x5e, 0xec, 0x68, 0x02, 0xa7,
9902*6236dae4SAndroid Build Coastguard Worker   0x77, 0x14, 0x74, 0xae, 0x10, 0xdc, 0xa8, 0xcd, 0x09, 0x50, 0xd0, 0xc0,
9903*6236dae4SAndroid Build Coastguard Worker   0xaa, 0xf1, 0x25, 0xcf, 0x21, 0x9b, 0x54, 0x01, 0x6f, 0x48, 0x4d, 0x6e,
9904*6236dae4SAndroid Build Coastguard Worker   0xae, 0x0e, 0xcf, 0xa8, 0x43, 0x38, 0x62, 0x1a, 0xba, 0xa3, 0xfc, 0x66,
9905*6236dae4SAndroid Build Coastguard Worker   0xb5, 0xa3, 0x47, 0x12, 0xb3, 0xe1, 0xb1, 0xc5, 0x49, 0x97, 0x04, 0x52,
9906*6236dae4SAndroid Build Coastguard Worker   0xb3, 0x4c, 0x94, 0xfa, 0x0b, 0xcd, 0x95, 0xee, 0x68, 0x26, 0x59, 0xc3,
9907*6236dae4SAndroid Build Coastguard Worker   0x11, 0x68, 0xc6, 0x94, 0x21, 0x03, 0x30, 0x7f, 0x9c, 0x5d, 0x47, 0x65,
9908*6236dae4SAndroid Build Coastguard Worker   0x87, 0xb8, 0x6b, 0x30, 0x64, 0xdc, 0x09, 0x1a, 0x66, 0x86, 0x00, 0xaa,
9909*6236dae4SAndroid Build Coastguard Worker   0x40, 0x35, 0x5d, 0x2f, 0xfa, 0x09, 0x9b, 0x21, 0x52, 0xcd, 0x06, 0x55,
9910*6236dae4SAndroid Build Coastguard Worker   0x9d, 0xd5, 0x33, 0xff, 0x40, 0x0f, 0x34, 0x32, 0x46, 0xb0, 0x88, 0x64,
9911*6236dae4SAndroid Build Coastguard Worker   0x68, 0xe0, 0x66, 0x58, 0xec, 0x42, 0x72, 0xb5, 0x60, 0x42, 0x79, 0x4d,
9912*6236dae4SAndroid Build Coastguard Worker   0xdd, 0x1a, 0x39, 0x4b, 0x7d, 0x40, 0x18, 0x6b, 0xe3, 0xe2, 0xd6, 0xc3,
9913*6236dae4SAndroid Build Coastguard Worker   0x4a, 0x45, 0x4b, 0xd9, 0xcc, 0xae, 0x89, 0x48, 0x01, 0x6f, 0xff, 0xf9,
9914*6236dae4SAndroid Build Coastguard Worker   0x1f, 0xfa, 0xcb, 0x8f, 0x48, 0xa9, 0x7f, 0x2a, 0xa5, 0xb4, 0xce, 0x24,
9915*6236dae4SAndroid Build Coastguard Worker   0xf1, 0x7c, 0xf9, 0xec, 0xe2, 0xfa, 0x33, 0x51, 0xe5, 0x27, 0x4c, 0x8e,
9916*6236dae4SAndroid Build Coastguard Worker   0x65, 0xd2, 0x20, 0x3a, 0x32, 0x0d, 0xf8, 0xe7, 0x9e, 0x51, 0x88, 0x64,
9917*6236dae4SAndroid Build Coastguard Worker   0x90, 0x04, 0x01, 0xbe, 0xc8, 0x68, 0x1d, 0xdc, 0x7b, 0xfe, 0x15, 0x64,
9918*6236dae4SAndroid Build Coastguard Worker   0xc3, 0x1f, 0xf2, 0x2e, 0x75, 0x41, 0x2c, 0x61, 0x26, 0x97, 0x14, 0x93,
9919*6236dae4SAndroid Build Coastguard Worker   0x41, 0xc0, 0x53, 0xda, 0xc5, 0x1f, 0x4a, 0xc1, 0x0a, 0x06, 0x9b, 0x5c,
9920*6236dae4SAndroid Build Coastguard Worker   0xe2, 0xb6, 0xfc, 0xf3, 0xb0, 0x81, 0xac, 0xb9, 0x91, 0xe2, 0x20, 0x6d,
9921*6236dae4SAndroid Build Coastguard Worker   0x60, 0x78, 0xc3, 0x38, 0x49, 0x39, 0x32, 0xce, 0xb0, 0x81, 0x42, 0x9e,
9922*6236dae4SAndroid Build Coastguard Worker   0x6a, 0x26, 0x48, 0x7b, 0xef, 0x09, 0x98, 0x54, 0x80, 0x7d, 0xf5, 0x65,
9923*6236dae4SAndroid Build Coastguard Worker   0xb2, 0x3e, 0x6c, 0x82, 0xc4, 0x9f, 0xff, 0xc1, 0xa9, 0xf6, 0xff, 0xf4,
9924*6236dae4SAndroid Build Coastguard Worker   0x6f, 0xfe, 0xd3, 0xf3, 0xa3, 0x3d, 0x9a, 0xd2, 0x9f, 0xe3, 0xea, 0x7e,
9925*6236dae4SAndroid Build Coastguard Worker   0x32, 0x28, 0xc6, 0x72, 0xf0, 0x90, 0xf8, 0x40, 0x40, 0xfd, 0x19, 0x73,
9926*6236dae4SAndroid Build Coastguard Worker   0x09, 0xe5, 0x3d, 0xc4, 0x0e, 0x0c, 0x67, 0x37, 0xd8, 0x10, 0x1b, 0xfd,
9927*6236dae4SAndroid Build Coastguard Worker   0x09, 0xc5, 0x90, 0xa1, 0x6e, 0xb0, 0x80, 0x14, 0x4e, 0xde, 0x9f, 0x23,
9928*6236dae4SAndroid Build Coastguard Worker   0x05, 0xc2, 0x04, 0x99, 0x40, 0x8e, 0xf6, 0x5b, 0x1b, 0x25, 0x31, 0x45,
9929*6236dae4SAndroid Build Coastguard Worker   0xbd, 0xc1, 0xa0, 0xee, 0x62, 0x3e, 0x4e, 0x8c, 0x17, 0x20, 0x04, 0x60,
9930*6236dae4SAndroid Build Coastguard Worker   0x8a, 0xf2, 0x02, 0xa6, 0xf9, 0x91, 0x60, 0x3a, 0xc4, 0x46, 0x3a, 0xe4,
9931*6236dae4SAndroid Build Coastguard Worker   0x9f, 0xc5, 0xe7, 0xf4, 0x33, 0x4d, 0xc7, 0xb4, 0x1d, 0xa5, 0xb4, 0x9c,
9932*6236dae4SAndroid Build Coastguard Worker   0xb8, 0xeb, 0x83, 0x16, 0x45, 0xa1, 0x0c, 0x6f, 0xb4, 0x85, 0x40, 0xce,
9933*6236dae4SAndroid Build Coastguard Worker   0x78, 0xf3, 0xa4, 0x3d, 0x98, 0x54, 0x97, 0xce, 0xb4, 0x79, 0x5b, 0x26,
9934*6236dae4SAndroid Build Coastguard Worker   0x98, 0xa5, 0x78, 0x99, 0xf6, 0xa2, 0x55, 0xb7, 0x37, 0xc9, 0x6e, 0x6f,
9935*6236dae4SAndroid Build Coastguard Worker   0xc3, 0xb3, 0x4f, 0xd3, 0x3b, 0xd8, 0x5b, 0xca, 0xb3, 0x35, 0x43, 0x80,
9936*6236dae4SAndroid Build Coastguard Worker   0x30, 0x4b, 0x4b, 0xec, 0xaa, 0x65, 0x7f, 0x29, 0xa5, 0x58, 0x36, 0x97,
9937*6236dae4SAndroid Build Coastguard Worker   0xc6, 0x8c, 0xbb, 0x78, 0xfa, 0x73, 0x3e, 0xaa, 0xd2, 0xe8, 0x23, 0xe3,
9938*6236dae4SAndroid Build Coastguard Worker   0x3e, 0x67, 0x37, 0xe9, 0xe2, 0x61, 0x88, 0xa8, 0xa8, 0x9e, 0x4e, 0xb8,
9939*6236dae4SAndroid Build Coastguard Worker   0x67, 0x97, 0x16, 0x7e, 0xb8, 0x30, 0xa6, 0x0c, 0x88, 0xcf, 0x19, 0x35,
9940*6236dae4SAndroid Build Coastguard Worker   0xbd, 0x87, 0x86, 0xe3, 0xf8, 0x2e, 0xb9, 0x8a, 0x25, 0xef, 0x15, 0x1d,
9941*6236dae4SAndroid Build Coastguard Worker   0xf3, 0xd9, 0x85, 0xb1, 0xa3, 0x6a, 0xac, 0x0c, 0xc7, 0xcc, 0x63, 0x1a,
9942*6236dae4SAndroid Build Coastguard Worker   0xf7, 0x81, 0x3d, 0x2a, 0x08, 0x17, 0xd0, 0x15, 0xb8, 0x9c, 0x7d, 0x7b,
9943*6236dae4SAndroid Build Coastguard Worker   0x4a, 0x0e, 0x48, 0xc9, 0xe1, 0xe2, 0xa4, 0xad, 0x12, 0x93, 0xbd, 0x16,
9944*6236dae4SAndroid Build Coastguard Worker   0x0f, 0x67, 0x33, 0xc1, 0x24, 0x46, 0x7e, 0x8c, 0x61, 0x00, 0x4a, 0xdb,
9945*6236dae4SAndroid Build Coastguard Worker   0x9b, 0x71, 0x00, 0x01, 0xaf, 0x25, 0xb8, 0xea, 0x30, 0x84, 0x14, 0xc8,
9946*6236dae4SAndroid Build Coastguard Worker   0x35, 0x8a, 0x02, 0xb7, 0x14, 0x25, 0xb6, 0xfc, 0xa7, 0x93, 0x51, 0xc6,
9947*6236dae4SAndroid Build Coastguard Worker   0x8e, 0xa7, 0xd8, 0xc9, 0x24, 0xf3, 0x98, 0xeb, 0xa2, 0x9e, 0x7e, 0x04,
9948*6236dae4SAndroid Build Coastguard Worker   0x1e, 0x2d, 0xef, 0x3f, 0x52, 0x75, 0xc4, 0xb9, 0x13, 0xb0, 0xa4, 0x1f,
9949*6236dae4SAndroid Build Coastguard Worker   0x10, 0xa9, 0x18, 0xc7, 0x6d, 0x36, 0xc5, 0x39, 0xd1, 0x71, 0x1b, 0x17,
9950*6236dae4SAndroid Build Coastguard Worker   0xec, 0x78, 0x78, 0x68, 0x5a, 0xcd, 0xf2, 0x06, 0x07, 0x41, 0xb6, 0x3d,
9951*6236dae4SAndroid Build Coastguard Worker   0x0d, 0xf4, 0xf9, 0x7e, 0xb4, 0x1c, 0xda, 0x64, 0x50, 0x53, 0x5d, 0x4a,
9952*6236dae4SAndroid Build Coastguard Worker   0x0f, 0x10, 0x37, 0x70, 0x07, 0x19, 0xcc, 0x22, 0x0a, 0xb6, 0x05, 0x6c,
9953*6236dae4SAndroid Build Coastguard Worker   0xfd, 0x1f, 0x05, 0x92, 0x6c, 0xe4, 0x5b, 0x33, 0xf5, 0x39, 0x53, 0x0c,
9954*6236dae4SAndroid Build Coastguard Worker   0xf3, 0x3e, 0x0d, 0xcb, 0xcf, 0x99, 0x17, 0x57, 0xb3, 0xb4, 0xe7, 0x35,
9955*6236dae4SAndroid Build Coastguard Worker   0x7f, 0x3a, 0xfa, 0xc5, 0x78, 0xf1, 0xbc, 0x64, 0x59, 0xab, 0x12, 0x8a,
9956*6236dae4SAndroid Build Coastguard Worker   0x27, 0xfb, 0x7d, 0x8d, 0x33, 0x77, 0x88, 0xee, 0x2d, 0xbc, 0xf8, 0xf0,
9957*6236dae4SAndroid Build Coastguard Worker   0xec, 0x4c, 0x55, 0x34, 0x1f, 0x20, 0xfc, 0x99, 0x53, 0x2a, 0xcd, 0xf6,
9958*6236dae4SAndroid Build Coastguard Worker   0x0f, 0xc1, 0x1b, 0x98, 0x63, 0x88, 0x21, 0xe2, 0x50, 0xfb, 0xda, 0xb6,
9959*6236dae4SAndroid Build Coastguard Worker   0xc7, 0xcb, 0xad, 0x10, 0xdf, 0x08, 0x1c, 0xf0, 0x9f, 0x2a, 0xfa, 0xac,
9960*6236dae4SAndroid Build Coastguard Worker   0xb9, 0x79, 0xa3, 0xff, 0xec, 0x9f, 0xbe, 0x8b, 0x8a, 0xc1, 0x4f, 0x48,
9961*6236dae4SAndroid Build Coastguard Worker   0x2c, 0x8e, 0xeb, 0x63, 0x21, 0x8a, 0x11, 0xac, 0xd7, 0x69, 0xa0, 0x6a,
9962*6236dae4SAndroid Build Coastguard Worker   0x8f, 0xca, 0x51, 0x3e, 0x66, 0x53, 0x57, 0x08, 0x1c, 0x83, 0xa9, 0x90,
9963*6236dae4SAndroid Build Coastguard Worker   0x8c, 0x46, 0x54, 0x09, 0x2c, 0x42, 0x89, 0xab, 0x56, 0x30, 0x03, 0x4d,
9964*6236dae4SAndroid Build Coastguard Worker   0x7e, 0x40, 0x47, 0xe5, 0x41, 0x0a, 0x0f, 0x19, 0x23, 0x8d, 0x5c, 0x9b,
9965*6236dae4SAndroid Build Coastguard Worker   0x0e, 0x16, 0x40, 0xac, 0xba, 0x9a, 0x7a, 0x3a, 0xd1, 0x8f, 0xb1, 0x13,
9966*6236dae4SAndroid Build Coastguard Worker   0x08, 0x32, 0x47, 0xbe, 0x03, 0x64, 0xce, 0x0a, 0x48, 0x57, 0x37, 0x2b,
9967*6236dae4SAndroid Build Coastguard Worker   0xe0, 0xe9, 0x36, 0x1a, 0x5e, 0x37, 0xe7, 0xed, 0x4c, 0xec, 0x81, 0x15,
9968*6236dae4SAndroid Build Coastguard Worker   0xd8, 0x36, 0x51, 0x9f, 0x78, 0xf9, 0x2d, 0x8c, 0xdb, 0xe4, 0x90, 0x8e,
9969*6236dae4SAndroid Build Coastguard Worker   0x76, 0x5f, 0x7e, 0xae, 0x79, 0x1a, 0xad, 0xaf, 0xb2, 0x66, 0xff, 0x30,
9970*6236dae4SAndroid Build Coastguard Worker   0xe9, 0x24, 0x05, 0xad, 0x71, 0xb7, 0x6c, 0x05, 0xb8, 0x00, 0x96, 0xf7,
9971*6236dae4SAndroid Build Coastguard Worker   0xd1, 0xb6, 0x43, 0x8d, 0xde, 0xf1, 0x6a, 0x71, 0xb9, 0xa0, 0x05, 0xd9,
9972*6236dae4SAndroid Build Coastguard Worker   0x46, 0xa9, 0xd4, 0xe8, 0x40, 0x66, 0x23, 0x13, 0x09, 0xaa, 0xef, 0x91,
9973*6236dae4SAndroid Build Coastguard Worker   0xaf, 0xcd, 0x87, 0xbe, 0x68, 0x92, 0xf0, 0xcd, 0xa1, 0x14, 0x1a, 0xb7,
9974*6236dae4SAndroid Build Coastguard Worker   0xfb, 0x23, 0x04, 0x28, 0xb0, 0xf8, 0x8b, 0x0a, 0x0b, 0xbb, 0x8a, 0xe9,
9975*6236dae4SAndroid Build Coastguard Worker   0x0d, 0x09, 0xe5, 0xc5, 0xc2, 0x11, 0x0a, 0xc4, 0xca, 0xfc, 0x17, 0xb9,
9976*6236dae4SAndroid Build Coastguard Worker   0x3a, 0x09, 0x91, 0xd3, 0x08, 0xed, 0xc1, 0x38, 0x1f, 0x28, 0xfe, 0x59,
9977*6236dae4SAndroid Build Coastguard Worker   0xcf, 0x2a, 0x8e, 0x64, 0x1c, 0xf7, 0x51, 0x5b, 0xf2, 0x34, 0xcd, 0x28,
9978*6236dae4SAndroid Build Coastguard Worker   0x54, 0x65, 0xd0, 0xa2, 0xff, 0xf6, 0x1c, 0xfa, 0xeb, 0xa7, 0x2b, 0x43,
9979*6236dae4SAndroid Build Coastguard Worker   0x7f, 0xa2, 0x84, 0xfe, 0x90, 0x65, 0x14, 0xea, 0x18, 0x17, 0x05, 0xd6,
9980*6236dae4SAndroid Build Coastguard Worker   0xd8, 0x58, 0xbe, 0x78, 0x24, 0x17, 0x7c, 0xe2, 0xb5, 0x6d, 0x66, 0x0d,
9981*6236dae4SAndroid Build Coastguard Worker   0xc4, 0x3d, 0xb4, 0x94, 0x0d, 0x62, 0xab, 0x52, 0x54, 0xa1, 0x26, 0x85,
9982*6236dae4SAndroid Build Coastguard Worker   0x8c, 0x60, 0xe9, 0xae, 0xb0, 0xcf, 0x17, 0xe7, 0x98, 0x3c, 0x70, 0x6b,
9983*6236dae4SAndroid Build Coastguard Worker   0x88, 0x34, 0x16, 0xc5, 0x98, 0x3a, 0xc1, 0x73, 0x09, 0xd1, 0xcf, 0x69,
9984*6236dae4SAndroid Build Coastguard Worker   0x59, 0x88, 0x42, 0x64, 0xe4, 0xd3, 0x53, 0xd5, 0x13, 0x92, 0xb6, 0x1f,
9985*6236dae4SAndroid Build Coastguard Worker   0xab, 0x6a, 0x8c, 0x12, 0x34, 0xbb, 0xb8, 0x07, 0x22, 0x56, 0x73, 0x91,
9986*6236dae4SAndroid Build Coastguard Worker   0x4d, 0xdd, 0x95, 0xf2, 0x73, 0x7a, 0x9e, 0x1d, 0xd7, 0xeb, 0x0a, 0xf7,
9987*6236dae4SAndroid Build Coastguard Worker   0xf9, 0x9c, 0xa6, 0x98, 0xd6, 0x19, 0x6e, 0x47, 0xda, 0x3e, 0xdc, 0xa8,
9988*6236dae4SAndroid Build Coastguard Worker   0xe9, 0xd0, 0xe7, 0x6d, 0x56, 0x87, 0x5c, 0x27, 0x46, 0x8f, 0xec, 0x45,
9989*6236dae4SAndroid Build Coastguard Worker   0x1b, 0xe2, 0xcc, 0x7a, 0x90, 0x70, 0x8d, 0x91, 0x70, 0x10, 0x9b, 0xc8,
9990*6236dae4SAndroid Build Coastguard Worker   0xd4, 0x64, 0xa4, 0xdd, 0xd0, 0x41, 0x56, 0x7e, 0xf9, 0x48, 0x2e, 0x31,
9991*6236dae4SAndroid Build Coastguard Worker   0xce, 0x3e, 0x92, 0xba, 0x36, 0x73, 0x28, 0x70, 0x50, 0x3a, 0xc9, 0x9a,
9992*6236dae4SAndroid Build Coastguard Worker   0x3f, 0x14, 0x9f, 0xa0, 0xbe, 0x31, 0x0e, 0x74, 0x03, 0x8c, 0x7c, 0x15,
9993*6236dae4SAndroid Build Coastguard Worker   0x9c, 0xea, 0x36, 0x88, 0x03, 0x1d, 0xe6, 0x5c, 0x2d, 0x04, 0xf4, 0x25,
9994*6236dae4SAndroid Build Coastguard Worker   0x46, 0xd8, 0x9b, 0x98, 0x7e, 0x51, 0x45, 0xf3, 0xfc, 0x75, 0x8e, 0xec,
9995*6236dae4SAndroid Build Coastguard Worker   0x5b, 0xeb, 0xaa, 0xc2, 0xaf, 0x5a, 0xbc, 0xa4, 0xd0, 0x51, 0x5b, 0x12,
9996*6236dae4SAndroid Build Coastguard Worker   0x82, 0x9b, 0x18, 0xd6, 0x33, 0x10, 0xc3, 0x98, 0xd4, 0x9d, 0x7c, 0xf2,
9997*6236dae4SAndroid Build Coastguard Worker   0xa8, 0xb3, 0x1b, 0xdd, 0x52, 0xa2, 0x1c, 0x19, 0xe2, 0x97, 0x04, 0xef,
9998*6236dae4SAndroid Build Coastguard Worker   0x5d, 0xf4, 0x7c, 0x3a, 0x21, 0x1c, 0x66, 0x83, 0xf9, 0xdf, 0xf3, 0x8f,
9999*6236dae4SAndroid Build Coastguard Worker   0xf6, 0x4c, 0x32, 0xae, 0x49, 0xa5, 0x52, 0xa5, 0x7e, 0x19, 0x6e, 0x7d,
10000*6236dae4SAndroid Build Coastguard Worker   0x16, 0xdc, 0x1c, 0x54, 0xa1, 0xcc, 0x3d, 0x29, 0x27, 0x8e, 0xd4, 0x2a,
10001*6236dae4SAndroid Build Coastguard Worker   0xbc, 0x2e, 0x5b, 0xb7, 0xe5, 0xd3, 0x2f, 0x19, 0x7b, 0x35, 0xca, 0xcd,
10002*6236dae4SAndroid Build Coastguard Worker   0x48, 0x17, 0x63, 0x51, 0x86, 0xaf, 0x3e, 0x99, 0x95, 0xde, 0x7d, 0xe7,
10003*6236dae4SAndroid Build Coastguard Worker   0x56, 0xd7, 0x7b, 0xf0, 0xe6, 0xfb, 0x65, 0x57, 0x9f, 0x4a, 0x79, 0xd1,
10004*6236dae4SAndroid Build Coastguard Worker   0x19, 0x7f, 0x0b, 0x7d, 0xd1, 0x48, 0xa1, 0x55, 0xbf, 0x55, 0x61, 0xc7,
10005*6236dae4SAndroid Build Coastguard Worker   0xe8, 0xab, 0x81, 0x8c, 0x6a, 0x29, 0x02, 0x72, 0xf9, 0x03, 0x39, 0x50,
10006*6236dae4SAndroid Build Coastguard Worker   0x7e, 0xbc, 0x8a, 0x10, 0xff, 0x94, 0xe4, 0x14, 0x61, 0x4b, 0x63, 0x64,
10007*6236dae4SAndroid Build Coastguard Worker   0x09, 0x75, 0xe2, 0xae, 0x05, 0x61, 0x2e, 0xda, 0x9a, 0x3e, 0x7c, 0xde,
10008*6236dae4SAndroid Build Coastguard Worker   0xd5, 0xe4, 0xb8, 0x9a, 0xe6, 0xc1, 0xc3, 0x8d, 0x18, 0xfe, 0x1f, 0x4d,
10009*6236dae4SAndroid Build Coastguard Worker   0x9f, 0x76, 0xe6, 0x9f, 0xba, 0xa8, 0x51, 0x49, 0x49, 0x26, 0x40, 0x18,
10010*6236dae4SAndroid Build Coastguard Worker   0x92, 0x67, 0xdc, 0xc7, 0xc1, 0xde, 0x16, 0xfa, 0xfc, 0x83, 0xaa, 0xa2,
10011*6236dae4SAndroid Build Coastguard Worker   0xdb, 0x8d, 0x82, 0xba, 0x05, 0xc8, 0x96, 0x63, 0x59, 0xdc, 0x3a, 0x77,
10012*6236dae4SAndroid Build Coastguard Worker   0x96, 0xd0, 0x5d, 0x78, 0xe4, 0xa5, 0x5f, 0xa2, 0x13, 0x3b, 0xbd, 0x53,
10013*6236dae4SAndroid Build Coastguard Worker   0x6c, 0x02, 0x6d, 0x76, 0x14, 0x5c, 0x96, 0x26, 0x3b, 0x49, 0xce, 0x00,
10014*6236dae4SAndroid Build Coastguard Worker   0xad, 0xaa, 0xbd, 0x28, 0x85, 0x19, 0x31, 0x2b, 0xa2, 0x21, 0x1f, 0x98,
10015*6236dae4SAndroid Build Coastguard Worker   0xc7, 0xdc, 0x2f, 0xaa, 0x38, 0x5c, 0xf4, 0x45, 0x4b, 0x46, 0xf2, 0x8f,
10016*6236dae4SAndroid Build Coastguard Worker   0x91, 0x3d, 0xf7, 0x20, 0xe7, 0xb9, 0xc2, 0x36, 0xfc, 0x69, 0x29, 0xd5,
10017*6236dae4SAndroid Build Coastguard Worker   0x8c, 0x82, 0x7b, 0x48, 0xd7, 0x6f, 0xfb, 0xf3, 0x5a, 0x25, 0xf9, 0x2f,
10018*6236dae4SAndroid Build Coastguard Worker   0xbb, 0x87, 0xd8, 0x5c, 0xde, 0xf2, 0x26, 0x2e, 0x2b, 0xc1, 0x5c, 0xc0,
10019*6236dae4SAndroid Build Coastguard Worker   0x4b, 0xbb, 0x5d, 0xfc, 0x8c, 0xe3, 0x08, 0x80, 0x0b, 0xb1, 0x9a, 0x95,
10020*6236dae4SAndroid Build Coastguard Worker   0x9c, 0xc7, 0xf4, 0xa0, 0x6f, 0xc5, 0x78, 0x8c, 0xcd, 0x78, 0xd8, 0xc1,
10021*6236dae4SAndroid Build Coastguard Worker   0x04, 0x89, 0x34, 0xa5, 0xe8, 0x3f, 0xa6, 0xb8, 0xcc, 0x99, 0x95, 0xa1,
10022*6236dae4SAndroid Build Coastguard Worker   0xb6, 0x3b, 0x2b, 0xf9, 0x61, 0x7b, 0x4e, 0x76, 0x52, 0x4b, 0xce, 0x8a,
10023*6236dae4SAndroid Build Coastguard Worker   0xc7, 0x7b, 0xcc, 0x9c, 0x96, 0x57, 0x56, 0x5a, 0xda, 0x4a, 0x5b, 0x3f,
10024*6236dae4SAndroid Build Coastguard Worker   0x69, 0x28, 0x20, 0x8f, 0xba, 0xc1, 0x17, 0xeb, 0x27, 0x0d, 0x15, 0xe4,
10025*6236dae4SAndroid Build Coastguard Worker   0x61, 0x41, 0xe6, 0xe8, 0x27, 0x9f, 0xf8, 0xae, 0x68, 0x6c, 0xc6, 0xa7,
10026*6236dae4SAndroid Build Coastguard Worker   0xff, 0xf7, 0x9a, 0xdc, 0xdf, 0x7c, 0xdd, 0x53, 0x63, 0x60, 0xd4, 0x2a,
10027*6236dae4SAndroid Build Coastguard Worker   0x39, 0x4d, 0xb4, 0x1d, 0x66, 0x08, 0xf6, 0xd5, 0x8b, 0xc2, 0xb5, 0x88,
10028*6236dae4SAndroid Build Coastguard Worker   0xea, 0x30, 0xe5, 0xc6, 0x77, 0xea, 0xf5, 0x64, 0x0d, 0xb3, 0xb7, 0x8c,
10029*6236dae4SAndroid Build Coastguard Worker   0x8a, 0xf9, 0x2c, 0xa4, 0x9a, 0x4b, 0xe0, 0xe2, 0x77, 0x5a, 0x83, 0xef,
10030*6236dae4SAndroid Build Coastguard Worker   0xf4, 0xed, 0xd9, 0x53, 0xfd, 0xb0, 0xe8, 0x91, 0x8a, 0xc9, 0x6e, 0x44,
10031*6236dae4SAndroid Build Coastguard Worker   0x9e, 0x62, 0x5b, 0x2e, 0x68, 0x9a, 0xbd, 0x71, 0xe3, 0x2a, 0x8c, 0x19,
10032*6236dae4SAndroid Build Coastguard Worker   0x73, 0x28, 0xe6, 0x01, 0xdf, 0x06, 0x3d, 0xae, 0xa5, 0x63, 0x0c, 0xd0,
10033*6236dae4SAndroid Build Coastguard Worker   0xd2, 0xf4, 0x29, 0x04, 0x49, 0x86, 0x37, 0xe3, 0xc7, 0x64, 0x3a, 0x95,
10034*6236dae4SAndroid Build Coastguard Worker   0xbb, 0xff, 0x61, 0x06, 0xe7, 0xee, 0x1b, 0x08, 0x29, 0x42, 0x67, 0x86,
10035*6236dae4SAndroid Build Coastguard Worker   0xfb, 0x9c, 0xd4, 0x45, 0x71, 0x6d, 0xcb, 0xa9, 0xc8, 0x8c, 0x43, 0xc8,
10036*6236dae4SAndroid Build Coastguard Worker   0xb5, 0x07, 0x19, 0x7c, 0x1c, 0xe9, 0x29, 0x59, 0xef, 0xf7, 0xdf, 0xac,
10037*6236dae4SAndroid Build Coastguard Worker   0xa7, 0xf5, 0x50, 0x95, 0x90, 0x75, 0x9b, 0xaf, 0x6f, 0x9c, 0x5a, 0x0f,
10038*6236dae4SAndroid Build Coastguard Worker   0x0c, 0x47, 0x7a, 0x10, 0x96, 0xea, 0x12, 0xab, 0x9b, 0xa8, 0x55, 0x2f,
10039*6236dae4SAndroid Build Coastguard Worker   0xb8, 0xe4, 0xa6, 0x8f, 0xe9, 0x57, 0x5e, 0x94, 0xf4, 0x51, 0xd3, 0xb5,
10040*6236dae4SAndroid Build Coastguard Worker   0xb4, 0xdc, 0x72, 0x34, 0x45, 0xd4, 0xc2, 0xd9, 0xff, 0xf4, 0xf0, 0xa9,
10041*6236dae4SAndroid Build Coastguard Worker   0x7d, 0x60, 0x29, 0xe8, 0x6e, 0xc4, 0x0c, 0xda, 0xd9, 0xf4, 0x77, 0xdf,
10042*6236dae4SAndroid Build Coastguard Worker   0x3d, 0xaa, 0xde, 0x47, 0x6f, 0x27, 0x67, 0xa2, 0x51, 0xc2, 0xf1, 0xc3,
10043*6236dae4SAndroid Build Coastguard Worker   0x13, 0x9e, 0xa2, 0x6b, 0x90, 0x95, 0xbd, 0x47, 0x08, 0xd4, 0x47, 0x4f,
10044*6236dae4SAndroid Build Coastguard Worker   0xf9, 0xd1, 0x33, 0x66, 0x24, 0x18, 0x55, 0x37, 0x71, 0xc2, 0x14, 0x67,
10045*6236dae4SAndroid Build Coastguard Worker   0x92, 0xa4, 0x03, 0x12, 0x4d, 0x83, 0xf4, 0xd2, 0x4f, 0x36, 0x0a, 0x5e,
10046*6236dae4SAndroid Build Coastguard Worker   0xe0, 0x9a, 0x9a, 0x95, 0x50, 0x59, 0x59, 0x1a, 0x9b, 0x71, 0xa5, 0x3c,
10047*6236dae4SAndroid Build Coastguard Worker   0xa7, 0x92, 0x4a, 0x9e, 0xcb, 0xe2, 0xc1, 0xd9, 0x25, 0xd2, 0xaf, 0x09,
10048*6236dae4SAndroid Build Coastguard Worker   0x45, 0xbe, 0x13, 0x48, 0x1b, 0x2a, 0xff, 0x38, 0xf5, 0xc6, 0xc0, 0x3a,
10049*6236dae4SAndroid Build Coastguard Worker   0x0f, 0x0d, 0x87, 0x1a, 0x2e, 0xd7, 0xd8, 0xdf, 0x60, 0x92, 0xe0, 0x9c,
10050*6236dae4SAndroid Build Coastguard Worker   0xbd, 0x30, 0x86, 0xd8, 0x43, 0xec, 0x81, 0x99, 0x83, 0xe3, 0xb1, 0x31,
10051*6236dae4SAndroid Build Coastguard Worker   0xdc, 0x1e, 0xbc, 0x6e, 0xe0, 0xaa, 0x9a, 0x2a, 0x79, 0x90, 0x2f, 0x88,
10052*6236dae4SAndroid Build Coastguard Worker   0x4d, 0x98, 0x4d, 0xbb, 0x7a, 0x30, 0xba, 0xd1, 0xa3, 0x59, 0x81, 0x52,
10053*6236dae4SAndroid Build Coastguard Worker   0xdd, 0x0d, 0x6d, 0xb5, 0xdd, 0x93, 0x96, 0xd9, 0x51, 0x53, 0x3b, 0xfc,
10054*6236dae4SAndroid Build Coastguard Worker   0x65, 0x32, 0x54, 0x5b, 0xfc, 0xa1, 0xd9, 0x91, 0xa7, 0xa9, 0xd7, 0x22,
10055*6236dae4SAndroid Build Coastguard Worker   0x82, 0x45, 0xcc, 0x33, 0xca, 0x02, 0x67, 0xec, 0x3e, 0xea, 0xaa, 0x46,
10056*6236dae4SAndroid Build Coastguard Worker   0xe4, 0x31, 0xa4, 0x93, 0xc9, 0xf9, 0x71, 0x88, 0x55, 0x85, 0xc9, 0x4f,
10057*6236dae4SAndroid Build Coastguard Worker   0xf3, 0xf8, 0x83, 0x0f, 0x03, 0x26, 0x41, 0xa3, 0x0e, 0x6b, 0x4f, 0x42,
10058*6236dae4SAndroid Build Coastguard Worker   0xe3, 0x20, 0x44, 0x4b, 0xa8, 0x9f, 0x26, 0x1f, 0xdc, 0x66, 0x53, 0xb7,
10059*6236dae4SAndroid Build Coastguard Worker   0x0e, 0x3c, 0x47, 0x5b, 0xc7, 0x55, 0xf1, 0xb0, 0xbe, 0x46, 0xf4, 0xa4,
10060*6236dae4SAndroid Build Coastguard Worker   0x15, 0x71, 0xa5, 0x18, 0xe6, 0xd5, 0xf3, 0xd5, 0x08, 0x86, 0x1c, 0x1e,
10061*6236dae4SAndroid Build Coastguard Worker   0x83, 0x5a, 0x19, 0xe0, 0x61, 0xc7, 0x3f, 0xec, 0x48, 0x78, 0x03, 0x44,
10062*6236dae4SAndroid Build Coastguard Worker   0x9f, 0x6f, 0xaa, 0xf7, 0x3e, 0x95, 0x4d, 0x37, 0x17, 0xca, 0x0c, 0xa7,
10063*6236dae4SAndroid Build Coastguard Worker   0xea, 0x93, 0xc7, 0xb0, 0x04, 0x1a, 0xb6, 0x81, 0x93, 0xc7, 0x0e, 0x1f,
10064*6236dae4SAndroid Build Coastguard Worker   0xcf, 0x62, 0xb5, 0x96, 0x73, 0x4a, 0x91, 0xe1, 0x47, 0x04, 0x1a, 0x61,
10065*6236dae4SAndroid Build Coastguard Worker   0x24, 0xb0, 0xc3, 0xbd, 0x91, 0xb2, 0x7c, 0x94, 0xde, 0x35, 0xdc, 0x01,
10066*6236dae4SAndroid Build Coastguard Worker   0x99, 0xcd, 0xc9, 0xeb, 0x46, 0x1b, 0x31, 0x3d, 0xf0, 0xa0, 0x89, 0xf2,
10067*6236dae4SAndroid Build Coastguard Worker   0x2a, 0x8d, 0x09, 0x5f, 0x06, 0x55, 0x32, 0x18, 0x16, 0xbb, 0x2d, 0x5d,
10068*6236dae4SAndroid Build Coastguard Worker   0x25, 0x7a, 0xec, 0x2a, 0x2e, 0xfc, 0x73, 0x3e, 0xf4, 0xd0, 0xa1, 0xa3,
10069*6236dae4SAndroid Build Coastguard Worker   0x7c, 0x85, 0x32, 0x03, 0xc9, 0x1a, 0xe9, 0xb0, 0x84, 0xc0, 0xf5, 0x98,
10070*6236dae4SAndroid Build Coastguard Worker   0x55, 0xda, 0xa0, 0xe6, 0x7c, 0x7a, 0x11, 0xb9, 0x6d, 0xa1, 0x29, 0xf9,
10071*6236dae4SAndroid Build Coastguard Worker   0x3f, 0x50, 0x53, 0x7e, 0x60, 0xa7, 0x24, 0x4e, 0xa9, 0x00, 0xd0, 0x0c,
10072*6236dae4SAndroid Build Coastguard Worker   0x7a, 0x87, 0x91, 0x4a, 0x4d, 0xe4, 0x10, 0x17, 0x9a, 0x36, 0xbe, 0xdc,
10073*6236dae4SAndroid Build Coastguard Worker   0x7b, 0x8c, 0x23, 0xb9, 0xfa, 0x83, 0xeb, 0xb0, 0x6e, 0xa3, 0x95, 0x3f,
10074*6236dae4SAndroid Build Coastguard Worker   0xff, 0xc3, 0x78, 0x4d, 0xfe, 0xf9, 0x43, 0xbe, 0xf2, 0x00, 0x10, 0xcc,
10075*6236dae4SAndroid Build Coastguard Worker   0x5d, 0x02, 0x72, 0x28, 0x54, 0x10, 0x59, 0x25, 0x74, 0xaf, 0xdb, 0x86,
10076*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x5c, 0xc3, 0xda, 0xc4, 0x72, 0xae, 0x09, 0xa2, 0x58, 0xec, 0x32,
10077*6236dae4SAndroid Build Coastguard Worker   0xd6, 0xed, 0x03, 0x25, 0xb3, 0x60, 0x03, 0x51, 0xf6, 0x0f, 0x07, 0x75,
10078*6236dae4SAndroid Build Coastguard Worker   0x27, 0x69, 0x9d, 0x30, 0xe4, 0x2c, 0xfc, 0x8c, 0x32, 0x9b, 0x47, 0xda,
10079*6236dae4SAndroid Build Coastguard Worker   0x61, 0x1d, 0xe7, 0x92, 0x81, 0x5a, 0x8c, 0x09, 0x3f, 0xb6, 0xe5, 0x4a,
10080*6236dae4SAndroid Build Coastguard Worker   0xa0, 0x8a, 0x54, 0x10, 0x61, 0xe8, 0x6b, 0xc6, 0xc9, 0x7e, 0x37, 0xba,
10081*6236dae4SAndroid Build Coastguard Worker   0xec, 0x31, 0x9f, 0xf5, 0xa8, 0x5c, 0x43, 0x07, 0x43, 0xd9, 0xd3, 0x25,
10082*6236dae4SAndroid Build Coastguard Worker   0x09, 0x8d, 0x66, 0x7f, 0x68, 0x38, 0xcd, 0x3b, 0x88, 0x22, 0x4e, 0x3c,
10083*6236dae4SAndroid Build Coastguard Worker   0xf0, 0x86, 0x9e, 0x90, 0xcc, 0xc0, 0xdf, 0x99, 0x51, 0x05, 0x9f, 0x2c,
10084*6236dae4SAndroid Build Coastguard Worker   0x04, 0xe2, 0xa4, 0x35, 0xc7, 0xa6, 0x34, 0x48, 0x73, 0xcc, 0xcc, 0x6a,
10085*6236dae4SAndroid Build Coastguard Worker   0xed, 0x42, 0x31, 0x43, 0x05, 0x98, 0xb9, 0x64, 0xb8, 0x28, 0xcf, 0x1d,
10086*6236dae4SAndroid Build Coastguard Worker   0x9b, 0x55, 0xd5, 0x6c, 0x79, 0xc4, 0x42, 0xda, 0xd4, 0x28, 0x2e, 0x68,
10087*6236dae4SAndroid Build Coastguard Worker   0x15, 0x68, 0x4a, 0x07, 0x79, 0xe0, 0xf5, 0xf1, 0xc9, 0x91, 0x29, 0x84,
10088*6236dae4SAndroid Build Coastguard Worker   0xf8, 0xff, 0xd6, 0x7b, 0xf8, 0x72, 0x39, 0xf4, 0x52, 0xee, 0x19, 0xe0,
10089*6236dae4SAndroid Build Coastguard Worker   0xc5, 0x41, 0xeb, 0x11, 0x04, 0x98, 0xaf, 0xd1, 0x94, 0xd2, 0x1f, 0x37,
10090*6236dae4SAndroid Build Coastguard Worker   0xe0, 0x5f, 0x8e, 0xde, 0x7d, 0x73, 0xfc, 0xfe, 0xf4, 0xdd, 0xdb, 0xa3,
10091*6236dae4SAndroid Build Coastguard Worker   0x77, 0xe7, 0x9f, 0xb8, 0xd9, 0x14, 0x81, 0x76, 0xb0, 0x95, 0x9f, 0xcd,
10092*6236dae4SAndroid Build Coastguard Worker   0x95, 0x61, 0xdc, 0xfb, 0x96, 0x70, 0x27, 0xb8, 0x21, 0x35, 0x10, 0x4f,
10093*6236dae4SAndroid Build Coastguard Worker   0xfe, 0xd5, 0x73, 0x87, 0x73, 0x1e, 0xd2, 0x30, 0x2c, 0xe6, 0x97, 0x4e,
10094*6236dae4SAndroid Build Coastguard Worker   0xd1, 0xf5, 0x39, 0xc2, 0x44, 0x96, 0x1e, 0x07, 0x6e, 0xb9, 0x9b, 0x74,
10095*6236dae4SAndroid Build Coastguard Worker   0xc6, 0x1d, 0x69, 0xef, 0xb0, 0x9d, 0x1c, 0xd5, 0x10, 0x81, 0xac, 0x30,
10096*6236dae4SAndroid Build Coastguard Worker   0x66, 0x8f, 0xa6, 0x2f, 0xd8, 0x18, 0x6a, 0x63, 0x12, 0x96, 0xfc, 0x1f,
10097*6236dae4SAndroid Build Coastguard Worker   0x38, 0xff, 0x05, 0x6d, 0xb6, 0xd0, 0x6a, 0x14, 0x40, 0x9e, 0xb4, 0x36,
10098*6236dae4SAndroid Build Coastguard Worker   0x6e, 0x62, 0x9d, 0x54, 0x56, 0x6a, 0x4a, 0x63, 0x6e, 0x2b, 0x2f, 0x9d,
10099*6236dae4SAndroid Build Coastguard Worker   0x0e, 0x4d, 0x77, 0xa6, 0x37, 0xb5, 0x97, 0x42, 0xe0, 0xac, 0xe2, 0x7b,
10100*6236dae4SAndroid Build Coastguard Worker   0xf5, 0x61, 0xc2, 0x5e, 0xfe, 0xb8, 0x8f, 0x16, 0xc5, 0xe7, 0xdf, 0xef,
10101*6236dae4SAndroid Build Coastguard Worker   0x21, 0x6b, 0xfd, 0xe8, 0x77, 0x54, 0xa9, 0x9c, 0x69, 0xc8, 0x55, 0xea,
10102*6236dae4SAndroid Build Coastguard Worker   0x00, 0x34, 0xe0, 0x51, 0x30, 0xe4, 0xa4, 0xe0, 0xca, 0xc7, 0xb3, 0xf7,
10103*6236dae4SAndroid Build Coastguard Worker   0xa7, 0xdf, 0xfd, 0xed, 0x57, 0xfe, 0x84, 0x93, 0x39, 0xfa, 0x3d, 0x96,
10104*6236dae4SAndroid Build Coastguard Worker   0x4c, 0xe8, 0xe0, 0x3f, 0xfe, 0xea, 0x5f, 0x6b, 0x0e, 0xdf, 0x95, 0xd4,
10105*6236dae4SAndroid Build Coastguard Worker   0x26, 0x3a, 0xdd, 0x01, 0xad, 0x99, 0x91, 0x95, 0xc8, 0x62, 0x4f, 0xac,
10106*6236dae4SAndroid Build Coastguard Worker   0x67, 0xd8, 0xcd, 0x81, 0x31, 0xa9, 0xdc, 0xa4, 0xb9, 0x54, 0x4d, 0x06,
10107*6236dae4SAndroid Build Coastguard Worker   0x4d, 0xfc, 0xfe, 0x63, 0x3d, 0x86, 0xc3, 0xb1, 0xb9, 0xbe, 0x0a, 0xf9,
10108*6236dae4SAndroid Build Coastguard Worker   0x84, 0xb0, 0x4e, 0x02, 0xfc, 0x44, 0x15, 0x24, 0x86, 0x20, 0x07, 0x27,
10109*6236dae4SAndroid Build Coastguard Worker   0x27, 0xbf, 0x2a, 0x15, 0xe0, 0x22, 0x43, 0x54, 0x7d, 0x1d, 0x2b, 0x36,
10110*6236dae4SAndroid Build Coastguard Worker   0x76, 0x84, 0x3c, 0xfd, 0x40, 0x67, 0x9b, 0x77, 0xa7, 0x32, 0x9b, 0x7d,
10111*6236dae4SAndroid Build Coastguard Worker   0x32, 0x61, 0xe2, 0x2a, 0x05, 0xc3, 0x23, 0xc1, 0xb8, 0xac, 0x36, 0x78,
10112*6236dae4SAndroid Build Coastguard Worker   0xc3, 0x89, 0x55, 0xeb, 0x5c, 0xba, 0x50, 0x7d, 0xee, 0x65, 0x5c, 0x4a,
10113*6236dae4SAndroid Build Coastguard Worker   0x5c, 0x92, 0xec, 0x5c, 0x2a, 0x6c, 0x60, 0x6a, 0x0a, 0x28, 0x02, 0x15,
10114*6236dae4SAndroid Build Coastguard Worker   0x6b, 0x16, 0x06, 0xaa, 0x14, 0x33, 0x3d, 0xb9, 0x90, 0x02, 0xe5, 0x28,
10115*6236dae4SAndroid Build Coastguard Worker   0x4c, 0xc4, 0x07, 0x93, 0x43, 0xd8, 0x19, 0x90, 0xa3, 0x65, 0x56, 0x5d,
10116*6236dae4SAndroid Build Coastguard Worker   0x53, 0x29, 0x2b, 0x1e, 0x51, 0x52, 0x7c, 0x15, 0x5d, 0x0b, 0x0d, 0x13,
10117*6236dae4SAndroid Build Coastguard Worker   0x9a, 0x53, 0x8f, 0xb1, 0x01, 0x2d, 0x26, 0x41, 0x56, 0x85, 0x66, 0x87,
10118*6236dae4SAndroid Build Coastguard Worker   0xca, 0x41, 0xc2, 0x2a, 0x03, 0x7a, 0xf7, 0x39, 0xf0, 0x92, 0x34, 0x2a,
10119*6236dae4SAndroid Build Coastguard Worker   0xe4, 0xa5, 0x49, 0x1e, 0xa7, 0xad, 0x56, 0x06, 0x05, 0x2c, 0x04, 0x1a,
10120*6236dae4SAndroid Build Coastguard Worker   0xd5, 0x55, 0x90, 0x1b, 0x7c, 0x80, 0x3f, 0x5d, 0x57, 0xe9, 0xf8, 0x22,
10121*6236dae4SAndroid Build Coastguard Worker   0x5c, 0x3b, 0x1a, 0x14, 0x17, 0x82, 0xbf, 0x55, 0x69, 0x3d, 0xa8, 0x72,
10122*6236dae4SAndroid Build Coastguard Worker   0x2b, 0x6e, 0x56, 0x4a, 0x60, 0x92, 0x18, 0xb1, 0xf3, 0x3d, 0xa6, 0x0a,
10123*6236dae4SAndroid Build Coastguard Worker   0x44, 0xe0, 0xe6, 0x47, 0xdd, 0x51, 0x7e, 0x94, 0xbc, 0x6c, 0x11, 0x41,
10124*6236dae4SAndroid Build Coastguard Worker   0x38, 0x33, 0x57, 0xf7, 0xf6, 0xb3, 0x91, 0x5f, 0x75, 0x8e, 0x2d, 0x17,
10125*6236dae4SAndroid Build Coastguard Worker   0xdc, 0x82, 0x7c, 0xb9, 0xcd, 0xe3, 0x3b, 0x96, 0x3c, 0xc0, 0x92, 0xbc,
10126*6236dae4SAndroid Build Coastguard Worker   0x4f, 0x8d, 0x67, 0xe4, 0x37, 0x8f, 0x19, 0xce, 0xc1, 0xc6, 0xe2, 0xa9,
10127*6236dae4SAndroid Build Coastguard Worker   0x46, 0x35, 0x56, 0x81, 0xd4, 0x91, 0x80, 0x78, 0xb1, 0xad, 0x44, 0x20,
10128*6236dae4SAndroid Build Coastguard Worker   0x99, 0x7e, 0x85, 0xa5, 0x33, 0xf1, 0x45, 0x13, 0x9d, 0x3b, 0xd3, 0x40,
10129*6236dae4SAndroid Build Coastguard Worker   0x26, 0x0f, 0x3c, 0x86, 0xb1, 0x21, 0x46, 0x7f, 0x74, 0xc7, 0x33, 0xf3,
10130*6236dae4SAndroid Build Coastguard Worker   0x24, 0x2b, 0x84, 0xe7, 0xc8, 0xfa, 0xa6, 0xa2, 0xeb, 0xa6, 0xa1, 0xd8,
10131*6236dae4SAndroid Build Coastguard Worker   0x76, 0x30, 0xe1, 0xd1, 0x3d, 0x32, 0x72, 0x18, 0x0c, 0x8c, 0x12, 0x19,
10132*6236dae4SAndroid Build Coastguard Worker   0x57, 0x5a, 0x2d, 0xed, 0xc4, 0xd3, 0x24, 0x1f, 0xc7, 0xc3, 0x43, 0xa1,
10133*6236dae4SAndroid Build Coastguard Worker   0x54, 0x72, 0xad, 0xfb, 0xa6, 0x42, 0x20, 0x53, 0xa2, 0x20, 0x67, 0x8b,
10134*6236dae4SAndroid Build Coastguard Worker   0x30, 0x0a, 0x06, 0x0a, 0xd5, 0xa2, 0x31, 0x63, 0xb8, 0x03, 0xc7, 0x45,
10135*6236dae4SAndroid Build Coastguard Worker   0x15, 0xea, 0x06, 0x31, 0xc0, 0x7c, 0xfc, 0xb4, 0x9e, 0x53, 0x79, 0x64,
10136*6236dae4SAndroid Build Coastguard Worker   0x67, 0x24, 0xe1, 0x4e, 0x49, 0xf0, 0x45, 0xdb, 0x18, 0xb1, 0x4f, 0x48,
10137*6236dae4SAndroid Build Coastguard Worker   0x1a, 0x72, 0xa3, 0xe4, 0x2e, 0xd6, 0x32, 0x38, 0xb0, 0x2a, 0x5e, 0xfe,
10138*6236dae4SAndroid Build Coastguard Worker   0x02, 0x46, 0x20, 0xb9, 0x53, 0x32, 0x75, 0x50, 0x16, 0xb3, 0x4d, 0x92,
10139*6236dae4SAndroid Build Coastguard Worker   0x99, 0x13, 0xd3, 0xc9, 0xde, 0xdc, 0x91, 0x7b, 0x51, 0x67, 0x6f, 0x6f,
10140*6236dae4SAndroid Build Coastguard Worker   0xb3, 0x23, 0x01, 0x92, 0x36, 0xe7, 0x13, 0xa4, 0x42, 0x85, 0x8f, 0x6c,
10141*6236dae4SAndroid Build Coastguard Worker   0xe0, 0x43, 0x9c, 0x6a, 0x9b, 0x62, 0xe4, 0xd5, 0xb6, 0x64, 0xb6, 0x6b,
10142*6236dae4SAndroid Build Coastguard Worker   0x3a, 0x84, 0xcd, 0xfb, 0xd8, 0xef, 0x9f, 0x7c, 0xfc, 0xf2, 0xe0, 0xf0,
10143*6236dae4SAndroid Build Coastguard Worker   0xeb, 0xa3, 0x77, 0xaf, 0xa2, 0x7d, 0xa7, 0x18, 0xe7, 0x73, 0x5f, 0x4d,
10144*6236dae4SAndroid Build Coastguard Worker   0x7f, 0xa8, 0x92, 0xb1, 0xa3, 0x55, 0x40, 0x9d, 0x6e, 0x1b, 0xe0, 0x33,
10145*6236dae4SAndroid Build Coastguard Worker   0x6b, 0x8b, 0x2f, 0xae, 0x74, 0x31, 0xd5, 0x7d, 0xee, 0x30, 0x13, 0x69,
10146*6236dae4SAndroid Build Coastguard Worker   0x58, 0x9d, 0x93, 0xae, 0xef, 0x4c, 0x49, 0x54, 0xeb, 0x45, 0xd0, 0x10,
10147*6236dae4SAndroid Build Coastguard Worker   0x46, 0x72, 0xa8, 0xd6, 0x94, 0x1a, 0x2f, 0x23, 0x29, 0x42, 0x20, 0xb3,
10148*6236dae4SAndroid Build Coastguard Worker   0x0c, 0x22, 0x0d, 0xa7, 0x23, 0x5e, 0x84, 0x5c, 0xd2, 0x8e, 0x47, 0x49,
10149*6236dae4SAndroid Build Coastguard Worker   0x3f, 0x1e, 0x35, 0x5a, 0xd6, 0x6b, 0xe6, 0x26, 0x3a, 0x91, 0xae, 0x09,
10150*6236dae4SAndroid Build Coastguard Worker   0xed, 0x46, 0xd1, 0x01, 0x69, 0xd8, 0x50, 0xc9, 0xb1, 0x40, 0xfc, 0x24,
10151*6236dae4SAndroid Build Coastguard Worker   0x76, 0xd5, 0x89, 0x00, 0xe0, 0xe2, 0x64, 0x2c, 0xd2, 0x22, 0x5f, 0xae,
10152*6236dae4SAndroid Build Coastguard Worker   0x75, 0x72, 0x6f, 0xa5, 0x57, 0x18, 0x71, 0x30, 0x5c, 0xa3, 0x63, 0xa6,
10153*6236dae4SAndroid Build Coastguard Worker   0xcb, 0x87, 0x2a, 0x5a, 0xc5, 0x75, 0xc7, 0xce, 0xba, 0xd7, 0xf6, 0x80,
10154*6236dae4SAndroid Build Coastguard Worker   0x30, 0x49, 0x59, 0x55, 0xe3, 0x6e, 0x74, 0x99, 0xcf, 0xea, 0x31, 0x30,
10155*6236dae4SAndroid Build Coastguard Worker   0xe9, 0x65, 0x75, 0x9d, 0x79, 0xb9, 0xcf, 0x60, 0xbb, 0x8e, 0xe8, 0xb7,
10156*6236dae4SAndroid Build Coastguard Worker   0x30, 0x4e, 0x82, 0xf5, 0xda, 0xdd, 0x28, 0xaf, 0xe0, 0x9f, 0x60, 0xe5,
10157*6236dae4SAndroid Build Coastguard Worker   0xe7, 0xf4, 0x76, 0x39, 0xab, 0xe8, 0xf7, 0xd5, 0x10, 0x36, 0x2b, 0x4f,
10158*6236dae4SAndroid Build Coastguard Worker   0x09, 0xf9, 0x10, 0xcb, 0x6a, 0xe2, 0xa0, 0x63, 0x44, 0x3a, 0x1b, 0x16,
10159*6236dae4SAndroid Build Coastguard Worker   0xe3, 0x0b, 0x78, 0xd9, 0x4c, 0xfd, 0xaf, 0x27, 0xa7, 0x5f, 0xbd, 0x3a,
10160*6236dae4SAndroid Build Coastguard Worker   0x7e, 0x1f, 0xed, 0x37, 0x11, 0x95, 0x03, 0xdc, 0x17, 0x64, 0xbf, 0x66,
10161*6236dae4SAndroid Build Coastguard Worker   0x81, 0x63, 0xd7, 0x80, 0x34, 0xd6, 0xad, 0x2b, 0xc5, 0xeb, 0xae, 0x6a,
10162*6236dae4SAndroid Build Coastguard Worker   0xf5, 0xd1, 0x44, 0x92, 0xe4, 0xec, 0x04, 0x5a, 0x7b, 0x81, 0x52, 0x6c,
10163*6236dae4SAndroid Build Coastguard Worker   0x34, 0xc3, 0x8a, 0xfd, 0xbf, 0x8f, 0x8b, 0xcb, 0x2a, 0x10, 0x85, 0x61,
10164*6236dae4SAndroid Build Coastguard Worker   0x1e, 0x37, 0x03, 0x74, 0x0d, 0xc2, 0x10, 0x1b, 0x74, 0xbc, 0x13, 0xf8,
10165*6236dae4SAndroid Build Coastguard Worker   0xe7, 0x48, 0x8a, 0x47, 0x28, 0x04, 0x9c, 0x22, 0x02, 0x54, 0x28, 0x40,
10166*6236dae4SAndroid Build Coastguard Worker   0xe5, 0x36, 0x0b, 0x1a, 0x45, 0xab, 0xc0, 0x29, 0x57, 0xe9, 0xdd, 0x5a,
10167*6236dae4SAndroid Build Coastguard Worker   0x2f, 0x7a, 0x45, 0xa7, 0xd8, 0xcd, 0xe7, 0xaa, 0x52, 0xad, 0xd3, 0xd3,
10168*6236dae4SAndroid Build Coastguard Worker   0x38, 0x09, 0xc8, 0x20, 0xaf, 0x49, 0x49, 0x42, 0xf7, 0x38, 0x95, 0x16,
10169*6236dae4SAndroid Build Coastguard Worker   0xf6, 0xa2, 0x6f, 0xa9, 0x69, 0x25, 0x11, 0x6f, 0x50, 0xc0, 0x1f, 0xd8,
10170*6236dae4SAndroid Build Coastguard Worker   0x3d, 0x28, 0x50, 0x80, 0x07, 0xbc, 0xf4, 0xf5, 0xd1, 0xdf, 0x60, 0x73,
10171*6236dae4SAndroid Build Coastguard Worker   0xd0, 0x08, 0x62, 0x78, 0xf1, 0xb9, 0x1b, 0xc3, 0x28, 0x63, 0x69, 0xed,
10172*6236dae4SAndroid Build Coastguard Worker   0x51, 0xbd, 0x45, 0x67, 0x33, 0x88, 0x03, 0xa3, 0xe5, 0x45, 0xaa, 0xf0,
10173*6236dae4SAndroid Build Coastguard Worker   0xf0, 0x73, 0xfb, 0x1d, 0x44, 0x4a, 0x11, 0x90, 0x2b, 0x50, 0x1c, 0x1c,
10174*6236dae4SAndroid Build Coastguard Worker   0xaa, 0x48, 0x2e, 0x5d, 0xc2, 0xd8, 0xff, 0x7c, 0x20, 0xe5, 0x20, 0xfa,
10175*6236dae4SAndroid Build Coastguard Worker   0x4a, 0x12, 0x57, 0x36, 0x33, 0x56, 0x06, 0xaa, 0x4c, 0xc9, 0xf8, 0xfe,
10176*6236dae4SAndroid Build Coastguard Worker   0xe7, 0xd4, 0x34, 0x4d, 0x04, 0x4e, 0xbd, 0x40, 0x0d, 0x10, 0x06, 0x44,
10177*6236dae4SAndroid Build Coastguard Worker   0xc8, 0x08, 0xf6, 0xad, 0xf1, 0xe6, 0xe5, 0xa9, 0xa7, 0xd5, 0x30, 0x22,
10178*6236dae4SAndroid Build Coastguard Worker   0x25, 0x0d, 0xc1, 0x01, 0x25, 0x2c, 0x78, 0x53, 0x78, 0xd5, 0x6f, 0xb1,
10179*6236dae4SAndroid Build Coastguard Worker   0xcd, 0xce, 0x55, 0x52, 0x5e, 0x8b, 0xa7, 0xe5, 0xd6, 0x12, 0x9a, 0x8b,
10180*6236dae4SAndroid Build Coastguard Worker   0x5d, 0xc6, 0x3e, 0x44, 0xf4, 0x2d, 0x71, 0x09, 0x35, 0x15, 0xd2, 0x2d,
10181*6236dae4SAndroid Build Coastguard Worker   0xd8, 0xd3, 0xfe, 0x9e, 0x84, 0xab, 0x80, 0xb7, 0x0b, 0x9c, 0xab, 0x2f,
10182*6236dae4SAndroid Build Coastguard Worker   0x0b, 0xbc, 0x4d, 0xe8, 0x87, 0xdc, 0xf2, 0xb3, 0x1b, 0xbd, 0xeb, 0xf7,
10183*6236dae4SAndroid Build Coastguard Worker   0x03, 0x68, 0x2e, 0x78, 0xbc, 0xe0, 0x31, 0xd8, 0x47, 0x56, 0x55, 0xe1,
10184*6236dae4SAndroid Build Coastguard Worker   0xcf, 0xf3, 0xd3, 0xc3, 0xd3, 0x13, 0xf8, 0xcb, 0xd1, 0xeb, 0xe3, 0xef,
10185*6236dae4SAndroid Build Coastguard Worker   0xac, 0x39, 0x7b, 0x6e, 0x75, 0x64, 0x2e, 0x49, 0xf2, 0xd0, 0xb4, 0x05,
10186*6236dae4SAndroid Build Coastguard Worker   0x10, 0xcb, 0xd1, 0xbc, 0x09, 0xff, 0x2f, 0xbb, 0x63, 0x3f, 0x46, 0xb3,
10187*6236dae4SAndroid Build Coastguard Worker   0x6b, 0xb1, 0x2b, 0xca, 0x78, 0x58, 0x53, 0x11, 0x68, 0x79, 0x0a, 0x79,
10188*6236dae4SAndroid Build Coastguard Worker   0xc5, 0x55, 0xc0, 0xc9, 0x8d, 0xe0, 0x5a, 0x0d, 0x75, 0x7b, 0x52, 0x70,
10189*6236dae4SAndroid Build Coastguard Worker   0x1b, 0x48, 0x67, 0x55, 0xf9, 0x01, 0x7a, 0x0c, 0x3e, 0x31, 0x25, 0x31,
10190*6236dae4SAndroid Build Coastguard Worker   0x72, 0xa3, 0x61, 0x79, 0x87, 0xed, 0x35, 0x9b, 0xa7, 0x5d, 0x67, 0x20,
10191*6236dae4SAndroid Build Coastguard Worker   0x75, 0x15, 0xd5, 0xb0, 0xbd, 0xb5, 0x94, 0x42, 0x49, 0x2e, 0x59, 0x4b,
10192*6236dae4SAndroid Build Coastguard Worker   0x39, 0x21, 0x98, 0x09, 0x33, 0x4c, 0x73, 0x11, 0xb2, 0x72, 0xb9, 0xe7,
10193*6236dae4SAndroid Build Coastguard Worker   0x29, 0x87, 0x07, 0x5d, 0x5f, 0xd5, 0x5e, 0xc3, 0x06, 0x05, 0x12, 0x05,
10194*6236dae4SAndroid Build Coastguard Worker   0xf1, 0x7a, 0x18, 0x6b, 0x03, 0xff, 0xe3, 0x7d, 0x9d, 0xbe, 0xaa, 0x18,
10195*6236dae4SAndroid Build Coastguard Worker   0xb1, 0x6c, 0x9f, 0x68, 0xda, 0xce, 0xd4, 0xf7, 0xde, 0x22, 0xf1, 0xc5,
10196*6236dae4SAndroid Build Coastguard Worker   0x3f, 0xd6, 0xb4, 0x7e, 0xab, 0x05, 0x9f, 0xf6, 0x57, 0xee, 0x55, 0x68,
10197*6236dae4SAndroid Build Coastguard Worker   0x63, 0xa9, 0x5f, 0xb5, 0xb3, 0x68, 0x0c, 0xf4, 0x4e, 0xfc, 0x7d, 0x96,
10198*6236dae4SAndroid Build Coastguard Worker   0xdd, 0x24, 0x04, 0xb5, 0x82, 0xc8, 0x2c, 0x31, 0xbf, 0xd4, 0x1a, 0x23,
10199*6236dae4SAndroid Build Coastguard Worker   0x79, 0xd2, 0x20, 0x49, 0x73, 0x94, 0xdd, 0xa7, 0x0c, 0xb2, 0xdb, 0x1a,
10200*6236dae4SAndroid Build Coastguard Worker   0xe3, 0xea, 0x49, 0x83, 0xc4, 0x6a, 0xab, 0x7c, 0xf2, 0xc9, 0xd1, 0x77,
10201*6236dae4SAndroid Build Coastguard Worker   0xc7, 0xe7, 0xd1, 0xe1, 0xe9, 0xab, 0xc6, 0x99, 0x29, 0x53, 0xee, 0x2e,
10202*6236dae4SAndroid Build Coastguard Worker   0x8c, 0xb7, 0x78, 0x0e, 0x9c, 0x07, 0xaf, 0xda, 0xb6, 0xd4, 0x9c, 0x0f,
10203*6236dae4SAndroid Build Coastguard Worker   0x8a, 0x7e, 0xc5, 0x4a, 0x71, 0x57, 0xb2, 0x92, 0x31, 0xb8, 0x31, 0x11,
10204*6236dae4SAndroid Build Coastguard Worker   0x8c, 0xc2, 0x3d, 0x0e, 0xe6, 0x96, 0x53, 0x3a, 0x53, 0xd9, 0x8a, 0x40,
10205*6236dae4SAndroid Build Coastguard Worker   0xec, 0x97, 0x90, 0x94, 0xdc, 0x97, 0xcb, 0x8c, 0x98, 0x33, 0x3a, 0x11,
10206*6236dae4SAndroid Build Coastguard Worker   0xa1, 0x6a, 0x48, 0x26, 0x2f, 0x8b, 0x2a, 0x07, 0x15, 0x9c, 0x84, 0x2f,
10207*6236dae4SAndroid Build Coastguard Worker   0xc6, 0xe0, 0x09, 0xdd, 0x94, 0x31, 0x55, 0xb2, 0x5a, 0xa7, 0xe3, 0xd6,
10208*6236dae4SAndroid Build Coastguard Worker   0x12, 0x6d, 0x6a, 0x95, 0x67, 0x83, 0xdd, 0x89, 0xd1, 0x45, 0x76, 0xe1,
10209*6236dae4SAndroid Build Coastguard Worker   0x0d, 0x3b, 0x32, 0x2d, 0x0a, 0x51, 0x57, 0xcb, 0x8b, 0x86, 0x8e, 0x16,
10210*6236dae4SAndroid Build Coastguard Worker   0xb0, 0x20, 0xcd, 0x10, 0xe6, 0x3b, 0x5b, 0x92, 0x6e, 0x90, 0x64, 0x63,
10211*6236dae4SAndroid Build Coastguard Worker   0x8e, 0x4f, 0x48, 0x45, 0x47, 0xf6, 0xb3, 0xe3, 0x31, 0xda, 0x36, 0x0e,
10212*6236dae4SAndroid Build Coastguard Worker   0x02, 0x58, 0xfe, 0x98, 0x52, 0xdc, 0x46, 0x7c, 0x2c, 0xaa, 0x7b, 0xd0,
10213*6236dae4SAndroid Build Coastguard Worker   0x80, 0xef, 0xe8, 0xc6, 0xc7, 0xa3, 0x2e, 0x58, 0xe6, 0xf6, 0xcd, 0x1d,
10214*6236dae4SAndroid Build Coastguard Worker   0x4d, 0xf7, 0x57, 0xcc, 0xf4, 0xa2, 0x34, 0x6e, 0x57, 0xf5, 0x80, 0xdb,
10215*6236dae4SAndroid Build Coastguard Worker   0xd8, 0x88, 0xc2, 0x9e, 0x71, 0x47, 0xaf, 0xb4, 0xca, 0x28, 0x41, 0xc6,
10216*6236dae4SAndroid Build Coastguard Worker   0x3f, 0x63, 0x92, 0x50, 0xa5, 0x5f, 0x55, 0x18, 0x35, 0xe9, 0xa9, 0x98,
10217*6236dae4SAndroid Build Coastguard Worker   0xde, 0x4d, 0xc7, 0xd9, 0x30, 0xa3, 0x6c, 0x46, 0xc5, 0x86, 0x86, 0x4f,
10218*6236dae4SAndroid Build Coastguard Worker   0x11, 0xbd, 0xa8, 0xc5, 0x4e, 0x00, 0x85, 0xd6, 0x6a, 0x12, 0x7a, 0x15,
10219*6236dae4SAndroid Build Coastguard Worker   0x8e, 0x0a, 0x22, 0x60, 0x57, 0x40, 0x55, 0x8b, 0x41, 0x82, 0x00, 0x8e,
10220*6236dae4SAndroid Build Coastguard Worker   0x84, 0x8f, 0x94, 0xe4, 0x8c, 0x99, 0xa3, 0x3b, 0x10, 0x46, 0x8f, 0xb1,
10221*6236dae4SAndroid Build Coastguard Worker   0x98, 0x19, 0xbb, 0xa2, 0xca, 0x93, 0x99, 0x43, 0x33, 0x56, 0xf4, 0x13,
10222*6236dae4SAndroid Build Coastguard Worker   0x57, 0xc2, 0xb0, 0xdd, 0x23, 0x1e, 0x37, 0xb4, 0xb8, 0x86, 0xc6, 0xe5,
10223*6236dae4SAndroid Build Coastguard Worker   0x30, 0x08, 0x65, 0x10, 0x54, 0xad, 0xc8, 0xe8, 0x33, 0xf7, 0x2b, 0xf8,
10224*6236dae4SAndroid Build Coastguard Worker   0x96, 0x7e, 0x83, 0x11, 0xc0, 0xed, 0x27, 0xdc, 0x50, 0xbe, 0xfd, 0x06,
10225*6236dae4SAndroid Build Coastguard Worker   0x19, 0x74, 0x0f, 0x7f, 0xe5, 0x79, 0x9b, 0x5f, 0x9c, 0x3c, 0x01, 0xfa,
10226*6236dae4SAndroid Build Coastguard Worker   0x90, 0x79, 0xf2, 0x85, 0xf8, 0xe1, 0x53, 0x84, 0xe5, 0x11, 0x27, 0x0f,
10227*6236dae4SAndroid Build Coastguard Worker   0x58, 0x4d, 0x63, 0x59, 0xae, 0xfc, 0x84, 0xf2, 0xdd, 0xc8, 0x93, 0x4e,
10228*6236dae4SAndroid Build Coastguard Worker   0xd4, 0xb7, 0xf3, 0x01, 0xf5, 0xde, 0x75, 0x5a, 0xbe, 0x94, 0xef, 0x62,
10229*6236dae4SAndroid Build Coastguard Worker   0x39, 0x02, 0xdb, 0xb8, 0x04, 0xb2, 0x99, 0x19, 0x46, 0xe4, 0xe1, 0xf8,
10230*6236dae4SAndroid Build Coastguard Worker   0x47, 0x58, 0x73, 0x04, 0x57, 0x55, 0x61, 0xfe, 0x2d, 0x6f, 0x78, 0xb8,
10231*6236dae4SAndroid Build Coastguard Worker   0x23, 0xad, 0xc8, 0x34, 0x52, 0x6c, 0x56, 0x32, 0xa4, 0x96, 0x55, 0x35,
10232*6236dae4SAndroid Build Coastguard Worker   0xb5, 0xb3, 0x26, 0xaf, 0x17, 0x75, 0x10, 0x04, 0x93, 0x8f, 0xde, 0x16,
10233*6236dae4SAndroid Build Coastguard Worker   0x5e, 0x7f, 0x93, 0xe2, 0xa2, 0x16, 0x08, 0xf9, 0x08, 0xeb, 0x87, 0x98,
10234*6236dae4SAndroid Build Coastguard Worker   0x3e, 0xa0, 0x77, 0x5f, 0x8a, 0x72, 0xe5, 0xf4, 0x3f, 0x41, 0xe6, 0x37,
10235*6236dae4SAndroid Build Coastguard Worker   0xae, 0x75, 0x10, 0x02, 0x14, 0x35, 0x09, 0xcc, 0xae, 0x5d, 0x03, 0xb5,
10236*6236dae4SAndroid Build Coastguard Worker   0xb9, 0x61, 0xe8, 0x80, 0x8b, 0x42, 0x20, 0x58, 0xda, 0x0a, 0x50, 0x1a,
10237*6236dae4SAndroid Build Coastguard Worker   0xa9, 0xe7, 0xc5, 0x6d, 0x42, 0xc2, 0xc5, 0x00, 0x0b, 0x59, 0xef, 0x9a,
10238*6236dae4SAndroid Build Coastguard Worker   0xc9, 0x1a, 0x41, 0x2d, 0xc6, 0x2f, 0xa1, 0xcc, 0xc9, 0x23, 0x9c, 0x70,
10239*6236dae4SAndroid Build Coastguard Worker   0x98, 0x8a, 0xab, 0xaf, 0xb8, 0x30, 0x5c, 0x2e, 0xb3, 0x2e, 0xb9, 0x9e,
10240*6236dae4SAndroid Build Coastguard Worker   0x8d, 0xf4, 0xe4, 0x94, 0x2c, 0x92, 0xcc, 0x37, 0x69, 0x08, 0x23, 0x53,
10241*6236dae4SAndroid Build Coastguard Worker   0xe1, 0xcf, 0x1d, 0x45, 0xd9, 0x22, 0x84, 0x3a, 0xeb, 0xd9, 0x34, 0xeb,
10242*6236dae4SAndroid Build Coastguard Worker   0xb9, 0x25, 0x4e, 0x39, 0x3b, 0xe8, 0xf7, 0x95, 0x4f, 0x0e, 0x03, 0x2c,
10243*6236dae4SAndroid Build Coastguard Worker   0x21, 0xd9, 0x28, 0x88, 0x5d, 0xa9, 0xb8, 0xd9, 0xbe, 0xf5, 0x25, 0x83,
10244*6236dae4SAndroid Build Coastguard Worker   0xb4, 0x52, 0x23, 0x37, 0x59, 0xd8, 0xbd, 0x62, 0x28, 0x3e, 0x72, 0x80,
10245*6236dae4SAndroid Build Coastguard Worker   0xcb, 0x7a, 0x99, 0xaf, 0x74, 0xc5, 0xb7, 0x8b, 0x29, 0x19, 0xb6, 0x04,
10246*6236dae4SAndroid Build Coastguard Worker   0x38, 0xd9, 0x09, 0xe9, 0x4c, 0x78, 0x5b, 0x1a, 0x04, 0x26, 0x1f, 0xc6,
10247*6236dae4SAndroid Build Coastguard Worker   0xdd, 0x14, 0x25, 0x99, 0x33, 0x91, 0x6d, 0x7f, 0xd1, 0xdf, 0xf0, 0xa2,
10248*6236dae4SAndroid Build Coastguard Worker   0xba, 0xbf, 0x68, 0xd1, 0xdf, 0x04, 0x16, 0xbd, 0x63, 0x0f, 0x0e, 0x7f,
10249*6236dae4SAndroid Build Coastguard Worker   0x2c, 0xda, 0xda, 0x7a, 0xae, 0xb5, 0xe2, 0xc0, 0xc7, 0xf4, 0xbd, 0xe0,
10250*6236dae4SAndroid Build Coastguard Worker   0x07, 0xe1, 0xb9, 0x98, 0xaa, 0x50, 0x02, 0x5e, 0x0c, 0x7b, 0x7a, 0x9d,
10251*6236dae4SAndroid Build Coastguard Worker   0x4f, 0xed, 0x9a, 0x4f, 0x81, 0xa5, 0x83, 0x63, 0xa1, 0x4a, 0xc5, 0xe2,
10252*6236dae4SAndroid Build Coastguard Worker   0xc7, 0x17, 0x4b, 0xea, 0x75, 0x44, 0x8f, 0xd1, 0x2d, 0x66, 0xd0, 0xd7,
10253*6236dae4SAndroid Build Coastguard Worker   0xe1, 0x7c, 0x6b, 0x9d, 0x85, 0xf3, 0x9d, 0x67, 0xc6, 0xe1, 0xbf, 0xbe,
10254*6236dae4SAndroid Build Coastguard Worker   0xa5, 0xf9, 0x77, 0x07, 0x24, 0xa4, 0xc7, 0xe9, 0x84, 0x38, 0x73, 0x94,
10255*6236dae4SAndroid Build Coastguard Worker   0x22, 0x32, 0xaf, 0xd5, 0x58, 0x19, 0xa2, 0xe7, 0xa2, 0x4c, 0xa8, 0xd5,
10256*6236dae4SAndroid Build Coastguard Worker   0xd9, 0x38, 0xb9, 0x0f, 0x60, 0x91, 0x6b, 0x03, 0x43, 0xf2, 0xab, 0xc1,
10257*6236dae4SAndroid Build Coastguard Worker   0xf1, 0xbc, 0x4c, 0x73, 0x74, 0x21, 0x91, 0x9a, 0x20, 0xae, 0x0a, 0x74,
10258*6236dae4SAndroid Build Coastguard Worker   0x76, 0x50, 0xca, 0xdd, 0x85, 0x89, 0x7d, 0xca, 0x57, 0x3d, 0xb0, 0x3e,
10259*6236dae4SAndroid Build Coastguard Worker   0x0c, 0x2f, 0xd5, 0xed, 0xf2, 0xdb, 0x70, 0x8b, 0x81, 0xcd, 0xe7, 0x76,
10260*6236dae4SAndroid Build Coastguard Worker   0x8b, 0x86, 0xce, 0x25, 0x81, 0xe6, 0x1a, 0xa3, 0x82, 0xba, 0xf4, 0x53,
10261*6236dae4SAndroid Build Coastguard Worker   0x81, 0xa2, 0x49, 0x09, 0x52, 0xc1, 0xe5, 0xf1, 0xa5, 0xbc, 0x69, 0xbf,
10262*6236dae4SAndroid Build Coastguard Worker   0xc2, 0x02, 0xf9, 0x0c, 0xc5, 0x9d, 0x34, 0x75, 0xea, 0x45, 0xa7, 0x14,
10263*6236dae4SAndroid Build Coastguard Worker   0x31, 0x6a, 0x74, 0x57, 0x64, 0x7b, 0x2d, 0xb1, 0x31, 0xf7, 0x26, 0xeb,
10264*6236dae4SAndroid Build Coastguard Worker   0xbe, 0xb4, 0x7b, 0x6c, 0xa6, 0xa4, 0xa9, 0xb2, 0xeb, 0x2a, 0x67, 0xcd,
10265*6236dae4SAndroid Build Coastguard Worker   0x5d, 0xa3, 0xd1, 0xd6, 0x34, 0x7a, 0x7f, 0x74, 0xfe, 0x9e, 0x32, 0xc7,
10266*6236dae4SAndroid Build Coastguard Worker   0x50, 0x04, 0x78, 0x56, 0x56, 0x52, 0xae, 0x19, 0x4c, 0x60, 0x11, 0x68,
10267*6236dae4SAndroid Build Coastguard Worker   0x56, 0x45, 0xb1, 0x22, 0x82, 0x01, 0xde, 0xcd, 0x8e, 0xf3, 0x3f, 0xf5,
10268*6236dae4SAndroid Build Coastguard Worker   0x3d, 0x53, 0x01, 0xc4, 0x24, 0xb7, 0x49, 0x25, 0x4d, 0xe8, 0xf9, 0xad,
10269*6236dae4SAndroid Build Coastguard Worker   0x2d, 0x9b, 0x3d, 0x0d, 0x0b, 0xbf, 0x4c, 0x85, 0x2b, 0xa5, 0xe2, 0xb3,
10270*6236dae4SAndroid Build Coastguard Worker   0x27, 0x95, 0x09, 0x5a, 0x99, 0xad, 0x0e, 0x0d, 0x7c, 0x88, 0xab, 0x02,
10271*6236dae4SAndroid Build Coastguard Worker   0x8a, 0x32, 0x70, 0x4f, 0xca, 0xa7, 0x55, 0x35, 0xe0, 0x29, 0x18, 0xc3,
10272*6236dae4SAndroid Build Coastguard Worker   0x52, 0xbe, 0x26, 0xc5, 0x48, 0x5c, 0x87, 0xc0, 0x4d, 0x89, 0xa2, 0x9d,
10273*6236dae4SAndroid Build Coastguard Worker   0x8d, 0x8d, 0x40, 0x2d, 0x61, 0x32, 0x00, 0xb1, 0x2a, 0x8a, 0x9e, 0x94,
10274*6236dae4SAndroid Build Coastguard Worker   0xfc, 0x73, 0xd9, 0x35, 0xed, 0x17, 0xa9, 0x9f, 0x15, 0xda, 0x22, 0xf1,
10275*6236dae4SAndroid Build Coastguard Worker   0x05, 0x86, 0xdc, 0x90, 0x62, 0xbe, 0xd1, 0xb1, 0xc5, 0x52, 0xe6, 0x5b,
10276*6236dae4SAndroid Build Coastguard Worker   0x82, 0x20, 0x50, 0xa2, 0xb5, 0xa4, 0x0b, 0xe3, 0x13, 0x70, 0xc6, 0xb6,
10277*6236dae4SAndroid Build Coastguard Worker   0x75, 0xb3, 0x90, 0xbb, 0x82, 0xc3, 0xbf, 0xde, 0xcc, 0x3c, 0x09, 0xbe,
10278*6236dae4SAndroid Build Coastguard Worker   0xb5, 0x1b, 0xe0, 0x88, 0xfe, 0xf9, 0xe9, 0x7b, 0x61, 0x31, 0xff, 0x76,
10279*6236dae4SAndroid Build Coastguard Worker   0x26, 0x8a, 0xd0, 0x13, 0x16, 0x0b, 0xb5, 0xeb, 0x83, 0x4b, 0x32, 0xf0,
10280*6236dae4SAndroid Build Coastguard Worker   0x24, 0x8e, 0x6b, 0xba, 0xfb, 0x38, 0x5f, 0x65, 0x19, 0xf0, 0x1e, 0x71,
10281*6236dae4SAndroid Build Coastguard Worker   0x2a, 0x64, 0x69, 0xdf, 0x08, 0xce, 0x8d, 0xf6, 0x84, 0xd2, 0x93, 0xe9,
10282*6236dae4SAndroid Build Coastguard Worker   0xbc, 0xc4, 0x07, 0xed, 0x94, 0x4f, 0x30, 0xe3, 0xba, 0x20, 0x1f, 0x09,
10283*6236dae4SAndroid Build Coastguard Worker   0xc2, 0x0b, 0xf6, 0x94, 0x92, 0x82, 0x28, 0x4d, 0xda, 0xf7, 0x78, 0x91,
10284*6236dae4SAndroid Build Coastguard Worker   0x0f, 0xd1, 0xa9, 0x6d, 0xfb, 0xc5, 0x32, 0x5e, 0x96, 0x69, 0x0c, 0x65,
10285*6236dae4SAndroid Build Coastguard Worker   0xfc, 0x31, 0x25, 0xe7, 0x72, 0x5b, 0x2c, 0xc9, 0x82, 0x4e, 0x38, 0x6c,
10286*6236dae4SAndroid Build Coastguard Worker   0x33, 0xf4, 0xba, 0x2a, 0x16, 0xe5, 0x48, 0xb2, 0x5f, 0xe5, 0xea, 0x54,
10287*6236dae4SAndroid Build Coastguard Worker   0x5b, 0xc2, 0xaa, 0xe0, 0xf6, 0xde, 0x3f, 0x3b, 0x7d, 0x7f, 0x6e, 0x6e,
10288*6236dae4SAndroid Build Coastguard Worker   0x7d, 0xfc, 0x2c, 0xfd, 0xa0, 0x75, 0x7a, 0xb0, 0xaa, 0x50, 0x40, 0x16,
10289*6236dae4SAndroid Build Coastguard Worker   0xe5, 0x6e, 0xc3, 0x1d, 0xf0, 0x62, 0x67, 0x62, 0x2e, 0xf0, 0x96, 0xd0,
10290*6236dae4SAndroid Build Coastguard Worker   0x38, 0x3a, 0x10, 0x9c, 0x5a, 0xc4, 0x8d, 0x2b, 0xd8, 0x61, 0x6a, 0xa4,
10291*6236dae4SAndroid Build Coastguard Worker   0x0d, 0xfb, 0x5d, 0xe8, 0xaa, 0x99, 0x03, 0x04, 0x6e, 0xf5, 0xde, 0xed,
10292*6236dae4SAndroid Build Coastguard Worker   0xcd, 0x00, 0x67, 0xe0, 0x95, 0xf0, 0xfe, 0xa8, 0x7f, 0xce, 0x53, 0xc7,
10293*6236dae4SAndroid Build Coastguard Worker   0xbf, 0x79, 0x53, 0x67, 0x28, 0x2a, 0xf9, 0xa1, 0x67, 0xc3, 0x18, 0xce,
10294*6236dae4SAndroid Build Coastguard Worker   0xc0, 0x6c, 0x75, 0x74, 0xd7, 0xe1, 0xf8, 0x81, 0x5e, 0xda, 0xdb, 0xdb,
10295*6236dae4SAndroid Build Coastguard Worker   0x4e, 0x95, 0x04, 0x89, 0x4c, 0xe1, 0x13, 0x3a, 0xdf, 0xf4, 0x83, 0x8e,
10296*6236dae4SAndroid Build Coastguard Worker   0x7c, 0xa4, 0x03, 0x9a, 0x99, 0x9c, 0x87, 0x46, 0xf7, 0xc0, 0xed, 0x1d,
10297*6236dae4SAndroid Build Coastguard Worker   0x3b, 0xc4, 0x14, 0xaf, 0x2a, 0x19, 0xe1, 0x98, 0x61, 0xd0, 0xc6, 0xf4,
10298*6236dae4SAndroid Build Coastguard Worker   0xc3, 0x58, 0x79, 0x85, 0xee, 0x0b, 0xe6, 0x0a, 0x7e, 0xce, 0x8e, 0xb3,
10299*6236dae4SAndroid Build Coastguard Worker   0x6b, 0x7c, 0xbf, 0xaa, 0x2d, 0x38, 0x73, 0xc1, 0x1f, 0x6b, 0xc6, 0x30,
10300*6236dae4SAndroid Build Coastguard Worker   0x29, 0x1c, 0x2d, 0x9e, 0xdb, 0x66, 0x56, 0xff, 0x32, 0x19, 0xd9, 0x1a,
10301*6236dae4SAndroid Build Coastguard Worker   0x07, 0x5e, 0x7b, 0xe3, 0x5a, 0x00, 0x7d, 0x2b, 0xcb, 0x67, 0xdc, 0x7b,
10302*6236dae4SAndroid Build Coastguard Worker   0x22, 0x29, 0xc7, 0xd8, 0xe5, 0x16, 0xa4, 0x48, 0xc9, 0xe8, 0x12, 0xb7,
10303*6236dae4SAndroid Build Coastguard Worker   0x79, 0xa8, 0xf7, 0x99, 0xf3, 0x0d, 0xb9, 0x82, 0xd0, 0x91, 0x38, 0x74,
10304*6236dae4SAndroid Build Coastguard Worker   0xae, 0xea, 0x64, 0x24, 0xa7, 0xd8, 0x2a, 0xfc, 0xe8, 0x5a, 0x36, 0x17,
10305*6236dae4SAndroid Build Coastguard Worker   0x45, 0x2f, 0x3a, 0x4b, 0x4b, 0xea, 0x69, 0x04, 0xdc, 0xfa, 0x1f, 0x76,
10306*6236dae4SAndroid Build Coastguard Worker   0x38, 0x3e, 0x26, 0x18, 0x2f, 0x56, 0x55, 0x00, 0xb1, 0xbb, 0x7a, 0xfc,
10307*6236dae4SAndroid Build Coastguard Worker   0x13, 0x82, 0xf1, 0xb2, 0x9d, 0xf3, 0xbc, 0xf5, 0xbe, 0xb4, 0x2f, 0x57,
10308*6236dae4SAndroid Build Coastguard Worker   0xb0, 0x14, 0x30, 0xe1, 0xdb, 0x8f, 0xec, 0x08, 0x67, 0x81, 0x7d, 0x4f,
10309*6236dae4SAndroid Build Coastguard Worker   0x43, 0x18, 0xe1, 0x8c, 0xa7, 0x59, 0xda, 0x69, 0x8f, 0x78, 0x84, 0x0b,
10310*6236dae4SAndroid Build Coastguard Worker   0x7d, 0xa6, 0x21, 0xc4, 0x9d, 0xa1, 0xf8, 0x3a, 0x38, 0x18, 0x98, 0xbe,
10311*6236dae4SAndroid Build Coastguard Worker   0xea, 0x58, 0x6a, 0x85, 0xca, 0x1c, 0x8c, 0x95, 0xa3, 0xac, 0x1d, 0x9b,
10312*6236dae4SAndroid Build Coastguard Worker   0x7a, 0x4b, 0x37, 0xb1, 0x8a, 0x68, 0x6b, 0xf0, 0x9c, 0xdb, 0xd4, 0x4d,
10313*6236dae4SAndroid Build Coastguard Worker   0x9a, 0xd9, 0x0f, 0x3b, 0xcc, 0x8b, 0x86, 0x6f, 0xcc, 0x0d, 0xd6, 0x98,
10314*6236dae4SAndroid Build Coastguard Worker   0x9d, 0xd4, 0x78, 0x89, 0x53, 0x6f, 0x90, 0x10, 0x22, 0x6b, 0x02, 0xf7,
10315*6236dae4SAndroid Build Coastguard Worker   0xbb, 0x6b, 0x00, 0xec, 0xec, 0xda, 0xa1, 0x2e, 0x08, 0xa3, 0x56, 0x0b,
10316*6236dae4SAndroid Build Coastguard Worker   0x10, 0x0e, 0x1a, 0x61, 0x55, 0xd3, 0xca, 0x35, 0x33, 0x4f, 0xba, 0x06,
10317*6236dae4SAndroid Build Coastguard Worker   0x65, 0xe0, 0x50, 0x39, 0xdf, 0x78, 0x2e, 0x76, 0x31, 0x1a, 0xc6, 0xf9,
10318*6236dae4SAndroid Build Coastguard Worker   0xbd, 0x2d, 0xc0, 0xec, 0x71, 0x5a, 0x15, 0x7b, 0xd6, 0xb8, 0x99, 0xb7,
10319*6236dae4SAndroid Build Coastguard Worker   0xfc, 0x46, 0xdc, 0xc5, 0x57, 0xe2, 0xb9, 0x99, 0x24, 0x77, 0xde, 0x25,
10320*6236dae4SAndroid Build Coastguard Worker   0x3f, 0x99, 0x4d, 0xa4, 0xf6, 0xc8, 0xf9, 0xd2, 0x0b, 0x71, 0x73, 0x70,
10321*6236dae4SAndroid Build Coastguard Worker   0xb9, 0x9c, 0xc1, 0xe2, 0x75, 0x16, 0x82, 0x36, 0x97, 0x98, 0xd4, 0x9a,
10322*6236dae4SAndroid Build Coastguard Worker   0x1f, 0x07, 0xe2, 0x11, 0x8b, 0x51, 0x2a, 0xd3, 0xf1, 0x31, 0xd0, 0x07,
10323*6236dae4SAndroid Build Coastguard Worker   0x03, 0x05, 0xad, 0x28, 0xbc, 0xea, 0x70, 0x28, 0x1c, 0x70, 0x6a, 0xa4,
10324*6236dae4SAndroid Build Coastguard Worker   0xb7, 0x3c, 0xc6, 0xbf, 0x52, 0x94, 0xc9, 0x40, 0xfc, 0xb6, 0x4c, 0x7f,
10325*6236dae4SAndroid Build Coastguard Worker   0x22, 0x65, 0xb2, 0xc7, 0xd7, 0x0d, 0x63, 0x5b, 0xf0, 0x2a, 0xf3, 0x59,
10326*6236dae4SAndroid Build Coastguard Worker   0xe2, 0x18, 0xfa, 0x3b, 0x2f, 0xc5, 0x87, 0x25, 0x3e, 0x12, 0x4c, 0x2d,
10327*6236dae4SAndroid Build Coastguard Worker   0xcb, 0xd3, 0xda, 0x4b, 0x86, 0xd9, 0xdd, 0xb4, 0xfe, 0xdd, 0x34, 0x2d,
10328*6236dae4SAndroid Build Coastguard Worker   0xa5, 0x16, 0xd8, 0x2d, 0xb3, 0xc1, 0x4e, 0x5a, 0xfd, 0x37, 0xd1, 0xdb,
10329*6236dae4SAndroid Build Coastguard Worker   0x57, 0xbb, 0x98, 0x21, 0x7c, 0x99, 0x96, 0xd3, 0x12, 0x6b, 0x40, 0x94,
10330*6236dae4SAndroid Build Coastguard Worker   0x87, 0x4f, 0xbf, 0x76, 0x06, 0xdb, 0xb2, 0x29, 0xa0, 0xda, 0x97, 0x40,
10331*6236dae4SAndroid Build Coastguard Worker   0xc5, 0x19, 0x9b, 0x0c, 0xb0, 0x85, 0x88, 0x8b, 0x74, 0xd9, 0x95, 0xcc,
10332*6236dae4SAndroid Build Coastguard Worker   0x00, 0xc5, 0xed, 0x57, 0x3c, 0x69, 0xd2, 0x5b, 0x42, 0x40, 0x32, 0xce,
10333*6236dae4SAndroid Build Coastguard Worker   0x47, 0xb6, 0xad, 0x04, 0x2b, 0xef, 0xa7, 0xe4, 0xb3, 0xbf, 0x44, 0xd3,
10334*6236dae4SAndroid Build Coastguard Worker   0x20, 0x70, 0xa2, 0x76, 0x59, 0x6a, 0x1e, 0xf2, 0xb9, 0x47, 0x25, 0xd6,
10335*6236dae4SAndroid Build Coastguard Worker   0x7f, 0x8d, 0x54, 0xf4, 0x56, 0x84, 0x6c, 0x77, 0xd7, 0x75, 0x2d, 0x60,
10336*6236dae4SAndroid Build Coastguard Worker   0x07, 0x21, 0x71, 0xf1, 0x93, 0x4b, 0x1f, 0x75, 0x14, 0xe7, 0xd9, 0x67,
10337*6236dae4SAndroid Build Coastguard Worker   0xe6, 0x59, 0xf4, 0x2a, 0x51, 0x68, 0x40, 0xdb, 0xbc, 0xcf, 0x79, 0x43,
10338*6236dae4SAndroid Build Coastguard Worker   0xd4, 0x5f, 0x35, 0x12, 0x54, 0x35, 0x63, 0x8d, 0xc7, 0xa1, 0xbd, 0x51,
10339*6236dae4SAndroid Build Coastguard Worker   0x14, 0x77, 0x5f, 0xb6, 0x1c, 0x2a, 0xd4, 0x41, 0xd3, 0x30, 0x26, 0x2d,
10340*6236dae4SAndroid Build Coastguard Worker   0x2a, 0x9b, 0x5e, 0xb9, 0x87, 0xf3, 0x19, 0xdf, 0xd2, 0x67, 0xed, 0xaa,
10341*6236dae4SAndroid Build Coastguard Worker   0x29, 0x95, 0x81, 0xa9, 0x0b, 0x5e, 0xa7, 0x47, 0x9d, 0x59, 0xff, 0xf0,
10342*6236dae4SAndroid Build Coastguard Worker   0x20, 0x9a, 0x57, 0x08, 0x4e, 0xbc, 0xee, 0x7c, 0x64, 0x53, 0xce, 0x0c,
10343*6236dae4SAndroid Build Coastguard Worker   0x2c, 0xb9, 0xb8, 0xcc, 0xb3, 0x9f, 0x15, 0xdd, 0x0c, 0xef, 0x67, 0x6d,
10344*6236dae4SAndroid Build Coastguard Worker   0x57, 0xef, 0x3c, 0xbe, 0x25, 0x02, 0xe3, 0x26, 0x19, 0x67, 0x22, 0x14,
10345*6236dae4SAndroid Build Coastguard Worker   0x1b, 0x8d, 0x14, 0x9f, 0x6d, 0x0b, 0xd7, 0xde, 0x65, 0x78, 0x44, 0x39,
10346*6236dae4SAndroid Build Coastguard Worker   0xf9, 0x0f, 0x8b, 0xfa, 0x30, 0xd1, 0x2c, 0x6d, 0x40, 0xc9, 0x3d, 0xdb,
10347*6236dae4SAndroid Build Coastguard Worker   0x11, 0xad, 0x4b, 0xb5, 0x63, 0xbc, 0x7b, 0x91, 0x10, 0x63, 0x6a, 0xc2,
10348*6236dae4SAndroid Build Coastguard Worker   0xd0, 0x16, 0xd3, 0xcf, 0xe4, 0xde, 0x93, 0xad, 0xa4, 0x88, 0x1a, 0xaa,
10349*6236dae4SAndroid Build Coastguard Worker   0x9a, 0x22, 0xa1, 0x11, 0xf3, 0xa9, 0x4c, 0x6f, 0xb3, 0x5c, 0x2a, 0xe3,
10350*6236dae4SAndroid Build Coastguard Worker   0xbc, 0xd7, 0x9f, 0xcd, 0xf1, 0x4d, 0x56, 0x7c, 0x69, 0x1e, 0x11, 0x2f,
10351*6236dae4SAndroid Build Coastguard Worker   0x39, 0xcf, 0x3f, 0xb7, 0x27, 0xa1, 0xd1, 0xc0, 0x42, 0xbb, 0x17, 0x74,
10352*6236dae4SAndroid Build Coastguard Worker   0xdd, 0x26, 0x25, 0x7a, 0x96, 0xd8, 0x8d, 0x92, 0x72, 0x47, 0xcd, 0x40,
10353*6236dae4SAndroid Build Coastguard Worker   0xcf, 0xc5, 0x0b, 0xf3, 0xf9, 0x71, 0x81, 0xd2, 0xd4, 0xf9, 0x1e, 0xb3,
10354*6236dae4SAndroid Build Coastguard Worker   0xd4, 0x6b, 0x0a, 0x99, 0x59, 0xf3, 0x20, 0x8f, 0xce, 0x43, 0xe8, 0x35,
10355*6236dae4SAndroid Build Coastguard Worker   0xcf, 0x5e, 0x0a, 0x6f, 0xe8, 0x7d, 0x69, 0x0c, 0xd6, 0x79, 0x6f, 0x3c,
10356*6236dae4SAndroid Build Coastguard Worker   0xdf, 0x70, 0xd5, 0xd5, 0x11, 0xa6, 0x10, 0x31, 0xca, 0xd7, 0xdc, 0x17,
10357*6236dae4SAndroid Build Coastguard Worker   0x98, 0x33, 0x8e, 0xc7, 0x88, 0x9b, 0x39, 0xe6, 0x67, 0x6c, 0xb7, 0x01,
10358*6236dae4SAndroid Build Coastguard Worker   0xfb, 0xd8, 0x56, 0x43, 0xe8, 0x9e, 0xbb, 0x0a, 0x54, 0x74, 0xfc, 0xca,
10359*6236dae4SAndroid Build Coastguard Worker   0x79, 0x70, 0xdb, 0x2e, 0x30, 0x19, 0xa3, 0x36, 0x70, 0xcf, 0xbe, 0xaa,
10360*6236dae4SAndroid Build Coastguard Worker   0x2a, 0x5a, 0xc5, 0xb7, 0x9c, 0x7a, 0xe6, 0xe7, 0xcc, 0x19, 0xef, 0x0a,
10361*6236dae4SAndroid Build Coastguard Worker   0x8e, 0xb5, 0x11, 0xf9, 0xbd, 0x67, 0x98, 0x1d, 0x0e, 0x0d, 0x98, 0xb2,
10362*6236dae4SAndroid Build Coastguard Worker   0x05, 0x52, 0xf6, 0xf6, 0xfe, 0xf9, 0xb3, 0x05, 0xcf, 0xca, 0xa5, 0x59,
10363*6236dae4SAndroid Build Coastguard Worker   0x99, 0xab, 0xde, 0x79, 0xef, 0x79, 0xe3, 0x98, 0xab, 0x2d, 0xa0, 0xf5,
10364*6236dae4SAndroid Build Coastguard Worker   0x8c, 0x70, 0xca, 0xf0, 0x90, 0x45, 0xab, 0x08, 0x58, 0xf4, 0x1f, 0xea,
10365*6236dae4SAndroid Build Coastguard Worker   0x17, 0x2c, 0x11, 0xed, 0xbf, 0xfa, 0x0f, 0x77, 0xaa, 0x2f, 0x5c, 0x08,
10366*6236dae4SAndroid Build Coastguard Worker   0x07, 0x76, 0x0a, 0x72, 0x2d, 0x7f, 0x3e, 0x6c, 0xf4, 0x23, 0x6d, 0x39,
10367*6236dae4SAndroid Build Coastguard Worker   0xf1, 0x9c, 0x11, 0x78, 0xbb, 0x41, 0x85, 0x98, 0xe5, 0x56, 0x68, 0xb0,
10368*6236dae4SAndroid Build Coastguard Worker   0x05, 0x28, 0x38, 0x65, 0x23, 0xb7, 0x2b, 0x04, 0x8a, 0x7b, 0x71, 0x40,
10369*6236dae4SAndroid Build Coastguard Worker   0x39, 0x3e, 0xd4, 0x8d, 0xd6, 0x09, 0xa8, 0xae, 0x66, 0x6c, 0x6e, 0x9b,
10370*6236dae4SAndroid Build Coastguard Worker   0x15, 0x85, 0x0a, 0xdf, 0x5f, 0x6c, 0xb5, 0x24, 0x17, 0xe9, 0x8c, 0x87,
10371*6236dae4SAndroid Build Coastguard Worker   0x30, 0x5b, 0xb6, 0xc7, 0xb5, 0x09, 0x25, 0x9a, 0xa8, 0x65, 0xc1, 0x3e,
10372*6236dae4SAndroid Build Coastguard Worker   0x2e, 0x74, 0x06, 0xd9, 0x01, 0x44, 0x5f, 0xc1, 0xc4, 0x5d, 0x44, 0xbf,
10373*6236dae4SAndroid Build Coastguard Worker   0x4e, 0x87, 0xd7, 0xde, 0x0e, 0xbd, 0xd8, 0x31, 0x24, 0x22, 0xab, 0x04,
10374*6236dae4SAndroid Build Coastguard Worker   0x0c, 0xfc, 0xb9, 0x26, 0xfc, 0x0b, 0xde, 0xf9, 0xb7, 0x59, 0xc5, 0xc1,
10375*6236dae4SAndroid Build Coastguard Worker   0x40, 0x60, 0xe7, 0xf7, 0xe7, 0xfd, 0xb3, 0xe8, 0xb0, 0x9f, 0xfe, 0x5d,
10376*6236dae4SAndroid Build Coastguard Worker   0x32, 0xf0, 0x1d, 0x01, 0xf7, 0xe2, 0x59, 0xf8, 0xe9, 0xbe, 0xf8, 0xe7,
10377*6236dae4SAndroid Build Coastguard Worker   0x8e, 0xa9, 0xbb, 0x12, 0xd0, 0xb3, 0xf1, 0xd2, 0x73, 0x61, 0x6a, 0x75,
10378*6236dae4SAndroid Build Coastguard Worker   0xe0, 0xb3, 0x1f, 0x0b, 0xa7, 0x46, 0x12, 0x6d, 0xdc, 0xd8, 0x9d, 0x17,
10379*6236dae4SAndroid Build Coastguard Worker   0x2f, 0xac, 0x69, 0x72, 0x35, 0xcb, 0xaf, 0x8d, 0xd2, 0x27, 0x98, 0xef,
10380*6236dae4SAndroid Build Coastguard Worker   0xba, 0x55, 0xce, 0x1b, 0x2f, 0x95, 0xc1, 0x1d, 0x8f, 0xa6, 0xc9, 0xb5,
10381*6236dae4SAndroid Build Coastguard Worker   0xed, 0x8a, 0xa7, 0x41, 0x1c, 0x88, 0x12, 0xd0, 0x04, 0x29, 0xd9, 0x48,
10382*6236dae4SAndroid Build Coastguard Worker   0x7c, 0x7e, 0xb9, 0x61, 0x6e, 0x51, 0x41, 0x87, 0xbd, 0xa6, 0xc4, 0x1f,
10383*6236dae4SAndroid Build Coastguard Worker   0xe1, 0x20, 0xcd, 0xeb, 0x9b, 0x66, 0x39, 0xfa, 0x12, 0xec, 0x23, 0xce,
10384*6236dae4SAndroid Build Coastguard Worker   0x08, 0x9b, 0x0d, 0x61, 0xde, 0x56, 0x1b, 0x18, 0x3a, 0xc6, 0x79, 0x9c,
10385*6236dae4SAndroid Build Coastguard Worker   0x19, 0xa1, 0x8f, 0xf1, 0xc5, 0x89, 0x30, 0x5f, 0x96, 0xab, 0xe7, 0xac,
10386*6236dae4SAndroid Build Coastguard Worker   0xe5, 0x0e, 0x33, 0x2f, 0x6d, 0x2b, 0xe7, 0x22, 0x50, 0x76, 0x48, 0x43,
10387*6236dae4SAndroid Build Coastguard Worker   0xe5, 0x78, 0x3f, 0x29, 0x0f, 0x84, 0x4d, 0x28, 0xfa, 0xb2, 0x1d, 0x61,
10388*6236dae4SAndroid Build Coastguard Worker   0x47, 0x47, 0x68, 0x61, 0xb5, 0x9a, 0xc1, 0x8c, 0xaf, 0x26, 0xf1, 0x8c,
10389*6236dae4SAndroid Build Coastguard Worker   0xa5, 0x97, 0xbb, 0x12, 0x32, 0x7a, 0xc8, 0x9f, 0xb7, 0xbe, 0x1d, 0xc9,
10390*6236dae4SAndroid Build Coastguard Worker   0xd4, 0x4d, 0xe5, 0x0e, 0x56, 0x79, 0x88, 0xfb, 0xae, 0x0d, 0x58, 0x2e,
10391*6236dae4SAndroid Build Coastguard Worker   0xce, 0x3c, 0x2e, 0xc6, 0xd2, 0x82, 0xd5, 0x45, 0xfe, 0xbc, 0xa6, 0x07,
10392*6236dae4SAndroid Build Coastguard Worker   0xcf, 0x83, 0x53, 0x5a, 0xe0, 0xcf, 0x7b, 0xc9, 0xfc, 0x4b, 0x59, 0x1b,
10393*6236dae4SAndroid Build Coastguard Worker   0x0e, 0xb3, 0x18, 0x93, 0x0f, 0x13, 0x30, 0xd8, 0x2b, 0xc8, 0xf1, 0x7c,
10394*6236dae4SAndroid Build Coastguard Worker   0x82, 0x39, 0x27, 0xd3, 0x83, 0x7c, 0xd2, 0x94, 0x22, 0x34, 0xf6, 0xb4,
10395*6236dae4SAndroid Build Coastguard Worker   0x00, 0xec, 0xca, 0x70, 0xaf, 0x83, 0xd0, 0xd8, 0x99, 0x49, 0xa3, 0xe5,
10396*6236dae4SAndroid Build Coastguard Worker   0x00, 0xb8, 0xb1, 0x8c, 0x85, 0x3a, 0x01, 0xa3, 0xf8, 0xbb, 0xef, 0xf8,
10397*6236dae4SAndroid Build Coastguard Worker   0x68, 0x19, 0xb4, 0x78, 0x89, 0x3d, 0x9a, 0x36, 0xf0, 0x70, 0x31, 0xb2,
10398*6236dae4SAndroid Build Coastguard Worker   0x7a, 0x88, 0x9b, 0x45, 0x11, 0xbb, 0x32, 0x1d, 0xa7, 0xd8, 0xb3, 0x85,
10399*6236dae4SAndroid Build Coastguard Worker   0x8d, 0x55, 0x92, 0x72, 0xa1, 0x74, 0x3c, 0x20, 0x25, 0x47, 0xde, 0x31,
10400*6236dae4SAndroid Build Coastguard Worker   0xab, 0xac, 0xe6, 0xf6, 0xa0, 0x37, 0x24, 0x3c, 0xd0, 0xd4, 0x86, 0x19,
10401*6236dae4SAndroid Build Coastguard Worker   0x1c, 0x7c, 0x38, 0x7f, 0x73, 0xfa, 0xbe, 0x1f, 0xad, 0x23, 0x54, 0xd9,
10402*6236dae4SAndroid Build Coastguard Worker   0xf9, 0xfb, 0xe3, 0x2f, 0x3f, 0x9c, 0xc3, 0x3f, 0x75, 0xa4, 0x57, 0x49,
10403*6236dae4SAndroid Build Coastguard Worker   0x9e, 0x81, 0x06, 0xd1, 0xaf, 0xd3, 0x1c, 0x84, 0xc1, 0xa5, 0xae, 0x8d,
10404*6236dae4SAndroid Build Coastguard Worker   0xfb, 0x49, 0x01, 0x13, 0x15, 0xa5, 0xa2, 0x52, 0x62, 0x32, 0x49, 0x31,
10405*6236dae4SAndroid Build Coastguard Worker   0xb6, 0xd9, 0x89, 0x1c, 0x69, 0xc0, 0x42, 0x84, 0xc2, 0xfa, 0x37, 0xb2,
10406*6236dae4SAndroid Build Coastguard Worker   0x16, 0xc6, 0x9a, 0xe6, 0x01, 0x47, 0xe7, 0x6f, 0x0e, 0xde, 0x7d, 0xdd,
10407*6236dae4SAndroid Build Coastguard Worker   0xd7, 0x86, 0xbd, 0xdf, 0x7e, 0xfb, 0x6d, 0x3b, 0x44, 0x4f, 0x76, 0x46,
10408*6236dae4SAndroid Build Coastguard Worker   0x95, 0x7e, 0xf2, 0x49, 0xff, 0xe8, 0x28, 0x3a, 0x38, 0xe9, 0x9f, 0xea,
10409*6236dae4SAndroid Build Coastguard Worker   0x03, 0x17, 0xf5, 0x74, 0x75, 0x73, 0x0d, 0x74, 0xe8, 0xcb, 0xb4, 0x86,
10410*6236dae4SAndroid Build Coastguard Worker   0xbf, 0x7c, 0xf2, 0xc9, 0xff, 0x0f, 0xc9, 0x6b, 0xd2, 0x51, 0x1f, 0x3d,
10411*6236dae4SAndroid Build Coastguard Worker   0x03, 0x00,
10412*6236dae4SAndroid Build Coastguard Worker };
10413*6236dae4SAndroid Build Coastguard Worker #define BUF_SIZE 0x10000
zalloc_func(voidpf opaque,unsigned int items,unsigned int size)10414*6236dae4SAndroid Build Coastguard Worker static voidpf zalloc_func(voidpf opaque, unsigned int items, unsigned int size)
10415*6236dae4SAndroid Build Coastguard Worker {
10416*6236dae4SAndroid Build Coastguard Worker   (void) opaque;
10417*6236dae4SAndroid Build Coastguard Worker   /* not a typo, keep it calloc() */
10418*6236dae4SAndroid Build Coastguard Worker   return (voidpf) calloc(items, size);
10419*6236dae4SAndroid Build Coastguard Worker }
zfree_func(voidpf opaque,voidpf ptr)10420*6236dae4SAndroid Build Coastguard Worker static void zfree_func(voidpf opaque, voidpf ptr)
10421*6236dae4SAndroid Build Coastguard Worker {
10422*6236dae4SAndroid Build Coastguard Worker   (void) opaque;
10423*6236dae4SAndroid Build Coastguard Worker   free(ptr);
10424*6236dae4SAndroid Build Coastguard Worker }
10425*6236dae4SAndroid Build Coastguard Worker /* Decompress and send to stdout a gzip-compressed buffer */
hugehelp(void)10426*6236dae4SAndroid Build Coastguard Worker void hugehelp(void)
10427*6236dae4SAndroid Build Coastguard Worker {
10428*6236dae4SAndroid Build Coastguard Worker   unsigned char* buf;
10429*6236dae4SAndroid Build Coastguard Worker   int status,headerlen;
10430*6236dae4SAndroid Build Coastguard Worker   z_stream z;
10431*6236dae4SAndroid Build Coastguard Worker 
10432*6236dae4SAndroid Build Coastguard Worker   /* Make sure no gzip options are set */
10433*6236dae4SAndroid Build Coastguard Worker   if (hugehelpgz[3] & 0xfe)
10434*6236dae4SAndroid Build Coastguard Worker     return;
10435*6236dae4SAndroid Build Coastguard Worker 
10436*6236dae4SAndroid Build Coastguard Worker   headerlen = 10;
10437*6236dae4SAndroid Build Coastguard Worker   memset(&z, 0, sizeof(z_stream));
10438*6236dae4SAndroid Build Coastguard Worker   z.zalloc = (alloc_func)zalloc_func;
10439*6236dae4SAndroid Build Coastguard Worker   z.zfree = (free_func)zfree_func;
10440*6236dae4SAndroid Build Coastguard Worker   z.avail_in = (unsigned int)(sizeof(hugehelpgz) - headerlen);
10441*6236dae4SAndroid Build Coastguard Worker   z.next_in = (unsigned char *)hugehelpgz + headerlen;
10442*6236dae4SAndroid Build Coastguard Worker 
10443*6236dae4SAndroid Build Coastguard Worker   if (inflateInit2(&z, -MAX_WBITS) != Z_OK)
10444*6236dae4SAndroid Build Coastguard Worker     return;
10445*6236dae4SAndroid Build Coastguard Worker 
10446*6236dae4SAndroid Build Coastguard Worker   buf = malloc(BUF_SIZE);
10447*6236dae4SAndroid Build Coastguard Worker   if (buf) {
10448*6236dae4SAndroid Build Coastguard Worker     while(1) {
10449*6236dae4SAndroid Build Coastguard Worker       z.avail_out = BUF_SIZE;
10450*6236dae4SAndroid Build Coastguard Worker       z.next_out = buf;
10451*6236dae4SAndroid Build Coastguard Worker       status = inflate(&z, Z_SYNC_FLUSH);
10452*6236dae4SAndroid Build Coastguard Worker       if (status == Z_OK || status == Z_STREAM_END) {
10453*6236dae4SAndroid Build Coastguard Worker         fwrite(buf, BUF_SIZE - z.avail_out, 1, stdout);
10454*6236dae4SAndroid Build Coastguard Worker         if (status == Z_STREAM_END)
10455*6236dae4SAndroid Build Coastguard Worker           break;
10456*6236dae4SAndroid Build Coastguard Worker       }
10457*6236dae4SAndroid Build Coastguard Worker       else
10458*6236dae4SAndroid Build Coastguard Worker         break;    /* Error */
10459*6236dae4SAndroid Build Coastguard Worker     }
10460*6236dae4SAndroid Build Coastguard Worker     free(buf);
10461*6236dae4SAndroid Build Coastguard Worker   }
10462*6236dae4SAndroid Build Coastguard Worker   inflateEnd(&z);
10463*6236dae4SAndroid Build Coastguard Worker }
10464*6236dae4SAndroid Build Coastguard Worker #else /* !USE_MANUAL */
10465*6236dae4SAndroid Build Coastguard Worker /* built-in manual is disabled, blank function */
10466*6236dae4SAndroid Build Coastguard Worker #include "tool_hugehelp.h"
hugehelp(void)10467*6236dae4SAndroid Build Coastguard Worker void hugehelp(void) {}
10468*6236dae4SAndroid Build Coastguard Worker #endif /* USE_MANUAL */
10469*6236dae4SAndroid Build Coastguard Worker #endif /* HAVE_LIBZ */
10470