113498266Sopenharmony_ci#include "tool_setup.h"
213498266Sopenharmony_ci#ifndef HAVE_LIBZ
313498266Sopenharmony_ci/*
413498266Sopenharmony_ci * NEVER EVER edit this manually, fix the mkhelp.pl script instead!
513498266Sopenharmony_ci */
613498266Sopenharmony_ci#ifdef USE_MANUAL
713498266Sopenharmony_ci#include "tool_hugehelp.h"
813498266Sopenharmony_civoid hugehelp(void)
913498266Sopenharmony_ci{
1013498266Sopenharmony_ci   fputs(
1113498266Sopenharmony_ci"                                  _   _ ____  _\n"
1213498266Sopenharmony_ci"  Project                     ___| | | |  _ \\| |\n"
1313498266Sopenharmony_ci"                             / __| | | | |_) | |\n"
1413498266Sopenharmony_ci"                            | (__| |_| |  _ <| |___\n"
1513498266Sopenharmony_ci"                             \\___|\\___/|_| \\_\\_____|\n"
1613498266Sopenharmony_ci"\n"
1713498266Sopenharmony_ci"NAME\n"
1813498266Sopenharmony_ci"       curl - transfer a URL\n"
1913498266Sopenharmony_ci"\n"
2013498266Sopenharmony_ci"SYNOPSIS\n"
2113498266Sopenharmony_ci"       curl [options / URLs]\n"
2213498266Sopenharmony_ci"\n"
2313498266Sopenharmony_ci"DESCRIPTION\n"
2413498266Sopenharmony_ci"       curl is a tool for transferring data from or to a server using URLs. It\n"
2513498266Sopenharmony_ci"       supports these protocols: DICT, FILE, FTP, FTPS, GOPHER, GOPHERS, HTTP,\n"
2613498266Sopenharmony_ci, stdout);
2713498266Sopenharmony_ci fputs(
2813498266Sopenharmony_ci"       HTTPS,  IMAP, IMAPS, LDAP, LDAPS, MQTT, POP3, POP3S, RTMP, RTMPS, RTSP,\n"
2913498266Sopenharmony_ci"       SCP, SFTP, SMB, SMBS, SMTP, SMTPS, TELNET, TFTP, WS and WSS.\n"
3013498266Sopenharmony_ci"\n"
3113498266Sopenharmony_ci"       curl is powered by  libcurl  for  all  transfer-related  features.  See\n"
3213498266Sopenharmony_ci"       libcurl(3) for details.\n"
3313498266Sopenharmony_ci"\n"
3413498266Sopenharmony_ci"URL\n"
3513498266Sopenharmony_ci"       The  URL  syntax is protocol-dependent. You find a detailed description\n"
3613498266Sopenharmony_ci"       in RFC 3986.\n"
3713498266Sopenharmony_ci"\n"
3813498266Sopenharmony_ci"       If you provide a URL without a leading protocol:// scheme, curl guesses\n"
3913498266Sopenharmony_ci, stdout);
4013498266Sopenharmony_ci fputs(
4113498266Sopenharmony_ci"       what protocol you want. It then defaults to  HTTP  but  assumes  others\n"
4213498266Sopenharmony_ci"       based  on  often-used  host  name prefixes. For example, for host names\n"
4313498266Sopenharmony_ci"       starting with \"ftp.\" curl assumes you want FTP.\n"
4413498266Sopenharmony_ci"\n"
4513498266Sopenharmony_ci"       You can specify any amount of  URLs  on  the  command  line.  They  are\n"
4613498266Sopenharmony_ci"       fetched  in  a  sequential manner in the specified order unless you use\n"
4713498266Sopenharmony_ci"       -Z, --parallel. You can specify command line options and URLs mixed and\n"
4813498266Sopenharmony_ci"       in any order on the command line.\n"
4913498266Sopenharmony_ci"\n"
5013498266Sopenharmony_ci, stdout);
5113498266Sopenharmony_ci fputs(
5213498266Sopenharmony_ci"       curl attempts to reuse connections when doing  multiple  transfers,  so\n"
5313498266Sopenharmony_ci"       that  getting  many files from the same server do not use multiple con-\n"
5413498266Sopenharmony_ci"       nects and setup handshakes. This improves speed. Connection  reuse  can\n"
5513498266Sopenharmony_ci"       only  be  done  for URLs specified for a single command line invocation\n"
5613498266Sopenharmony_ci"       and cannot be performed between separate curl runs.\n"
5713498266Sopenharmony_ci"\n"
5813498266Sopenharmony_ci"       Provide an IPv6 zone id in the URL with  an  escaped  percentage  sign.\n"
5913498266Sopenharmony_ci"       Like in\n"
6013498266Sopenharmony_ci"\n"
6113498266Sopenharmony_ci, stdout);
6213498266Sopenharmony_ci fputs(
6313498266Sopenharmony_ci"       \"http://[fe80::3%25eth0]/\"\n"
6413498266Sopenharmony_ci"\n"
6513498266Sopenharmony_ci"       Everything  provided on the command line that is not a command line op-\n"
6613498266Sopenharmony_ci"       tion or its argument, curl assumes is a URL and treats it as such.\n"
6713498266Sopenharmony_ci"\n"
6813498266Sopenharmony_ci"GLOBBING\n"
6913498266Sopenharmony_ci"       You can specify multiple URLs or parts of URLs by writing lists  within\n"
7013498266Sopenharmony_ci"       braces or ranges within brackets. We call this \"globbing\".\n"
7113498266Sopenharmony_ci"\n"
7213498266Sopenharmony_ci"       Provide a list with three different names like this:\n"
7313498266Sopenharmony_ci"\n"
7413498266Sopenharmony_ci"       \"http://site.{one,two,three}.com\"\n"
7513498266Sopenharmony_ci"\n"
7613498266Sopenharmony_ci, stdout);
7713498266Sopenharmony_ci fputs(
7813498266Sopenharmony_ci"       Do sequences of alphanumeric series by using [] as in:\n"
7913498266Sopenharmony_ci"\n"
8013498266Sopenharmony_ci"       \"ftp://ftp.example.com/file[1-100].txt\"\n"
8113498266Sopenharmony_ci"\n"
8213498266Sopenharmony_ci"       With leading zeroes:\n"
8313498266Sopenharmony_ci"\n"
8413498266Sopenharmony_ci"       \"ftp://ftp.example.com/file[001-100].txt\"\n"
8513498266Sopenharmony_ci"\n"
8613498266Sopenharmony_ci"       With letters through the alphabet:\n"
8713498266Sopenharmony_ci"\n"
8813498266Sopenharmony_ci"       \"ftp://ftp.example.com/file[a-z].txt\"\n"
8913498266Sopenharmony_ci"\n"
9013498266Sopenharmony_ci"       Nested  sequences  are not supported, but you can use several ones next\n"
9113498266Sopenharmony_ci"       to each other:\n"
9213498266Sopenharmony_ci"\n"
9313498266Sopenharmony_ci"       \"http://example.com/archive[1996-1999]/vol[1-4]/part{a,b,c}.html\"\n"
9413498266Sopenharmony_ci"\n"
9513498266Sopenharmony_ci, stdout);
9613498266Sopenharmony_ci fputs(
9713498266Sopenharmony_ci"       You can specify a step counter for the ranges to get every  Nth  number\n"
9813498266Sopenharmony_ci"       or letter:\n"
9913498266Sopenharmony_ci"\n"
10013498266Sopenharmony_ci"       \"http://example.com/file[1-100:10].txt\"\n"
10113498266Sopenharmony_ci"\n"
10213498266Sopenharmony_ci"       \"http://example.com/file[a-z:2].txt\"\n"
10313498266Sopenharmony_ci"\n"
10413498266Sopenharmony_ci"       When  using [] or {} sequences when invoked from a command line prompt,\n"
10513498266Sopenharmony_ci"       you probably have to put the full URL within double quotes to avoid the\n"
10613498266Sopenharmony_ci"       shell from interfering with it. This also  goes  for  other  characters\n"
10713498266Sopenharmony_ci"       treated special, like for example '&', '?' and '*'.\n"
10813498266Sopenharmony_ci"\n"
10913498266Sopenharmony_ci, stdout);
11013498266Sopenharmony_ci fputs(
11113498266Sopenharmony_ci"       Switch off globbing with -g, --globoff.\n"
11213498266Sopenharmony_ci"\n"
11313498266Sopenharmony_ci"VARIABLES\n"
11413498266Sopenharmony_ci"       curl  supports  command  line variables (added in 8.3.0). Set variables\n"
11513498266Sopenharmony_ci"       with --variable name=content or --variable name@file (where \"file\"  can\n"
11613498266Sopenharmony_ci"       be stdin if set to a single dash (-)).\n"
11713498266Sopenharmony_ci"\n"
11813498266Sopenharmony_ci"       Variable contents can be expanded in option parameters using \"{{name}}\"\n"
11913498266Sopenharmony_ci"       (without  the  quotes) if the option name is prefixed with \"--expand-\".\n"
12013498266Sopenharmony_ci"       This gets the contents of the variable \"name\" inserted, or a  blank  if\n"
12113498266Sopenharmony_ci, stdout);
12213498266Sopenharmony_ci fputs(
12313498266Sopenharmony_ci"       the  name  does  not  exist  as a variable. Insert \"{{\" verbatim in the\n"
12413498266Sopenharmony_ci"       string by prefixing it with a backslash, like \"\\{{\".\n"
12513498266Sopenharmony_ci"\n"
12613498266Sopenharmony_ci"       You an access and expand environment variables by first importing them.\n"
12713498266Sopenharmony_ci"       You can select to either require the environment variable to be set  or\n"
12813498266Sopenharmony_ci"       you  can  provide  a default value in case it is not already set. Plain\n"
12913498266Sopenharmony_ci"       --variable %name imports the variable called 'name' but exits  with  an\n"
13013498266Sopenharmony_ci, stdout);
13113498266Sopenharmony_ci fputs(
13213498266Sopenharmony_ci"       error if that environment variable is not already set. To provide a de-\n"
13313498266Sopenharmony_ci"       fault  value  if it is not set, use --variable %name=content or --vari-\n"
13413498266Sopenharmony_ci"       able %name@content.\n"
13513498266Sopenharmony_ci"\n"
13613498266Sopenharmony_ci"       Example. Get the USER environment variable into the URL, fail  if  USER\n"
13713498266Sopenharmony_ci"       is not set:\n"
13813498266Sopenharmony_ci"\n"
13913498266Sopenharmony_ci"       --variable '%USER'\n"
14013498266Sopenharmony_ci"       --expand-url = \"https://example.com/api/{{USER}}/method\"\n"
14113498266Sopenharmony_ci"\n"
14213498266Sopenharmony_ci"       When  expanding  variables,  curl  supports a set of functions that can\n"
14313498266Sopenharmony_ci, stdout);
14413498266Sopenharmony_ci fputs(
14513498266Sopenharmony_ci"       make the variable contents more convenient to use. It can trim  leading\n"
14613498266Sopenharmony_ci"       and  trailing  white  space  with trim, it can output the contents as a\n"
14713498266Sopenharmony_ci"       JSON quoted string with json, URL encode the string with url or  base64\n"
14813498266Sopenharmony_ci"       encode  it  with  b64.  You apply function to a variable expansion, add\n"
14913498266Sopenharmony_ci"       them colon separated to the right side of the variable.  Variable  con-\n"
15013498266Sopenharmony_ci"       tent holding null bytes that are not encoded when expanded cause error.\n"
15113498266Sopenharmony_ci, stdout);
15213498266Sopenharmony_ci fputs(
15313498266Sopenharmony_ci"       Example:  get  the contents of a file called $HOME/.secret into a vari-\n"
15413498266Sopenharmony_ci"       able called \"fix\". Make sure that  the  content  is  trimmed  and  per-\n"
15513498266Sopenharmony_ci"       cent-encoded sent as POST data:\n"
15613498266Sopenharmony_ci"\n"
15713498266Sopenharmony_ci"       --variable %HOME\n"
15813498266Sopenharmony_ci"       --expand-variable fix@{{HOME}}/.secret\n"
15913498266Sopenharmony_ci"       --expand-data \"{{fix:trim:url}}\"\n"
16013498266Sopenharmony_ci"       https://example.com/\n"
16113498266Sopenharmony_ci"\n"
16213498266Sopenharmony_ci"       Command line variables and expansions were added in in 8.3.0.\n"
16313498266Sopenharmony_ci"\n"
16413498266Sopenharmony_ci"OUTPUT\n"
16513498266Sopenharmony_ci"       If  not told otherwise, curl writes the received data to stdout. It can\n"
16613498266Sopenharmony_ci, stdout);
16713498266Sopenharmony_ci fputs(
16813498266Sopenharmony_ci"       be instructed to instead save that data into a local  file,  using  the\n"
16913498266Sopenharmony_ci"       -o,  --output  or  -O, --remote-name options. If curl is given multiple\n"
17013498266Sopenharmony_ci"       URLs to transfer on the command line, it similarly needs  multiple  op-\n"
17113498266Sopenharmony_ci"       tions for where to save them.\n"
17213498266Sopenharmony_ci"\n"
17313498266Sopenharmony_ci"       curl  does  not  parse or otherwise \"understand\" the content it gets or\n"
17413498266Sopenharmony_ci"       writes as output. It does no encoding or  decoding,  unless  explicitly\n"
17513498266Sopenharmony_ci"       asked to with dedicated command line options.\n"
17613498266Sopenharmony_ci"\n"
17713498266Sopenharmony_ci"PROTOCOLS\n"
17813498266Sopenharmony_ci, stdout);
17913498266Sopenharmony_ci fputs(
18013498266Sopenharmony_ci"       curl  supports  numerous  protocols, or put in URL terms: schemes. Your\n"
18113498266Sopenharmony_ci"       particular build may not support them all.\n"
18213498266Sopenharmony_ci"\n"
18313498266Sopenharmony_ci"       DICT   Lets you lookup words using online dictionaries.\n"
18413498266Sopenharmony_ci"\n"
18513498266Sopenharmony_ci"       FILE   Read or write local  files.  curl  does  not  support  accessing\n"
18613498266Sopenharmony_ci"              file://  URL remotely, but when running on Microsoft Windows us-\n"
18713498266Sopenharmony_ci"              ing the native UNC approach works.\n"
18813498266Sopenharmony_ci"\n"
18913498266Sopenharmony_ci"       FTP(S) curl supports the File Transfer Protocol with a  lot  of  tweaks\n"
19013498266Sopenharmony_ci, stdout);
19113498266Sopenharmony_ci fputs(
19213498266Sopenharmony_ci"              and levers. With or without using TLS.\n"
19313498266Sopenharmony_ci"\n"
19413498266Sopenharmony_ci"       GOPHER(S)\n"
19513498266Sopenharmony_ci"              Retrieve files.\n"
19613498266Sopenharmony_ci"\n"
19713498266Sopenharmony_ci"       HTTP(S)\n"
19813498266Sopenharmony_ci"              curl  supports HTTP with numerous options and variations. It can\n"
19913498266Sopenharmony_ci"              speak HTTP version 0.9, 1.0, 1.1, 2 and 3 depending on build op-\n"
20013498266Sopenharmony_ci"              tions and the correct command line options.\n"
20113498266Sopenharmony_ci"\n"
20213498266Sopenharmony_ci"       IMAP(S)\n"
20313498266Sopenharmony_ci"              Using the mail reading protocol, curl can \"download\" emails  for\n"
20413498266Sopenharmony_ci"              you. With or without using TLS.\n"
20513498266Sopenharmony_ci"\n"
20613498266Sopenharmony_ci"       LDAP(S)\n"
20713498266Sopenharmony_ci, stdout);
20813498266Sopenharmony_ci fputs(
20913498266Sopenharmony_ci"              curl can do directory lookups for you, with or without TLS.\n"
21013498266Sopenharmony_ci"\n"
21113498266Sopenharmony_ci"       MQTT   curl supports MQTT version 3. Downloading over MQTT equals \"sub-\n"
21213498266Sopenharmony_ci"              scribe\" to a topic while uploading/posting equals \"publish\" on a\n"
21313498266Sopenharmony_ci"              topic. MQTT over TLS is not supported (yet).\n"
21413498266Sopenharmony_ci"\n"
21513498266Sopenharmony_ci"       POP3(S)\n"
21613498266Sopenharmony_ci"              Downloading  from  a  pop3  server means getting a mail. With or\n"
21713498266Sopenharmony_ci"              without using TLS.\n"
21813498266Sopenharmony_ci"\n"
21913498266Sopenharmony_ci"       RTMP(S)\n"
22013498266Sopenharmony_ci, stdout);
22113498266Sopenharmony_ci fputs(
22213498266Sopenharmony_ci"              The Realtime Messaging  Protocol  is  primarily  used  to  serve\n"
22313498266Sopenharmony_ci"              streaming media and curl can download it.\n"
22413498266Sopenharmony_ci"\n"
22513498266Sopenharmony_ci"       RTSP   curl supports RTSP 1.0 downloads.\n"
22613498266Sopenharmony_ci"\n"
22713498266Sopenharmony_ci"       SCP    curl supports SSH version 2 scp transfers.\n"
22813498266Sopenharmony_ci"\n"
22913498266Sopenharmony_ci"       SFTP   curl supports SFTP (draft 5) done over SSH version 2.\n"
23013498266Sopenharmony_ci"\n"
23113498266Sopenharmony_ci"       SMB(S) curl supports SMB version 1 for upload and download.\n"
23213498266Sopenharmony_ci"\n"
23313498266Sopenharmony_ci"       SMTP(S)\n"
23413498266Sopenharmony_ci"              Uploading  contents  to  an  SMTP server means sending an email.\n"
23513498266Sopenharmony_ci, stdout);
23613498266Sopenharmony_ci fputs(
23713498266Sopenharmony_ci"              With or without TLS.\n"
23813498266Sopenharmony_ci"\n"
23913498266Sopenharmony_ci"       TELNET Telling curl to fetch a telnet URL starts an interactive session\n"
24013498266Sopenharmony_ci"              where it sends what it reads  on  stdin  and  outputs  what  the\n"
24113498266Sopenharmony_ci"              server sends it.\n"
24213498266Sopenharmony_ci"\n"
24313498266Sopenharmony_ci"       TFTP   curl can do TFTP downloads and uploads.\n"
24413498266Sopenharmony_ci"\n"
24513498266Sopenharmony_ci"PROGRESS METER\n"
24613498266Sopenharmony_ci"       curl  normally  displays a progress meter during operations, indicating\n"
24713498266Sopenharmony_ci"       the amount of transferred data,  transfer  speeds  and  estimated  time\n"
24813498266Sopenharmony_ci, stdout);
24913498266Sopenharmony_ci fputs(
25013498266Sopenharmony_ci"       left,  etc.  The progress meter displays the transfer rate in bytes per\n"
25113498266Sopenharmony_ci"       second. The suffixes (k, M, G, T, P) are 1024 based. For example 1k  is\n"
25213498266Sopenharmony_ci"       1024 bytes. 1M is 1048576 bytes.\n"
25313498266Sopenharmony_ci"\n"
25413498266Sopenharmony_ci"       curl  displays  this  data to the terminal by default, so if you invoke\n"
25513498266Sopenharmony_ci"       curl to do an operation and it is about to write data to the  terminal,\n"
25613498266Sopenharmony_ci"       it disables the progress meter as otherwise it would mess up the output\n"
25713498266Sopenharmony_ci"       mixing progress meter and response data.\n"
25813498266Sopenharmony_ci"\n"
25913498266Sopenharmony_ci, stdout);
26013498266Sopenharmony_ci fputs(
26113498266Sopenharmony_ci"       If you want a progress meter for HTTP POST or PUT requests, you need to\n"
26213498266Sopenharmony_ci"       redirect  the  response output to a file, using shell redirect (>), -o,\n"
26313498266Sopenharmony_ci"       --output or similar.\n"
26413498266Sopenharmony_ci"\n"
26513498266Sopenharmony_ci"       This does not apply to FTP upload as that operation does not  spit  out\n"
26613498266Sopenharmony_ci"       any response data to the terminal.\n"
26713498266Sopenharmony_ci"\n"
26813498266Sopenharmony_ci"       If  you  prefer  a  progress  \"bar\"  instead  of the regular meter, -#,\n"
26913498266Sopenharmony_ci"       --progress-bar is your friend. You can also disable the progress  meter\n"
27013498266Sopenharmony_ci, stdout);
27113498266Sopenharmony_ci fputs(
27213498266Sopenharmony_ci"       completely with the -s, --silent option.\n"
27313498266Sopenharmony_ci"\n"
27413498266Sopenharmony_ci"VERSION\n"
27513498266Sopenharmony_ci"       This  man  page  describes  curl  %VERSION. If you use a later version,\n"
27613498266Sopenharmony_ci"       chances are this man page does not fully document it.  If  you  use  an\n"
27713498266Sopenharmony_ci"       earlier  version,  this  document  tries to include version information\n"
27813498266Sopenharmony_ci"       about which specific version that introduced changes.\n"
27913498266Sopenharmony_ci"\n"
28013498266Sopenharmony_ci"       You can always learn which the latest curl version is by running\n"
28113498266Sopenharmony_ci"\n"
28213498266Sopenharmony_ci"       curl https://curl.se/info\n"
28313498266Sopenharmony_ci"\n"
28413498266Sopenharmony_ci, stdout);
28513498266Sopenharmony_ci fputs(
28613498266Sopenharmony_ci"       The online version of this man page is always showing the latest incar-\n"
28713498266Sopenharmony_ci"       nation: https://curl.se/docs/manpage.html\n"
28813498266Sopenharmony_ci"\n"
28913498266Sopenharmony_ci"OPTIONS\n"
29013498266Sopenharmony_ci"       Options start with one or two dashes. Many of the  options  require  an\n"
29113498266Sopenharmony_ci"       additional  value  next to them. If provided text does not start with a\n"
29213498266Sopenharmony_ci"       dash, it is presumed to be and treated as a URL.\n"
29313498266Sopenharmony_ci"\n"
29413498266Sopenharmony_ci"       The short \"single-dash\" form of the options, -d  for  example,  may  be\n"
29513498266Sopenharmony_ci, stdout);
29613498266Sopenharmony_ci fputs(
29713498266Sopenharmony_ci"       used with or without a space between it and its value, although a space\n"
29813498266Sopenharmony_ci"       is a recommended separator. The long \"double-dash\" form, -d, --data for\n"
29913498266Sopenharmony_ci"       example, requires a space between it and its value.\n"
30013498266Sopenharmony_ci"\n"
30113498266Sopenharmony_ci"       Short  version  options  that  do not need any additional values can be\n"
30213498266Sopenharmony_ci"       used immediately next to each other, like for example you  can  specify\n"
30313498266Sopenharmony_ci"       all the options -O, -L and -v at once as -OLv.\n"
30413498266Sopenharmony_ci"\n"
30513498266Sopenharmony_ci, stdout);
30613498266Sopenharmony_ci fputs(
30713498266Sopenharmony_ci"       In general, all boolean options are enabled with --option and yet again\n"
30813498266Sopenharmony_ci"       disabled  with  --no-option.  That is, you use the same option name but\n"
30913498266Sopenharmony_ci"       prefix it with \"no-\". However, in this list we  mostly  only  list  and\n"
31013498266Sopenharmony_ci"       show the --option version of them.\n"
31113498266Sopenharmony_ci"\n"
31213498266Sopenharmony_ci"       When -:, --next is used, it resets the parser state and you start again\n"
31313498266Sopenharmony_ci"       with  a  clean  option state, except for the options that are \"global\".\n"
31413498266Sopenharmony_ci, stdout);
31513498266Sopenharmony_ci fputs(
31613498266Sopenharmony_ci"       Global options retain their values and meaning even after -:, --next.\n"
31713498266Sopenharmony_ci"\n"
31813498266Sopenharmony_ci"       The following options are  global:  --fail-early,  --libcurl,  --paral-\n"
31913498266Sopenharmony_ci"       lel-immediate,   -Z,   --parallel,   -#,  --progress-bar,  --rate,  -S,\n"
32013498266Sopenharmony_ci"       --show-error, --stderr, --styled-output, --trace-ascii, --trace-config,\n"
32113498266Sopenharmony_ci"       --trace-ids, --trace-time, --trace and -v, --verbose.\n"
32213498266Sopenharmony_ci"\n"
32313498266Sopenharmony_ci"       --abstract-unix-socket <path>\n"
32413498266Sopenharmony_ci"              (HTTP) Connect through an abstract Unix domain  socket,  instead\n"
32513498266Sopenharmony_ci, stdout);
32613498266Sopenharmony_ci fputs(
32713498266Sopenharmony_ci"              of  using  the  network.  Note: netstat shows the path of an ab-\n"
32813498266Sopenharmony_ci"              stract socket prefixed with '@',  however  the  <path>  argument\n"
32913498266Sopenharmony_ci"              should not have this leading character.\n"
33013498266Sopenharmony_ci"\n"
33113498266Sopenharmony_ci"              If  --abstract-unix-socket  is  provided several times, the last\n"
33213498266Sopenharmony_ci"              set value is used.\n"
33313498266Sopenharmony_ci"\n"
33413498266Sopenharmony_ci"              Example:\n"
33513498266Sopenharmony_ci"               curl --abstract-unix-socket socketpath https://example.com\n"
33613498266Sopenharmony_ci"\n"
33713498266Sopenharmony_ci"              See also --unix-socket. Added in 7.53.0.\n"
33813498266Sopenharmony_ci"\n"
33913498266Sopenharmony_ci, stdout);
34013498266Sopenharmony_ci fputs(
34113498266Sopenharmony_ci"       --alt-svc <file name>\n"
34213498266Sopenharmony_ci"              (HTTPS) This option enables the alt-svc parser in curl.  If  the\n"
34313498266Sopenharmony_ci"              file  name  points  to an existing alt-svc cache file, that gets\n"
34413498266Sopenharmony_ci"              used. After a completed transfer, the cache is saved to the file\n"
34513498266Sopenharmony_ci"              name again if it has been modified.\n"
34613498266Sopenharmony_ci"\n"
34713498266Sopenharmony_ci"              Specify a \"\" file name (zero length) to avoid loading/saving and\n"
34813498266Sopenharmony_ci"              make curl just handle the cache in memory.\n"
34913498266Sopenharmony_ci"\n"
35013498266Sopenharmony_ci, stdout);
35113498266Sopenharmony_ci fputs(
35213498266Sopenharmony_ci"              If this option is used several times, curl loads  contents  from\n"
35313498266Sopenharmony_ci"              all the files but the last one is used for saving.\n"
35413498266Sopenharmony_ci"\n"
35513498266Sopenharmony_ci"              --alt-svc can be used several times in a command line\n"
35613498266Sopenharmony_ci"\n"
35713498266Sopenharmony_ci"              Example:\n"
35813498266Sopenharmony_ci"               curl --alt-svc svc.txt https://example.com\n"
35913498266Sopenharmony_ci"\n"
36013498266Sopenharmony_ci"              See also --resolve and --connect-to. Added in 7.64.1.\n"
36113498266Sopenharmony_ci"\n"
36213498266Sopenharmony_ci"       --anyauth\n"
36313498266Sopenharmony_ci"              (HTTP) Tells curl to figure out authentication method by itself,\n"
36413498266Sopenharmony_ci, stdout);
36513498266Sopenharmony_ci fputs(
36613498266Sopenharmony_ci"              and  use  the most secure one the remote site claims to support.\n"
36713498266Sopenharmony_ci"              This is done by first doing  a  request  and  checking  the  re-\n"
36813498266Sopenharmony_ci"              sponse-headers,   thus   possibly   inducing  an  extra  network\n"
36913498266Sopenharmony_ci"              round-trip. This is used instead of setting a specific authenti-\n"
37013498266Sopenharmony_ci"              cation method, which you can do with --basic, --digest,  --ntlm,\n"
37113498266Sopenharmony_ci"              and --negotiate.\n"
37213498266Sopenharmony_ci"\n"
37313498266Sopenharmony_ci, stdout);
37413498266Sopenharmony_ci fputs(
37513498266Sopenharmony_ci"              Using --anyauth is not recommended if you do uploads from stdin,\n"
37613498266Sopenharmony_ci"              since  it  may require data to be sent twice and then the client\n"
37713498266Sopenharmony_ci"              must be able to rewind. If the need should arise when  uploading\n"
37813498266Sopenharmony_ci"              from stdin, the upload operation fails.\n"
37913498266Sopenharmony_ci"\n"
38013498266Sopenharmony_ci"              Used together with -u, --user.\n"
38113498266Sopenharmony_ci"\n"
38213498266Sopenharmony_ci"              Providing --anyauth multiple times has no extra effect.\n"
38313498266Sopenharmony_ci"\n"
38413498266Sopenharmony_ci"              Example:\n"
38513498266Sopenharmony_ci"               curl --anyauth --user me:pwd https://example.com\n"
38613498266Sopenharmony_ci"\n"
38713498266Sopenharmony_ci, stdout);
38813498266Sopenharmony_ci fputs(
38913498266Sopenharmony_ci"              See also --proxy-anyauth, --basic and --digest.\n"
39013498266Sopenharmony_ci"\n"
39113498266Sopenharmony_ci"       -a, --append\n"
39213498266Sopenharmony_ci"              (FTP SFTP) When used in an upload, this option makes curl append\n"
39313498266Sopenharmony_ci"              to the target file instead of overwriting it. If the remote file\n"
39413498266Sopenharmony_ci"              does not exist, it is created. Note that this flag is ignored by\n"
39513498266Sopenharmony_ci"              some SFTP servers (including OpenSSH).\n"
39613498266Sopenharmony_ci"\n"
39713498266Sopenharmony_ci"              Providing  --append multiple times has no extra effect.  Disable\n"
39813498266Sopenharmony_ci"              it again with --no-append.\n"
39913498266Sopenharmony_ci"\n"
40013498266Sopenharmony_ci, stdout);
40113498266Sopenharmony_ci fputs(
40213498266Sopenharmony_ci"              Example:\n"
40313498266Sopenharmony_ci"               curl --upload-file local --append ftp://example.com/\n"
40413498266Sopenharmony_ci"\n"
40513498266Sopenharmony_ci"              See also -r, --range and -C, --continue-at.\n"
40613498266Sopenharmony_ci"\n"
40713498266Sopenharmony_ci"       --aws-sigv4 <provider1[:provider2[:region[:service]]]>\n"
40813498266Sopenharmony_ci"              (HTTP) Use AWS V4 signature authentication in the transfer.\n"
40913498266Sopenharmony_ci"\n"
41013498266Sopenharmony_ci"              The provider argument is a string that is used by the  algorithm\n"
41113498266Sopenharmony_ci"              when creating outgoing authentication headers.\n"
41213498266Sopenharmony_ci"\n"
41313498266Sopenharmony_ci, stdout);
41413498266Sopenharmony_ci fputs(
41513498266Sopenharmony_ci"              The region argument is a string that points to a geographic area\n"
41613498266Sopenharmony_ci"              of  a resources collection (region-code) when the region name is\n"
41713498266Sopenharmony_ci"              omitted from the endpoint.\n"
41813498266Sopenharmony_ci"\n"
41913498266Sopenharmony_ci"              The service argument is a string that points to a function  pro-\n"
42013498266Sopenharmony_ci"              vided by a cloud (service-code) when the service name is omitted\n"
42113498266Sopenharmony_ci"              from the endpoint.\n"
42213498266Sopenharmony_ci"\n"
42313498266Sopenharmony_ci"              If  --aws-sigv4 is provided several times, the last set value is\n"
42413498266Sopenharmony_ci"              used.\n"
42513498266Sopenharmony_ci"\n"
42613498266Sopenharmony_ci, stdout);
42713498266Sopenharmony_ci fputs(
42813498266Sopenharmony_ci"              Example:\n"
42913498266Sopenharmony_ci"               curl --aws-sigv4 \"aws:amz:us-east-2:es\" --user \"key:secret\" https://example.com\n"
43013498266Sopenharmony_ci"\n"
43113498266Sopenharmony_ci"              See also --basic and -u, --user. Added in 7.75.0.\n"
43213498266Sopenharmony_ci"\n"
43313498266Sopenharmony_ci"       --basic\n"
43413498266Sopenharmony_ci"              (HTTP) Tells curl to use HTTP Basic authentication with the  re-\n"
43513498266Sopenharmony_ci"              mote host. This is the default and this option is usually point-\n"
43613498266Sopenharmony_ci"              less, unless you use it to override a previously set option that\n"
43713498266Sopenharmony_ci, stdout);
43813498266Sopenharmony_ci fputs(
43913498266Sopenharmony_ci"              sets  a  different  authentication method (such as --ntlm, --di-\n"
44013498266Sopenharmony_ci"              gest, or --negotiate).\n"
44113498266Sopenharmony_ci"\n"
44213498266Sopenharmony_ci"              Used together with -u, --user.\n"
44313498266Sopenharmony_ci"\n"
44413498266Sopenharmony_ci"              Providing --basic multiple times has no extra effect.\n"
44513498266Sopenharmony_ci"\n"
44613498266Sopenharmony_ci"              Example:\n"
44713498266Sopenharmony_ci"               curl -u name:password --basic https://example.com\n"
44813498266Sopenharmony_ci"\n"
44913498266Sopenharmony_ci"              See also --proxy-basic.\n"
45013498266Sopenharmony_ci"\n"
45113498266Sopenharmony_ci"       --ca-native\n"
45213498266Sopenharmony_ci"              (TLS) Tells curl to use the CA store from the  native  operating\n"
45313498266Sopenharmony_ci, stdout);
45413498266Sopenharmony_ci fputs(
45513498266Sopenharmony_ci"              system  to verify the peer. By default, curl otherwise uses a CA\n"
45613498266Sopenharmony_ci"              store provided in a single file or  directory,  but  when  using\n"
45713498266Sopenharmony_ci"              this option it interfaces the operating system's own vault.\n"
45813498266Sopenharmony_ci"\n"
45913498266Sopenharmony_ci"              This option works for curl on Windows when built to use OpenSSL,\n"
46013498266Sopenharmony_ci"              wolfSSL  (added  in 8.3.0) or GnuTLS (added in 8.5.0). When curl\n"
46113498266Sopenharmony_ci"              on Windows is built to use Schannel, this feature is implied and\n"
46213498266Sopenharmony_ci, stdout);
46313498266Sopenharmony_ci fputs(
46413498266Sopenharmony_ci"              curl then only uses the native CA store.\n"
46513498266Sopenharmony_ci"\n"
46613498266Sopenharmony_ci"              Providing --ca-native multiple times has no extra effect.   Dis-\n"
46713498266Sopenharmony_ci"              able it again with --no-ca-native.\n"
46813498266Sopenharmony_ci"\n"
46913498266Sopenharmony_ci"              Example:\n"
47013498266Sopenharmony_ci"               curl --ca-native https://example.com\n"
47113498266Sopenharmony_ci"\n"
47213498266Sopenharmony_ci"              See also --cacert, --capath and -k, --insecure. Added in 8.2.0.\n"
47313498266Sopenharmony_ci"\n"
47413498266Sopenharmony_ci"       --cacert <file>\n"
47513498266Sopenharmony_ci"              (TLS) Tells curl to use the specified certificate file to verify\n"
47613498266Sopenharmony_ci, stdout);
47713498266Sopenharmony_ci fputs(
47813498266Sopenharmony_ci"              the  peer.  The  file  may contain multiple CA certificates. The\n"
47913498266Sopenharmony_ci"              certificate(s) must be in PEM format. Normally curl is built  to\n"
48013498266Sopenharmony_ci"              use a default file for this, so this option is typically used to\n"
48113498266Sopenharmony_ci"              alter that default file.\n"
48213498266Sopenharmony_ci"\n"
48313498266Sopenharmony_ci"              curl  recognizes the environment variable named 'CURL_CA_BUNDLE'\n"
48413498266Sopenharmony_ci"              if it is set and the TLS backend is not Schannel, and  uses  the\n"
48513498266Sopenharmony_ci, stdout);
48613498266Sopenharmony_ci fputs(
48713498266Sopenharmony_ci"              given  path as a path to a CA cert bundle. This option overrides\n"
48813498266Sopenharmony_ci"              that variable.\n"
48913498266Sopenharmony_ci"\n"
49013498266Sopenharmony_ci"              The windows version of curl automatically looks for a  CA  certs\n"
49113498266Sopenharmony_ci"              file named 'curl-ca-bundle.crt', either in the same directory as\n"
49213498266Sopenharmony_ci"              curl.exe,  or in the Current Working Directory, or in any folder\n"
49313498266Sopenharmony_ci"              along your PATH.\n"
49413498266Sopenharmony_ci"\n"
49513498266Sopenharmony_ci"              (iOS and macOS only) If curl is built against Secure  Transport,\n"
49613498266Sopenharmony_ci, stdout);
49713498266Sopenharmony_ci fputs(
49813498266Sopenharmony_ci"              then  this  option  is supported for backward compatibility with\n"
49913498266Sopenharmony_ci"              other SSL engines, but it should not be set. If  the  option  is\n"
50013498266Sopenharmony_ci"              not  set, then curl uses the certificates in the system and user\n"
50113498266Sopenharmony_ci"              Keychain to verify the peer, which is the  preferred  method  of\n"
50213498266Sopenharmony_ci"              verifying the peer's certificate chain.\n"
50313498266Sopenharmony_ci"\n"
50413498266Sopenharmony_ci"              (Schannel only) This option is supported for Schannel in Windows\n"
50513498266Sopenharmony_ci, stdout);
50613498266Sopenharmony_ci fputs(
50713498266Sopenharmony_ci"              7 or later (added in 7.60.0). This option is supported for back-\n"
50813498266Sopenharmony_ci"              ward  compatibility with other SSL engines; instead it is recom-\n"
50913498266Sopenharmony_ci"              mended to use Windows' store of root certificates  (the  default\n"
51013498266Sopenharmony_ci"              for Schannel).\n"
51113498266Sopenharmony_ci"\n"
51213498266Sopenharmony_ci"              If  --cacert  is  provided  several times, the last set value is\n"
51313498266Sopenharmony_ci"              used.\n"
51413498266Sopenharmony_ci"\n"
51513498266Sopenharmony_ci"              Example:\n"
51613498266Sopenharmony_ci"               curl --cacert CA-file.txt https://example.com\n"
51713498266Sopenharmony_ci"\n"
51813498266Sopenharmony_ci, stdout);
51913498266Sopenharmony_ci fputs(
52013498266Sopenharmony_ci"              See also --capath and -k, --insecure.\n"
52113498266Sopenharmony_ci"\n"
52213498266Sopenharmony_ci"       --capath <dir>\n"
52313498266Sopenharmony_ci"              (TLS) Tells curl to use the specified certificate  directory  to\n"
52413498266Sopenharmony_ci"              verify  the  peer.  Multiple paths can be provided by separating\n"
52513498266Sopenharmony_ci"              them with \":\" (e.g.  \"path1:path2:path3\"). The certificates must\n"
52613498266Sopenharmony_ci"              be in PEM format, and if curl is built against OpenSSL, the  di-\n"
52713498266Sopenharmony_ci"              rectory must have been processed using the c_rehash utility sup-\n"
52813498266Sopenharmony_ci, stdout);
52913498266Sopenharmony_ci fputs(
53013498266Sopenharmony_ci"              plied  with  OpenSSL.  Using  --capath can allow OpenSSL-powered\n"
53113498266Sopenharmony_ci"              curl to make SSL-connections much more  efficiently  than  using\n"
53213498266Sopenharmony_ci"              --cacert if the --cacert file contains many CA certificates.\n"
53313498266Sopenharmony_ci"\n"
53413498266Sopenharmony_ci"              If this option is set, the default capath value is ignored.\n"
53513498266Sopenharmony_ci"\n"
53613498266Sopenharmony_ci"              If  --capath  is  provided  several times, the last set value is\n"
53713498266Sopenharmony_ci"              used.\n"
53813498266Sopenharmony_ci"\n"
53913498266Sopenharmony_ci"              Example:\n"
54013498266Sopenharmony_ci"               curl --capath /local/directory https://example.com\n"
54113498266Sopenharmony_ci"\n"
54213498266Sopenharmony_ci, stdout);
54313498266Sopenharmony_ci fputs(
54413498266Sopenharmony_ci"              See also --cacert and -k, --insecure.\n"
54513498266Sopenharmony_ci"\n"
54613498266Sopenharmony_ci"       --cert-status\n"
54713498266Sopenharmony_ci"              (TLS) Tells curl to verify the status of the server  certificate\n"
54813498266Sopenharmony_ci"              by using the Certificate Status Request (aka. OCSP stapling) TLS\n"
54913498266Sopenharmony_ci"              extension.\n"
55013498266Sopenharmony_ci"\n"
55113498266Sopenharmony_ci"              If  this option is enabled and the server sends an invalid (e.g.\n"
55213498266Sopenharmony_ci"              expired) response, if the response suggests that the server cer-\n"
55313498266Sopenharmony_ci"              tificate has been revoked, or no response at  all  is  received,\n"
55413498266Sopenharmony_ci, stdout);
55513498266Sopenharmony_ci fputs(
55613498266Sopenharmony_ci"              the verification fails.\n"
55713498266Sopenharmony_ci"\n"
55813498266Sopenharmony_ci"              This  is  currently  only  implemented in the OpenSSL and GnuTLS\n"
55913498266Sopenharmony_ci"              backends.\n"
56013498266Sopenharmony_ci"\n"
56113498266Sopenharmony_ci"              Providing --cert-status multiple  times  has  no  extra  effect.\n"
56213498266Sopenharmony_ci"              Disable it again with --no-cert-status.\n"
56313498266Sopenharmony_ci"\n"
56413498266Sopenharmony_ci"              Example:\n"
56513498266Sopenharmony_ci"               curl --cert-status https://example.com\n"
56613498266Sopenharmony_ci"\n"
56713498266Sopenharmony_ci"              See also --pinnedpubkey.\n"
56813498266Sopenharmony_ci"\n"
56913498266Sopenharmony_ci"       --cert-type <type>\n"
57013498266Sopenharmony_ci"              (TLS)  Tells  curl  what type the provided client certificate is\n"
57113498266Sopenharmony_ci, stdout);
57213498266Sopenharmony_ci fputs(
57313498266Sopenharmony_ci"              using. PEM, DER, ENG and P12 are recognized types.\n"
57413498266Sopenharmony_ci"\n"
57513498266Sopenharmony_ci"              The default type depends on the TLS backend and is usually  PEM,\n"
57613498266Sopenharmony_ci"              however  for  Secure  Transport  and  Schannel it is P12. If -E,\n"
57713498266Sopenharmony_ci"              --cert is a pkcs11: URI then ENG is the default type.\n"
57813498266Sopenharmony_ci"\n"
57913498266Sopenharmony_ci"              If --cert-type is provided several times, the last set value  is\n"
58013498266Sopenharmony_ci"              used.\n"
58113498266Sopenharmony_ci"\n"
58213498266Sopenharmony_ci"              Example:\n"
58313498266Sopenharmony_ci"               curl --cert-type PEM --cert file https://example.com\n"
58413498266Sopenharmony_ci"\n"
58513498266Sopenharmony_ci, stdout);
58613498266Sopenharmony_ci fputs(
58713498266Sopenharmony_ci"              See also -E, --cert, --key and --key-type.\n"
58813498266Sopenharmony_ci"\n"
58913498266Sopenharmony_ci"       -E, --cert <certificate[:password]>\n"
59013498266Sopenharmony_ci"              (TLS)  Tells  curl  to use the specified client certificate file\n"
59113498266Sopenharmony_ci"              when getting a file with HTTPS, FTPS or another SSL-based proto-\n"
59213498266Sopenharmony_ci"              col. The certificate must be in PKCS#12 format if  using  Secure\n"
59313498266Sopenharmony_ci"              Transport,  or  PEM format if using any other engine. If the op-\n"
59413498266Sopenharmony_ci"              tional password is not specified, it is queried for on the  ter-\n"
59513498266Sopenharmony_ci, stdout);
59613498266Sopenharmony_ci fputs(
59713498266Sopenharmony_ci"              minal.  Note that this option assumes a certificate file that is\n"
59813498266Sopenharmony_ci"              the private key and the client certificate concatenated. See -E,\n"
59913498266Sopenharmony_ci"              --cert and --key to specify them independently.\n"
60013498266Sopenharmony_ci"\n"
60113498266Sopenharmony_ci"              In the <certificate> portion of the argument,  you  must  escape\n"
60213498266Sopenharmony_ci"              the  character  \":\"  as \"\\:\" so that it is not recognized as the\n"
60313498266Sopenharmony_ci"              password delimiter. Similarly, you must escape the double  quote\n"
60413498266Sopenharmony_ci, stdout);
60513498266Sopenharmony_ci fputs(
60613498266Sopenharmony_ci"              character  as \\\" so that it is not recognized as an escape char-\n"
60713498266Sopenharmony_ci"              acter.\n"
60813498266Sopenharmony_ci"\n"
60913498266Sopenharmony_ci"              If curl is built against OpenSSL library, and the engine  pkcs11\n"
61013498266Sopenharmony_ci"              is available, then a PKCS#11 URI (RFC 7512) can be used to spec-\n"
61113498266Sopenharmony_ci"              ify  a  certificate located in a PKCS#11 device. A string begin-\n"
61213498266Sopenharmony_ci"              ning with \"pkcs11:\" is  interpreted  as  a  PKCS#11  URI.  If  a\n"
61313498266Sopenharmony_ci"              PKCS#11  URI  is  provided,  then  the --engine option is set as\n"
61413498266Sopenharmony_ci, stdout);
61513498266Sopenharmony_ci fputs(
61613498266Sopenharmony_ci"              \"pkcs11\" if none was provided and the --cert-type option is  set\n"
61713498266Sopenharmony_ci"              as \"ENG\" if none was provided.\n"
61813498266Sopenharmony_ci"\n"
61913498266Sopenharmony_ci"              (iOS  and macOS only) If curl is built against Secure Transport,\n"
62013498266Sopenharmony_ci"              then the certificate string can either be the name of a certifi-\n"
62113498266Sopenharmony_ci"              cate/private key in the system or user keychain, or the path  to\n"
62213498266Sopenharmony_ci"              a  PKCS#12-encoded  certificate  and private key. If you want to\n"
62313498266Sopenharmony_ci, stdout);
62413498266Sopenharmony_ci fputs(
62513498266Sopenharmony_ci"              use a file from the current directory, please  precede  it  with\n"
62613498266Sopenharmony_ci"              \"./\" prefix, in order to avoid confusion with a nickname.\n"
62713498266Sopenharmony_ci"\n"
62813498266Sopenharmony_ci"              (Schannel  only) Client certificates must be specified by a path\n"
62913498266Sopenharmony_ci"              expression to a certificate store.  (Loading  PFX  is  not  sup-\n"
63013498266Sopenharmony_ci"              ported; you can import it to a store first). You can use \"<store\n"
63113498266Sopenharmony_ci"              location>\\<store  name>\\<thumbprint>\"  to refer to a certificate\n"
63213498266Sopenharmony_ci, stdout);
63313498266Sopenharmony_ci fputs(
63413498266Sopenharmony_ci"              in  the  system  certificates  store,  for   example,   \"Curren-\n"
63513498266Sopenharmony_ci"              tUser\\MY\\934a7ac6f8a5d579285a74fa61e19f23ddfe8d7a\".   Thumbprint\n"
63613498266Sopenharmony_ci"              is usually a SHA-1 hex string which you can see  in  certificate\n"
63713498266Sopenharmony_ci"              details.  Following  store locations are supported: CurrentUser,\n"
63813498266Sopenharmony_ci"              LocalMachine, CurrentService, Services,  CurrentUserGroupPolicy,\n"
63913498266Sopenharmony_ci"              LocalMachineGroupPolicy and LocalMachineEnterprise.\n"
64013498266Sopenharmony_ci"\n"
64113498266Sopenharmony_ci, stdout);
64213498266Sopenharmony_ci fputs(
64313498266Sopenharmony_ci"              If --cert is provided several times, the last set value is used.\n"
64413498266Sopenharmony_ci"\n"
64513498266Sopenharmony_ci"              Example:\n"
64613498266Sopenharmony_ci"               curl --cert certfile --key keyfile https://example.com\n"
64713498266Sopenharmony_ci"\n"
64813498266Sopenharmony_ci"              See also --cert-type, --key and --key-type.\n"
64913498266Sopenharmony_ci"\n"
65013498266Sopenharmony_ci"       --ciphers <list of ciphers>\n"
65113498266Sopenharmony_ci"              (TLS) Specifies which ciphers to use in the connection. The list\n"
65213498266Sopenharmony_ci"              of  ciphers  must  specify  valid ciphers. Read up on SSL cipher\n"
65313498266Sopenharmony_ci"              list details on this URL:\n"
65413498266Sopenharmony_ci"\n"
65513498266Sopenharmony_ci, stdout);
65613498266Sopenharmony_ci fputs(
65713498266Sopenharmony_ci"              https://curl.se/docs/ssl-ciphers.html\n"
65813498266Sopenharmony_ci"\n"
65913498266Sopenharmony_ci"              If --ciphers is provided several times, the last  set  value  is\n"
66013498266Sopenharmony_ci"              used.\n"
66113498266Sopenharmony_ci"\n"
66213498266Sopenharmony_ci"              Example:\n"
66313498266Sopenharmony_ci"               curl --ciphers ECDHE-ECDSA-AES256-CCM8 https://example.com\n"
66413498266Sopenharmony_ci"\n"
66513498266Sopenharmony_ci"              See also --tlsv1.3, --tls13-ciphers and --proxy-ciphers.\n"
66613498266Sopenharmony_ci"\n"
66713498266Sopenharmony_ci"       --compressed-ssh\n"
66813498266Sopenharmony_ci"              (SCP SFTP) Enables built-in SSH compression.  This is a request,\n"
66913498266Sopenharmony_ci"              not an order; the server may or may not do it.\n"
67013498266Sopenharmony_ci"\n"
67113498266Sopenharmony_ci, stdout);
67213498266Sopenharmony_ci fputs(
67313498266Sopenharmony_ci"              Providing  --compressed-ssh  multiple times has no extra effect.\n"
67413498266Sopenharmony_ci"              Disable it again with --no-compressed-ssh.\n"
67513498266Sopenharmony_ci"\n"
67613498266Sopenharmony_ci"              Example:\n"
67713498266Sopenharmony_ci"               curl --compressed-ssh sftp://example.com/\n"
67813498266Sopenharmony_ci"\n"
67913498266Sopenharmony_ci"              See also --compressed. Added in 7.56.0.\n"
68013498266Sopenharmony_ci"\n"
68113498266Sopenharmony_ci"       --compressed\n"
68213498266Sopenharmony_ci"              (HTTP) Request a compressed response using one of the algorithms\n"
68313498266Sopenharmony_ci"              curl supports, and automatically decompress the content.\n"
68413498266Sopenharmony_ci"\n"
68513498266Sopenharmony_ci, stdout);
68613498266Sopenharmony_ci fputs(
68713498266Sopenharmony_ci"              Response headers are not modified when saved,  so  if  they  are\n"
68813498266Sopenharmony_ci"              \"interpreted\"  separately  again at a later point they might ap-\n"
68913498266Sopenharmony_ci"              pear to be saying that the content is (still) compressed;  while\n"
69013498266Sopenharmony_ci"              in fact it has already been decompressed.\n"
69113498266Sopenharmony_ci"\n"
69213498266Sopenharmony_ci"              If  this  option is used and the server sends an unsupported en-\n"
69313498266Sopenharmony_ci"              coding, curl reports an error. This is a request, not an  order;\n"
69413498266Sopenharmony_ci, stdout);
69513498266Sopenharmony_ci fputs(
69613498266Sopenharmony_ci"              the server may or may not deliver data compressed.\n"
69713498266Sopenharmony_ci"\n"
69813498266Sopenharmony_ci"              Providing --compressed multiple times has no extra effect.  Dis-\n"
69913498266Sopenharmony_ci"              able it again with --no-compressed.\n"
70013498266Sopenharmony_ci"\n"
70113498266Sopenharmony_ci"              Example:\n"
70213498266Sopenharmony_ci"               curl --compressed https://example.com\n"
70313498266Sopenharmony_ci"\n"
70413498266Sopenharmony_ci"              See also --compressed-ssh.\n"
70513498266Sopenharmony_ci"\n"
70613498266Sopenharmony_ci"       -K, --config <file>\n"
70713498266Sopenharmony_ci"              Specify  a  text  file  to read curl arguments from. The command\n"
70813498266Sopenharmony_ci"              line arguments found in the text file are used as if  they  were\n"
70913498266Sopenharmony_ci, stdout);
71013498266Sopenharmony_ci fputs(
71113498266Sopenharmony_ci"              provided on the command line.\n"
71213498266Sopenharmony_ci"\n"
71313498266Sopenharmony_ci"              Options  and their parameters must be specified on the same line\n"
71413498266Sopenharmony_ci"              in the file, separated by whitespace, colon, or the equals sign.\n"
71513498266Sopenharmony_ci"              Long option names can optionally be given  in  the  config  file\n"
71613498266Sopenharmony_ci"              without the initial double dashes and if so, the colon or equals\n"
71713498266Sopenharmony_ci"              characters can be used as separators. If the option is specified\n"
71813498266Sopenharmony_ci, stdout);
71913498266Sopenharmony_ci fputs(
72013498266Sopenharmony_ci"              with  one or two dashes, there can be no colon or equals charac-\n"
72113498266Sopenharmony_ci"              ter between the option and its parameter.\n"
72213498266Sopenharmony_ci"\n"
72313498266Sopenharmony_ci"              If the parameter contains whitespace or starts with a colon  (:)\n"
72413498266Sopenharmony_ci"              or  equals sign (=), it must be specified enclosed within double\n"
72513498266Sopenharmony_ci"              quotes (\"). Within double quotes the following escape  sequences\n"
72613498266Sopenharmony_ci"              are  available: \\\\, \\\", \\t, \\n, \\r and \\v. A backslash preceding\n"
72713498266Sopenharmony_ci"              any other letter is ignored.\n"
72813498266Sopenharmony_ci"\n"
72913498266Sopenharmony_ci, stdout);
73013498266Sopenharmony_ci fputs(
73113498266Sopenharmony_ci"              If the first non-blank column of a config line is a '#'  charac-\n"
73213498266Sopenharmony_ci"              ter, that line is treated as a comment.\n"
73313498266Sopenharmony_ci"\n"
73413498266Sopenharmony_ci"              Only  write  one  option per physical line in the config file. A\n"
73513498266Sopenharmony_ci"              single line is required to be no more than 10  megabytes  (since\n"
73613498266Sopenharmony_ci"              8.2.0).\n"
73713498266Sopenharmony_ci"\n"
73813498266Sopenharmony_ci"              Specify  the  filename  to -K, --config as '-' to make curl read\n"
73913498266Sopenharmony_ci"              the file from stdin.\n"
74013498266Sopenharmony_ci"\n"
74113498266Sopenharmony_ci, stdout);
74213498266Sopenharmony_ci fputs(
74313498266Sopenharmony_ci"              Note that to be able to specify a URL in the  config  file,  you\n"
74413498266Sopenharmony_ci"              need  to  specify  it  using the --url option, and not by simply\n"
74513498266Sopenharmony_ci"              writing the URL on its own line. So, it could  look  similar  to\n"
74613498266Sopenharmony_ci"              this:\n"
74713498266Sopenharmony_ci"\n"
74813498266Sopenharmony_ci"              url = \"https://curl.se/docs/\"\n"
74913498266Sopenharmony_ci"\n"
75013498266Sopenharmony_ci"              # --- Example file ---\n"
75113498266Sopenharmony_ci"              # this is a comment\n"
75213498266Sopenharmony_ci"              url = \"example.com\"\n"
75313498266Sopenharmony_ci"              output = \"curlhere.html\"\n"
75413498266Sopenharmony_ci"              user-agent = \"superagent/1.0\"\n"
75513498266Sopenharmony_ci"\n"
75613498266Sopenharmony_ci, stdout);
75713498266Sopenharmony_ci fputs(
75813498266Sopenharmony_ci"              # and fetch another URL too\n"
75913498266Sopenharmony_ci"              url = \"example.com/docs/manpage.html\"\n"
76013498266Sopenharmony_ci"              -O\n"
76113498266Sopenharmony_ci"              referer = \"http://nowhereatall.example.com/\"\n"
76213498266Sopenharmony_ci"              # --- End of example file ---\n"
76313498266Sopenharmony_ci"\n"
76413498266Sopenharmony_ci"              When  curl  is invoked, it (unless -q, --disable is used) checks\n"
76513498266Sopenharmony_ci"              for a default config file and uses it if found,  even  when  -K,\n"
76613498266Sopenharmony_ci"              --config  is used. The default config file is checked for in the\n"
76713498266Sopenharmony_ci"              following places in this order:\n"
76813498266Sopenharmony_ci"\n"
76913498266Sopenharmony_ci, stdout);
77013498266Sopenharmony_ci fputs(
77113498266Sopenharmony_ci"              1) \"$CURL_HOME/.curlrc\"\n"
77213498266Sopenharmony_ci"\n"
77313498266Sopenharmony_ci"              2) \"$XDG_CONFIG_HOME/curlrc\" (Added in 7.73.0)\n"
77413498266Sopenharmony_ci"\n"
77513498266Sopenharmony_ci"              3) \"$HOME/.curlrc\"\n"
77613498266Sopenharmony_ci"\n"
77713498266Sopenharmony_ci"              4) Windows: \"%USERPROFILE%\\.curlrc\"\n"
77813498266Sopenharmony_ci"\n"
77913498266Sopenharmony_ci"              5) Windows: \"%APPDATA%\\.curlrc\"\n"
78013498266Sopenharmony_ci"\n"
78113498266Sopenharmony_ci"              6) Windows: \"%USERPROFILE%\\Application Data\\.curlrc\"\n"
78213498266Sopenharmony_ci"\n"
78313498266Sopenharmony_ci"              7) Non-Windows: use getpwuid to find the home directory\n"
78413498266Sopenharmony_ci"\n"
78513498266Sopenharmony_ci"              8) On Windows, if it finds no .curlrc file in the  sequence  de-\n"
78613498266Sopenharmony_ci, stdout);
78713498266Sopenharmony_ci fputs(
78813498266Sopenharmony_ci"              scribed  above,  it checks for one in the same dir the curl exe-\n"
78913498266Sopenharmony_ci"              cutable is placed.\n"
79013498266Sopenharmony_ci"\n"
79113498266Sopenharmony_ci"              On Windows two filenames are checked per location:  .curlrc  and\n"
79213498266Sopenharmony_ci"              _curlrc,  preferring  the  former.  Older  versions  on  Windows\n"
79313498266Sopenharmony_ci"              checked for _curlrc only.\n"
79413498266Sopenharmony_ci"\n"
79513498266Sopenharmony_ci"              --config can be used several times in a command line\n"
79613498266Sopenharmony_ci"\n"
79713498266Sopenharmony_ci"              Example:\n"
79813498266Sopenharmony_ci"               curl --config file.txt https://example.com\n"
79913498266Sopenharmony_ci"\n"
80013498266Sopenharmony_ci"              See also -q, --disable.\n"
80113498266Sopenharmony_ci, stdout);
80213498266Sopenharmony_ci fputs(
80313498266Sopenharmony_ci"\n"
80413498266Sopenharmony_ci"       --connect-timeout <fractional seconds>\n"
80513498266Sopenharmony_ci"              Maximum time in seconds that  you  allow  curl's  connection  to\n"
80613498266Sopenharmony_ci"              take. This only limits the connection phase, so if curl connects\n"
80713498266Sopenharmony_ci"              within the given period it continues - if not it exits.\n"
80813498266Sopenharmony_ci"\n"
80913498266Sopenharmony_ci"              This  option  accepts decimal values. The decimal value needs to\n"
81013498266Sopenharmony_ci"              be provided using a dot (.) as decimal separator - not the local\n"
81113498266Sopenharmony_ci, stdout);
81213498266Sopenharmony_ci fputs(
81313498266Sopenharmony_ci"              version even if it might be using another separator.\n"
81413498266Sopenharmony_ci"\n"
81513498266Sopenharmony_ci"              The connection phase is considered complete when the DNS  lookup\n"
81613498266Sopenharmony_ci"              and requested TCP, TLS or QUIC handshakes are done.\n"
81713498266Sopenharmony_ci"\n"
81813498266Sopenharmony_ci"              If  --connect-timeout  is  provided  several times, the last set\n"
81913498266Sopenharmony_ci"              value is used.\n"
82013498266Sopenharmony_ci"\n"
82113498266Sopenharmony_ci"              Examples:\n"
82213498266Sopenharmony_ci"               curl --connect-timeout 20 https://example.com\n"
82313498266Sopenharmony_ci"               curl --connect-timeout 3.14 https://example.com\n"
82413498266Sopenharmony_ci"\n"
82513498266Sopenharmony_ci, stdout);
82613498266Sopenharmony_ci fputs(
82713498266Sopenharmony_ci"              See also -m, --max-time.\n"
82813498266Sopenharmony_ci"\n"
82913498266Sopenharmony_ci"       --connect-to <HOST1:PORT1:HOST2:PORT2>\n"
83013498266Sopenharmony_ci"              For a request  to  the  given  \"HOST1:PORT1\"  pair,  connect  to\n"
83113498266Sopenharmony_ci"              \"HOST2:PORT2\"  instead.  This  option  is suitable to direct re-\n"
83213498266Sopenharmony_ci"              quests at a specific server, e.g. at a specific cluster node  in\n"
83313498266Sopenharmony_ci"              a  cluster of servers. This option is only used to establish the\n"
83413498266Sopenharmony_ci"              network connection. It does NOT affect the hostname/port that is\n"
83513498266Sopenharmony_ci, stdout);
83613498266Sopenharmony_ci fputs(
83713498266Sopenharmony_ci"              used for TLS/SSL (e.g. SNI, certificate verification) or for the\n"
83813498266Sopenharmony_ci"              application protocols. \"HOST1\" and  \"PORT1\"  may  be  the  empty\n"
83913498266Sopenharmony_ci"              string, meaning \"any host/port\". \"HOST2\" and \"PORT2\" may also be\n"
84013498266Sopenharmony_ci"              the   empty   string,   meaning   \"use  the  request's  original\n"
84113498266Sopenharmony_ci"              host/port\".\n"
84213498266Sopenharmony_ci"\n"
84313498266Sopenharmony_ci"              A hostname specified to this option is compared as a string,  so\n"
84413498266Sopenharmony_ci, stdout);
84513498266Sopenharmony_ci fputs(
84613498266Sopenharmony_ci"              it needs to match the name used in request URL. It can be either\n"
84713498266Sopenharmony_ci"              numerical such as \"127.0.0.1\" or the full host name such as \"ex-\n"
84813498266Sopenharmony_ci"              ample.org\".\n"
84913498266Sopenharmony_ci"\n"
85013498266Sopenharmony_ci"              --connect-to can be used several times in a command line\n"
85113498266Sopenharmony_ci"\n"
85213498266Sopenharmony_ci"              Example:\n"
85313498266Sopenharmony_ci"               curl --connect-to example.com:443:example.net:8443 https://example.com\n"
85413498266Sopenharmony_ci"\n"
85513498266Sopenharmony_ci"              See also --resolve and -H, --header.\n"
85613498266Sopenharmony_ci"\n"
85713498266Sopenharmony_ci"       -C, --continue-at <offset>\n"
85813498266Sopenharmony_ci, stdout);
85913498266Sopenharmony_ci fputs(
86013498266Sopenharmony_ci"              Continue/Resume  a  previous  file transfer at the given offset.\n"
86113498266Sopenharmony_ci"              The given offset is the exact number of bytes that are  skipped,\n"
86213498266Sopenharmony_ci"              counting  from  the  beginning  of  the source file before it is\n"
86313498266Sopenharmony_ci"              transferred to the destination. If used with  uploads,  the  FTP\n"
86413498266Sopenharmony_ci"              server command SIZE is not used by curl.\n"
86513498266Sopenharmony_ci"\n"
86613498266Sopenharmony_ci"              Use  \"-C  -\" to tell curl to automatically find out where/how to\n"
86713498266Sopenharmony_ci, stdout);
86813498266Sopenharmony_ci fputs(
86913498266Sopenharmony_ci"              resume the transfer. It then uses the given  output/input  files\n"
87013498266Sopenharmony_ci"              to figure that out.\n"
87113498266Sopenharmony_ci"\n"
87213498266Sopenharmony_ci"              If  --continue-at  is provided several times, the last set value\n"
87313498266Sopenharmony_ci"              is used.\n"
87413498266Sopenharmony_ci"\n"
87513498266Sopenharmony_ci"              Examples:\n"
87613498266Sopenharmony_ci"               curl -C - https://example.com\n"
87713498266Sopenharmony_ci"               curl -C 400 https://example.com\n"
87813498266Sopenharmony_ci"\n"
87913498266Sopenharmony_ci"              See also -r, --range.\n"
88013498266Sopenharmony_ci"\n"
88113498266Sopenharmony_ci"       -c, --cookie-jar <filename>\n"
88213498266Sopenharmony_ci"              (HTTP) Specify to which file you want curl to write all  cookies\n"
88313498266Sopenharmony_ci, stdout);
88413498266Sopenharmony_ci fputs(
88513498266Sopenharmony_ci"              after  a  completed  operation. Curl writes all cookies from its\n"
88613498266Sopenharmony_ci"              in-memory cookie storage to the given file at the end of  opera-\n"
88713498266Sopenharmony_ci"              tions.  If no cookies are known, no data is written. The file is\n"
88813498266Sopenharmony_ci"              created using the Netscape cookie file format. If  you  set  the\n"
88913498266Sopenharmony_ci"              file name to a single dash, \"-\", the cookies are written to std-\n"
89013498266Sopenharmony_ci"              out.\n"
89113498266Sopenharmony_ci"\n"
89213498266Sopenharmony_ci"              The  file  specified with -c, --cookie-jar is only used for out-\n"
89313498266Sopenharmony_ci, stdout);
89413498266Sopenharmony_ci fputs(
89513498266Sopenharmony_ci"              put. No cookies are read from the file. To read cookies, use the\n"
89613498266Sopenharmony_ci"              -b, --cookie option. Both options can specify the same file.\n"
89713498266Sopenharmony_ci"\n"
89813498266Sopenharmony_ci"              This command line option activates the cookie engine that  makes\n"
89913498266Sopenharmony_ci"              curl  record and use cookies. The -b, --cookie option also acti-\n"
90013498266Sopenharmony_ci"              vates it.\n"
90113498266Sopenharmony_ci"\n"
90213498266Sopenharmony_ci"              If the cookie jar cannot be created or  written  to,  the  whole\n"
90313498266Sopenharmony_ci"              curl  operation  does  not fail or even report an error clearly.\n"
90413498266Sopenharmony_ci, stdout);
90513498266Sopenharmony_ci fputs(
90613498266Sopenharmony_ci"              Using -v, --verbose gets a warning displayed, but  that  is  the\n"
90713498266Sopenharmony_ci"              only  visible feedback you get about this possibly lethal situa-\n"
90813498266Sopenharmony_ci"              tion.\n"
90913498266Sopenharmony_ci"\n"
91013498266Sopenharmony_ci"              If --cookie-jar is provided several times, the last set value is\n"
91113498266Sopenharmony_ci"              used.\n"
91213498266Sopenharmony_ci"\n"
91313498266Sopenharmony_ci"              Examples:\n"
91413498266Sopenharmony_ci"               curl -c store-here.txt https://example.com\n"
91513498266Sopenharmony_ci"               curl -c store-here.txt -b read-these https://example.com\n"
91613498266Sopenharmony_ci"\n"
91713498266Sopenharmony_ci"              See also -b, --cookie.\n"
91813498266Sopenharmony_ci"\n"
91913498266Sopenharmony_ci, stdout);
92013498266Sopenharmony_ci fputs(
92113498266Sopenharmony_ci"       -b, --cookie <data|filename>\n"
92213498266Sopenharmony_ci"              (HTTP) Pass the data to the HTTP server in the Cookie header. It\n"
92313498266Sopenharmony_ci"              is supposedly the data previously received from the server in  a\n"
92413498266Sopenharmony_ci"              \"Set-Cookie:\"   line.   The   data   should  be  in  the  format\n"
92513498266Sopenharmony_ci"              \"NAME1=VALUE1; NAME2=VALUE2\". This makes  curl  use  the  cookie\n"
92613498266Sopenharmony_ci"              header  with this content explicitly in all outgoing request(s).\n"
92713498266Sopenharmony_ci, stdout);
92813498266Sopenharmony_ci fputs(
92913498266Sopenharmony_ci"              If multiple requests are done due  to  authentication,  followed\n"
93013498266Sopenharmony_ci"              redirects or similar, they all get this cookie passed on.\n"
93113498266Sopenharmony_ci"\n"
93213498266Sopenharmony_ci"              If  no '=' symbol is used in the argument, it is instead treated\n"
93313498266Sopenharmony_ci"              as a filename to read previously stored cookie from. This option\n"
93413498266Sopenharmony_ci"              also activates the cookie engine which makes curl record  incom-\n"
93513498266Sopenharmony_ci"              ing  cookies, which may be handy if you are using this in combi-\n"
93613498266Sopenharmony_ci, stdout);
93713498266Sopenharmony_ci fputs(
93813498266Sopenharmony_ci"              nation with the -L, --location option or do multiple URL  trans-\n"
93913498266Sopenharmony_ci"              fers on the same invoke.\n"
94013498266Sopenharmony_ci"\n"
94113498266Sopenharmony_ci"              If  the  file  name is exactly a minus (\"-\"), curl instead reads\n"
94213498266Sopenharmony_ci"              the contents from stdin. If the file name  is  an  empty  string\n"
94313498266Sopenharmony_ci"              (\"\") and is the only cookie input, curl will activate the cookie\n"
94413498266Sopenharmony_ci"              engine without any cookies.\n"
94513498266Sopenharmony_ci"\n"
94613498266Sopenharmony_ci"              The file format of the file to read cookies from should be plain\n"
94713498266Sopenharmony_ci, stdout);
94813498266Sopenharmony_ci fputs(
94913498266Sopenharmony_ci"              HTTP  headers  (Set-Cookie style) or the Netscape/Mozilla cookie\n"
95013498266Sopenharmony_ci"              file format.\n"
95113498266Sopenharmony_ci"\n"
95213498266Sopenharmony_ci"              The file specified with -b, --cookie is only used as  input.  No\n"
95313498266Sopenharmony_ci"              cookies  are  written to the file. To store cookies, use the -c,\n"
95413498266Sopenharmony_ci"              --cookie-jar option.\n"
95513498266Sopenharmony_ci"\n"
95613498266Sopenharmony_ci"              If you use the Set-Cookie file format and do not specify  a  do-\n"
95713498266Sopenharmony_ci"              main then the cookie is not sent since the domain never matches.\n"
95813498266Sopenharmony_ci, stdout);
95913498266Sopenharmony_ci fputs(
96013498266Sopenharmony_ci"              To address this, set a domain in Set-Cookie line (doing that in-\n"
96113498266Sopenharmony_ci"              cludes subdomains) or preferably: use the Netscape format.\n"
96213498266Sopenharmony_ci"\n"
96313498266Sopenharmony_ci"              Users  often want to both read cookies from a file and write up-\n"
96413498266Sopenharmony_ci"              dated cookies back to a file, so using both -b, --cookie and -c,\n"
96513498266Sopenharmony_ci"              --cookie-jar in the same command line is common.\n"
96613498266Sopenharmony_ci"\n"
96713498266Sopenharmony_ci"              If curl is built with PSL (Public Suffix List) support,  it  de-\n"
96813498266Sopenharmony_ci, stdout);
96913498266Sopenharmony_ci fputs(
97013498266Sopenharmony_ci"              tects  and  discards  cookies that are specified for such suffix\n"
97113498266Sopenharmony_ci"              domains that should not be allowed to have cookies. If  curl  is\n"
97213498266Sopenharmony_ci"              not  built  with  PSL  support,  it has no ability to stop super\n"
97313498266Sopenharmony_ci"              cookies.\n"
97413498266Sopenharmony_ci"\n"
97513498266Sopenharmony_ci"              --cookie can be used several times in a command line\n"
97613498266Sopenharmony_ci"\n"
97713498266Sopenharmony_ci"              Examples:\n"
97813498266Sopenharmony_ci"               curl -b \"\" https://example.com\n"
97913498266Sopenharmony_ci"               curl -b cookiefile https://example.com\n"
98013498266Sopenharmony_ci, stdout);
98113498266Sopenharmony_ci fputs(
98213498266Sopenharmony_ci"               curl -b cookiefile -c cookiefile https://example.com\n"
98313498266Sopenharmony_ci"\n"
98413498266Sopenharmony_ci"              See also -c, --cookie-jar and -j, --junk-session-cookies.\n"
98513498266Sopenharmony_ci"\n"
98613498266Sopenharmony_ci"       --create-dirs\n"
98713498266Sopenharmony_ci"              When used in conjunction with the -o, --output option, curl cre-\n"
98813498266Sopenharmony_ci"              ates the necessary local directory hierarchy as needed. This op-\n"
98913498266Sopenharmony_ci"              tion creates the directories mentioned with the -o, --output op-\n"
99013498266Sopenharmony_ci"              tion combined with the path possibly set with  --output-dir.  If\n"
99113498266Sopenharmony_ci, stdout);
99213498266Sopenharmony_ci fputs(
99313498266Sopenharmony_ci"              the  combined  output file name uses no directory, or if the di-\n"
99413498266Sopenharmony_ci"              rectories it mentions already exist, no directories are created.\n"
99513498266Sopenharmony_ci"              Created directories are made with mode 0750 on unix  style  file\n"
99613498266Sopenharmony_ci"              systems.\n"
99713498266Sopenharmony_ci"\n"
99813498266Sopenharmony_ci"              To  create  remote  directories  when  using  FTP  or  SFTP, try\n"
99913498266Sopenharmony_ci"              --ftp-create-dirs.\n"
100013498266Sopenharmony_ci"\n"
100113498266Sopenharmony_ci"              Providing --create-dirs multiple  times  has  no  extra  effect.\n"
100213498266Sopenharmony_ci, stdout);
100313498266Sopenharmony_ci fputs(
100413498266Sopenharmony_ci"              Disable it again with --no-create-dirs.\n"
100513498266Sopenharmony_ci"\n"
100613498266Sopenharmony_ci"              Example:\n"
100713498266Sopenharmony_ci"               curl --create-dirs --output local/dir/file https://example.com\n"
100813498266Sopenharmony_ci"\n"
100913498266Sopenharmony_ci"              See also --ftp-create-dirs and --output-dir.\n"
101013498266Sopenharmony_ci"\n"
101113498266Sopenharmony_ci"       --create-file-mode <mode>\n"
101213498266Sopenharmony_ci"              (SFTP SCP FILE) When curl is used to create files remotely using\n"
101313498266Sopenharmony_ci"              one  of  the supported protocols, this option allows the user to\n"
101413498266Sopenharmony_ci"              set which 'mode' to set on the file at creation time, instead of\n"
101513498266Sopenharmony_ci, stdout);
101613498266Sopenharmony_ci fputs(
101713498266Sopenharmony_ci"              the default 0644.\n"
101813498266Sopenharmony_ci"\n"
101913498266Sopenharmony_ci"              This option takes an octal number as argument.\n"
102013498266Sopenharmony_ci"\n"
102113498266Sopenharmony_ci"              If --create-file-mode is provided several times,  the  last  set\n"
102213498266Sopenharmony_ci"              value is used.\n"
102313498266Sopenharmony_ci"\n"
102413498266Sopenharmony_ci"              Example:\n"
102513498266Sopenharmony_ci"               curl --create-file-mode 0777 -T localfile sftp://example.com/new\n"
102613498266Sopenharmony_ci"\n"
102713498266Sopenharmony_ci"              See also --ftp-create-dirs. Added in 7.75.0.\n"
102813498266Sopenharmony_ci"\n"
102913498266Sopenharmony_ci"       --crlf (FTP SMTP) Convert line feeds to carriage return plus line feeds\n"
103013498266Sopenharmony_ci"              in upload. Useful for MVS (OS/390).\n"
103113498266Sopenharmony_ci"\n"
103213498266Sopenharmony_ci, stdout);
103313498266Sopenharmony_ci fputs(
103413498266Sopenharmony_ci"              (SMTP added in 7.40.0)\n"
103513498266Sopenharmony_ci"\n"
103613498266Sopenharmony_ci"              Providing --crlf multiple times has no extra effect.  Disable it\n"
103713498266Sopenharmony_ci"              again with --no-crlf.\n"
103813498266Sopenharmony_ci"\n"
103913498266Sopenharmony_ci"              Example:\n"
104013498266Sopenharmony_ci"               curl --crlf -T file ftp://example.com/\n"
104113498266Sopenharmony_ci"\n"
104213498266Sopenharmony_ci"              See also -B, --use-ascii.\n"
104313498266Sopenharmony_ci"\n"
104413498266Sopenharmony_ci"       --crlfile <file>\n"
104513498266Sopenharmony_ci"              (TLS) Provide a file using PEM format with a Certificate Revoca-\n"
104613498266Sopenharmony_ci"              tion List that may specify peer certificates that are to be con-\n"
104713498266Sopenharmony_ci"              sidered revoked.\n"
104813498266Sopenharmony_ci"\n"
104913498266Sopenharmony_ci, stdout);
105013498266Sopenharmony_ci fputs(
105113498266Sopenharmony_ci"              If  --crlfile  is  provided several times, the last set value is\n"
105213498266Sopenharmony_ci"              used.\n"
105313498266Sopenharmony_ci"\n"
105413498266Sopenharmony_ci"              Example:\n"
105513498266Sopenharmony_ci"               curl --crlfile rejects.txt https://example.com\n"
105613498266Sopenharmony_ci"\n"
105713498266Sopenharmony_ci"              See also --cacert and --capath.\n"
105813498266Sopenharmony_ci"\n"
105913498266Sopenharmony_ci"       --curves <algorithm list>\n"
106013498266Sopenharmony_ci"              (TLS) Tells curl to request specific curves to  use  during  SSL\n"
106113498266Sopenharmony_ci"              session establishment according to RFC 8422, 5.1. Multiple algo-\n"
106213498266Sopenharmony_ci, stdout);
106313498266Sopenharmony_ci fputs(
106413498266Sopenharmony_ci"              rithms  can  be  provided  by  separating  them  with  \":\" (e.g.\n"
106513498266Sopenharmony_ci"              \"X25519:P-521\"). The parameter is available identically  in  the\n"
106613498266Sopenharmony_ci"              OpenSSL \"s_client\" and \"s_server\" utilities.\n"
106713498266Sopenharmony_ci"\n"
106813498266Sopenharmony_ci"              --curves  allows  a OpenSSL powered curl to make SSL-connections\n"
106913498266Sopenharmony_ci"              with exactly the (EC) curve requested by  the  client,  avoiding\n"
107013498266Sopenharmony_ci"              nontransparent client/server negotiations.\n"
107113498266Sopenharmony_ci"\n"
107213498266Sopenharmony_ci, stdout);
107313498266Sopenharmony_ci fputs(
107413498266Sopenharmony_ci"              If  this  option  is  set,  the  default  curves list built into\n"
107513498266Sopenharmony_ci"              OpenSSL are ignored.\n"
107613498266Sopenharmony_ci"\n"
107713498266Sopenharmony_ci"              If --curves is provided several times, the  last  set  value  is\n"
107813498266Sopenharmony_ci"              used.\n"
107913498266Sopenharmony_ci"\n"
108013498266Sopenharmony_ci"              Example:\n"
108113498266Sopenharmony_ci"               curl --curves X25519 https://example.com\n"
108213498266Sopenharmony_ci"\n"
108313498266Sopenharmony_ci"              See also --ciphers. Added in 7.73.0.\n"
108413498266Sopenharmony_ci"\n"
108513498266Sopenharmony_ci"       --data-ascii <data>\n"
108613498266Sopenharmony_ci"              (HTTP) This is just an alias for -d, --data.\n"
108713498266Sopenharmony_ci"\n"
108813498266Sopenharmony_ci, stdout);
108913498266Sopenharmony_ci fputs(
109013498266Sopenharmony_ci"              --data-ascii can be used several times in a command line\n"
109113498266Sopenharmony_ci"\n"
109213498266Sopenharmony_ci"              Example:\n"
109313498266Sopenharmony_ci"               curl --data-ascii @file https://example.com\n"
109413498266Sopenharmony_ci"\n"
109513498266Sopenharmony_ci"              See also --data-binary, --data-raw and --data-urlencode.\n"
109613498266Sopenharmony_ci"\n"
109713498266Sopenharmony_ci"       --data-binary <data>\n"
109813498266Sopenharmony_ci"              (HTTP)  This  posts data exactly as specified with no extra pro-\n"
109913498266Sopenharmony_ci"              cessing whatsoever.\n"
110013498266Sopenharmony_ci"\n"
110113498266Sopenharmony_ci"              If you start the data with the letter @, the rest  should  be  a\n"
110213498266Sopenharmony_ci, stdout);
110313498266Sopenharmony_ci fputs(
110413498266Sopenharmony_ci"              filename. Data is posted in a similar manner as -d, --data does,\n"
110513498266Sopenharmony_ci"              except that newlines and carriage returns are preserved and con-\n"
110613498266Sopenharmony_ci"              versions are never done.\n"
110713498266Sopenharmony_ci"\n"
110813498266Sopenharmony_ci"              Like  -d,  --data the default content-type sent to the server is\n"
110913498266Sopenharmony_ci"              application/x-www-form-urlencoded. If you want the  data  to  be\n"
111013498266Sopenharmony_ci"              treated as arbitrary binary data by the server then set the con-\n"
111113498266Sopenharmony_ci, stdout);
111213498266Sopenharmony_ci fputs(
111313498266Sopenharmony_ci"              tent-type    to   octet-stream:   -H   \"Content-Type:   applica-\n"
111413498266Sopenharmony_ci"              tion/octet-stream\".\n"
111513498266Sopenharmony_ci"\n"
111613498266Sopenharmony_ci"              If this option is used several times,  the  ones  following  the\n"
111713498266Sopenharmony_ci"              first append data as described in -d, --data.\n"
111813498266Sopenharmony_ci"\n"
111913498266Sopenharmony_ci"              --data-binary can be used several times in a command line\n"
112013498266Sopenharmony_ci"\n"
112113498266Sopenharmony_ci"              Example:\n"
112213498266Sopenharmony_ci"               curl --data-binary @filename https://example.com\n"
112313498266Sopenharmony_ci"\n"
112413498266Sopenharmony_ci"              See also --data-ascii.\n"
112513498266Sopenharmony_ci"\n"
112613498266Sopenharmony_ci"       --data-raw <data>\n"
112713498266Sopenharmony_ci, stdout);
112813498266Sopenharmony_ci fputs(
112913498266Sopenharmony_ci"              (HTTP)  This  posts data similarly to -d, --data but without the\n"
113013498266Sopenharmony_ci"              special interpretation of the @ character.\n"
113113498266Sopenharmony_ci"\n"
113213498266Sopenharmony_ci"              --data-raw can be used several times in a command line\n"
113313498266Sopenharmony_ci"\n"
113413498266Sopenharmony_ci"              Examples:\n"
113513498266Sopenharmony_ci"               curl --data-raw \"hello\" https://example.com\n"
113613498266Sopenharmony_ci"               curl --data-raw \"@at@at@\" https://example.com\n"
113713498266Sopenharmony_ci"\n"
113813498266Sopenharmony_ci"              See also -d, --data.\n"
113913498266Sopenharmony_ci"\n"
114013498266Sopenharmony_ci"       --data-urlencode <data>\n"
114113498266Sopenharmony_ci"              (HTTP) This posts data, similar to the other -d, --data  options\n"
114213498266Sopenharmony_ci, stdout);
114313498266Sopenharmony_ci fputs(
114413498266Sopenharmony_ci"              with the exception that this performs URL-encoding.\n"
114513498266Sopenharmony_ci"\n"
114613498266Sopenharmony_ci"              To  be  CGI-compliant,  the <data> part should begin with a name\n"
114713498266Sopenharmony_ci"              followed by a separator and a content specification. The  <data>\n"
114813498266Sopenharmony_ci"              part can be passed to curl using one of the following syntaxes:\n"
114913498266Sopenharmony_ci"\n"
115013498266Sopenharmony_ci"              content\n"
115113498266Sopenharmony_ci"                     This  makes curl URL-encode the content and pass that on.\n"
115213498266Sopenharmony_ci"                     Just be careful so that the content does not contain  any\n"
115313498266Sopenharmony_ci, stdout);
115413498266Sopenharmony_ci fputs(
115513498266Sopenharmony_ci"                     = or @ symbols, as that makes the syntax match one of the\n"
115613498266Sopenharmony_ci"                     other cases below!\n"
115713498266Sopenharmony_ci"\n"
115813498266Sopenharmony_ci"              =content\n"
115913498266Sopenharmony_ci"                     This  makes curl URL-encode the content and pass that on.\n"
116013498266Sopenharmony_ci"                     The preceding = symbol is not included in the data.\n"
116113498266Sopenharmony_ci"\n"
116213498266Sopenharmony_ci"              name=content\n"
116313498266Sopenharmony_ci"                     This makes curl URL-encode the content part and pass that\n"
116413498266Sopenharmony_ci"                     on. Note that the name part is expected to be URL-encoded\n"
116513498266Sopenharmony_ci, stdout);
116613498266Sopenharmony_ci fputs(
116713498266Sopenharmony_ci"                     already.\n"
116813498266Sopenharmony_ci"\n"
116913498266Sopenharmony_ci"              @filename\n"
117013498266Sopenharmony_ci"                     This makes curl load data from the given file  (including\n"
117113498266Sopenharmony_ci"                     any newlines), URL-encode that data and pass it on in the\n"
117213498266Sopenharmony_ci"                     POST.\n"
117313498266Sopenharmony_ci"\n"
117413498266Sopenharmony_ci"              name@filename\n"
117513498266Sopenharmony_ci"                     This  makes curl load data from the given file (including\n"
117613498266Sopenharmony_ci"                     any newlines), URL-encode that data and pass it on in the\n"
117713498266Sopenharmony_ci, stdout);
117813498266Sopenharmony_ci fputs(
117913498266Sopenharmony_ci"                     POST. The name part gets an equal sign appended,  result-\n"
118013498266Sopenharmony_ci"                     ing  in  name=urlencoded-file-content. Note that the name\n"
118113498266Sopenharmony_ci"                     is expected to be URL-encoded already.\n"
118213498266Sopenharmony_ci"\n"
118313498266Sopenharmony_ci"              --data-urlencode can be used several times in a command line\n"
118413498266Sopenharmony_ci"\n"
118513498266Sopenharmony_ci"              Examples:\n"
118613498266Sopenharmony_ci"               curl --data-urlencode name=val https://example.com\n"
118713498266Sopenharmony_ci"               curl --data-urlencode =encodethis https://example.com\n"
118813498266Sopenharmony_ci, stdout);
118913498266Sopenharmony_ci fputs(
119013498266Sopenharmony_ci"               curl --data-urlencode name@file https://example.com\n"
119113498266Sopenharmony_ci"               curl --data-urlencode @fileonly https://example.com\n"
119213498266Sopenharmony_ci"\n"
119313498266Sopenharmony_ci"              See also -d, --data and --data-raw.\n"
119413498266Sopenharmony_ci"\n"
119513498266Sopenharmony_ci"       -d, --data <data>\n"
119613498266Sopenharmony_ci"              (HTTP MQTT) Sends the specified data in a POST  request  to  the\n"
119713498266Sopenharmony_ci"              HTTP server, in the same way that a browser does when a user has\n"
119813498266Sopenharmony_ci"              filled in an HTML form and presses the submit button. This makes\n"
119913498266Sopenharmony_ci, stdout);
120013498266Sopenharmony_ci fputs(
120113498266Sopenharmony_ci"              curl pass the data to the server using the content-type applica-\n"
120213498266Sopenharmony_ci"              tion/x-www-form-urlencoded. Compare to -F, --form.\n"
120313498266Sopenharmony_ci"\n"
120413498266Sopenharmony_ci"              --data-raw is almost the same but does not have a special inter-\n"
120513498266Sopenharmony_ci"              pretation  of  the  @ character. To post data purely binary, you\n"
120613498266Sopenharmony_ci"              should instead use the --data-binary option. To  URL-encode  the\n"
120713498266Sopenharmony_ci"              value of a form field you may use --data-urlencode.\n"
120813498266Sopenharmony_ci"\n"
120913498266Sopenharmony_ci, stdout);
121013498266Sopenharmony_ci fputs(
121113498266Sopenharmony_ci"              If  any of these options is used more than once on the same com-\n"
121213498266Sopenharmony_ci"              mand line, the data pieces specified are merged with a  separat-\n"
121313498266Sopenharmony_ci"              ing  &-symbol. Thus, using '-d name=daniel -d skill=lousy' would\n"
121413498266Sopenharmony_ci"              generate a post chunk that looks like 'name=daniel&skill=lousy'.\n"
121513498266Sopenharmony_ci"              If you start the data with the letter @, the rest  should  be  a\n"
121613498266Sopenharmony_ci"              file  name  to read the data from, or - if you want curl to read\n"
121713498266Sopenharmony_ci, stdout);
121813498266Sopenharmony_ci fputs(
121913498266Sopenharmony_ci"              the data from stdin. Posting data from  a  file  named  'foobar'\n"
122013498266Sopenharmony_ci"              would  thus  be done with -d, --data @foobar. When -d, --data is\n"
122113498266Sopenharmony_ci"              told to read from a file like that, carriage  returns  and  new-\n"
122213498266Sopenharmony_ci"              lines  are  stripped  out. If you do not want the @ character to\n"
122313498266Sopenharmony_ci"              have a special interpretation use --data-raw instead.\n"
122413498266Sopenharmony_ci"\n"
122513498266Sopenharmony_ci"              The data for this option is passed on to the server  exactly  as\n"
122613498266Sopenharmony_ci, stdout);
122713498266Sopenharmony_ci fputs(
122813498266Sopenharmony_ci"              provided  on  the command line. curl does not convert, change or\n"
122913498266Sopenharmony_ci"              improve it. It is up to the user to provide the data in the cor-\n"
123013498266Sopenharmony_ci"              rect form.\n"
123113498266Sopenharmony_ci"\n"
123213498266Sopenharmony_ci"              --data can be used several times in a command line\n"
123313498266Sopenharmony_ci"\n"
123413498266Sopenharmony_ci"              Examples:\n"
123513498266Sopenharmony_ci"               curl -d \"name=curl\" https://example.com\n"
123613498266Sopenharmony_ci"               curl -d \"name=curl\" -d \"tool=cmdline\" https://example.com\n"
123713498266Sopenharmony_ci"               curl -d @filename https://example.com\n"
123813498266Sopenharmony_ci"\n"
123913498266Sopenharmony_ci, stdout);
124013498266Sopenharmony_ci fputs(
124113498266Sopenharmony_ci"              See also --data-binary, --data-urlencode  and  --data-raw.  This\n"
124213498266Sopenharmony_ci"              option  is  mutually  exclusive to -F, --form and -I, --head and\n"
124313498266Sopenharmony_ci"              -T, --upload-file.\n"
124413498266Sopenharmony_ci"\n"
124513498266Sopenharmony_ci"       --delegation <LEVEL>\n"
124613498266Sopenharmony_ci"              (GSS/kerberos) Set LEVEL to tell the server what it  is  allowed\n"
124713498266Sopenharmony_ci"              to delegate when it comes to user credentials.\n"
124813498266Sopenharmony_ci"\n"
124913498266Sopenharmony_ci"              none   Do not allow any delegation.\n"
125013498266Sopenharmony_ci"\n"
125113498266Sopenharmony_ci"              policy Delegates  if  and only if the OK-AS-DELEGATE flag is set\n"
125213498266Sopenharmony_ci, stdout);
125313498266Sopenharmony_ci fputs(
125413498266Sopenharmony_ci"                     in the Kerberos service ticket,  which  is  a  matter  of\n"
125513498266Sopenharmony_ci"                     realm policy.\n"
125613498266Sopenharmony_ci"\n"
125713498266Sopenharmony_ci"              always Unconditionally allow the server to delegate.\n"
125813498266Sopenharmony_ci"\n"
125913498266Sopenharmony_ci"              If --delegation is provided several times, the last set value is\n"
126013498266Sopenharmony_ci"              used.\n"
126113498266Sopenharmony_ci"\n"
126213498266Sopenharmony_ci"              Example:\n"
126313498266Sopenharmony_ci"               curl --delegation \"none\" https://example.com\n"
126413498266Sopenharmony_ci"\n"
126513498266Sopenharmony_ci"              See also -k, --insecure and --ssl.\n"
126613498266Sopenharmony_ci"\n"
126713498266Sopenharmony_ci"       --digest\n"
126813498266Sopenharmony_ci, stdout);
126913498266Sopenharmony_ci fputs(
127013498266Sopenharmony_ci"              (HTTP)  Enables HTTP Digest authentication. This is an authenti-\n"
127113498266Sopenharmony_ci"              cation scheme that prevents the password from  being  sent  over\n"
127213498266Sopenharmony_ci"              the  wire in clear text. Use this in combination with the normal\n"
127313498266Sopenharmony_ci"              -u, --user option to set user name and password.\n"
127413498266Sopenharmony_ci"\n"
127513498266Sopenharmony_ci"              Providing --digest multiple times has no extra effect.   Disable\n"
127613498266Sopenharmony_ci"              it again with --no-digest.\n"
127713498266Sopenharmony_ci"\n"
127813498266Sopenharmony_ci"              Example:\n"
127913498266Sopenharmony_ci, stdout);
128013498266Sopenharmony_ci fputs(
128113498266Sopenharmony_ci"               curl -u name:password --digest https://example.com\n"
128213498266Sopenharmony_ci"\n"
128313498266Sopenharmony_ci"              See  also  -u, --user, --proxy-digest and --anyauth. This option\n"
128413498266Sopenharmony_ci"              is mutually exclusive to --basic and --ntlm and --negotiate.\n"
128513498266Sopenharmony_ci"\n"
128613498266Sopenharmony_ci"       --disable-eprt\n"
128713498266Sopenharmony_ci"              (FTP) Tell curl to disable the use of the EPRT and LPRT commands\n"
128813498266Sopenharmony_ci"              when doing active FTP transfers. Curl normally first attempts to\n"
128913498266Sopenharmony_ci"              use EPRT before using PORT, but with this option, it  uses  PORT\n"
129013498266Sopenharmony_ci, stdout);
129113498266Sopenharmony_ci fputs(
129213498266Sopenharmony_ci"              right  away.  EPRT is an extension to the original FTP protocol,\n"
129313498266Sopenharmony_ci"              and does not work on all servers, but enables more functionality\n"
129413498266Sopenharmony_ci"              in a better way than the traditional PORT command.\n"
129513498266Sopenharmony_ci"\n"
129613498266Sopenharmony_ci"              --eprt can be used to explicitly enable EPRT again and --no-eprt\n"
129713498266Sopenharmony_ci"              is an alias for --disable-eprt.\n"
129813498266Sopenharmony_ci"\n"
129913498266Sopenharmony_ci"              If the server is accessed using IPv6, this option has no  effect\n"
130013498266Sopenharmony_ci"              as EPRT is necessary then.\n"
130113498266Sopenharmony_ci"\n"
130213498266Sopenharmony_ci, stdout);
130313498266Sopenharmony_ci fputs(
130413498266Sopenharmony_ci"              Disabling  EPRT only changes the active behavior. If you want to\n"
130513498266Sopenharmony_ci"              switch to passive mode you need to not  use  -P,  --ftp-port  or\n"
130613498266Sopenharmony_ci"              force it with --ftp-pasv.\n"
130713498266Sopenharmony_ci"\n"
130813498266Sopenharmony_ci"              Providing  --disable-eprt  multiple  times  has no extra effect.\n"
130913498266Sopenharmony_ci"              Disable it again with --no-disable-eprt.\n"
131013498266Sopenharmony_ci"\n"
131113498266Sopenharmony_ci"              Example:\n"
131213498266Sopenharmony_ci"               curl --disable-eprt ftp://example.com/\n"
131313498266Sopenharmony_ci"\n"
131413498266Sopenharmony_ci"              See also --disable-epsv and -P, --ftp-port.\n"
131513498266Sopenharmony_ci"\n"
131613498266Sopenharmony_ci"       --disable-epsv\n"
131713498266Sopenharmony_ci, stdout);
131813498266Sopenharmony_ci fputs(
131913498266Sopenharmony_ci"              (FTP) Tell curl to disable the use of the EPSV command when  do-\n"
132013498266Sopenharmony_ci"              ing  passive  FTP transfers. Curl normally first attempts to use\n"
132113498266Sopenharmony_ci"              EPSV before PASV, but with this option, it does not try EPSV.\n"
132213498266Sopenharmony_ci"\n"
132313498266Sopenharmony_ci"              --epsv can be used to explicitly enable EPSV again and --no-epsv\n"
132413498266Sopenharmony_ci"              is an alias for --disable-epsv.\n"
132513498266Sopenharmony_ci"\n"
132613498266Sopenharmony_ci"              If the server is an IPv6 host, this option has no effect as EPSV\n"
132713498266Sopenharmony_ci"              is necessary then.\n"
132813498266Sopenharmony_ci"\n"
132913498266Sopenharmony_ci, stdout);
133013498266Sopenharmony_ci fputs(
133113498266Sopenharmony_ci"              Disabling EPSV only changes the passive behavior. If you want to\n"
133213498266Sopenharmony_ci"              switch to active mode you need to use -P, --ftp-port.\n"
133313498266Sopenharmony_ci"\n"
133413498266Sopenharmony_ci"              Providing --disable-epsv multiple times  has  no  extra  effect.\n"
133513498266Sopenharmony_ci"              Disable it again with --no-disable-epsv.\n"
133613498266Sopenharmony_ci"\n"
133713498266Sopenharmony_ci"              Example:\n"
133813498266Sopenharmony_ci"               curl --disable-epsv ftp://example.com/\n"
133913498266Sopenharmony_ci"\n"
134013498266Sopenharmony_ci"              See also --disable-eprt and -P, --ftp-port.\n"
134113498266Sopenharmony_ci"\n"
134213498266Sopenharmony_ci"       -q, --disable\n"
134313498266Sopenharmony_ci, stdout);
134413498266Sopenharmony_ci fputs(
134513498266Sopenharmony_ci"              If  used  as the first parameter on the command line, the curlrc\n"
134613498266Sopenharmony_ci"              config file is not read or used. See the -K,  --config  for  de-\n"
134713498266Sopenharmony_ci"              tails on the default config file search path.\n"
134813498266Sopenharmony_ci"\n"
134913498266Sopenharmony_ci"              Prior  to  7.50.0 curl supported the short option name q but not\n"
135013498266Sopenharmony_ci"              the long option name disable.\n"
135113498266Sopenharmony_ci"\n"
135213498266Sopenharmony_ci"              Providing --disable multiple times has no extra effect.  Disable\n"
135313498266Sopenharmony_ci"              it again with --no-disable.\n"
135413498266Sopenharmony_ci"\n"
135513498266Sopenharmony_ci"              Example:\n"
135613498266Sopenharmony_ci, stdout);
135713498266Sopenharmony_ci fputs(
135813498266Sopenharmony_ci"               curl -q https://example.com\n"
135913498266Sopenharmony_ci"\n"
136013498266Sopenharmony_ci"              See also -K, --config.\n"
136113498266Sopenharmony_ci"\n"
136213498266Sopenharmony_ci"       --disallow-username-in-url\n"
136313498266Sopenharmony_ci"              This tells curl to exit if passed a URL containing  a  username.\n"
136413498266Sopenharmony_ci"              This  is  probably most useful when the URL is being provided at\n"
136513498266Sopenharmony_ci"              runtime or similar.\n"
136613498266Sopenharmony_ci"\n"
136713498266Sopenharmony_ci"              Providing --disallow-username-in-url multiple times has no extra\n"
136813498266Sopenharmony_ci"              effect.  Disable it again with --no-disallow-username-in-url.\n"
136913498266Sopenharmony_ci"\n"
137013498266Sopenharmony_ci"              Example:\n"
137113498266Sopenharmony_ci, stdout);
137213498266Sopenharmony_ci fputs(
137313498266Sopenharmony_ci"               curl --disallow-username-in-url https://example.com\n"
137413498266Sopenharmony_ci"\n"
137513498266Sopenharmony_ci"              See also --proto. Added in 7.61.0.\n"
137613498266Sopenharmony_ci"\n"
137713498266Sopenharmony_ci"       --dns-interface <interface>\n"
137813498266Sopenharmony_ci"              (DNS) Tell curl to send outgoing DNS  requests  through  <inter-\n"
137913498266Sopenharmony_ci"              face>.  This  option is a counterpart to --interface (which does\n"
138013498266Sopenharmony_ci"              not affect DNS). The supplied string must be an  interface  name\n"
138113498266Sopenharmony_ci"              (not an address).\n"
138213498266Sopenharmony_ci"\n"
138313498266Sopenharmony_ci, stdout);
138413498266Sopenharmony_ci fputs(
138513498266Sopenharmony_ci"              If --dns-interface is provided several times, the last set value\n"
138613498266Sopenharmony_ci"              is used.\n"
138713498266Sopenharmony_ci"              Example:\n"
138813498266Sopenharmony_ci"               curl --dns-interface eth0 https://example.com\n"
138913498266Sopenharmony_ci"\n"
139013498266Sopenharmony_ci"              See  also  --dns-ipv4-addr  and --dns-ipv6-addr. --dns-interface\n"
139113498266Sopenharmony_ci"              requires that the underlying libcurl was  built  to  support  c-\n"
139213498266Sopenharmony_ci"              ares.\n"
139313498266Sopenharmony_ci"\n"
139413498266Sopenharmony_ci"       --dns-ipv4-addr <address>\n"
139513498266Sopenharmony_ci"              (DNS)  Tell  curl  to  bind to a specific IP address when making\n"
139613498266Sopenharmony_ci, stdout);
139713498266Sopenharmony_ci fputs(
139813498266Sopenharmony_ci"              IPv4 DNS requests, so that the DNS requests originate from  this\n"
139913498266Sopenharmony_ci"              address. The argument should be a single IPv4 address.\n"
140013498266Sopenharmony_ci"\n"
140113498266Sopenharmony_ci"              If --dns-ipv4-addr is provided several times, the last set value\n"
140213498266Sopenharmony_ci"              is used.\n"
140313498266Sopenharmony_ci"              Example:\n"
140413498266Sopenharmony_ci"               curl --dns-ipv4-addr 10.1.2.3 https://example.com\n"
140513498266Sopenharmony_ci"\n"
140613498266Sopenharmony_ci"              See  also  --dns-interface  and --dns-ipv6-addr. --dns-ipv4-addr\n"
140713498266Sopenharmony_ci"              requires that the underlying libcurl was  built  to  support  c-\n"
140813498266Sopenharmony_ci, stdout);
140913498266Sopenharmony_ci fputs(
141013498266Sopenharmony_ci"              ares.\n"
141113498266Sopenharmony_ci"\n"
141213498266Sopenharmony_ci"       --dns-ipv6-addr <address>\n"
141313498266Sopenharmony_ci"              (DNS)  Tell  curl  to  bind to a specific IP address when making\n"
141413498266Sopenharmony_ci"              IPv6 DNS requests, so that the DNS requests originate from  this\n"
141513498266Sopenharmony_ci"              address. The argument should be a single IPv6 address.\n"
141613498266Sopenharmony_ci"\n"
141713498266Sopenharmony_ci"              If --dns-ipv6-addr is provided several times, the last set value\n"
141813498266Sopenharmony_ci"              is used.\n"
141913498266Sopenharmony_ci"              Example:\n"
142013498266Sopenharmony_ci"               curl --dns-ipv6-addr 2a04:4e42::561 https://example.com\n"
142113498266Sopenharmony_ci"\n"
142213498266Sopenharmony_ci, stdout);
142313498266Sopenharmony_ci fputs(
142413498266Sopenharmony_ci"              See  also  --dns-interface  and --dns-ipv4-addr. --dns-ipv6-addr\n"
142513498266Sopenharmony_ci"              requires that the underlying libcurl was  built  to  support  c-\n"
142613498266Sopenharmony_ci"              ares.\n"
142713498266Sopenharmony_ci"\n"
142813498266Sopenharmony_ci"       --dns-servers <addresses>\n"
142913498266Sopenharmony_ci"              (DNS) Set the list of DNS servers to be used instead of the sys-\n"
143013498266Sopenharmony_ci"              tem  default.  The list of IP addresses should be separated with\n"
143113498266Sopenharmony_ci"              commas. Port numbers may also optionally be given as :<port-num-\n"
143213498266Sopenharmony_ci"              ber> after each IP address.\n"
143313498266Sopenharmony_ci"\n"
143413498266Sopenharmony_ci, stdout);
143513498266Sopenharmony_ci fputs(
143613498266Sopenharmony_ci"              If --dns-servers is provided several times, the last  set  value\n"
143713498266Sopenharmony_ci"              is used.\n"
143813498266Sopenharmony_ci"              Example:\n"
143913498266Sopenharmony_ci"               curl --dns-servers 192.168.0.1,192.168.0.2 https://example.com\n"
144013498266Sopenharmony_ci"\n"
144113498266Sopenharmony_ci"              See  also --dns-interface and --dns-ipv4-addr. --dns-servers re-\n"
144213498266Sopenharmony_ci"              quires that the underlying libcurl was built to support c-ares.\n"
144313498266Sopenharmony_ci"\n"
144413498266Sopenharmony_ci"       --doh-cert-status\n"
144513498266Sopenharmony_ci"              Same as --cert-status but used for DoH (DNS-over-HTTPS).\n"
144613498266Sopenharmony_ci"\n"
144713498266Sopenharmony_ci, stdout);
144813498266Sopenharmony_ci fputs(
144913498266Sopenharmony_ci"              Providing --doh-cert-status multiple times has no extra  effect.\n"
145013498266Sopenharmony_ci"              Disable it again with --no-doh-cert-status.\n"
145113498266Sopenharmony_ci"\n"
145213498266Sopenharmony_ci"              Example:\n"
145313498266Sopenharmony_ci"               curl --doh-cert-status --doh-url https://doh.example https://example.com\n"
145413498266Sopenharmony_ci"\n"
145513498266Sopenharmony_ci"              See also --doh-insecure. Added in 7.76.0.\n"
145613498266Sopenharmony_ci"\n"
145713498266Sopenharmony_ci"       --doh-insecure\n"
145813498266Sopenharmony_ci"              Same as -k, --insecure but used for DoH (DNS-over-HTTPS).\n"
145913498266Sopenharmony_ci"\n"
146013498266Sopenharmony_ci"              Providing  --doh-insecure  multiple  times  has no extra effect.\n"
146113498266Sopenharmony_ci, stdout);
146213498266Sopenharmony_ci fputs(
146313498266Sopenharmony_ci"              Disable it again with --no-doh-insecure.\n"
146413498266Sopenharmony_ci"\n"
146513498266Sopenharmony_ci"              Example:\n"
146613498266Sopenharmony_ci"               curl --doh-insecure --doh-url https://doh.example https://example.com\n"
146713498266Sopenharmony_ci"\n"
146813498266Sopenharmony_ci"              See also --doh-url. Added in 7.76.0.\n"
146913498266Sopenharmony_ci"\n"
147013498266Sopenharmony_ci"       --doh-url <URL>\n"
147113498266Sopenharmony_ci"              Specifies which DNS-over-HTTPS (DoH) server to  use  to  resolve\n"
147213498266Sopenharmony_ci"              hostnames, instead of using the default name resolver mechanism.\n"
147313498266Sopenharmony_ci"              The URL must be HTTPS.\n"
147413498266Sopenharmony_ci"\n"
147513498266Sopenharmony_ci, stdout);
147613498266Sopenharmony_ci fputs(
147713498266Sopenharmony_ci"              Some  SSL options that you set for your transfer also applies to\n"
147813498266Sopenharmony_ci"              DoH since the name lookups take place  over  SSL.  However,  the\n"
147913498266Sopenharmony_ci"              certificate verification settings are not inherited but are con-\n"
148013498266Sopenharmony_ci"              trolled separately via --doh-insecure and --doh-cert-status.\n"
148113498266Sopenharmony_ci"\n"
148213498266Sopenharmony_ci"              This  option  is unset if an empty string \"\" is used as the URL.\n"
148313498266Sopenharmony_ci"              (Added in 7.85.0)\n"
148413498266Sopenharmony_ci"\n"
148513498266Sopenharmony_ci, stdout);
148613498266Sopenharmony_ci fputs(
148713498266Sopenharmony_ci"              If --doh-url is provided several times, the last  set  value  is\n"
148813498266Sopenharmony_ci"              used.\n"
148913498266Sopenharmony_ci"\n"
149013498266Sopenharmony_ci"              Example:\n"
149113498266Sopenharmony_ci"               curl --doh-url https://doh.example https://example.com\n"
149213498266Sopenharmony_ci"\n"
149313498266Sopenharmony_ci"              See also --doh-insecure. Added in 7.62.0.\n"
149413498266Sopenharmony_ci"\n"
149513498266Sopenharmony_ci"       -D, --dump-header <filename>\n"
149613498266Sopenharmony_ci"              (HTTP  FTP) Write the received protocol headers to the specified\n"
149713498266Sopenharmony_ci"              file. If no headers are received, the use of this option creates\n"
149813498266Sopenharmony_ci"              an empty file.\n"
149913498266Sopenharmony_ci"\n"
150013498266Sopenharmony_ci, stdout);
150113498266Sopenharmony_ci fputs(
150213498266Sopenharmony_ci"              When used in FTP, the FTP server response lines  are  considered\n"
150313498266Sopenharmony_ci"              being \"headers\" and thus are saved there.\n"
150413498266Sopenharmony_ci"\n"
150513498266Sopenharmony_ci"              Having  multiple  transfers  in  one set of operations (i.e. the\n"
150613498266Sopenharmony_ci"              URLs in one -:, --next clause), appends them to the  same  file,\n"
150713498266Sopenharmony_ci"              separated by a blank line.\n"
150813498266Sopenharmony_ci"\n"
150913498266Sopenharmony_ci"              If  --dump-header  is provided several times, the last set value\n"
151013498266Sopenharmony_ci"              is used.\n"
151113498266Sopenharmony_ci"              Example:\n"
151213498266Sopenharmony_ci, stdout);
151313498266Sopenharmony_ci fputs(
151413498266Sopenharmony_ci"               curl --dump-header store.txt https://example.com\n"
151513498266Sopenharmony_ci"\n"
151613498266Sopenharmony_ci"              See also -o, --output.\n"
151713498266Sopenharmony_ci"\n"
151813498266Sopenharmony_ci"       --egd-file <file>\n"
151913498266Sopenharmony_ci"              (TLS) Deprecated option (added in 7.84.0). Prior to that it only\n"
152013498266Sopenharmony_ci"              had an effect on curl if built to use old versions of OpenSSL.\n"
152113498266Sopenharmony_ci"\n"
152213498266Sopenharmony_ci"              Specify the path name to the Entropy  Gathering  Daemon  socket.\n"
152313498266Sopenharmony_ci"              The  socket  is  used  to seed the random engine for SSL connec-\n"
152413498266Sopenharmony_ci"              tions.\n"
152513498266Sopenharmony_ci"\n"
152613498266Sopenharmony_ci, stdout);
152713498266Sopenharmony_ci fputs(
152813498266Sopenharmony_ci"              If --egd-file is provided several times, the last set  value  is\n"
152913498266Sopenharmony_ci"              used.\n"
153013498266Sopenharmony_ci"\n"
153113498266Sopenharmony_ci"              Example:\n"
153213498266Sopenharmony_ci"               curl --egd-file /random/here https://example.com\n"
153313498266Sopenharmony_ci"\n"
153413498266Sopenharmony_ci"              See also --random-file.\n"
153513498266Sopenharmony_ci"\n"
153613498266Sopenharmony_ci"       --engine <name>\n"
153713498266Sopenharmony_ci"              (TLS)  Select the OpenSSL crypto engine to use for cipher opera-\n"
153813498266Sopenharmony_ci"              tions. Use --engine list to print a list of build-time supported\n"
153913498266Sopenharmony_ci"              engines. Note that not all (and possibly none)  of  the  engines\n"
154013498266Sopenharmony_ci, stdout);
154113498266Sopenharmony_ci fputs(
154213498266Sopenharmony_ci"              may be available at runtime.\n"
154313498266Sopenharmony_ci"\n"
154413498266Sopenharmony_ci"              If  --engine  is  provided  several times, the last set value is\n"
154513498266Sopenharmony_ci"              used.\n"
154613498266Sopenharmony_ci"\n"
154713498266Sopenharmony_ci"              Example:\n"
154813498266Sopenharmony_ci"               curl --engine flavor https://example.com\n"
154913498266Sopenharmony_ci"\n"
155013498266Sopenharmony_ci"              See also --ciphers and --curves.\n"
155113498266Sopenharmony_ci"\n"
155213498266Sopenharmony_ci"       --etag-compare <file>\n"
155313498266Sopenharmony_ci"              (HTTP) This option makes a conditional HTTP request for the spe-\n"
155413498266Sopenharmony_ci"              cific ETag  read  from  the  given  file  by  sending  a  custom\n"
155513498266Sopenharmony_ci, stdout);
155613498266Sopenharmony_ci fputs(
155713498266Sopenharmony_ci"              If-None-Match header using the stored ETag.\n"
155813498266Sopenharmony_ci"\n"
155913498266Sopenharmony_ci"              For  correct results, make sure that the specified file contains\n"
156013498266Sopenharmony_ci"              only a single line with the  desired  ETag.  An  empty  file  is\n"
156113498266Sopenharmony_ci"              parsed as an empty ETag.\n"
156213498266Sopenharmony_ci"\n"
156313498266Sopenharmony_ci"              Use  the  option  --etag-save  to first save the ETag from a re-\n"
156413498266Sopenharmony_ci"              sponse, and then use this option to compare  against  the  saved\n"
156513498266Sopenharmony_ci"              ETag in a subsequent request.\n"
156613498266Sopenharmony_ci"\n"
156713498266Sopenharmony_ci, stdout);
156813498266Sopenharmony_ci fputs(
156913498266Sopenharmony_ci"              If  --etag-compare is provided several times, the last set value\n"
157013498266Sopenharmony_ci"              is used.\n"
157113498266Sopenharmony_ci"              Example:\n"
157213498266Sopenharmony_ci"               curl --etag-compare etag.txt https://example.com\n"
157313498266Sopenharmony_ci"\n"
157413498266Sopenharmony_ci"              See also --etag-save and -z, --time-cond. Added in 7.68.0.\n"
157513498266Sopenharmony_ci"\n"
157613498266Sopenharmony_ci"       --etag-save <file>\n"
157713498266Sopenharmony_ci"              (HTTP) This option saves an HTTP ETag to the specified file.  An\n"
157813498266Sopenharmony_ci"              ETag  is  a  caching  related  header, usually returned in a re-\n"
157913498266Sopenharmony_ci"              sponse.\n"
158013498266Sopenharmony_ci"\n"
158113498266Sopenharmony_ci, stdout);
158213498266Sopenharmony_ci fputs(
158313498266Sopenharmony_ci"              If no ETag is sent by the server, an empty file is created.\n"
158413498266Sopenharmony_ci"\n"
158513498266Sopenharmony_ci"              If --etag-save is provided several times, the last set value  is\n"
158613498266Sopenharmony_ci"              used.\n"
158713498266Sopenharmony_ci"\n"
158813498266Sopenharmony_ci"              Example:\n"
158913498266Sopenharmony_ci"               curl --etag-save storetag.txt https://example.com\n"
159013498266Sopenharmony_ci"\n"
159113498266Sopenharmony_ci"              See also --etag-compare. Added in 7.68.0.\n"
159213498266Sopenharmony_ci"\n"
159313498266Sopenharmony_ci"       --expect100-timeout <seconds>\n"
159413498266Sopenharmony_ci"              (HTTP) Maximum time in seconds that you allow curl to wait for a\n"
159513498266Sopenharmony_ci, stdout);
159613498266Sopenharmony_ci fputs(
159713498266Sopenharmony_ci"              100-continue  response  when curl emits an Expects: 100-continue\n"
159813498266Sopenharmony_ci"              header in its request. By default curl waits  one  second.  This\n"
159913498266Sopenharmony_ci"              option  accepts decimal values! When curl stops waiting, it con-\n"
160013498266Sopenharmony_ci"              tinues as if the response has been received.\n"
160113498266Sopenharmony_ci"\n"
160213498266Sopenharmony_ci"              The decimal value needs to provided using a dot (.)  as  decimal\n"
160313498266Sopenharmony_ci"              separator  - not the local version even if it might be using an-\n"
160413498266Sopenharmony_ci"              other separator.\n"
160513498266Sopenharmony_ci"\n"
160613498266Sopenharmony_ci, stdout);
160713498266Sopenharmony_ci fputs(
160813498266Sopenharmony_ci"              If --expect100-timeout is provided several times, the  last  set\n"
160913498266Sopenharmony_ci"              value is used.\n"
161013498266Sopenharmony_ci"\n"
161113498266Sopenharmony_ci"              Example:\n"
161213498266Sopenharmony_ci"               curl --expect100-timeout 2.5 -T file https://example.com\n"
161313498266Sopenharmony_ci"\n"
161413498266Sopenharmony_ci"              See also --connect-timeout.\n"
161513498266Sopenharmony_ci"\n"
161613498266Sopenharmony_ci"       --fail-early\n"
161713498266Sopenharmony_ci"              Fail and exit on the first detected transfer error.\n"
161813498266Sopenharmony_ci"\n"
161913498266Sopenharmony_ci"              When  curl is used to do multiple transfers on the command line,\n"
162013498266Sopenharmony_ci"              it attempts to operate on each given URL, one  by  one.  By  de-\n"
162113498266Sopenharmony_ci, stdout);
162213498266Sopenharmony_ci fputs(
162313498266Sopenharmony_ci"              fault,  it  ignores  errors if there are more URLs given and the\n"
162413498266Sopenharmony_ci"              last URL's success determines the error code  curl  returns.  So\n"
162513498266Sopenharmony_ci"              early failures are \"hidden\" by subsequent successful transfers.\n"
162613498266Sopenharmony_ci"\n"
162713498266Sopenharmony_ci"              Using  this  option,  curl instead returns an error on the first\n"
162813498266Sopenharmony_ci"              transfer that fails, independent of the amount of URLs that  are\n"
162913498266Sopenharmony_ci"              given on the command line. This way, no transfer failures go un-\n"
163013498266Sopenharmony_ci, stdout);
163113498266Sopenharmony_ci fputs(
163213498266Sopenharmony_ci"              detected by scripts and similar.\n"
163313498266Sopenharmony_ci"\n"
163413498266Sopenharmony_ci"              This option does not imply -f, --fail, which causes transfers to\n"
163513498266Sopenharmony_ci"              fail  due  to the server's HTTP status code. You can combine the\n"
163613498266Sopenharmony_ci"              two options, however note -f, --fail is not global and is there-\n"
163713498266Sopenharmony_ci"              fore contained by -:, --next.\n"
163813498266Sopenharmony_ci"\n"
163913498266Sopenharmony_ci"              This option is global and does not need to be specified for each\n"
164013498266Sopenharmony_ci"              use of --next.\n"
164113498266Sopenharmony_ci"\n"
164213498266Sopenharmony_ci, stdout);
164313498266Sopenharmony_ci fputs(
164413498266Sopenharmony_ci"              Providing --fail-early multiple times has no extra effect.  Dis-\n"
164513498266Sopenharmony_ci"              able it again with --no-fail-early.\n"
164613498266Sopenharmony_ci"\n"
164713498266Sopenharmony_ci"              Example:\n"
164813498266Sopenharmony_ci"               curl --fail-early https://example.com https://two.example\n"
164913498266Sopenharmony_ci"\n"
165013498266Sopenharmony_ci"              See also -f, --fail and --fail-with-body. Added in 7.52.0.\n"
165113498266Sopenharmony_ci"\n"
165213498266Sopenharmony_ci"       --fail-with-body\n"
165313498266Sopenharmony_ci"              (HTTP) Return an error on server errors where the HTTP  response\n"
165413498266Sopenharmony_ci"              code  is  400  or  greater). In normal cases when an HTTP server\n"
165513498266Sopenharmony_ci, stdout);
165613498266Sopenharmony_ci fputs(
165713498266Sopenharmony_ci"              fails to deliver a document, it returns an HTML document stating\n"
165813498266Sopenharmony_ci"              so (which often also describes why and more). This  flag  allows\n"
165913498266Sopenharmony_ci"              curl  to  output  and save that content but also to return error\n"
166013498266Sopenharmony_ci"              22.\n"
166113498266Sopenharmony_ci"\n"
166213498266Sopenharmony_ci"              This is an alternative option to -f,  --fail  which  makes  curl\n"
166313498266Sopenharmony_ci"              fail for the same circumstances but without saving the content.\n"
166413498266Sopenharmony_ci"\n"
166513498266Sopenharmony_ci"              Providing  --fail-with-body  multiple times has no extra effect.\n"
166613498266Sopenharmony_ci, stdout);
166713498266Sopenharmony_ci fputs(
166813498266Sopenharmony_ci"              Disable it again with --no-fail-with-body.\n"
166913498266Sopenharmony_ci"\n"
167013498266Sopenharmony_ci"              Example:\n"
167113498266Sopenharmony_ci"               curl --fail-with-body https://example.com\n"
167213498266Sopenharmony_ci"\n"
167313498266Sopenharmony_ci"              See also -f, --fail and --fail-early. This  option  is  mutually\n"
167413498266Sopenharmony_ci"              exclusive to -f, --fail. Added in 7.76.0.\n"
167513498266Sopenharmony_ci"\n"
167613498266Sopenharmony_ci"       -f, --fail\n"
167713498266Sopenharmony_ci"              (HTTP) Fail fast with no output at all on server errors. This is\n"
167813498266Sopenharmony_ci"              useful  to  enable  scripts and users to better deal with failed\n"
167913498266Sopenharmony_ci, stdout);
168013498266Sopenharmony_ci fputs(
168113498266Sopenharmony_ci"              attempts. In normal cases when an HTTP server fails to deliver a\n"
168213498266Sopenharmony_ci"              document, it returns an HTML document stating  so  (which  often\n"
168313498266Sopenharmony_ci"              also  describes why and more). This flag prevents curl from out-\n"
168413498266Sopenharmony_ci"              putting that and return error 22.\n"
168513498266Sopenharmony_ci"\n"
168613498266Sopenharmony_ci"              This method is not  fail-safe  and  there  are  occasions  where\n"
168713498266Sopenharmony_ci"              non-successful  response codes slip through, especially when au-\n"
168813498266Sopenharmony_ci, stdout);
168913498266Sopenharmony_ci fputs(
169013498266Sopenharmony_ci"              thentication is involved (response codes 401 and 407).\n"
169113498266Sopenharmony_ci"\n"
169213498266Sopenharmony_ci"              Providing --fail multiple times has no extra effect.  Disable it\n"
169313498266Sopenharmony_ci"              again with --no-fail.\n"
169413498266Sopenharmony_ci"\n"
169513498266Sopenharmony_ci"              Example:\n"
169613498266Sopenharmony_ci"               curl --fail https://example.com\n"
169713498266Sopenharmony_ci"\n"
169813498266Sopenharmony_ci"              See also --fail-with-body and --fail-early. This option is mutu-\n"
169913498266Sopenharmony_ci"              ally exclusive to --fail-with-body.\n"
170013498266Sopenharmony_ci"\n"
170113498266Sopenharmony_ci"       --false-start\n"
170213498266Sopenharmony_ci"              (TLS) Tells curl to use false start during  the  TLS  handshake.\n"
170313498266Sopenharmony_ci, stdout);
170413498266Sopenharmony_ci fputs(
170513498266Sopenharmony_ci"              False start is a mode where a TLS client starts sending applica-\n"
170613498266Sopenharmony_ci"              tion  data  before verifying the server's Finished message, thus\n"
170713498266Sopenharmony_ci"              saving a round trip when performing a full handshake.\n"
170813498266Sopenharmony_ci"\n"
170913498266Sopenharmony_ci"              This is currently only implemented in the Secure  Transport  (on\n"
171013498266Sopenharmony_ci"              iOS 7.0 or later, or OS X 10.9 or later) backend.\n"
171113498266Sopenharmony_ci"\n"
171213498266Sopenharmony_ci"              Providing  --false-start  multiple  times  has  no extra effect.\n"
171313498266Sopenharmony_ci, stdout);
171413498266Sopenharmony_ci fputs(
171513498266Sopenharmony_ci"              Disable it again with --no-false-start.\n"
171613498266Sopenharmony_ci"\n"
171713498266Sopenharmony_ci"              Example:\n"
171813498266Sopenharmony_ci"               curl --false-start https://example.com\n"
171913498266Sopenharmony_ci"\n"
172013498266Sopenharmony_ci"              See also --tcp-fastopen.\n"
172113498266Sopenharmony_ci"\n"
172213498266Sopenharmony_ci"       --form-escape\n"
172313498266Sopenharmony_ci"              (HTTP) Tells curl to pass on names of multipart form fields  and\n"
172413498266Sopenharmony_ci"              files using backslash-escaping instead of percent-encoding.\n"
172513498266Sopenharmony_ci"\n"
172613498266Sopenharmony_ci"              If  --form-escape  is provided several times, the last set value\n"
172713498266Sopenharmony_ci"              is used.\n"
172813498266Sopenharmony_ci"              Example:\n"
172913498266Sopenharmony_ci, stdout);
173013498266Sopenharmony_ci fputs(
173113498266Sopenharmony_ci"               curl --form-escape -F 'field\\name=curl' -F 'file=@load\"this' https://example.com\n"
173213498266Sopenharmony_ci"\n"
173313498266Sopenharmony_ci"              See also -F, --form. Added in 7.81.0.\n"
173413498266Sopenharmony_ci"\n"
173513498266Sopenharmony_ci"       --form-string <name=string>\n"
173613498266Sopenharmony_ci"              (HTTP SMTP IMAP) Similar to -F, --form  except  that  the  value\n"
173713498266Sopenharmony_ci"              string  for  the  named parameter is used literally. Leading '@'\n"
173813498266Sopenharmony_ci"              and '<' characters, and the ';type=' string in the value have no\n"
173913498266Sopenharmony_ci, stdout);
174013498266Sopenharmony_ci fputs(
174113498266Sopenharmony_ci"              special meaning. Use this in preference to -F, --form  if  there\n"
174213498266Sopenharmony_ci"              is  any possibility that the string value may accidentally trig-\n"
174313498266Sopenharmony_ci"              ger the '@' or '<' features of -F, --form.\n"
174413498266Sopenharmony_ci"\n"
174513498266Sopenharmony_ci"              --form-string can be used several times in a command line\n"
174613498266Sopenharmony_ci"\n"
174713498266Sopenharmony_ci"              Example:\n"
174813498266Sopenharmony_ci"               curl --form-string \"data\" https://example.com\n"
174913498266Sopenharmony_ci"\n"
175013498266Sopenharmony_ci"              See also -F, --form.\n"
175113498266Sopenharmony_ci"\n"
175213498266Sopenharmony_ci"       -F, --form <name=content>\n"
175313498266Sopenharmony_ci, stdout);
175413498266Sopenharmony_ci fputs(
175513498266Sopenharmony_ci"              (HTTP SMTP IMAP) For HTTP protocol family, this lets  curl  emu-\n"
175613498266Sopenharmony_ci"              late  a  filled-in  form  in which a user has pressed the submit\n"
175713498266Sopenharmony_ci"              button. This causes curl to POST  data  using  the  Content-Type\n"
175813498266Sopenharmony_ci"              multipart/form-data according to RFC 2388.\n"
175913498266Sopenharmony_ci"\n"
176013498266Sopenharmony_ci"              For SMTP and IMAP protocols, this is the means to compose a mul-\n"
176113498266Sopenharmony_ci"              tipart mail message to transmit.\n"
176213498266Sopenharmony_ci"\n"
176313498266Sopenharmony_ci, stdout);
176413498266Sopenharmony_ci fputs(
176513498266Sopenharmony_ci"              This  enables  uploading of binary files etc. To force the 'con-\n"
176613498266Sopenharmony_ci"              tent' part to be a file, prefix the file name with an @ sign. To\n"
176713498266Sopenharmony_ci"              just get the content part from a file, prefix the file name with\n"
176813498266Sopenharmony_ci"              the symbol <. The difference between @ and  <  is  then  that  @\n"
176913498266Sopenharmony_ci"              makes  a  file  get attached in the post as a file upload, while\n"
177013498266Sopenharmony_ci"              the < makes a text field and just get the contents for that text\n"
177113498266Sopenharmony_ci, stdout);
177213498266Sopenharmony_ci fputs(
177313498266Sopenharmony_ci"              field from a file.\n"
177413498266Sopenharmony_ci"\n"
177513498266Sopenharmony_ci"              Tell curl to read content from stdin instead of a file by  using\n"
177613498266Sopenharmony_ci"              - as filename. This goes for both @ and < constructs. When stdin\n"
177713498266Sopenharmony_ci"              is used, the contents is buffered in memory first by curl to de-\n"
177813498266Sopenharmony_ci"              termine  its size and allow a possible resend. Defining a part's\n"
177913498266Sopenharmony_ci"              data from a named non-regular file (such as a named pipe or sim-\n"
178013498266Sopenharmony_ci, stdout);
178113498266Sopenharmony_ci fputs(
178213498266Sopenharmony_ci"              ilar) is not subject to buffering and is instead read at  trans-\n"
178313498266Sopenharmony_ci"              mission time; since the full size is unknown before the transfer\n"
178413498266Sopenharmony_ci"              starts,  such  data  is  sent  as chunks by HTTP and rejected by\n"
178513498266Sopenharmony_ci"              IMAP.\n"
178613498266Sopenharmony_ci"\n"
178713498266Sopenharmony_ci"              Example: send an image to an HTTP server, where 'profile' is the\n"
178813498266Sopenharmony_ci"              name of the form-field to which the file portrait.jpg is the in-\n"
178913498266Sopenharmony_ci"              put:\n"
179013498266Sopenharmony_ci"\n"
179113498266Sopenharmony_ci, stdout);
179213498266Sopenharmony_ci fputs(
179313498266Sopenharmony_ci"              curl -F profile=@portrait.jpg https://example.com/upload.cgi\n"
179413498266Sopenharmony_ci"\n"
179513498266Sopenharmony_ci"              Example: send your name and shoe size in two text fields to  the\n"
179613498266Sopenharmony_ci"              server:\n"
179713498266Sopenharmony_ci"\n"
179813498266Sopenharmony_ci"              curl -F name=John -F shoesize=11 https://example.com/\n"
179913498266Sopenharmony_ci"\n"
180013498266Sopenharmony_ci"              Example:  send your essay in a text field to the server. Send it\n"
180113498266Sopenharmony_ci"              as a plain text field, but get the contents for it from a  local\n"
180213498266Sopenharmony_ci"              file:\n"
180313498266Sopenharmony_ci"\n"
180413498266Sopenharmony_ci"              curl -F \"story=<hugefile.txt\" https://example.com/\n"
180513498266Sopenharmony_ci"\n"
180613498266Sopenharmony_ci, stdout);
180713498266Sopenharmony_ci fputs(
180813498266Sopenharmony_ci"              You  can  also  tell  curl  what  Content-Type  to  use by using\n"
180913498266Sopenharmony_ci"              'type=', in a manner similar to:\n"
181013498266Sopenharmony_ci"\n"
181113498266Sopenharmony_ci"              curl -F \"web=@index.html;type=text/html\" example.com\n"
181213498266Sopenharmony_ci"\n"
181313498266Sopenharmony_ci"              or\n"
181413498266Sopenharmony_ci"\n"
181513498266Sopenharmony_ci"              curl -F \"name=daniel;type=text/foo\" example.com\n"
181613498266Sopenharmony_ci"\n"
181713498266Sopenharmony_ci"              You can also explicitly change the name field of a  file  upload\n"
181813498266Sopenharmony_ci"              part by setting filename=, like this:\n"
181913498266Sopenharmony_ci"\n"
182013498266Sopenharmony_ci"              curl -F \"file=@localfile;filename=nameinpost\" example.com\n"
182113498266Sopenharmony_ci"\n"
182213498266Sopenharmony_ci, stdout);
182313498266Sopenharmony_ci fputs(
182413498266Sopenharmony_ci"              If  filename/path contains ',' or ';', it must be quoted by dou-\n"
182513498266Sopenharmony_ci"              ble-quotes like:\n"
182613498266Sopenharmony_ci"\n"
182713498266Sopenharmony_ci"              curl -F \"file=@\\\"local,file\\\";filename=\\\"name;in;post\\\"\" example.com\n"
182813498266Sopenharmony_ci"\n"
182913498266Sopenharmony_ci"              or\n"
183013498266Sopenharmony_ci"\n"
183113498266Sopenharmony_ci"              curl -F 'file=@\"local,file\";filename=\"name;in;post\"' example.com\n"
183213498266Sopenharmony_ci"              Note that if a filename/path is  quoted  by  double-quotes,  any\n"
183313498266Sopenharmony_ci"              double-quote or backslash within the filename must be escaped by\n"
183413498266Sopenharmony_ci"              backslash.\n"
183513498266Sopenharmony_ci"\n"
183613498266Sopenharmony_ci, stdout);
183713498266Sopenharmony_ci fputs(
183813498266Sopenharmony_ci"              Quoting  must  also  be  applied to non-file data if it contains\n"
183913498266Sopenharmony_ci"              semicolons, leading/trailing spaces or leading double quotes:\n"
184013498266Sopenharmony_ci"\n"
184113498266Sopenharmony_ci"              curl -F 'colors=\"red; green; blue\";type=text/x-myapp' example.com\n"
184213498266Sopenharmony_ci"\n"
184313498266Sopenharmony_ci"              You can add custom headers to the  field  by  setting  headers=,\n"
184413498266Sopenharmony_ci"              like\n"
184513498266Sopenharmony_ci"\n"
184613498266Sopenharmony_ci"              curl -F \"submit=OK;headers=\\\"X-submit-type: OK\\\"\" example.com\n"
184713498266Sopenharmony_ci"\n"
184813498266Sopenharmony_ci"              or\n"
184913498266Sopenharmony_ci"\n"
185013498266Sopenharmony_ci"              curl -F \"submit=OK;headers=@headerfile\" example.com\n"
185113498266Sopenharmony_ci"\n"
185213498266Sopenharmony_ci, stdout);
185313498266Sopenharmony_ci fputs(
185413498266Sopenharmony_ci"              The  headers=  keyword may appear more that once and above notes\n"
185513498266Sopenharmony_ci"              about quoting apply. When headers are read from  a  file,  Empty\n"
185613498266Sopenharmony_ci"              lines and lines starting with '#' are comments and ignored; each\n"
185713498266Sopenharmony_ci"              header can be folded by splitting between two words and starting\n"
185813498266Sopenharmony_ci"              the  continuation  line  with a space; embedded carriage-returns\n"
185913498266Sopenharmony_ci"              and trailing spaces are stripped.   Here  is  an  example  of  a\n"
186013498266Sopenharmony_ci, stdout);
186113498266Sopenharmony_ci fputs(
186213498266Sopenharmony_ci"              header file contents:\n"
186313498266Sopenharmony_ci"\n"
186413498266Sopenharmony_ci"              # This file contain two headers.\n"
186513498266Sopenharmony_ci"              X-header-1: this is a header\n"
186613498266Sopenharmony_ci"\n"
186713498266Sopenharmony_ci"              # The following header is folded.\n"
186813498266Sopenharmony_ci"              X-header-2: this is\n"
186913498266Sopenharmony_ci"               another header\n"
187013498266Sopenharmony_ci"\n"
187113498266Sopenharmony_ci"              To  support  sending  multipart mail messages, the syntax is ex-\n"
187213498266Sopenharmony_ci"              tended as follows:\n"
187313498266Sopenharmony_ci"\n"
187413498266Sopenharmony_ci"              - name can be omitted: the equal sign is the first character  of\n"
187513498266Sopenharmony_ci"              the argument,\n"
187613498266Sopenharmony_ci"\n"
187713498266Sopenharmony_ci, stdout);
187813498266Sopenharmony_ci fputs(
187913498266Sopenharmony_ci"              -  if  data  starts with '(', this signals to start a new multi-\n"
188013498266Sopenharmony_ci"              part: it can be followed by a content type specification.\n"
188113498266Sopenharmony_ci"\n"
188213498266Sopenharmony_ci"              - a multipart can be terminated with a '=)' argument.\n"
188313498266Sopenharmony_ci"\n"
188413498266Sopenharmony_ci"              Example: the following command sends an SMTP mime email consist-\n"
188513498266Sopenharmony_ci"              ing in an inline part in two alternative formats: plain text and\n"
188613498266Sopenharmony_ci"              HTML. It attaches a text file:\n"
188713498266Sopenharmony_ci"\n"
188813498266Sopenharmony_ci"              curl -F '=(;type=multipart/alternative' \\\n"
188913498266Sopenharmony_ci, stdout);
189013498266Sopenharmony_ci fputs(
189113498266Sopenharmony_ci"                   -F '=plain text message' \\\n"
189213498266Sopenharmony_ci"                   -F '= <body>HTML message</body>;type=text/html' \\\n"
189313498266Sopenharmony_ci"                   -F '=)' -F '=@textfile.txt' ...  smtp://example.com\n"
189413498266Sopenharmony_ci"\n"
189513498266Sopenharmony_ci"              Data can be encoded for transfer using encoder=.  Available  en-\n"
189613498266Sopenharmony_ci"              codings are binary and 8bit that do nothing else than adding the\n"
189713498266Sopenharmony_ci"              corresponding  Content-Transfer-Encoding  header, 7bit that only\n"
189813498266Sopenharmony_ci, stdout);
189913498266Sopenharmony_ci fputs(
190013498266Sopenharmony_ci"              rejects 8-bit characters with a transfer error, quoted-printable\n"
190113498266Sopenharmony_ci"              and base64 that encodes  data  according  to  the  corresponding\n"
190213498266Sopenharmony_ci"              schemes, limiting lines length to 76 characters.\n"
190313498266Sopenharmony_ci"\n"
190413498266Sopenharmony_ci"              Example:  send  multipart mail with a quoted-printable text mes-\n"
190513498266Sopenharmony_ci"              sage and a base64 attached file:\n"
190613498266Sopenharmony_ci"\n"
190713498266Sopenharmony_ci"              curl -F '=text message;encoder=quoted-printable' \\\n"
190813498266Sopenharmony_ci"                   -F '=@localfile;encoder=base64' ... smtp://example.com\n"
190913498266Sopenharmony_ci"\n"
191013498266Sopenharmony_ci, stdout);
191113498266Sopenharmony_ci fputs(
191213498266Sopenharmony_ci"              See further examples and details in the MANUAL.\n"
191313498266Sopenharmony_ci"\n"
191413498266Sopenharmony_ci"              --form can be used several times in a command line\n"
191513498266Sopenharmony_ci"\n"
191613498266Sopenharmony_ci"              Example:\n"
191713498266Sopenharmony_ci"               curl --form \"name=curl\" --form \"file=@loadthis\" https://example.com\n"
191813498266Sopenharmony_ci"\n"
191913498266Sopenharmony_ci"              See also -d, --data, --form-string and --form-escape.  This  op-\n"
192013498266Sopenharmony_ci"              tion  is mutually exclusive to -d, --data and -I, --head and -T,\n"
192113498266Sopenharmony_ci"              --upload-file.\n"
192213498266Sopenharmony_ci"\n"
192313498266Sopenharmony_ci"       --ftp-account <data>\n"
192413498266Sopenharmony_ci, stdout);
192513498266Sopenharmony_ci fputs(
192613498266Sopenharmony_ci"              (FTP) When an FTP server asks for \"account data\" after user name\n"
192713498266Sopenharmony_ci"              and password has been provided, this data is sent off using  the\n"
192813498266Sopenharmony_ci"              ACCT command.\n"
192913498266Sopenharmony_ci"\n"
193013498266Sopenharmony_ci"              If  --ftp-account  is provided several times, the last set value\n"
193113498266Sopenharmony_ci"              is used.\n"
193213498266Sopenharmony_ci"              Example:\n"
193313498266Sopenharmony_ci"               curl --ftp-account \"mr.robot\" ftp://example.com/\n"
193413498266Sopenharmony_ci"\n"
193513498266Sopenharmony_ci"              See also -u, --user.\n"
193613498266Sopenharmony_ci"\n"
193713498266Sopenharmony_ci"       --ftp-alternative-to-user <command>\n"
193813498266Sopenharmony_ci, stdout);
193913498266Sopenharmony_ci fputs(
194013498266Sopenharmony_ci"              (FTP) If authenticating with the USER and PASS  commands  fails,\n"
194113498266Sopenharmony_ci"              send  this  command.   When  connecting  to  Tumbleweed's Secure\n"
194213498266Sopenharmony_ci"              Transport server over FTPS using  a  client  certificate,  using\n"
194313498266Sopenharmony_ci"              \"SITE  AUTH\"  tells the server to retrieve the username from the\n"
194413498266Sopenharmony_ci"              certificate.\n"
194513498266Sopenharmony_ci"\n"
194613498266Sopenharmony_ci"              If --ftp-alternative-to-user is provided several times, the last\n"
194713498266Sopenharmony_ci"              set value is used.\n"
194813498266Sopenharmony_ci"\n"
194913498266Sopenharmony_ci"              Example:\n"
195013498266Sopenharmony_ci, stdout);
195113498266Sopenharmony_ci fputs(
195213498266Sopenharmony_ci"               curl --ftp-alternative-to-user \"U53r\" ftp://example.com\n"
195313498266Sopenharmony_ci"\n"
195413498266Sopenharmony_ci"              See also --ftp-account and -u, --user.\n"
195513498266Sopenharmony_ci"\n"
195613498266Sopenharmony_ci"       --ftp-create-dirs\n"
195713498266Sopenharmony_ci"              (FTP SFTP) When an FTP or SFTP URL/operation uses  a  path  that\n"
195813498266Sopenharmony_ci"              does not currently exist on the server, the standard behavior of\n"
195913498266Sopenharmony_ci"              curl  is  to  fail.  Using this option, curl instead attempts to\n"
196013498266Sopenharmony_ci"              create missing directories.\n"
196113498266Sopenharmony_ci"\n"
196213498266Sopenharmony_ci, stdout);
196313498266Sopenharmony_ci fputs(
196413498266Sopenharmony_ci"              Providing --ftp-create-dirs multiple times has no extra  effect.\n"
196513498266Sopenharmony_ci"              Disable it again with --no-ftp-create-dirs.\n"
196613498266Sopenharmony_ci"\n"
196713498266Sopenharmony_ci"              Example:\n"
196813498266Sopenharmony_ci"               curl --ftp-create-dirs -T file ftp://example.com/remote/path/file\n"
196913498266Sopenharmony_ci"\n"
197013498266Sopenharmony_ci"              See also --create-dirs.\n"
197113498266Sopenharmony_ci"\n"
197213498266Sopenharmony_ci"       --ftp-method <method>\n"
197313498266Sopenharmony_ci"              (FTP)  Control what method curl should use to reach a file on an\n"
197413498266Sopenharmony_ci"              FTP(S) server. The method argument should be one of the  follow-\n"
197513498266Sopenharmony_ci, stdout);
197613498266Sopenharmony_ci fputs(
197713498266Sopenharmony_ci"              ing alternatives:\n"
197813498266Sopenharmony_ci"\n"
197913498266Sopenharmony_ci"              multicwd\n"
198013498266Sopenharmony_ci"                     curl  does  a  single CWD operation for each path part in\n"
198113498266Sopenharmony_ci"                     the given URL. For deep hierarchies this means many  com-\n"
198213498266Sopenharmony_ci"                     mands.  This is how RFC 1738 says it should be done. This\n"
198313498266Sopenharmony_ci"                     is the default but the slowest behavior.\n"
198413498266Sopenharmony_ci"\n"
198513498266Sopenharmony_ci"              nocwd  curl does no CWD at all. curl does SIZE, RETR,  STOR  etc\n"
198613498266Sopenharmony_ci, stdout);
198713498266Sopenharmony_ci fputs(
198813498266Sopenharmony_ci"                     and  give  a  full  path to the server for all these com-\n"
198913498266Sopenharmony_ci"                     mands. This is the fastest behavior.\n"
199013498266Sopenharmony_ci"\n"
199113498266Sopenharmony_ci"              singlecwd\n"
199213498266Sopenharmony_ci"                     curl does one CWD with the full target directory and then\n"
199313498266Sopenharmony_ci"                     operates on the file \"normally\"  (like  in  the  multicwd\n"
199413498266Sopenharmony_ci"                     case).  This  is  somewhat  more standards compliant than\n"
199513498266Sopenharmony_ci"                     'nocwd' but without the full penalty of 'multicwd'.\n"
199613498266Sopenharmony_ci"\n"
199713498266Sopenharmony_ci, stdout);
199813498266Sopenharmony_ci fputs(
199913498266Sopenharmony_ci"              If --ftp-method is provided several times, the last set value is\n"
200013498266Sopenharmony_ci"              used.\n"
200113498266Sopenharmony_ci"\n"
200213498266Sopenharmony_ci"              Examples:\n"
200313498266Sopenharmony_ci"               curl --ftp-method multicwd ftp://example.com/dir1/dir2/file\n"
200413498266Sopenharmony_ci"               curl --ftp-method nocwd ftp://example.com/dir1/dir2/file\n"
200513498266Sopenharmony_ci"               curl --ftp-method singlecwd ftp://example.com/dir1/dir2/file\n"
200613498266Sopenharmony_ci"\n"
200713498266Sopenharmony_ci"              See also -l, --list-only.\n"
200813498266Sopenharmony_ci"\n"
200913498266Sopenharmony_ci"       --ftp-pasv\n"
201013498266Sopenharmony_ci"              (FTP) Use passive mode for the data connection. Passive  is  the\n"
201113498266Sopenharmony_ci, stdout);
201213498266Sopenharmony_ci fputs(
201313498266Sopenharmony_ci"              internal  default behavior, but using this option can be used to\n"
201413498266Sopenharmony_ci"              override a previous -P, --ftp-port option.\n"
201513498266Sopenharmony_ci"\n"
201613498266Sopenharmony_ci"              Reversing an enforced passive really is not doable but you  must\n"
201713498266Sopenharmony_ci"              then instead enforce the correct -P, --ftp-port again.\n"
201813498266Sopenharmony_ci"\n"
201913498266Sopenharmony_ci"              Passive  mode  means  that curl tries the EPSV command first and\n"
202013498266Sopenharmony_ci"              then PASV, unless --disable-epsv is used.\n"
202113498266Sopenharmony_ci"\n"
202213498266Sopenharmony_ci, stdout);
202313498266Sopenharmony_ci fputs(
202413498266Sopenharmony_ci"              Providing --ftp-pasv multiple times has no extra  effect.   Dis-\n"
202513498266Sopenharmony_ci"              able it again with --no-ftp-pasv.\n"
202613498266Sopenharmony_ci"\n"
202713498266Sopenharmony_ci"              Example:\n"
202813498266Sopenharmony_ci"               curl --ftp-pasv ftp://example.com/\n"
202913498266Sopenharmony_ci"\n"
203013498266Sopenharmony_ci"              See also --disable-epsv.\n"
203113498266Sopenharmony_ci"       -P, --ftp-port <address>\n"
203213498266Sopenharmony_ci"              (FTP)  Reverses  the  default initiator/listener roles when con-\n"
203313498266Sopenharmony_ci"              necting with FTP. This option makes curl use active  mode.  curl\n"
203413498266Sopenharmony_ci, stdout);
203513498266Sopenharmony_ci fputs(
203613498266Sopenharmony_ci"              then  tells the server to connect back to the client's specified\n"
203713498266Sopenharmony_ci"              address and port, while passive mode asks the server to setup an\n"
203813498266Sopenharmony_ci"              IP address and port for it to connect to.  <address>  should  be\n"
203913498266Sopenharmony_ci"              one of:\n"
204013498266Sopenharmony_ci"\n"
204113498266Sopenharmony_ci"              interface\n"
204213498266Sopenharmony_ci"                     e.g.  eth0  to  specify  which interface's IP address you\n"
204313498266Sopenharmony_ci"                     want to use (Unix only)\n"
204413498266Sopenharmony_ci"\n"
204513498266Sopenharmony_ci"              IP address\n"
204613498266Sopenharmony_ci, stdout);
204713498266Sopenharmony_ci fputs(
204813498266Sopenharmony_ci"                     e.g. 192.168.10.1 to specify the exact IP address\n"
204913498266Sopenharmony_ci"\n"
205013498266Sopenharmony_ci"              host name\n"
205113498266Sopenharmony_ci"                     e.g. my.host.domain to specify the machine\n"
205213498266Sopenharmony_ci"\n"
205313498266Sopenharmony_ci"              -      make curl pick the same IP address that is  already  used\n"
205413498266Sopenharmony_ci"                     for  the  control  connection.  This  is  the recommended\n"
205513498266Sopenharmony_ci"                     choice.\n"
205613498266Sopenharmony_ci"\n"
205713498266Sopenharmony_ci"              Disable the use of PORT with --ftp-pasv. Disable the attempt  to\n"
205813498266Sopenharmony_ci, stdout);
205913498266Sopenharmony_ci fputs(
206013498266Sopenharmony_ci"              use  the  EPRT  command instead of PORT by using --disable-eprt.\n"
206113498266Sopenharmony_ci"              EPRT is really PORT++.\n"
206213498266Sopenharmony_ci"\n"
206313498266Sopenharmony_ci"              You can also append \":[start]-[end]\" to the  right  of  the  ad-\n"
206413498266Sopenharmony_ci"              dress,  to  tell curl what TCP port range to use. That means you\n"
206513498266Sopenharmony_ci"              specify a port range, from a lower to a higher number. A  single\n"
206613498266Sopenharmony_ci"              number  works as well, but do note that it increases the risk of\n"
206713498266Sopenharmony_ci"              failure since the port may not be available.\n"
206813498266Sopenharmony_ci"\n"
206913498266Sopenharmony_ci, stdout);
207013498266Sopenharmony_ci fputs(
207113498266Sopenharmony_ci"              If --ftp-port is provided several times, the last set  value  is\n"
207213498266Sopenharmony_ci"              used.\n"
207313498266Sopenharmony_ci"\n"
207413498266Sopenharmony_ci"              Examples:\n"
207513498266Sopenharmony_ci"               curl -P - ftp:/example.com\n"
207613498266Sopenharmony_ci"               curl -P eth0 ftp:/example.com\n"
207713498266Sopenharmony_ci"               curl -P 192.168.0.2 ftp:/example.com\n"
207813498266Sopenharmony_ci"\n"
207913498266Sopenharmony_ci"              See also --ftp-pasv and --disable-eprt.\n"
208013498266Sopenharmony_ci"\n"
208113498266Sopenharmony_ci"       --ftp-pret\n"
208213498266Sopenharmony_ci"              (FTP)  Tell  curl to send a PRET command before PASV (and EPSV).\n"
208313498266Sopenharmony_ci"              Certain FTP servers, mainly drftpd,  require  this  non-standard\n"
208413498266Sopenharmony_ci, stdout);
208513498266Sopenharmony_ci fputs(
208613498266Sopenharmony_ci"              command  for  directory  listings as well as up and downloads in\n"
208713498266Sopenharmony_ci"              PASV mode.\n"
208813498266Sopenharmony_ci"\n"
208913498266Sopenharmony_ci"              Providing --ftp-pret multiple times has no extra  effect.   Dis-\n"
209013498266Sopenharmony_ci"              able it again with --no-ftp-pret.\n"
209113498266Sopenharmony_ci"\n"
209213498266Sopenharmony_ci"              Example:\n"
209313498266Sopenharmony_ci"               curl --ftp-pret ftp://example.com/\n"
209413498266Sopenharmony_ci"\n"
209513498266Sopenharmony_ci"              See also -P, --ftp-port and --ftp-pasv.\n"
209613498266Sopenharmony_ci"\n"
209713498266Sopenharmony_ci"       --ftp-skip-pasv-ip\n"
209813498266Sopenharmony_ci"              (FTP) Tell curl to not use the IP address the server suggests in\n"
209913498266Sopenharmony_ci, stdout);
210013498266Sopenharmony_ci fputs(
210113498266Sopenharmony_ci"              its  response to curl's PASV command when curl connects the data\n"
210213498266Sopenharmony_ci"              connection. Instead curl reuses the same IP address  it  already\n"
210313498266Sopenharmony_ci"              uses for the control connection.\n"
210413498266Sopenharmony_ci"\n"
210513498266Sopenharmony_ci"              This option is enabled by default (added in 7.74.0).\n"
210613498266Sopenharmony_ci"\n"
210713498266Sopenharmony_ci"              This  option has no effect if PORT, EPRT or EPSV is used instead\n"
210813498266Sopenharmony_ci"              of PASV.\n"
210913498266Sopenharmony_ci"\n"
211013498266Sopenharmony_ci"              Providing --ftp-skip-pasv-ip multiple times has no extra effect.\n"
211113498266Sopenharmony_ci, stdout);
211213498266Sopenharmony_ci fputs(
211313498266Sopenharmony_ci"              Disable it again with --no-ftp-skip-pasv-ip.\n"
211413498266Sopenharmony_ci"\n"
211513498266Sopenharmony_ci"              Example:\n"
211613498266Sopenharmony_ci"               curl --ftp-skip-pasv-ip ftp://example.com/\n"
211713498266Sopenharmony_ci"\n"
211813498266Sopenharmony_ci"              See also --ftp-pasv.\n"
211913498266Sopenharmony_ci"\n"
212013498266Sopenharmony_ci"       --ftp-ssl-ccc-mode <active/passive>\n"
212113498266Sopenharmony_ci"              (FTP) Sets the CCC mode. The passive mode does not initiate  the\n"
212213498266Sopenharmony_ci"              shutdown,  but  instead  waits for the server to do it, and does\n"
212313498266Sopenharmony_ci"              not reply to the shutdown from the server. The active mode  ini-\n"
212413498266Sopenharmony_ci, stdout);
212513498266Sopenharmony_ci fputs(
212613498266Sopenharmony_ci"              tiates the shutdown and waits for a reply from the server.\n"
212713498266Sopenharmony_ci"\n"
212813498266Sopenharmony_ci"              Providing --ftp-ssl-ccc-mode multiple times has no extra effect.\n"
212913498266Sopenharmony_ci"              Disable it again with --no-ftp-ssl-ccc-mode.\n"
213013498266Sopenharmony_ci"\n"
213113498266Sopenharmony_ci"              Example:\n"
213213498266Sopenharmony_ci"               curl --ftp-ssl-ccc-mode active --ftp-ssl-ccc ftps://example.com/\n"
213313498266Sopenharmony_ci"\n"
213413498266Sopenharmony_ci"              See also --ftp-ssl-ccc.\n"
213513498266Sopenharmony_ci"\n"
213613498266Sopenharmony_ci"       --ftp-ssl-ccc\n"
213713498266Sopenharmony_ci"              (FTP)  Use  CCC  (Clear  Command Channel) Shuts down the SSL/TLS\n"
213813498266Sopenharmony_ci, stdout);
213913498266Sopenharmony_ci fputs(
214013498266Sopenharmony_ci"              layer after authenticating. The rest of the control channel com-\n"
214113498266Sopenharmony_ci"              munication is be unencrypted. This allows NAT routers to  follow\n"
214213498266Sopenharmony_ci"              the FTP transaction. The default mode is passive.\n"
214313498266Sopenharmony_ci"\n"
214413498266Sopenharmony_ci"              Providing  --ftp-ssl-ccc  multiple  times  has  no extra effect.\n"
214513498266Sopenharmony_ci"              Disable it again with --no-ftp-ssl-ccc.\n"
214613498266Sopenharmony_ci"\n"
214713498266Sopenharmony_ci"              Example:\n"
214813498266Sopenharmony_ci"               curl --ftp-ssl-ccc ftps://example.com/\n"
214913498266Sopenharmony_ci"              See also --ssl and --ftp-ssl-ccc-mode.\n"
215013498266Sopenharmony_ci"\n"
215113498266Sopenharmony_ci, stdout);
215213498266Sopenharmony_ci fputs(
215313498266Sopenharmony_ci"       --ftp-ssl-control\n"
215413498266Sopenharmony_ci"              (FTP) Require SSL/TLS for the FTP login, clear for transfer. Al-\n"
215513498266Sopenharmony_ci"              lows secure authentication, but non-encrypted data transfers for\n"
215613498266Sopenharmony_ci"              efficiency. Fails the transfer if the server  does  not  support\n"
215713498266Sopenharmony_ci"              SSL/TLS.\n"
215813498266Sopenharmony_ci"\n"
215913498266Sopenharmony_ci"              Providing  --ftp-ssl-control multiple times has no extra effect.\n"
216013498266Sopenharmony_ci"              Disable it again with --no-ftp-ssl-control.\n"
216113498266Sopenharmony_ci"\n"
216213498266Sopenharmony_ci"              Example:\n"
216313498266Sopenharmony_ci, stdout);
216413498266Sopenharmony_ci fputs(
216513498266Sopenharmony_ci"               curl --ftp-ssl-control ftp://example.com\n"
216613498266Sopenharmony_ci"\n"
216713498266Sopenharmony_ci"              See also --ssl.\n"
216813498266Sopenharmony_ci"\n"
216913498266Sopenharmony_ci"       -G, --get\n"
217013498266Sopenharmony_ci"              (HTTP) When used, this option makes all data specified with  -d,\n"
217113498266Sopenharmony_ci"              --data,  --data-binary or --data-urlencode to be used in an HTTP\n"
217213498266Sopenharmony_ci"              GET request instead of the POST request that otherwise would  be\n"
217313498266Sopenharmony_ci"              used. The data is appended to the URL with a '?' separator.\n"
217413498266Sopenharmony_ci"\n"
217513498266Sopenharmony_ci"              If used in combination with -I, --head, the POST data is instead\n"
217613498266Sopenharmony_ci, stdout);
217713498266Sopenharmony_ci fputs(
217813498266Sopenharmony_ci"              appended to the URL with a HEAD request.\n"
217913498266Sopenharmony_ci"\n"
218013498266Sopenharmony_ci"              Providing  --get multiple times has no extra effect.  Disable it\n"
218113498266Sopenharmony_ci"              again with --no-get.\n"
218213498266Sopenharmony_ci"\n"
218313498266Sopenharmony_ci"              Examples:\n"
218413498266Sopenharmony_ci"               curl --get https://example.com\n"
218513498266Sopenharmony_ci"               curl --get -d \"tool=curl\" -d \"age=old\" https://example.com\n"
218613498266Sopenharmony_ci"               curl --get -I -d \"tool=curl\" https://example.com\n"
218713498266Sopenharmony_ci"\n"
218813498266Sopenharmony_ci"              See also -d, --data and -X, --request.\n"
218913498266Sopenharmony_ci"\n"
219013498266Sopenharmony_ci"       -g, --globoff\n"
219113498266Sopenharmony_ci, stdout);
219213498266Sopenharmony_ci fputs(
219313498266Sopenharmony_ci"              This option switches off the \"URL globbing parser\". When you set\n"
219413498266Sopenharmony_ci"              this option, you can specify URLs that contain the letters  {}[]\n"
219513498266Sopenharmony_ci"              without  having curl itself interpret them. Note that these let-\n"
219613498266Sopenharmony_ci"              ters are not normal legal URL contents but they  should  be  en-\n"
219713498266Sopenharmony_ci"              coded according to the URI standard.\n"
219813498266Sopenharmony_ci"\n"
219913498266Sopenharmony_ci"              Providing --globoff multiple times has no extra effect.  Disable\n"
220013498266Sopenharmony_ci"              it again with --no-globoff.\n"
220113498266Sopenharmony_ci"\n"
220213498266Sopenharmony_ci, stdout);
220313498266Sopenharmony_ci fputs(
220413498266Sopenharmony_ci"              Example:\n"
220513498266Sopenharmony_ci"               curl -g \"https://example.com/{[]}}}}\"\n"
220613498266Sopenharmony_ci"\n"
220713498266Sopenharmony_ci"              See also -K, --config and -q, --disable.\n"
220813498266Sopenharmony_ci"\n"
220913498266Sopenharmony_ci"       --happy-eyeballs-timeout-ms <milliseconds>\n"
221013498266Sopenharmony_ci"              Happy  Eyeballs is an algorithm that attempts to connect to both\n"
221113498266Sopenharmony_ci"              IPv4 and IPv6 addresses for  dual-stack  hosts,  giving  IPv6  a\n"
221213498266Sopenharmony_ci"              head-start  of the specified number of milliseconds. If the IPv6\n"
221313498266Sopenharmony_ci"              address cannot be connected to within that time, then a  connec-\n"
221413498266Sopenharmony_ci, stdout);
221513498266Sopenharmony_ci fputs(
221613498266Sopenharmony_ci"              tion  attempt is made to the IPv4 address in parallel. The first\n"
221713498266Sopenharmony_ci"              connection to be established is the one that is used.\n"
221813498266Sopenharmony_ci"\n"
221913498266Sopenharmony_ci"              The range of suggested useful values is limited. Happy  Eyeballs\n"
222013498266Sopenharmony_ci"              RFC  6555  says  \"It  is RECOMMENDED that connection attempts be\n"
222113498266Sopenharmony_ci"              paced 150-250 ms apart to balance human factors against  network\n"
222213498266Sopenharmony_ci"              load.\"  libcurl currently defaults to 200 ms. Firefox and Chrome\n"
222313498266Sopenharmony_ci, stdout);
222413498266Sopenharmony_ci fputs(
222513498266Sopenharmony_ci"              currently default to 300 ms.\n"
222613498266Sopenharmony_ci"\n"
222713498266Sopenharmony_ci"              If --happy-eyeballs-timeout-ms is provided  several  times,  the\n"
222813498266Sopenharmony_ci"              last set value is used.\n"
222913498266Sopenharmony_ci"\n"
223013498266Sopenharmony_ci"              Example:\n"
223113498266Sopenharmony_ci"               curl --happy-eyeballs-timeout-ms 500 https://example.com\n"
223213498266Sopenharmony_ci"\n"
223313498266Sopenharmony_ci"              See also -m, --max-time and --connect-timeout. Added in 7.59.0.\n"
223413498266Sopenharmony_ci"\n"
223513498266Sopenharmony_ci"       --haproxy-clientip <IP address>\n"
223613498266Sopenharmony_ci"              (HTTP)  Sets  a client IP in HAProxy PROXY protocol v1 header at\n"
223713498266Sopenharmony_ci, stdout);
223813498266Sopenharmony_ci fputs(
223913498266Sopenharmony_ci"              the beginning of the connection.\n"
224013498266Sopenharmony_ci"\n"
224113498266Sopenharmony_ci"              For valid requests, IPv4 addresses must be indicated as a series\n"
224213498266Sopenharmony_ci"              of exactly 4 integers in the range [0..255] inclusive written in\n"
224313498266Sopenharmony_ci"              decimal representation separated by exactly one dot between each\n"
224413498266Sopenharmony_ci"              other. Heading zeroes are not permitted in front of  numbers  in\n"
224513498266Sopenharmony_ci"              order  to  avoid any possible confusion with octal numbers. IPv6\n"
224613498266Sopenharmony_ci, stdout);
224713498266Sopenharmony_ci fputs(
224813498266Sopenharmony_ci"              addresses must be indicated as series of  4  hexadecimal  digits\n"
224913498266Sopenharmony_ci"              (upper  or  lower  case) delimited by colons between each other,\n"
225013498266Sopenharmony_ci"              with the acceptance of one double colon sequence to replace  the\n"
225113498266Sopenharmony_ci"              largest acceptable range of consecutive zeroes. The total number\n"
225213498266Sopenharmony_ci"              of decoded bits must exactly be 128.\n"
225313498266Sopenharmony_ci"\n"
225413498266Sopenharmony_ci"              Otherwise,  any string can be accepted for the client IP and get\n"
225513498266Sopenharmony_ci"              sent.\n"
225613498266Sopenharmony_ci"\n"
225713498266Sopenharmony_ci, stdout);
225813498266Sopenharmony_ci fputs(
225913498266Sopenharmony_ci"              It replaces --haproxy-protocol if used, it is not  necessary  to\n"
226013498266Sopenharmony_ci"              specify both flags.\n"
226113498266Sopenharmony_ci"\n"
226213498266Sopenharmony_ci"              If  --haproxy-clientip  is  provided several times, the last set\n"
226313498266Sopenharmony_ci"              value is used.\n"
226413498266Sopenharmony_ci"\n"
226513498266Sopenharmony_ci"              Example:\n"
226613498266Sopenharmony_ci"               curl --haproxy-clientip $IP\n"
226713498266Sopenharmony_ci"\n"
226813498266Sopenharmony_ci"              See also -x, --proxy. Added in 8.2.0.\n"
226913498266Sopenharmony_ci"\n"
227013498266Sopenharmony_ci"       --haproxy-protocol\n"
227113498266Sopenharmony_ci"              (HTTP) Send a HAProxy PROXY protocol v1 header at the  beginning\n"
227213498266Sopenharmony_ci, stdout);
227313498266Sopenharmony_ci fputs(
227413498266Sopenharmony_ci"              of  the  connection. This is used by some load balancers and re-\n"
227513498266Sopenharmony_ci"              verse proxies to indicate the client's true IP address and port.\n"
227613498266Sopenharmony_ci"              This option is primarily useful when sending test requests to  a\n"
227713498266Sopenharmony_ci"              service that expects this header.\n"
227813498266Sopenharmony_ci"\n"
227913498266Sopenharmony_ci"              Providing --haproxy-protocol multiple times has no extra effect.\n"
228013498266Sopenharmony_ci"              Disable it again with --no-haproxy-protocol.\n"
228113498266Sopenharmony_ci"\n"
228213498266Sopenharmony_ci"              Example:\n"
228313498266Sopenharmony_ci, stdout);
228413498266Sopenharmony_ci fputs(
228513498266Sopenharmony_ci"               curl --haproxy-protocol https://example.com\n"
228613498266Sopenharmony_ci"\n"
228713498266Sopenharmony_ci"              See also -x, --proxy. Added in 7.60.0.\n"
228813498266Sopenharmony_ci"\n"
228913498266Sopenharmony_ci"       -I, --head\n"
229013498266Sopenharmony_ci"              (HTTP FTP FILE) Fetch the headers only! HTTP-servers feature the\n"
229113498266Sopenharmony_ci"              command  HEAD which this uses to get nothing but the header of a\n"
229213498266Sopenharmony_ci"              document. When used on an FTP or FILE file,  curl  displays  the\n"
229313498266Sopenharmony_ci"              file size and last modification time only.\n"
229413498266Sopenharmony_ci"\n"
229513498266Sopenharmony_ci, stdout);
229613498266Sopenharmony_ci fputs(
229713498266Sopenharmony_ci"              Providing --head multiple times has no extra effect.  Disable it\n"
229813498266Sopenharmony_ci"              again with --no-head.\n"
229913498266Sopenharmony_ci"\n"
230013498266Sopenharmony_ci"              Example:\n"
230113498266Sopenharmony_ci"               curl -I https://example.com\n"
230213498266Sopenharmony_ci"\n"
230313498266Sopenharmony_ci"              See also -G, --get, -v, --verbose and --trace-ascii.\n"
230413498266Sopenharmony_ci"\n"
230513498266Sopenharmony_ci"       -H, --header <header/@file>\n"
230613498266Sopenharmony_ci"              (HTTP  IMAP  SMTP)  Extra header to include in information sent.\n"
230713498266Sopenharmony_ci"              When used within an HTTP request, it is added to the regular re-\n"
230813498266Sopenharmony_ci"              quest headers.\n"
230913498266Sopenharmony_ci"\n"
231013498266Sopenharmony_ci, stdout);
231113498266Sopenharmony_ci fputs(
231213498266Sopenharmony_ci"              For an IMAP or SMTP MIME uploaded mail built with -F, --form op-\n"
231313498266Sopenharmony_ci"              tions, it is prepended to the resulting  MIME  document,  effec-\n"
231413498266Sopenharmony_ci"              tively including it at the mail global level. It does not affect\n"
231513498266Sopenharmony_ci"              raw uploaded mails (Added in 7.56.0).\n"
231613498266Sopenharmony_ci"\n"
231713498266Sopenharmony_ci"              You  may  specify  any number of extra headers. Note that if you\n"
231813498266Sopenharmony_ci"              should add a custom header that has the same name as one of  the\n"
231913498266Sopenharmony_ci, stdout);
232013498266Sopenharmony_ci fputs(
232113498266Sopenharmony_ci"              internal ones curl would use, your externally set header is used\n"
232213498266Sopenharmony_ci"              instead of the internal one. This allows you to make even trick-\n"
232313498266Sopenharmony_ci"              ier  stuff  than  curl would normally do. You should not replace\n"
232413498266Sopenharmony_ci"              internally set headers without knowing perfectly well  what  you\n"
232513498266Sopenharmony_ci"              are  doing.  Remove  an  internal header by giving a replacement\n"
232613498266Sopenharmony_ci"              without content on the right  side  of  the  colon,  as  in:  -H\n"
232713498266Sopenharmony_ci, stdout);
232813498266Sopenharmony_ci fputs(
232913498266Sopenharmony_ci"              \"Host:\".  If  you  send the custom header with no-value then its\n"
233013498266Sopenharmony_ci"              header must be terminated with a semicolon, such as \\-H  \"X-Cus-\n"
233113498266Sopenharmony_ci"              tom-Header;\" to send \"X-Custom-Header:\".\n"
233213498266Sopenharmony_ci"\n"
233313498266Sopenharmony_ci"              curl  makes  sure  that each header you add/replace is sent with\n"
233413498266Sopenharmony_ci"              the proper end-of-line marker, you should thus not add that as a\n"
233513498266Sopenharmony_ci"              part of the header content: do not add newlines or carriage  re-\n"
233613498266Sopenharmony_ci, stdout);
233713498266Sopenharmony_ci fputs(
233813498266Sopenharmony_ci"              turns, they only mess things up for you. curl passes on the ver-\n"
233913498266Sopenharmony_ci"              batim  string  you  give  it  without  any  filter or other safe\n"
234013498266Sopenharmony_ci"              guards. That includes white space and control characters.\n"
234113498266Sopenharmony_ci"\n"
234213498266Sopenharmony_ci"              This option can take an argument in @filename style, which  then\n"
234313498266Sopenharmony_ci"              adds  a  header  for each line in the input file. Using @- makes\n"
234413498266Sopenharmony_ci"              curl read the header file from stdin. Added in 7.55.0.\n"
234513498266Sopenharmony_ci"\n"
234613498266Sopenharmony_ci, stdout);
234713498266Sopenharmony_ci fputs(
234813498266Sopenharmony_ci"              Please note that most anti-spam utilities check the presence and\n"
234913498266Sopenharmony_ci"              value of several MIME mail headers: these  are  \"From:\",  \"To:\",\n"
235013498266Sopenharmony_ci"              \"Date:\"  and  \"Subject:\"  among  others and should be added with\n"
235113498266Sopenharmony_ci"              this option.\n"
235213498266Sopenharmony_ci"\n"
235313498266Sopenharmony_ci"              You need --proxy-header to send custom headers intended  for  an\n"
235413498266Sopenharmony_ci"              HTTP proxy. Added in 7.37.0.\n"
235513498266Sopenharmony_ci"\n"
235613498266Sopenharmony_ci"              Passing  on  a \"Transfer-Encoding: chunked\" header when doing an\n"
235713498266Sopenharmony_ci, stdout);
235813498266Sopenharmony_ci fputs(
235913498266Sopenharmony_ci"              HTTP request with a request body, makes curl send the data using\n"
236013498266Sopenharmony_ci"              chunked encoding.\n"
236113498266Sopenharmony_ci"\n"
236213498266Sopenharmony_ci"              WARNING: headers set with this option are set in  all  HTTP  re-\n"
236313498266Sopenharmony_ci"              quests  - even after redirects are followed, like when told with\n"
236413498266Sopenharmony_ci"              -L, --location. This can lead to the header being sent to  other\n"
236513498266Sopenharmony_ci"              hosts  than  the  original  host, so sensitive headers should be\n"
236613498266Sopenharmony_ci"              used with caution combined with following redirects.\n"
236713498266Sopenharmony_ci, stdout);
236813498266Sopenharmony_ci fputs(
236913498266Sopenharmony_ci"              --header can be used several times in a command line\n"
237013498266Sopenharmony_ci"\n"
237113498266Sopenharmony_ci"              Examples:\n"
237213498266Sopenharmony_ci"               curl -H \"X-First-Name: Joe\" https://example.com\n"
237313498266Sopenharmony_ci"               curl -H \"User-Agent: yes-please/2000\" https://example.com\n"
237413498266Sopenharmony_ci"               curl -H \"Host:\" https://example.com\n"
237513498266Sopenharmony_ci"               curl -H @headers.txt https://example.com\n"
237613498266Sopenharmony_ci"\n"
237713498266Sopenharmony_ci"              See also -A, --user-agent and -e, --referer.\n"
237813498266Sopenharmony_ci"\n"
237913498266Sopenharmony_ci"       -h, --help <category>\n"
238013498266Sopenharmony_ci, stdout);
238113498266Sopenharmony_ci fputs(
238213498266Sopenharmony_ci"              Usage help. This lists all curl command line options within  the\n"
238313498266Sopenharmony_ci"              given category.\n"
238413498266Sopenharmony_ci"\n"
238513498266Sopenharmony_ci"              If  no  argument is provided, curl displays only the most impor-\n"
238613498266Sopenharmony_ci"              tant command line arguments.\n"
238713498266Sopenharmony_ci"\n"
238813498266Sopenharmony_ci"              For category all, curl displays help for all options.\n"
238913498266Sopenharmony_ci"\n"
239013498266Sopenharmony_ci"              If category is specified, curl displays all available help cate-\n"
239113498266Sopenharmony_ci"              gories.\n"
239213498266Sopenharmony_ci"\n"
239313498266Sopenharmony_ci"              Example:\n"
239413498266Sopenharmony_ci"               curl --help all\n"
239513498266Sopenharmony_ci"\n"
239613498266Sopenharmony_ci"              See also -v, --verbose.\n"
239713498266Sopenharmony_ci"\n"
239813498266Sopenharmony_ci, stdout);
239913498266Sopenharmony_ci fputs(
240013498266Sopenharmony_ci"       --hostpubmd5 <md5>\n"
240113498266Sopenharmony_ci"              (SFTP SCP) Pass a string containing 32 hexadecimal  digits.  The\n"
240213498266Sopenharmony_ci"              string  should  be the 128 bit MD5 checksum of the remote host's\n"
240313498266Sopenharmony_ci"              public key, curl refuses the connection with the host unless the\n"
240413498266Sopenharmony_ci"              checksums match.\n"
240513498266Sopenharmony_ci"\n"
240613498266Sopenharmony_ci"              If --hostpubmd5 is provided several times, the last set value is\n"
240713498266Sopenharmony_ci"              used.\n"
240813498266Sopenharmony_ci"\n"
240913498266Sopenharmony_ci"              Example:\n"
241013498266Sopenharmony_ci, stdout);
241113498266Sopenharmony_ci fputs(
241213498266Sopenharmony_ci"               curl --hostpubmd5 e5c1c49020640a5ab0f2034854c321a8 sftp://example.com/\n"
241313498266Sopenharmony_ci"\n"
241413498266Sopenharmony_ci"              See also --hostpubsha256.\n"
241513498266Sopenharmony_ci"\n"
241613498266Sopenharmony_ci"       --hostpubsha256 <sha256>\n"
241713498266Sopenharmony_ci"              (SFTP SCP) Pass a string containing a Base64-encoded SHA256 hash\n"
241813498266Sopenharmony_ci"              of the remote host's public key.  Curl  refuses  the  connection\n"
241913498266Sopenharmony_ci"              with the host unless the hashes match.\n"
242013498266Sopenharmony_ci"\n"
242113498266Sopenharmony_ci"              This  feature requires libcurl to be built with libssh2 and does\n"
242213498266Sopenharmony_ci"              not work with other SSH backends.\n"
242313498266Sopenharmony_ci"\n"
242413498266Sopenharmony_ci, stdout);
242513498266Sopenharmony_ci fputs(
242613498266Sopenharmony_ci"              If --hostpubsha256 is provided several times, the last set value\n"
242713498266Sopenharmony_ci"              is used.\n"
242813498266Sopenharmony_ci"              Example:\n"
242913498266Sopenharmony_ci"               curl --hostpubsha256 NDVkMTQxMGQ1ODdmMjQ3MjczYjAyOTY5MmRkMjVmNDQ= sftp://example.com/\n"
243013498266Sopenharmony_ci"\n"
243113498266Sopenharmony_ci"              See also --hostpubmd5. Added in 7.80.0.\n"
243213498266Sopenharmony_ci"\n"
243313498266Sopenharmony_ci"       --hsts <file name>\n"
243413498266Sopenharmony_ci"              (HTTPS) This option enables HSTS for the transfer. If  the  file\n"
243513498266Sopenharmony_ci"              name  points to an existing HSTS cache file, that is used. After\n"
243613498266Sopenharmony_ci, stdout);
243713498266Sopenharmony_ci fputs(
243813498266Sopenharmony_ci"              a completed transfer, the cache is saved to the file name  again\n"
243913498266Sopenharmony_ci"              if it has been modified.\n"
244013498266Sopenharmony_ci"\n"
244113498266Sopenharmony_ci"              If  curl  is told to use HTTP:// for a transfer involving a host\n"
244213498266Sopenharmony_ci"              name that exists in the HSTS cache, it upgrades the transfer  to\n"
244313498266Sopenharmony_ci"              use HTTPS. Each HSTS cache entry has an individual life time af-\n"
244413498266Sopenharmony_ci"              ter which the upgrade is no longer performed.\n"
244513498266Sopenharmony_ci"\n"
244613498266Sopenharmony_ci"              Specify a \"\" file name (zero length) to avoid loading/saving and\n"
244713498266Sopenharmony_ci, stdout);
244813498266Sopenharmony_ci fputs(
244913498266Sopenharmony_ci"              make curl just handle HSTS in memory.\n"
245013498266Sopenharmony_ci"\n"
245113498266Sopenharmony_ci"              If  this  option is used several times, curl loads contents from\n"
245213498266Sopenharmony_ci"              all the files but the last one is used for saving.\n"
245313498266Sopenharmony_ci"              --hsts can be used several times in a command line\n"
245413498266Sopenharmony_ci"\n"
245513498266Sopenharmony_ci"              Example:\n"
245613498266Sopenharmony_ci"               curl --hsts cache.txt https://example.com\n"
245713498266Sopenharmony_ci"\n"
245813498266Sopenharmony_ci"              See also --proto. Added in 7.74.0.\n"
245913498266Sopenharmony_ci"\n"
246013498266Sopenharmony_ci"       --http0.9\n"
246113498266Sopenharmony_ci"              (HTTP) Tells curl to be fine with HTTP version 0.9 response.\n"
246213498266Sopenharmony_ci"\n"
246313498266Sopenharmony_ci, stdout);
246413498266Sopenharmony_ci fputs(
246513498266Sopenharmony_ci"              HTTP/0.9 is a response without headers  and  therefore  you  can\n"
246613498266Sopenharmony_ci"              also  connect  with this to non-HTTP servers and still get a re-\n"
246713498266Sopenharmony_ci"              sponse since curl simply transparently downgrades - if allowed.\n"
246813498266Sopenharmony_ci"\n"
246913498266Sopenharmony_ci"              HTTP/0.9 is disabled by default (added in 7.66.0)\n"
247013498266Sopenharmony_ci"\n"
247113498266Sopenharmony_ci"              Providing --http0.9 multiple times has no extra effect.  Disable\n"
247213498266Sopenharmony_ci"              it again with --no-http0.9.\n"
247313498266Sopenharmony_ci"\n"
247413498266Sopenharmony_ci"              Example:\n"
247513498266Sopenharmony_ci"               curl --http0.9 https://example.com\n"
247613498266Sopenharmony_ci"\n"
247713498266Sopenharmony_ci, stdout);
247813498266Sopenharmony_ci fputs(
247913498266Sopenharmony_ci"              See also --http1.1, --http2 and --http3. Added in 7.64.0.\n"
248013498266Sopenharmony_ci"\n"
248113498266Sopenharmony_ci"       -0, --http1.0\n"
248213498266Sopenharmony_ci"              (HTTP) Tells curl to use HTTP version 1.0 instead of  using  its\n"
248313498266Sopenharmony_ci"              internally preferred HTTP version.\n"
248413498266Sopenharmony_ci"\n"
248513498266Sopenharmony_ci"              Providing --http1.0 multiple times has no extra effect.\n"
248613498266Sopenharmony_ci"\n"
248713498266Sopenharmony_ci"              Example:\n"
248813498266Sopenharmony_ci"               curl --http1.0 https://example.com\n"
248913498266Sopenharmony_ci"\n"
249013498266Sopenharmony_ci"              See also --http0.9 and --http1.1. This option is mutually exclu-\n"
249113498266Sopenharmony_ci, stdout);
249213498266Sopenharmony_ci fputs(
249313498266Sopenharmony_ci"              sive  to  --http1.1  and --http2 and --http2-prior-knowledge and\n"
249413498266Sopenharmony_ci"              --http3.\n"
249513498266Sopenharmony_ci"\n"
249613498266Sopenharmony_ci"       --http1.1\n"
249713498266Sopenharmony_ci"              (HTTP) Tells curl to use HTTP version 1.1.\n"
249813498266Sopenharmony_ci"\n"
249913498266Sopenharmony_ci"              Providing --http1.1 multiple times has no extra effect.\n"
250013498266Sopenharmony_ci"\n"
250113498266Sopenharmony_ci"              Example:\n"
250213498266Sopenharmony_ci"               curl --http1.1 https://example.com\n"
250313498266Sopenharmony_ci"\n"
250413498266Sopenharmony_ci"              See also -0, --http1.0 and --http0.9. This  option  is  mutually\n"
250513498266Sopenharmony_ci"              exclusive  to -0, --http1.0 and --http2 and --http2-prior-knowl-\n"
250613498266Sopenharmony_ci, stdout);
250713498266Sopenharmony_ci fputs(
250813498266Sopenharmony_ci"              edge and --http3.\n"
250913498266Sopenharmony_ci"\n"
251013498266Sopenharmony_ci"       --http2-prior-knowledge\n"
251113498266Sopenharmony_ci"              (HTTP) Tells curl to  issue  its  non-TLS  HTTP  requests  using\n"
251213498266Sopenharmony_ci"              HTTP/2  without  HTTP/1.1  Upgrade.  It requires prior knowledge\n"
251313498266Sopenharmony_ci"              that the server supports HTTP/2 straight  away.  HTTPS  requests\n"
251413498266Sopenharmony_ci"              still  do  HTTP/2 the standard way with negotiated protocol ver-\n"
251513498266Sopenharmony_ci"              sion in the TLS handshake.\n"
251613498266Sopenharmony_ci"\n"
251713498266Sopenharmony_ci, stdout);
251813498266Sopenharmony_ci fputs(
251913498266Sopenharmony_ci"              Providing --http2-prior-knowledge multiple times  has  no  extra\n"
252013498266Sopenharmony_ci"              effect.  Disable it again with --no-http2-prior-knowledge.\n"
252113498266Sopenharmony_ci"\n"
252213498266Sopenharmony_ci"              Example:\n"
252313498266Sopenharmony_ci"               curl --http2-prior-knowledge https://example.com\n"
252413498266Sopenharmony_ci"\n"
252513498266Sopenharmony_ci"              See  also  --http2 and --http3. --http2-prior-knowledge requires\n"
252613498266Sopenharmony_ci"              that the underlying libcurl was built to  support  HTTP/2.  This\n"
252713498266Sopenharmony_ci"              option  is mutually exclusive to --http1.1 and -0, --http1.0 and\n"
252813498266Sopenharmony_ci, stdout);
252913498266Sopenharmony_ci fputs(
253013498266Sopenharmony_ci"              --http2 and --http3.\n"
253113498266Sopenharmony_ci"\n"
253213498266Sopenharmony_ci"       --http2\n"
253313498266Sopenharmony_ci"              (HTTP) Tells curl to use HTTP version 2.\n"
253413498266Sopenharmony_ci"\n"
253513498266Sopenharmony_ci"              For HTTPS, this means curl negotiates HTTP/2 in  the  TLS  hand-\n"
253613498266Sopenharmony_ci"              shake. curl does this by default.\n"
253713498266Sopenharmony_ci"\n"
253813498266Sopenharmony_ci"              For  HTTP,  this  means  curl attempts to upgrade the request to\n"
253913498266Sopenharmony_ci"              HTTP/2 using the Upgrade: request header.\n"
254013498266Sopenharmony_ci"\n"
254113498266Sopenharmony_ci"              When curl uses HTTP/2 over HTTPS, it does not itself  insist  on\n"
254213498266Sopenharmony_ci, stdout);
254313498266Sopenharmony_ci fputs(
254413498266Sopenharmony_ci"              TLS 1.2 or higher even though that is required by the specifica-\n"
254513498266Sopenharmony_ci"              tion. A user can add this version requirement with --tlsv1.2.\n"
254613498266Sopenharmony_ci"\n"
254713498266Sopenharmony_ci"              Providing --http2 multiple times has no extra effect.\n"
254813498266Sopenharmony_ci"\n"
254913498266Sopenharmony_ci"              Example:\n"
255013498266Sopenharmony_ci"               curl --http2 https://example.com\n"
255113498266Sopenharmony_ci"\n"
255213498266Sopenharmony_ci"              See also --http1.1, --http3 and --no-alpn. --http2 requires that\n"
255313498266Sopenharmony_ci"              the  underlying libcurl was built to support HTTP/2. This option\n"
255413498266Sopenharmony_ci, stdout);
255513498266Sopenharmony_ci fputs(
255613498266Sopenharmony_ci"              is  mutually  exclusive  to  --http1.1  and  -0,  --http1.0  and\n"
255713498266Sopenharmony_ci"              --http2-prior-knowledge and --http3.\n"
255813498266Sopenharmony_ci"\n"
255913498266Sopenharmony_ci"       --http3-only\n"
256013498266Sopenharmony_ci"              (HTTP) Instructs curl to use HTTP/3 to the host in the URL, with\n"
256113498266Sopenharmony_ci"              no  fallback  to  earlier HTTP versions. HTTP/3 can only be used\n"
256213498266Sopenharmony_ci"              for HTTPS and not for HTTP URLs. For HTTP, this option  triggers\n"
256313498266Sopenharmony_ci"              an error.\n"
256413498266Sopenharmony_ci"\n"
256513498266Sopenharmony_ci"              This  option  allows a user to avoid using the Alt-Svc method of\n"
256613498266Sopenharmony_ci, stdout);
256713498266Sopenharmony_ci fputs(
256813498266Sopenharmony_ci"              upgrading to HTTP/3 when you know that the target speaks  HTTP/3\n"
256913498266Sopenharmony_ci"              on the given host and port.\n"
257013498266Sopenharmony_ci"\n"
257113498266Sopenharmony_ci"              This  option  makes curl fail if a QUIC connection cannot be es-\n"
257213498266Sopenharmony_ci"              tablished, it does not attempt any other HTTP  versions  on  its\n"
257313498266Sopenharmony_ci"              own. Use --http3 for similar functionality with a fallback.\n"
257413498266Sopenharmony_ci"\n"
257513498266Sopenharmony_ci"              Providing --http3-only multiple times has no extra effect.\n"
257613498266Sopenharmony_ci"\n"
257713498266Sopenharmony_ci"              Example:\n"
257813498266Sopenharmony_ci, stdout);
257913498266Sopenharmony_ci fputs(
258013498266Sopenharmony_ci"               curl --http3-only https://example.com\n"
258113498266Sopenharmony_ci"\n"
258213498266Sopenharmony_ci"              See  also  --http1.1, --http2 and --http3. --http3-only requires\n"
258313498266Sopenharmony_ci"              that the underlying libcurl was built to  support  HTTP/3.  This\n"
258413498266Sopenharmony_ci"              option  is mutually exclusive to --http1.1 and -0, --http1.0 and\n"
258513498266Sopenharmony_ci"              --http2  and  --http2-prior-knowledge  and  --http3.  Added   in\n"
258613498266Sopenharmony_ci"              7.88.0.\n"
258713498266Sopenharmony_ci"       --http3\n"
258813498266Sopenharmony_ci"              (HTTP)  Tells  curl  to  try  HTTP/3 to the host in the URL, but\n"
258913498266Sopenharmony_ci, stdout);
259013498266Sopenharmony_ci fputs(
259113498266Sopenharmony_ci"              fallback to earlier HTTP versions if the HTTP/3  connection  es-\n"
259213498266Sopenharmony_ci"              tablishment  fails.  HTTP/3  is only available for HTTPS and not\n"
259313498266Sopenharmony_ci"              for HTTP URLs.\n"
259413498266Sopenharmony_ci"\n"
259513498266Sopenharmony_ci"              This option allows a user to avoid using the Alt-Svc  method  of\n"
259613498266Sopenharmony_ci"              upgrading  to HTTP/3 when you know that the target speaks HTTP/3\n"
259713498266Sopenharmony_ci"              on the given host and port.\n"
259813498266Sopenharmony_ci"\n"
259913498266Sopenharmony_ci"              When asked to use HTTP/3, curl issues a separate attempt to  use\n"
260013498266Sopenharmony_ci, stdout);
260113498266Sopenharmony_ci fputs(
260213498266Sopenharmony_ci"              older HTTP versions with a slight delay, so if the HTTP/3 trans-\n"
260313498266Sopenharmony_ci"              fer  fails or is slow, curl still tries to proceed with an older\n"
260413498266Sopenharmony_ci"              HTTP version.\n"
260513498266Sopenharmony_ci"\n"
260613498266Sopenharmony_ci"              Use --http3-only for similar functionality without a fallback.\n"
260713498266Sopenharmony_ci"\n"
260813498266Sopenharmony_ci"              Providing --http3 multiple times has no extra effect.\n"
260913498266Sopenharmony_ci"\n"
261013498266Sopenharmony_ci"              Example:\n"
261113498266Sopenharmony_ci"               curl --http3 https://example.com\n"
261213498266Sopenharmony_ci"\n"
261313498266Sopenharmony_ci"              See also --http1.1 and --http2. --http3 requires that the under-\n"
261413498266Sopenharmony_ci, stdout);
261513498266Sopenharmony_ci fputs(
261613498266Sopenharmony_ci"              lying libcurl was built to support HTTP/3. This option is  mutu-\n"
261713498266Sopenharmony_ci"              ally  exclusive  to  --http1.1 and -0, --http1.0 and --http2 and\n"
261813498266Sopenharmony_ci"              --http2-prior-knowledge and --http3-only. Added in 7.66.0.\n"
261913498266Sopenharmony_ci"\n"
262013498266Sopenharmony_ci"       --ignore-content-length\n"
262113498266Sopenharmony_ci"              (FTP HTTP) For HTTP, Ignore the Content-Length header.  This  is\n"
262213498266Sopenharmony_ci"              particularly  useful  for  servers running Apache 1.x, which re-\n"
262313498266Sopenharmony_ci"              ports incorrect Content-Length for files  larger  than  2  giga-\n"
262413498266Sopenharmony_ci, stdout);
262513498266Sopenharmony_ci fputs(
262613498266Sopenharmony_ci"              bytes.\n"
262713498266Sopenharmony_ci"\n"
262813498266Sopenharmony_ci"              For FTP, this makes curl skip the SIZE command to figure out the\n"
262913498266Sopenharmony_ci"              size before downloading a file.\n"
263013498266Sopenharmony_ci"\n"
263113498266Sopenharmony_ci"              This  option  does not work for HTTP if libcurl was built to use\n"
263213498266Sopenharmony_ci"              hyper.\n"
263313498266Sopenharmony_ci"\n"
263413498266Sopenharmony_ci"              Providing --ignore-content-length multiple times  has  no  extra\n"
263513498266Sopenharmony_ci"              effect.  Disable it again with --no-ignore-content-length.\n"
263613498266Sopenharmony_ci"\n"
263713498266Sopenharmony_ci"              Example:\n"
263813498266Sopenharmony_ci"               curl --ignore-content-length https://example.com\n"
263913498266Sopenharmony_ci"\n"
264013498266Sopenharmony_ci, stdout);
264113498266Sopenharmony_ci fputs(
264213498266Sopenharmony_ci"              See also --ftp-skip-pasv-ip.\n"
264313498266Sopenharmony_ci"\n"
264413498266Sopenharmony_ci"       -i, --include\n"
264513498266Sopenharmony_ci"              (HTTP FTP) Include response headers in the output. HTTP response\n"
264613498266Sopenharmony_ci"              headers  can  include  things like server name, cookies, date of\n"
264713498266Sopenharmony_ci"              the document, HTTP version and more... With non-HTTP  protocols,\n"
264813498266Sopenharmony_ci"              the \"headers\" are other server communication.\n"
264913498266Sopenharmony_ci"\n"
265013498266Sopenharmony_ci"              To view the request headers, consider the -v, --verbose option.\n"
265113498266Sopenharmony_ci"\n"
265213498266Sopenharmony_ci, stdout);
265313498266Sopenharmony_ci fputs(
265413498266Sopenharmony_ci"              Prior to 7.75.0 curl did not print the headers if -f, --fail was\n"
265513498266Sopenharmony_ci"              used  in  combination  with  this option and there was error re-\n"
265613498266Sopenharmony_ci"              ported by server.\n"
265713498266Sopenharmony_ci"\n"
265813498266Sopenharmony_ci"              Providing --include multiple times has no extra effect.  Disable\n"
265913498266Sopenharmony_ci"              it again with --no-include.\n"
266013498266Sopenharmony_ci"\n"
266113498266Sopenharmony_ci"              Example:\n"
266213498266Sopenharmony_ci"               curl -i https://example.com\n"
266313498266Sopenharmony_ci"\n"
266413498266Sopenharmony_ci"              See also -v, --verbose.\n"
266513498266Sopenharmony_ci"\n"
266613498266Sopenharmony_ci"       -k, --insecure\n"
266713498266Sopenharmony_ci, stdout);
266813498266Sopenharmony_ci fputs(
266913498266Sopenharmony_ci"              (TLS SFTP SCP) By default, every secure connection curl makes is\n"
267013498266Sopenharmony_ci"              verified to be secure before the transfer takes place. This  op-\n"
267113498266Sopenharmony_ci"              tion  makes  curl skip the verification step and proceed without\n"
267213498266Sopenharmony_ci"              checking.\n"
267313498266Sopenharmony_ci"\n"
267413498266Sopenharmony_ci"              When this option is not used for protocols using TLS, curl veri-\n"
267513498266Sopenharmony_ci"              fies the server's TLS certificate before it continues: that  the\n"
267613498266Sopenharmony_ci"              certificate  contains the right name which matches the host name\n"
267713498266Sopenharmony_ci, stdout);
267813498266Sopenharmony_ci fputs(
267913498266Sopenharmony_ci"              used in the URL and that the certificate has been signed by a CA\n"
268013498266Sopenharmony_ci"              certificate present in the cert store.  See this online resource\n"
268113498266Sopenharmony_ci"              for further details: https://curl.se/docs/sslcerts.html\n"
268213498266Sopenharmony_ci"\n"
268313498266Sopenharmony_ci"              For SFTP and SCP, this option makes curl  skip  the  known_hosts\n"
268413498266Sopenharmony_ci"              verification.   known_hosts  is  a  file  normally stored in the\n"
268513498266Sopenharmony_ci"              user's home directory in the \".ssh\" subdirectory, which contains\n"
268613498266Sopenharmony_ci, stdout);
268713498266Sopenharmony_ci fputs(
268813498266Sopenharmony_ci"              host names and their public keys.\n"
268913498266Sopenharmony_ci"\n"
269013498266Sopenharmony_ci"              WARNING: using this option makes the transfer insecure.\n"
269113498266Sopenharmony_ci"\n"
269213498266Sopenharmony_ci"              When curl uses secure protocols it trusts responses  and  allows\n"
269313498266Sopenharmony_ci"              for  example  HSTS and Alt-Svc information to be stored and used\n"
269413498266Sopenharmony_ci"              subsequently. Using -k, --insecure can make curl trust  and  use\n"
269513498266Sopenharmony_ci"              such information from malicious servers.\n"
269613498266Sopenharmony_ci"\n"
269713498266Sopenharmony_ci"              Providing  --insecure  multiple times has no extra effect.  Dis-\n"
269813498266Sopenharmony_ci, stdout);
269913498266Sopenharmony_ci fputs(
270013498266Sopenharmony_ci"              able it again with --no-insecure.\n"
270113498266Sopenharmony_ci"\n"
270213498266Sopenharmony_ci"              Example:\n"
270313498266Sopenharmony_ci"               curl --insecure https://example.com\n"
270413498266Sopenharmony_ci"\n"
270513498266Sopenharmony_ci"              See also --proxy-insecure, --cacert and --capath.\n"
270613498266Sopenharmony_ci"\n"
270713498266Sopenharmony_ci"       --interface <name>\n"
270813498266Sopenharmony_ci"              Perform an operation using a specified interface. You can  enter\n"
270913498266Sopenharmony_ci"              interface  name,  IP address or host name. An example could look\n"
271013498266Sopenharmony_ci"              like:\n"
271113498266Sopenharmony_ci"\n"
271213498266Sopenharmony_ci"              curl --interface eth0:1 https://www.example.com/\n"
271313498266Sopenharmony_ci"\n"
271413498266Sopenharmony_ci, stdout);
271513498266Sopenharmony_ci fputs(
271613498266Sopenharmony_ci"              On Linux it can be used to specify a VRF, but the  binary  needs\n"
271713498266Sopenharmony_ci"              to  either  have CAP_NET_RAW or to be run as root. More informa-\n"
271813498266Sopenharmony_ci"              tion  about  Linux  VRF:   https://www.kernel.org/doc/Documenta-\n"
271913498266Sopenharmony_ci"              tion/networking/vrf.txt\n"
272013498266Sopenharmony_ci"\n"
272113498266Sopenharmony_ci"              If  --interface is provided several times, the last set value is\n"
272213498266Sopenharmony_ci"              used.\n"
272313498266Sopenharmony_ci"\n"
272413498266Sopenharmony_ci"              Example:\n"
272513498266Sopenharmony_ci"               curl --interface eth0 https://example.com\n"
272613498266Sopenharmony_ci"\n"
272713498266Sopenharmony_ci"              See also --dns-interface.\n"
272813498266Sopenharmony_ci"\n"
272913498266Sopenharmony_ci, stdout);
273013498266Sopenharmony_ci fputs(
273113498266Sopenharmony_ci"       --ipfs-gateway <URL>\n"
273213498266Sopenharmony_ci"              (IPFS) Specify which gateway to use for IPFS and IPNS URLs.  Not\n"
273313498266Sopenharmony_ci"              specifying this will instead make curl check if the IPFS_GATEWAY\n"
273413498266Sopenharmony_ci"              environment  variable  is  set,  or  if a \"~/.ipfs/gateway\" file\n"
273513498266Sopenharmony_ci"              holding the gateway URL exists.\n"
273613498266Sopenharmony_ci"\n"
273713498266Sopenharmony_ci"              If you run a local IPFS node, this gateway is by default  avail-\n"
273813498266Sopenharmony_ci"              able  under  \"http://localhost:8080\".  A  full example URL would\n"
273913498266Sopenharmony_ci"              look like:\n"
274013498266Sopenharmony_ci"\n"
274113498266Sopenharmony_ci, stdout);
274213498266Sopenharmony_ci fputs(
274313498266Sopenharmony_ci"              curl --ipfs-gateway http://localhost:8080 ipfs://bafybeigagd5nmnn2iys2f3doro7ydrevyr2mzarwidgadawmamiteydbzi\n"
274413498266Sopenharmony_ci"\n"
274513498266Sopenharmony_ci"              There  are  many  public  IPFS  gateways.   See   for   example:\n"
274613498266Sopenharmony_ci"              https://ipfs.github.io/public-gateway-checker/\n"
274713498266Sopenharmony_ci"\n"
274813498266Sopenharmony_ci"              WARNING:  If  you  opt  to go for a remote gateway you should be\n"
274913498266Sopenharmony_ci"              aware that you completely trust the gateway. This is fine in lo-\n"
275013498266Sopenharmony_ci, stdout);
275113498266Sopenharmony_ci fputs(
275213498266Sopenharmony_ci"              cal gateways as you host it yourself. With remote gateways there\n"
275313498266Sopenharmony_ci"              could potentially be a malicious actor returning you  data  that\n"
275413498266Sopenharmony_ci"              does  not  match the request you made, inspect or even interfere\n"
275513498266Sopenharmony_ci"              with the request. You will not notice this when  using  curl.  A\n"
275613498266Sopenharmony_ci"              mitigation  could be to go for a \"trustless\" gateway. This means\n"
275713498266Sopenharmony_ci"              you locally verify that the  data.  Consult  the  docs  page  on\n"
275813498266Sopenharmony_ci, stdout);
275913498266Sopenharmony_ci fputs(
276013498266Sopenharmony_ci"              trusted      vs     trustless:     https://docs.ipfs.tech/refer-\n"
276113498266Sopenharmony_ci"              ence/http/gateway/#trusted-vs-trustless\n"
276213498266Sopenharmony_ci"\n"
276313498266Sopenharmony_ci"              If --ipfs-gateway is provided several times, the last set  value\n"
276413498266Sopenharmony_ci"              is used.\n"
276513498266Sopenharmony_ci"              Example:\n"
276613498266Sopenharmony_ci"               curl --ipfs-gateway https://example.com ipfs://\n"
276713498266Sopenharmony_ci"\n"
276813498266Sopenharmony_ci"              See also -h, --help and -M, --manual. Added in 8.4.0.\n"
276913498266Sopenharmony_ci"\n"
277013498266Sopenharmony_ci"       -4, --ipv4\n"
277113498266Sopenharmony_ci"              This option tells curl to use IPv4 addresses only when resolving\n"
277213498266Sopenharmony_ci, stdout);
277313498266Sopenharmony_ci fputs(
277413498266Sopenharmony_ci"              host names, and not for example try IPv6.\n"
277513498266Sopenharmony_ci"\n"
277613498266Sopenharmony_ci"              Providing --ipv4 multiple times has no extra effect.\n"
277713498266Sopenharmony_ci"\n"
277813498266Sopenharmony_ci"              Example:\n"
277913498266Sopenharmony_ci"               curl --ipv4 https://example.com\n"
278013498266Sopenharmony_ci"\n"
278113498266Sopenharmony_ci"              See  also  --http1.1 and --http2. This option is mutually exclu-\n"
278213498266Sopenharmony_ci"              sive to -6, --ipv6.\n"
278313498266Sopenharmony_ci"\n"
278413498266Sopenharmony_ci"       -6, --ipv6\n"
278513498266Sopenharmony_ci"              This option tells curl to use IPv6 addresses only when resolving\n"
278613498266Sopenharmony_ci"              host names, and not for example try IPv4.\n"
278713498266Sopenharmony_ci"\n"
278813498266Sopenharmony_ci, stdout);
278913498266Sopenharmony_ci fputs(
279013498266Sopenharmony_ci"              Providing --ipv6 multiple times has no extra effect.\n"
279113498266Sopenharmony_ci"\n"
279213498266Sopenharmony_ci"              Example:\n"
279313498266Sopenharmony_ci"               curl --ipv6 https://example.com\n"
279413498266Sopenharmony_ci"\n"
279513498266Sopenharmony_ci"              See also --http1.1 and --http2. This option is  mutually  exclu-\n"
279613498266Sopenharmony_ci"              sive to -4, --ipv4.\n"
279713498266Sopenharmony_ci"\n"
279813498266Sopenharmony_ci"       --json <data>\n"
279913498266Sopenharmony_ci"              (HTTP)  Sends  the  specified JSON data in a POST request to the\n"
280013498266Sopenharmony_ci"              HTTP server. --json works as a shortcut  for  passing  on  these\n"
280113498266Sopenharmony_ci"              three options:\n"
280213498266Sopenharmony_ci"\n"
280313498266Sopenharmony_ci"              --data [arg]\n"
280413498266Sopenharmony_ci, stdout);
280513498266Sopenharmony_ci fputs(
280613498266Sopenharmony_ci"              --header \"Content-Type: application/json\"\n"
280713498266Sopenharmony_ci"              --header \"Accept: application/json\"\n"
280813498266Sopenharmony_ci"\n"
280913498266Sopenharmony_ci"              There  is no verification that the passed in data is actual JSON\n"
281013498266Sopenharmony_ci"              or that the syntax is correct.\n"
281113498266Sopenharmony_ci"\n"
281213498266Sopenharmony_ci"              If you start the data with the letter @, the rest  should  be  a\n"
281313498266Sopenharmony_ci"              file  name  to  read  the data from, or a single dash (-) if you\n"
281413498266Sopenharmony_ci"              want curl to read the data from stdin. Posting data from a  file\n"
281513498266Sopenharmony_ci, stdout);
281613498266Sopenharmony_ci fputs(
281713498266Sopenharmony_ci"              named 'foobar' would thus be done with --json @foobar and to in-\n"
281813498266Sopenharmony_ci"              stead read the data from stdin, use --json @-.\n"
281913498266Sopenharmony_ci"\n"
282013498266Sopenharmony_ci"              If  this option is used more than once on the same command line,\n"
282113498266Sopenharmony_ci"              the additional data pieces are concatenated to the previous  be-\n"
282213498266Sopenharmony_ci"              fore sending.\n"
282313498266Sopenharmony_ci"\n"
282413498266Sopenharmony_ci"              The headers this option sets can be overridden with -H, --header\n"
282513498266Sopenharmony_ci"              as usual.\n"
282613498266Sopenharmony_ci"\n"
282713498266Sopenharmony_ci"              --json can be used several times in a command line\n"
282813498266Sopenharmony_ci"\n"
282913498266Sopenharmony_ci, stdout);
283013498266Sopenharmony_ci fputs(
283113498266Sopenharmony_ci"              Examples:\n"
283213498266Sopenharmony_ci"               curl --json '{ \"drink\": \"coffe\" }' https://example.com\n"
283313498266Sopenharmony_ci"               curl --json '{ \"drink\":' --json ' \"coffe\" }' https://example.com\n"
283413498266Sopenharmony_ci"               curl --json @prepared https://example.com\n"
283513498266Sopenharmony_ci"               curl --json @- https://example.com < json.txt\n"
283613498266Sopenharmony_ci"\n"
283713498266Sopenharmony_ci"              See  also  --data-binary and --data-raw. This option is mutually\n"
283813498266Sopenharmony_ci"              exclusive to -F, --form and -I, --head  and  -T,  --upload-file.\n"
283913498266Sopenharmony_ci"              Added in 7.82.0.\n"
284013498266Sopenharmony_ci"\n"
284113498266Sopenharmony_ci, stdout);
284213498266Sopenharmony_ci fputs(
284313498266Sopenharmony_ci"       -j, --junk-session-cookies\n"
284413498266Sopenharmony_ci"              (HTTP) When curl is told to read cookies from a given file, this\n"
284513498266Sopenharmony_ci"              option makes it discard all \"session cookies\". This has the same\n"
284613498266Sopenharmony_ci"              effect  as if a new session is started. Typical browsers discard\n"
284713498266Sopenharmony_ci"              session cookies when they are closed down.\n"
284813498266Sopenharmony_ci"\n"
284913498266Sopenharmony_ci"              Providing --junk-session-cookies multiple times has no extra ef-\n"
285013498266Sopenharmony_ci"              fect.  Disable it again with --no-junk-session-cookies.\n"
285113498266Sopenharmony_ci"\n"
285213498266Sopenharmony_ci, stdout);
285313498266Sopenharmony_ci fputs(
285413498266Sopenharmony_ci"              Example:\n"
285513498266Sopenharmony_ci"               curl --junk-session-cookies -b cookies.txt https://example.com\n"
285613498266Sopenharmony_ci"\n"
285713498266Sopenharmony_ci"              See also -b, --cookie and -c, --cookie-jar.\n"
285813498266Sopenharmony_ci"\n"
285913498266Sopenharmony_ci"       --keepalive-time <seconds>\n"
286013498266Sopenharmony_ci"              This option sets the time a connection needs to remain idle  be-\n"
286113498266Sopenharmony_ci"              fore  sending  keepalive  probes and the time between individual\n"
286213498266Sopenharmony_ci"              keepalive probes. It is currently effective on operating systems\n"
286313498266Sopenharmony_ci, stdout);
286413498266Sopenharmony_ci fputs(
286513498266Sopenharmony_ci"              offering the \"TCP_KEEPIDLE\" and \"TCP_KEEPINTVL\"  socket  options\n"
286613498266Sopenharmony_ci"              (meaning  Linux, recent AIX, HP-UX and more).  Keepalive is used\n"
286713498266Sopenharmony_ci"              by the TCP stack to detect broken networks on idle  connections.\n"
286813498266Sopenharmony_ci"              The  number of missed keepalive probes before declaring the con-\n"
286913498266Sopenharmony_ci"              nection down is OS dependent and is commonly 9 or 10.  This  op-\n"
287013498266Sopenharmony_ci"              tion has no effect if --no-keepalive is used.\n"
287113498266Sopenharmony_ci"\n"
287213498266Sopenharmony_ci, stdout);
287313498266Sopenharmony_ci fputs(
287413498266Sopenharmony_ci"              If unspecified, the option defaults to 60 seconds.\n"
287513498266Sopenharmony_ci"\n"
287613498266Sopenharmony_ci"              If  --keepalive-time  is  provided  several  times, the last set\n"
287713498266Sopenharmony_ci"              value is used.\n"
287813498266Sopenharmony_ci"\n"
287913498266Sopenharmony_ci"              Example:\n"
288013498266Sopenharmony_ci"               curl --keepalive-time 20 https://example.com\n"
288113498266Sopenharmony_ci"\n"
288213498266Sopenharmony_ci"              See also --no-keepalive and -m, --max-time.\n"
288313498266Sopenharmony_ci"\n"
288413498266Sopenharmony_ci"       --key-type <type>\n"
288513498266Sopenharmony_ci"              (TLS) Private key file type. Specify which type your --key  pro-\n"
288613498266Sopenharmony_ci, stdout);
288713498266Sopenharmony_ci fputs(
288813498266Sopenharmony_ci"              vided  private  key  is. DER, PEM, and ENG are supported. If not\n"
288913498266Sopenharmony_ci"              specified, PEM is assumed.\n"
289013498266Sopenharmony_ci"\n"
289113498266Sopenharmony_ci"              If --key-type is provided several times, the last set  value  is\n"
289213498266Sopenharmony_ci"              used.\n"
289313498266Sopenharmony_ci"\n"
289413498266Sopenharmony_ci"              Example:\n"
289513498266Sopenharmony_ci"               curl --key-type DER --key here https://example.com\n"
289613498266Sopenharmony_ci"\n"
289713498266Sopenharmony_ci"              See also --key.\n"
289813498266Sopenharmony_ci"\n"
289913498266Sopenharmony_ci"       --key <key>\n"
290013498266Sopenharmony_ci"              (TLS SSH) Private key file name. Allows you to provide your pri-\n"
290113498266Sopenharmony_ci, stdout);
290213498266Sopenharmony_ci fputs(
290313498266Sopenharmony_ci"              vate  key in this separate file. For SSH, if not specified, curl\n"
290413498266Sopenharmony_ci"              tries  the  following  candidates  in  order:   \"~/.ssh/id_rsa\",\n"
290513498266Sopenharmony_ci"              \"~/.ssh/id_dsa\", \"./id_rsa\", \"./id_dsa\".\n"
290613498266Sopenharmony_ci"\n"
290713498266Sopenharmony_ci"              If  curl is built against OpenSSL library, and the engine pkcs11\n"
290813498266Sopenharmony_ci"              is available, then a PKCS#11 URI (RFC 7512) can be used to spec-\n"
290913498266Sopenharmony_ci"              ify a private key located in a PKCS#11 device. A  string  begin-\n"
291013498266Sopenharmony_ci, stdout);
291113498266Sopenharmony_ci fputs(
291213498266Sopenharmony_ci"              ning  with  \"pkcs11:\"  is  interpreted  as  a  PKCS#11 URI. If a\n"
291313498266Sopenharmony_ci"              PKCS#11 URI is provided, then the  --engine  option  is  set  as\n"
291413498266Sopenharmony_ci"              \"pkcs11\"  if  none was provided and the --key-type option is set\n"
291513498266Sopenharmony_ci"              as \"ENG\" if none was provided.\n"
291613498266Sopenharmony_ci"\n"
291713498266Sopenharmony_ci"              If curl is built against Secure Transport or Schannel then  this\n"
291813498266Sopenharmony_ci"              option is ignored for TLS protocols (HTTPS, etc). Those backends\n"
291913498266Sopenharmony_ci, stdout);
292013498266Sopenharmony_ci fputs(
292113498266Sopenharmony_ci"              expect  the private key to be already present in the keychain or\n"
292213498266Sopenharmony_ci"              PKCS#12 file containing the certificate.\n"
292313498266Sopenharmony_ci"\n"
292413498266Sopenharmony_ci"              If --key is provided several times, the last set value is used.\n"
292513498266Sopenharmony_ci"\n"
292613498266Sopenharmony_ci"              Example:\n"
292713498266Sopenharmony_ci"               curl --cert certificate --key here https://example.com\n"
292813498266Sopenharmony_ci"\n"
292913498266Sopenharmony_ci"              See also --key-type and -E, --cert.\n"
293013498266Sopenharmony_ci"\n"
293113498266Sopenharmony_ci"       --krb <level>\n"
293213498266Sopenharmony_ci"              (FTP) Enable Kerberos authentication and use. The level must  be\n"
293313498266Sopenharmony_ci, stdout);
293413498266Sopenharmony_ci fputs(
293513498266Sopenharmony_ci"              entered and should be one of 'clear', 'safe', 'confidential', or\n"
293613498266Sopenharmony_ci"              'private'.  Should  you  use  a  level that is not one of these,\n"
293713498266Sopenharmony_ci"              'private' is used.\n"
293813498266Sopenharmony_ci"\n"
293913498266Sopenharmony_ci"              If --krb is provided several times, the last set value is used.\n"
294013498266Sopenharmony_ci"\n"
294113498266Sopenharmony_ci"              Example:\n"
294213498266Sopenharmony_ci"               curl --krb clear ftp://example.com/\n"
294313498266Sopenharmony_ci"\n"
294413498266Sopenharmony_ci"              See also --delegation and --ssl. --krb requires that the  under-\n"
294513498266Sopenharmony_ci"              lying libcurl was built to support Kerberos.\n"
294613498266Sopenharmony_ci"\n"
294713498266Sopenharmony_ci, stdout);
294813498266Sopenharmony_ci fputs(
294913498266Sopenharmony_ci"       --libcurl <file>\n"
295013498266Sopenharmony_ci"              Append  this  option  to any ordinary curl command line, and you\n"
295113498266Sopenharmony_ci"              get libcurl-using C source code written to the  file  that  does\n"
295213498266Sopenharmony_ci"              the equivalent of what your command-line operation does!\n"
295313498266Sopenharmony_ci"\n"
295413498266Sopenharmony_ci"              This option is global and does not need to be specified for each\n"
295513498266Sopenharmony_ci"              use of --next.\n"
295613498266Sopenharmony_ci"\n"
295713498266Sopenharmony_ci"              If  --libcurl  is  provided several times, the last set value is\n"
295813498266Sopenharmony_ci"              used.\n"
295913498266Sopenharmony_ci"\n"
296013498266Sopenharmony_ci"              Example:\n"
296113498266Sopenharmony_ci, stdout);
296213498266Sopenharmony_ci fputs(
296313498266Sopenharmony_ci"               curl --libcurl client.c https://example.com\n"
296413498266Sopenharmony_ci"\n"
296513498266Sopenharmony_ci"              See also -v, --verbose.\n"
296613498266Sopenharmony_ci"\n"
296713498266Sopenharmony_ci"       --limit-rate <speed>\n"
296813498266Sopenharmony_ci"              Specify the maximum transfer rate you want curl  to  use  -  for\n"
296913498266Sopenharmony_ci"              both downloads and uploads. This feature is useful if you have a\n"
297013498266Sopenharmony_ci"              limited  pipe  and  you would like your transfer not to use your\n"
297113498266Sopenharmony_ci"              entire bandwidth. To make it slower than it otherwise would be.\n"
297213498266Sopenharmony_ci"\n"
297313498266Sopenharmony_ci, stdout);
297413498266Sopenharmony_ci fputs(
297513498266Sopenharmony_ci"              The given speed is measured in bytes/second, unless a suffix  is\n"
297613498266Sopenharmony_ci"              appended.   Appending 'k' or 'K' counts the number as kilobytes,\n"
297713498266Sopenharmony_ci"              'm' or 'M' makes it megabytes, while 'g' or 'G' makes  it  giga-\n"
297813498266Sopenharmony_ci"              bytes.  The suffixes (k, M, G, T, P) are 1024 based. For example\n"
297913498266Sopenharmony_ci"              1k is 1024. Examples: 200K, 3m and 1G.\n"
298013498266Sopenharmony_ci"\n"
298113498266Sopenharmony_ci"              The rate limiting logic works on averaging the transfer speed to\n"
298213498266Sopenharmony_ci, stdout);
298313498266Sopenharmony_ci fputs(
298413498266Sopenharmony_ci"              no more than the set threshold over a period  of  multiple  sec-\n"
298513498266Sopenharmony_ci"              onds.\n"
298613498266Sopenharmony_ci"\n"
298713498266Sopenharmony_ci"              If  you also use the -Y, --speed-limit option, that option takes\n"
298813498266Sopenharmony_ci"              precedence and might cripple the rate-limiting slightly, to help\n"
298913498266Sopenharmony_ci"              keeping the speed-limit logic working.\n"
299013498266Sopenharmony_ci"\n"
299113498266Sopenharmony_ci"              If --limit-rate is provided several times, the last set value is\n"
299213498266Sopenharmony_ci"              used.\n"
299313498266Sopenharmony_ci"\n"
299413498266Sopenharmony_ci"              Examples:\n"
299513498266Sopenharmony_ci"               curl --limit-rate 100K https://example.com\n"
299613498266Sopenharmony_ci, stdout);
299713498266Sopenharmony_ci fputs(
299813498266Sopenharmony_ci"               curl --limit-rate 1000 https://example.com\n"
299913498266Sopenharmony_ci"               curl --limit-rate 10M https://example.com\n"
300013498266Sopenharmony_ci"\n"
300113498266Sopenharmony_ci"              See also --rate, -Y, --speed-limit and -y, --speed-time.\n"
300213498266Sopenharmony_ci"\n"
300313498266Sopenharmony_ci"       -l, --list-only\n"
300413498266Sopenharmony_ci"              (FTP POP3 SFTP) (FTP) When listing an FTP directory, this switch\n"
300513498266Sopenharmony_ci"              forces a name-only view. This is especially useful if  the  user\n"
300613498266Sopenharmony_ci"              wants  to  machine-parse  the contents of an FTP directory since\n"
300713498266Sopenharmony_ci, stdout);
300813498266Sopenharmony_ci fputs(
300913498266Sopenharmony_ci"              the normal directory view does not use a standard look  or  for-\n"
301013498266Sopenharmony_ci"              mat.  When  used like this, the option causes an NLST command to\n"
301113498266Sopenharmony_ci"              be sent to the server instead of LIST.\n"
301213498266Sopenharmony_ci"\n"
301313498266Sopenharmony_ci"              Note: Some FTP servers list only  files  in  their  response  to\n"
301413498266Sopenharmony_ci"              NLST; they do not include sub-directories and symbolic links.\n"
301513498266Sopenharmony_ci"\n"
301613498266Sopenharmony_ci"              (SFTP)  When  listing  an  SFTP  directory, this switch forces a\n"
301713498266Sopenharmony_ci, stdout);
301813498266Sopenharmony_ci fputs(
301913498266Sopenharmony_ci"              name-only view, one per line.  This is especially useful if  the\n"
302013498266Sopenharmony_ci"              user  wants  to  machine-parse the contents of an SFTP directory\n"
302113498266Sopenharmony_ci"              since the normal directory view provides more  information  than\n"
302213498266Sopenharmony_ci"              just file names.\n"
302313498266Sopenharmony_ci"\n"
302413498266Sopenharmony_ci"              (POP3)  When  retrieving a specific email from POP3, this switch\n"
302513498266Sopenharmony_ci"              forces a LIST command to be performed instead of RETR.  This  is\n"
302613498266Sopenharmony_ci, stdout);
302713498266Sopenharmony_ci fputs(
302813498266Sopenharmony_ci"              particularly  useful if the user wants to see if a specific mes-\n"
302913498266Sopenharmony_ci"              sage-id exists on the server and what size it is.\n"
303013498266Sopenharmony_ci"\n"
303113498266Sopenharmony_ci"              Note: When combined with -X, --request, this option can be  used\n"
303213498266Sopenharmony_ci"              to  send a UIDL command instead, so the user may use the email's\n"
303313498266Sopenharmony_ci"              unique identifier rather than its message-id  to  make  the  re-\n"
303413498266Sopenharmony_ci"              quest.\n"
303513498266Sopenharmony_ci"\n"
303613498266Sopenharmony_ci"              Providing  --list-only multiple times has no extra effect.  Dis-\n"
303713498266Sopenharmony_ci, stdout);
303813498266Sopenharmony_ci fputs(
303913498266Sopenharmony_ci"              able it again with --no-list-only.\n"
304013498266Sopenharmony_ci"\n"
304113498266Sopenharmony_ci"              Example:\n"
304213498266Sopenharmony_ci"               curl --list-only ftp://example.com/dir/\n"
304313498266Sopenharmony_ci"              See also -Q, --quote and -X, --request.\n"
304413498266Sopenharmony_ci"\n"
304513498266Sopenharmony_ci"       --local-port <num/range>\n"
304613498266Sopenharmony_ci"              Set a preferred single number or range (FROM-TO) of  local  port\n"
304713498266Sopenharmony_ci"              numbers  to use for the connection(s). Note that port numbers by\n"
304813498266Sopenharmony_ci"              nature are a scarce resource so setting this range to  something\n"
304913498266Sopenharmony_ci, stdout);
305013498266Sopenharmony_ci fputs(
305113498266Sopenharmony_ci"              too narrow might cause unnecessary connection setup failures.\n"
305213498266Sopenharmony_ci"\n"
305313498266Sopenharmony_ci"              If --local-port is provided several times, the last set value is\n"
305413498266Sopenharmony_ci"              used.\n"
305513498266Sopenharmony_ci"\n"
305613498266Sopenharmony_ci"              Example:\n"
305713498266Sopenharmony_ci"               curl --local-port 1000-3000 https://example.com\n"
305813498266Sopenharmony_ci"\n"
305913498266Sopenharmony_ci"              See also -g, --globoff.\n"
306013498266Sopenharmony_ci"\n"
306113498266Sopenharmony_ci"       --location-trusted\n"
306213498266Sopenharmony_ci"              (HTTP)  Like -L, --location, but allows sending the name + pass-\n"
306313498266Sopenharmony_ci"              word to all hosts that the site may redirect to. This may or may\n"
306413498266Sopenharmony_ci, stdout);
306513498266Sopenharmony_ci fputs(
306613498266Sopenharmony_ci"              not introduce a security breach if the site redirects you  to  a\n"
306713498266Sopenharmony_ci"              site  to  which  you  send  your  authentication  info (which is\n"
306813498266Sopenharmony_ci"              clear-text in the case of HTTP Basic authentication).\n"
306913498266Sopenharmony_ci"\n"
307013498266Sopenharmony_ci"              Providing --location-trusted multiple times has no extra effect.\n"
307113498266Sopenharmony_ci"              Disable it again with --no-location-trusted.\n"
307213498266Sopenharmony_ci"\n"
307313498266Sopenharmony_ci"              Example:\n"
307413498266Sopenharmony_ci"               curl --location-trusted -u user:password https://example.com\n"
307513498266Sopenharmony_ci"\n"
307613498266Sopenharmony_ci, stdout);
307713498266Sopenharmony_ci fputs(
307813498266Sopenharmony_ci"              See also -u, --user.\n"
307913498266Sopenharmony_ci"\n"
308013498266Sopenharmony_ci"       -L, --location\n"
308113498266Sopenharmony_ci"              (HTTP) If the server reports that the requested page  has  moved\n"
308213498266Sopenharmony_ci"              to a different location (indicated with a Location: header and a\n"
308313498266Sopenharmony_ci"              3XX  response  code), this option makes curl redo the request on\n"
308413498266Sopenharmony_ci"              the new place. If  used  together  with  -i,  --include  or  -I,\n"
308513498266Sopenharmony_ci"              --head, headers from all requested pages are shown.\n"
308613498266Sopenharmony_ci"\n"
308713498266Sopenharmony_ci, stdout);
308813498266Sopenharmony_ci fputs(
308913498266Sopenharmony_ci"              When  authentication is used, curl only sends its credentials to\n"
309013498266Sopenharmony_ci"              the initial host. If a redirect takes curl to a different  host,\n"
309113498266Sopenharmony_ci"              it  does  not  get  the  user+password pass on. See also --loca-\n"
309213498266Sopenharmony_ci"              tion-trusted on how to change this.\n"
309313498266Sopenharmony_ci"\n"
309413498266Sopenharmony_ci"              Limit  the  amount  of  redirects  to  follow   by   using   the\n"
309513498266Sopenharmony_ci"              --max-redirs option.\n"
309613498266Sopenharmony_ci"\n"
309713498266Sopenharmony_ci"              When  curl  follows  a redirect and if the request is a POST, it\n"
309813498266Sopenharmony_ci, stdout);
309913498266Sopenharmony_ci fputs(
310013498266Sopenharmony_ci"              sends the following request with a GET if the HTTP response  was\n"
310113498266Sopenharmony_ci"              301,  302,  or 303. If the response code was any other 3xx code,\n"
310213498266Sopenharmony_ci"              curl resends the following request  using  the  same  unmodified\n"
310313498266Sopenharmony_ci"              method.\n"
310413498266Sopenharmony_ci"\n"
310513498266Sopenharmony_ci"              You can tell curl to not change POST requests to GET after a 30x\n"
310613498266Sopenharmony_ci"              response  by  using  the  dedicated options for that: --post301,\n"
310713498266Sopenharmony_ci"              --post302 and --post303.\n"
310813498266Sopenharmony_ci"\n"
310913498266Sopenharmony_ci, stdout);
311013498266Sopenharmony_ci fputs(
311113498266Sopenharmony_ci"              The method set with -X,  --request  overrides  the  method  curl\n"
311213498266Sopenharmony_ci"              would otherwise select to use.\n"
311313498266Sopenharmony_ci"\n"
311413498266Sopenharmony_ci"              Providing  --location  multiple times has no extra effect.  Dis-\n"
311513498266Sopenharmony_ci"              able it again with --no-location.\n"
311613498266Sopenharmony_ci"\n"
311713498266Sopenharmony_ci"              Example:\n"
311813498266Sopenharmony_ci"               curl -L https://example.com\n"
311913498266Sopenharmony_ci"\n"
312013498266Sopenharmony_ci"              See also --resolve and --alt-svc.\n"
312113498266Sopenharmony_ci"\n"
312213498266Sopenharmony_ci"       --login-options <options>\n"
312313498266Sopenharmony_ci"              (IMAP LDAP POP3 SMTP) Specify the login options  to  use  during\n"
312413498266Sopenharmony_ci, stdout);
312513498266Sopenharmony_ci fputs(
312613498266Sopenharmony_ci"              server authentication.\n"
312713498266Sopenharmony_ci"\n"
312813498266Sopenharmony_ci"              You  can  use login options to specify protocol specific options\n"
312913498266Sopenharmony_ci"              that may be used during authentication. At  present  only  IMAP,\n"
313013498266Sopenharmony_ci"              POP3  and SMTP support login options. For more information about\n"
313113498266Sopenharmony_ci"              login options please see RFC 2384, RFC 5092 and the  IETF  draft\n"
313213498266Sopenharmony_ci"              https://datatracker.ietf.org/doc/html/draft-earhart-url-smtp-00\n"
313313498266Sopenharmony_ci"\n"
313413498266Sopenharmony_ci, stdout);
313513498266Sopenharmony_ci fputs(
313613498266Sopenharmony_ci"              Since  8.2.0, IMAP supports the login option \"AUTH=+LOGIN\". With\n"
313713498266Sopenharmony_ci"              this option, curl uses the plain (not SASL) \"LOGIN IMAP\" command\n"
313813498266Sopenharmony_ci"              even if the server advertises SASL authentication.  Care  should\n"
313913498266Sopenharmony_ci"              be  taken  in  using this option, as it sends your password over\n"
314013498266Sopenharmony_ci"              the network in plain text. This does not work if the IMAP server\n"
314113498266Sopenharmony_ci"              disables the plain \"LOGIN\" (e.g. to prevent password snooping).\n"
314213498266Sopenharmony_ci"\n"
314313498266Sopenharmony_ci, stdout);
314413498266Sopenharmony_ci fputs(
314513498266Sopenharmony_ci"              If --login-options is provided several times, the last set value\n"
314613498266Sopenharmony_ci"              is used.\n"
314713498266Sopenharmony_ci"              Example:\n"
314813498266Sopenharmony_ci"               curl --login-options 'AUTH=*' imap://example.com\n"
314913498266Sopenharmony_ci"\n"
315013498266Sopenharmony_ci"              See also -u, --user.\n"
315113498266Sopenharmony_ci"\n"
315213498266Sopenharmony_ci"       --mail-auth <address>\n"
315313498266Sopenharmony_ci"              (SMTP) Specify a single address. This is used to specify the au-\n"
315413498266Sopenharmony_ci"              thentication address (identity) of a submitted message  that  is\n"
315513498266Sopenharmony_ci"              being relayed to another server.\n"
315613498266Sopenharmony_ci"\n"
315713498266Sopenharmony_ci, stdout);
315813498266Sopenharmony_ci fputs(
315913498266Sopenharmony_ci"              If  --mail-auth is provided several times, the last set value is\n"
316013498266Sopenharmony_ci"              used.\n"
316113498266Sopenharmony_ci"\n"
316213498266Sopenharmony_ci"              Example:\n"
316313498266Sopenharmony_ci"               curl --mail-auth user@example.come -T mail smtp://example.com/\n"
316413498266Sopenharmony_ci"\n"
316513498266Sopenharmony_ci"              See also --mail-rcpt and --mail-from.\n"
316613498266Sopenharmony_ci"\n"
316713498266Sopenharmony_ci"       --mail-from <address>\n"
316813498266Sopenharmony_ci"              (SMTP) Specify a single address that the given mail  should  get\n"
316913498266Sopenharmony_ci"              sent from.\n"
317013498266Sopenharmony_ci"\n"
317113498266Sopenharmony_ci"              If  --mail-from is provided several times, the last set value is\n"
317213498266Sopenharmony_ci"              used.\n"
317313498266Sopenharmony_ci"\n"
317413498266Sopenharmony_ci, stdout);
317513498266Sopenharmony_ci fputs(
317613498266Sopenharmony_ci"              Example:\n"
317713498266Sopenharmony_ci"               curl --mail-from user@example.com -T mail smtp://example.com/\n"
317813498266Sopenharmony_ci"\n"
317913498266Sopenharmony_ci"              See also --mail-rcpt and --mail-auth.\n"
318013498266Sopenharmony_ci"\n"
318113498266Sopenharmony_ci"       --mail-rcpt-allowfails\n"
318213498266Sopenharmony_ci"              (SMTP) When sending data to multiple recipients, by default curl\n"
318313498266Sopenharmony_ci"              aborts SMTP conversation if  at  least  one  of  the  recipients\n"
318413498266Sopenharmony_ci"              causes RCPT TO command to return an error.\n"
318513498266Sopenharmony_ci"\n"
318613498266Sopenharmony_ci"              The  default  behavior can be changed by passing --mail-rcpt-al-\n"
318713498266Sopenharmony_ci, stdout);
318813498266Sopenharmony_ci fputs(
318913498266Sopenharmony_ci"              lowfails command-line option which makes curl ignore errors  and\n"
319013498266Sopenharmony_ci"              proceed with the remaining valid recipients.\n"
319113498266Sopenharmony_ci"\n"
319213498266Sopenharmony_ci"              If  all  recipients  trigger  RCPT  TO failures and this flag is\n"
319313498266Sopenharmony_ci"              specified, curl still aborts the SMTP conversation  and  returns\n"
319413498266Sopenharmony_ci"              the error received from to the last RCPT TO command.\n"
319513498266Sopenharmony_ci"\n"
319613498266Sopenharmony_ci"              Providing --mail-rcpt-allowfails multiple times has no extra ef-\n"
319713498266Sopenharmony_ci, stdout);
319813498266Sopenharmony_ci fputs(
319913498266Sopenharmony_ci"              fect.  Disable it again with --no-mail-rcpt-allowfails.\n"
320013498266Sopenharmony_ci"\n"
320113498266Sopenharmony_ci"              Example:\n"
320213498266Sopenharmony_ci"               curl --mail-rcpt-allowfails --mail-rcpt dest@example.com smtp://example.com\n"
320313498266Sopenharmony_ci"\n"
320413498266Sopenharmony_ci"              See also --mail-rcpt. Added in 7.69.0.\n"
320513498266Sopenharmony_ci"\n"
320613498266Sopenharmony_ci"       --mail-rcpt <address>\n"
320713498266Sopenharmony_ci"              (SMTP) Specify a single email address, user name or mailing list\n"
320813498266Sopenharmony_ci"              name.  Repeat  this option several times to send to multiple re-\n"
320913498266Sopenharmony_ci"              cipients.\n"
321013498266Sopenharmony_ci"\n"
321113498266Sopenharmony_ci, stdout);
321213498266Sopenharmony_ci fputs(
321313498266Sopenharmony_ci"              When performing an address verification (VRFY command), the  re-\n"
321413498266Sopenharmony_ci"              cipient  should  be  specified as the user name or user name and\n"
321513498266Sopenharmony_ci"              domain (as per Section 3.5 of RFC 5321).\n"
321613498266Sopenharmony_ci"\n"
321713498266Sopenharmony_ci"              When performing a mailing list expand (EXPN command), the recip-\n"
321813498266Sopenharmony_ci"              ient should be specified using the mailing list  name,  such  as\n"
321913498266Sopenharmony_ci"              \"Friends\" or \"London-Office\".\n"
322013498266Sopenharmony_ci"\n"
322113498266Sopenharmony_ci"              --mail-rcpt can be used several times in a command line\n"
322213498266Sopenharmony_ci"\n"
322313498266Sopenharmony_ci, stdout);
322413498266Sopenharmony_ci fputs(
322513498266Sopenharmony_ci"              Example:\n"
322613498266Sopenharmony_ci"               curl --mail-rcpt user@example.net smtp://example.com\n"
322713498266Sopenharmony_ci"\n"
322813498266Sopenharmony_ci"              See also --mail-rcpt-allowfails.\n"
322913498266Sopenharmony_ci"\n"
323013498266Sopenharmony_ci"       -M, --manual\n"
323113498266Sopenharmony_ci"              Manual. Display the huge help text.\n"
323213498266Sopenharmony_ci"\n"
323313498266Sopenharmony_ci"              Example:\n"
323413498266Sopenharmony_ci"               curl --manual\n"
323513498266Sopenharmony_ci"\n"
323613498266Sopenharmony_ci"              See also -v, --verbose, --libcurl and --trace.\n"
323713498266Sopenharmony_ci"\n"
323813498266Sopenharmony_ci"       --max-filesize <bytes>\n"
323913498266Sopenharmony_ci"              (FTP HTTP MQTT) Specify the maximum size (in bytes) of a file to\n"
324013498266Sopenharmony_ci, stdout);
324113498266Sopenharmony_ci fputs(
324213498266Sopenharmony_ci"              download.  If  the file requested is larger than this value, the\n"
324313498266Sopenharmony_ci"              transfer does not start and curl returns with exit code 63.\n"
324413498266Sopenharmony_ci"\n"
324513498266Sopenharmony_ci"              A size modifier may be used. For example, Appending 'k'  or  'K'\n"
324613498266Sopenharmony_ci"              counts  the  number as kilobytes, 'm' or 'M' makes it megabytes,\n"
324713498266Sopenharmony_ci"              while 'g' or 'G' makes it gigabytes. Examples: 200K, 3m and  1G.\n"
324813498266Sopenharmony_ci"              (Added in 7.58.0)\n"
324913498266Sopenharmony_ci"\n"
325013498266Sopenharmony_ci, stdout);
325113498266Sopenharmony_ci fputs(
325213498266Sopenharmony_ci"              NOTE:  before  curl 8.4.0, when the file size is not known prior\n"
325313498266Sopenharmony_ci"              to download, for such files this option has no  effect  even  if\n"
325413498266Sopenharmony_ci"              the file transfer ends up being larger than this given limit.\n"
325513498266Sopenharmony_ci"\n"
325613498266Sopenharmony_ci"              Starting  with curl 8.4.0, this option aborts the transfer if it\n"
325713498266Sopenharmony_ci"              reaches the threshold during transfer.\n"
325813498266Sopenharmony_ci"\n"
325913498266Sopenharmony_ci"              If --max-filesize is provided several times, the last set  value\n"
326013498266Sopenharmony_ci"              is used.\n"
326113498266Sopenharmony_ci"              Example:\n"
326213498266Sopenharmony_ci, stdout);
326313498266Sopenharmony_ci fputs(
326413498266Sopenharmony_ci"               curl --max-filesize 100K https://example.com\n"
326513498266Sopenharmony_ci"\n"
326613498266Sopenharmony_ci"              See also --limit-rate.\n"
326713498266Sopenharmony_ci"\n"
326813498266Sopenharmony_ci"       --max-redirs <num>\n"
326913498266Sopenharmony_ci"              (HTTP)  Set  maximum  number of redirections to follow. When -L,\n"
327013498266Sopenharmony_ci"              --location is used, to prevent  curl  from  following  too  many\n"
327113498266Sopenharmony_ci"              redirects,  by  default,  the  limit is set to 50 redirects. Set\n"
327213498266Sopenharmony_ci"              this option to -1 to make it unlimited.\n"
327313498266Sopenharmony_ci"\n"
327413498266Sopenharmony_ci"              If --max-redirs is provided several times, the last set value is\n"
327513498266Sopenharmony_ci, stdout);
327613498266Sopenharmony_ci fputs(
327713498266Sopenharmony_ci"              used.\n"
327813498266Sopenharmony_ci"\n"
327913498266Sopenharmony_ci"              Example:\n"
328013498266Sopenharmony_ci"               curl --max-redirs 3 --location https://example.com\n"
328113498266Sopenharmony_ci"\n"
328213498266Sopenharmony_ci"              See also -L, --location.\n"
328313498266Sopenharmony_ci"\n"
328413498266Sopenharmony_ci"       -m, --max-time <fractional seconds>\n"
328513498266Sopenharmony_ci"              Maximum time in seconds that you allow each  transfer  to  take.\n"
328613498266Sopenharmony_ci"              This  is  useful for preventing your batch jobs from hanging for\n"
328713498266Sopenharmony_ci"              hours due to slow networks or links going down. This option  ac-\n"
328813498266Sopenharmony_ci"              cepts decimal values.\n"
328913498266Sopenharmony_ci"\n"
329013498266Sopenharmony_ci, stdout);
329113498266Sopenharmony_ci fputs(
329213498266Sopenharmony_ci"              If  you  enable retrying the transfer (--retry) then the maximum\n"
329313498266Sopenharmony_ci"              time counter is reset each time the transfer is retried. You can\n"
329413498266Sopenharmony_ci"              use --retry-max-time to limit the retry time.\n"
329513498266Sopenharmony_ci"\n"
329613498266Sopenharmony_ci"              The decimal value needs to provided using a dot (.)  as  decimal\n"
329713498266Sopenharmony_ci"              separator  - not the local version even if it might be using an-\n"
329813498266Sopenharmony_ci"              other separator.\n"
329913498266Sopenharmony_ci"\n"
330013498266Sopenharmony_ci"              If --max-time is provided several times, the last set  value  is\n"
330113498266Sopenharmony_ci, stdout);
330213498266Sopenharmony_ci fputs(
330313498266Sopenharmony_ci"              used.\n"
330413498266Sopenharmony_ci"\n"
330513498266Sopenharmony_ci"              Examples:\n"
330613498266Sopenharmony_ci"               curl --max-time 10 https://example.com\n"
330713498266Sopenharmony_ci"               curl --max-time 2.92 https://example.com\n"
330813498266Sopenharmony_ci"\n"
330913498266Sopenharmony_ci"              See also --connect-timeout and --retry-max-time.\n"
331013498266Sopenharmony_ci"\n"
331113498266Sopenharmony_ci"       --metalink\n"
331213498266Sopenharmony_ci"              This  option was previously used to specify a Metalink resource.\n"
331313498266Sopenharmony_ci"              Metalink support is disabled in curl for security reasons (added\n"
331413498266Sopenharmony_ci"              in 7.78.0).\n"
331513498266Sopenharmony_ci"\n"
331613498266Sopenharmony_ci, stdout);
331713498266Sopenharmony_ci fputs(
331813498266Sopenharmony_ci"              If --metalink is provided several times, the last set  value  is\n"
331913498266Sopenharmony_ci"              used.\n"
332013498266Sopenharmony_ci"\n"
332113498266Sopenharmony_ci"              Example:\n"
332213498266Sopenharmony_ci"               curl --metalink file https://example.com\n"
332313498266Sopenharmony_ci"\n"
332413498266Sopenharmony_ci"              See also -Z, --parallel.\n"
332513498266Sopenharmony_ci"\n"
332613498266Sopenharmony_ci"       --negotiate\n"
332713498266Sopenharmony_ci"              (HTTP) Enables Negotiate (SPNEGO) authentication.\n"
332813498266Sopenharmony_ci"\n"
332913498266Sopenharmony_ci"              This  option  requires a library built with GSS-API or SSPI sup-\n"
333013498266Sopenharmony_ci"              port.  Use  -V,  --version  to  see  if   your   curl   supports\n"
333113498266Sopenharmony_ci"              GSS-API/SSPI or SPNEGO.\n"
333213498266Sopenharmony_ci, stdout);
333313498266Sopenharmony_ci fputs(
333413498266Sopenharmony_ci"\n"
333513498266Sopenharmony_ci"              When  using this option, you must also provide a fake -u, --user\n"
333613498266Sopenharmony_ci"              option to activate the authentication code properly.  Sending  a\n"
333713498266Sopenharmony_ci"              '-u  :'  is  enough  as  the user name and password from the -u,\n"
333813498266Sopenharmony_ci"              --user option are not actually used.\n"
333913498266Sopenharmony_ci"\n"
334013498266Sopenharmony_ci"              Providing --negotiate multiple times has no extra effect.\n"
334113498266Sopenharmony_ci"\n"
334213498266Sopenharmony_ci"              Example:\n"
334313498266Sopenharmony_ci"               curl --negotiate -u : https://example.com\n"
334413498266Sopenharmony_ci"\n"
334513498266Sopenharmony_ci, stdout);
334613498266Sopenharmony_ci fputs(
334713498266Sopenharmony_ci"              See also --basic, --ntlm, --anyauth and --proxy-negotiate.\n"
334813498266Sopenharmony_ci"\n"
334913498266Sopenharmony_ci"       --netrc-file <filename>\n"
335013498266Sopenharmony_ci"              This option is similar to -n, --netrc, except that  you  provide\n"
335113498266Sopenharmony_ci"              the  path  (absolute  or  relative)  to the netrc file that curl\n"
335213498266Sopenharmony_ci"              should use. You can only specify one netrc file per invocation.\n"
335313498266Sopenharmony_ci"\n"
335413498266Sopenharmony_ci"              It abides by --netrc-optional if specified.\n"
335513498266Sopenharmony_ci"\n"
335613498266Sopenharmony_ci"              If --netrc-file is provided several times, the last set value is\n"
335713498266Sopenharmony_ci"              used.\n"
335813498266Sopenharmony_ci, stdout);
335913498266Sopenharmony_ci fputs(
336013498266Sopenharmony_ci"\n"
336113498266Sopenharmony_ci"              Example:\n"
336213498266Sopenharmony_ci"               curl --netrc-file netrc https://example.com\n"
336313498266Sopenharmony_ci"\n"
336413498266Sopenharmony_ci"              See also -n, --netrc, -u, --user and -K, --config.  This  option\n"
336513498266Sopenharmony_ci"              is mutually exclusive to -n, --netrc.\n"
336613498266Sopenharmony_ci"\n"
336713498266Sopenharmony_ci"       --netrc-optional\n"
336813498266Sopenharmony_ci"              Similar  to  -n, --netrc, but this option makes the .netrc usage\n"
336913498266Sopenharmony_ci"              optional and not mandatory as the -n, --netrc option does.\n"
337013498266Sopenharmony_ci"\n"
337113498266Sopenharmony_ci"              Providing --netrc-optional multiple times has no  extra  effect.\n"
337213498266Sopenharmony_ci, stdout);
337313498266Sopenharmony_ci fputs(
337413498266Sopenharmony_ci"              Disable it again with --no-netrc-optional.\n"
337513498266Sopenharmony_ci"\n"
337613498266Sopenharmony_ci"              Example:\n"
337713498266Sopenharmony_ci"               curl --netrc-optional https://example.com\n"
337813498266Sopenharmony_ci"\n"
337913498266Sopenharmony_ci"              See  also --netrc-file. This option is mutually exclusive to -n,\n"
338013498266Sopenharmony_ci"              --netrc.\n"
338113498266Sopenharmony_ci"\n"
338213498266Sopenharmony_ci"       -n, --netrc\n"
338313498266Sopenharmony_ci"              Makes curl scan the .netrc file in the user's home directory for\n"
338413498266Sopenharmony_ci"              login name and password. This is typically used for FTP on Unix.\n"
338513498266Sopenharmony_ci"              If  used  with  HTTP,  curl  enables  user  authentication.  See\n"
338613498266Sopenharmony_ci, stdout);
338713498266Sopenharmony_ci fputs(
338813498266Sopenharmony_ci"              netrc(5)  and  ftp(1)  for details on the file format. Curl does\n"
338913498266Sopenharmony_ci"              not complain if that file does not have  the  right  permissions\n"
339013498266Sopenharmony_ci"              (it  should  be neither world- nor group-readable). The environ-\n"
339113498266Sopenharmony_ci"              ment variable \"HOME\" is used to find the home directory.\n"
339213498266Sopenharmony_ci"\n"
339313498266Sopenharmony_ci"              On Windows two filenames in  the  home  directory  are  checked:\n"
339413498266Sopenharmony_ci"              .netrc and _netrc, preferring the former. Older versions on Win-\n"
339513498266Sopenharmony_ci, stdout);
339613498266Sopenharmony_ci fputs(
339713498266Sopenharmony_ci"              dows checked for _netrc only.\n"
339813498266Sopenharmony_ci"\n"
339913498266Sopenharmony_ci"              A  quick  and  simple  example of how to setup a .netrc to allow\n"
340013498266Sopenharmony_ci"              curl to FTP to the machine host.domain.com with user  name  'my-\n"
340113498266Sopenharmony_ci"              self' and password 'secret' could look similar to:\n"
340213498266Sopenharmony_ci"\n"
340313498266Sopenharmony_ci"              machine host.domain.com\n"
340413498266Sopenharmony_ci"              login myself\n"
340513498266Sopenharmony_ci"              password secret\n"
340613498266Sopenharmony_ci"\n"
340713498266Sopenharmony_ci"              Providing --netrc multiple times has no extra effect.\n"
340813498266Sopenharmony_ci"              Disable it again with --no-netrc.\n"
340913498266Sopenharmony_ci"\n"
341013498266Sopenharmony_ci, stdout);
341113498266Sopenharmony_ci fputs(
341213498266Sopenharmony_ci"              Example:\n"
341313498266Sopenharmony_ci"               curl --netrc https://example.com\n"
341413498266Sopenharmony_ci"\n"
341513498266Sopenharmony_ci"              See  also --netrc-file, -K, --config and -u, --user. This option\n"
341613498266Sopenharmony_ci"              is mutually exclusive to --netrc-file and --netrc-optional.\n"
341713498266Sopenharmony_ci"\n"
341813498266Sopenharmony_ci"       -:, --next\n"
341913498266Sopenharmony_ci"              Tells curl to use a separate operation for the following URL and\n"
342013498266Sopenharmony_ci"              associated options. This allows you  to  send  several  URL  re-\n"
342113498266Sopenharmony_ci"              quests,  each with their own specific options, for example, such\n"
342213498266Sopenharmony_ci, stdout);
342313498266Sopenharmony_ci fputs(
342413498266Sopenharmony_ci"              as different user names or custom requests for each.\n"
342513498266Sopenharmony_ci"\n"
342613498266Sopenharmony_ci"              -:, --next resets all local options and only  global  ones  have\n"
342713498266Sopenharmony_ci"              their  values  survive  over  to the operation following the -:,\n"
342813498266Sopenharmony_ci"              --next  instruction.  Global  options  include  -v,   --verbose,\n"
342913498266Sopenharmony_ci"              --trace, --trace-ascii and --fail-early.\n"
343013498266Sopenharmony_ci"\n"
343113498266Sopenharmony_ci"              For  example,  you can do both a GET and a POST in a single com-\n"
343213498266Sopenharmony_ci"              mand line:\n"
343313498266Sopenharmony_ci"\n"
343413498266Sopenharmony_ci, stdout);
343513498266Sopenharmony_ci fputs(
343613498266Sopenharmony_ci"              curl www1.example.com --next -d postthis www2.example.com\n"
343713498266Sopenharmony_ci"\n"
343813498266Sopenharmony_ci"              --next can be used several times in a command line\n"
343913498266Sopenharmony_ci"\n"
344013498266Sopenharmony_ci"              Examples:\n"
344113498266Sopenharmony_ci"               curl https://example.com --next -d postthis www2.example.com\n"
344213498266Sopenharmony_ci"               curl -I https://example.com --next https://example.net/\n"
344313498266Sopenharmony_ci"\n"
344413498266Sopenharmony_ci"              See also -Z, --parallel and -K, --config.\n"
344513498266Sopenharmony_ci"\n"
344613498266Sopenharmony_ci"       --no-alpn\n"
344713498266Sopenharmony_ci"              (HTTPS) Disable the ALPN TLS extension. ALPN is enabled  by  de-\n"
344813498266Sopenharmony_ci, stdout);
344913498266Sopenharmony_ci fputs(
345013498266Sopenharmony_ci"              fault  if  libcurl  was  built with an SSL library that supports\n"
345113498266Sopenharmony_ci"              ALPN. ALPN is used by a libcurl that supports HTTP/2 to  negoti-\n"
345213498266Sopenharmony_ci"              ate HTTP/2 support with the server during https sessions.\n"
345313498266Sopenharmony_ci"\n"
345413498266Sopenharmony_ci"              Note  that  this  is the negated option name documented. You can\n"
345513498266Sopenharmony_ci"              use --alpn to enable ALPN.\n"
345613498266Sopenharmony_ci"\n"
345713498266Sopenharmony_ci"              Providing --no-alpn multiple times has no extra effect.  Disable\n"
345813498266Sopenharmony_ci"              it again with --alpn.\n"
345913498266Sopenharmony_ci"\n"
346013498266Sopenharmony_ci"              Example:\n"
346113498266Sopenharmony_ci, stdout);
346213498266Sopenharmony_ci fputs(
346313498266Sopenharmony_ci"               curl --no-alpn https://example.com\n"
346413498266Sopenharmony_ci"\n"
346513498266Sopenharmony_ci"              See also --no-npn and --http2. --no-alpn requires that  the  un-\n"
346613498266Sopenharmony_ci"              derlying libcurl was built to support TLS.\n"
346713498266Sopenharmony_ci"\n"
346813498266Sopenharmony_ci"       -N, --no-buffer\n"
346913498266Sopenharmony_ci"              Disables the buffering of the output stream. In normal work sit-\n"
347013498266Sopenharmony_ci"              uations,  curl  uses  a standard buffered output stream that has\n"
347113498266Sopenharmony_ci"              the effect that it outputs the data in chunks,  not  necessarily\n"
347213498266Sopenharmony_ci, stdout);
347313498266Sopenharmony_ci fputs(
347413498266Sopenharmony_ci"              exactly  when  the data arrives. Using this option disables that\n"
347513498266Sopenharmony_ci"              buffering.\n"
347613498266Sopenharmony_ci"\n"
347713498266Sopenharmony_ci"              Note that this is the negated option name  documented.  You  can\n"
347813498266Sopenharmony_ci"              use --buffer to enable buffering again.\n"
347913498266Sopenharmony_ci"\n"
348013498266Sopenharmony_ci"              Providing  --no-buffer multiple times has no extra effect.  Dis-\n"
348113498266Sopenharmony_ci"              able it again with --buffer.\n"
348213498266Sopenharmony_ci"\n"
348313498266Sopenharmony_ci"              Example:\n"
348413498266Sopenharmony_ci"               curl --no-buffer https://example.com\n"
348513498266Sopenharmony_ci"\n"
348613498266Sopenharmony_ci"              See also -#, --progress-bar.\n"
348713498266Sopenharmony_ci"\n"
348813498266Sopenharmony_ci, stdout);
348913498266Sopenharmony_ci fputs(
349013498266Sopenharmony_ci"       --no-clobber\n"
349113498266Sopenharmony_ci"              When used in  conjunction  with  the  -o,  --output,  -J,  --re-\n"
349213498266Sopenharmony_ci"              mote-header-name,  -O,  --remote-name,  or --remote-name-all op-\n"
349313498266Sopenharmony_ci"              tions, curl avoids overwriting files  that  already  exist.  In-\n"
349413498266Sopenharmony_ci"              stead,  a dot and a number gets appended to the name of the file\n"
349513498266Sopenharmony_ci"              that would be created, up to filename.100 after  which  it  does\n"
349613498266Sopenharmony_ci"              not create any file.\n"
349713498266Sopenharmony_ci"\n"
349813498266Sopenharmony_ci, stdout);
349913498266Sopenharmony_ci fputs(
350013498266Sopenharmony_ci"              Note  that  this  is the negated option name documented. You can\n"
350113498266Sopenharmony_ci"              thus use --clobber to enforce the clobbering, even if -J,  --re-\n"
350213498266Sopenharmony_ci"              mote-header-name is specified.\n"
350313498266Sopenharmony_ci"\n"
350413498266Sopenharmony_ci"              Providing --no-clobber multiple times has no extra effect.  Dis-\n"
350513498266Sopenharmony_ci"              able it again with --clobber.\n"
350613498266Sopenharmony_ci"\n"
350713498266Sopenharmony_ci"              Example:\n"
350813498266Sopenharmony_ci"               curl --no-clobber --output local/dir/file https://example.com\n"
350913498266Sopenharmony_ci, stdout);
351013498266Sopenharmony_ci fputs(
351113498266Sopenharmony_ci"              See also -o, --output and -O, --remote-name. Added in 7.83.0.\n"
351213498266Sopenharmony_ci"\n"
351313498266Sopenharmony_ci"       --no-keepalive\n"
351413498266Sopenharmony_ci"              Disables  the  use  of keepalive messages on the TCP connection.\n"
351513498266Sopenharmony_ci"              curl otherwise enables them by default.\n"
351613498266Sopenharmony_ci"\n"
351713498266Sopenharmony_ci"              Note that this is the negated option name  documented.  You  can\n"
351813498266Sopenharmony_ci"              thus use --keepalive to enforce keepalive.\n"
351913498266Sopenharmony_ci"\n"
352013498266Sopenharmony_ci"              Providing  --no-keepalive  multiple  times  has no extra effect.\n"
352113498266Sopenharmony_ci"              Disable it again with --keepalive.\n"
352213498266Sopenharmony_ci"\n"
352313498266Sopenharmony_ci, stdout);
352413498266Sopenharmony_ci fputs(
352513498266Sopenharmony_ci"              Example:\n"
352613498266Sopenharmony_ci"               curl --no-keepalive https://example.com\n"
352713498266Sopenharmony_ci"\n"
352813498266Sopenharmony_ci"              See also --keepalive-time.\n"
352913498266Sopenharmony_ci"\n"
353013498266Sopenharmony_ci"       --no-npn\n"
353113498266Sopenharmony_ci"              (HTTPS) curl never uses NPN, this option has no effect (added in\n"
353213498266Sopenharmony_ci"              7.86.0).\n"
353313498266Sopenharmony_ci"\n"
353413498266Sopenharmony_ci"              Disable the NPN TLS extension. NPN  is  enabled  by  default  if\n"
353513498266Sopenharmony_ci"              libcurl  was built with an SSL library that supports NPN. NPN is\n"
353613498266Sopenharmony_ci"              used by a libcurl that supports HTTP/2 to negotiate HTTP/2  sup-\n"
353713498266Sopenharmony_ci, stdout);
353813498266Sopenharmony_ci fputs(
353913498266Sopenharmony_ci"              port with the server during https sessions.\n"
354013498266Sopenharmony_ci"\n"
354113498266Sopenharmony_ci"              Providing  --no-npn multiple times has no extra effect.  Disable\n"
354213498266Sopenharmony_ci"              it again with --npn.\n"
354313498266Sopenharmony_ci"\n"
354413498266Sopenharmony_ci"              Example:\n"
354513498266Sopenharmony_ci"               curl --no-npn https://example.com\n"
354613498266Sopenharmony_ci"\n"
354713498266Sopenharmony_ci"              See also --no-alpn and --http2. --no-npn requires that  the  un-\n"
354813498266Sopenharmony_ci"              derlying libcurl was built to support TLS.\n"
354913498266Sopenharmony_ci"\n"
355013498266Sopenharmony_ci"       --no-progress-meter\n"
355113498266Sopenharmony_ci"              Option to switch off the progress meter output without muting or\n"
355213498266Sopenharmony_ci, stdout);
355313498266Sopenharmony_ci fputs(
355413498266Sopenharmony_ci"              otherwise  affecting warning and informational messages like -s,\n"
355513498266Sopenharmony_ci"              --silent does.\n"
355613498266Sopenharmony_ci"\n"
355713498266Sopenharmony_ci"              Note that this is the negated option name  documented.  You  can\n"
355813498266Sopenharmony_ci"              thus use --progress-meter to enable the progress meter again.\n"
355913498266Sopenharmony_ci"\n"
356013498266Sopenharmony_ci"              Providing  --no-progress-meter  multiple  times has no extra ef-\n"
356113498266Sopenharmony_ci"              fect.  Disable it again with --progress-meter.\n"
356213498266Sopenharmony_ci"\n"
356313498266Sopenharmony_ci"              Example:\n"
356413498266Sopenharmony_ci"               curl --no-progress-meter -o store https://example.com\n"
356513498266Sopenharmony_ci"\n"
356613498266Sopenharmony_ci, stdout);
356713498266Sopenharmony_ci fputs(
356813498266Sopenharmony_ci"              See also -v, --verbose and -s, --silent. Added in 7.67.0.\n"
356913498266Sopenharmony_ci"\n"
357013498266Sopenharmony_ci"       --no-sessionid\n"
357113498266Sopenharmony_ci"              (TLS) Disable curl's use of SSL session-ID caching.  By  default\n"
357213498266Sopenharmony_ci"              all  transfers are done using the cache. Note that while nothing\n"
357313498266Sopenharmony_ci"              should ever get hurt by attempting  to  reuse  SSL  session-IDs,\n"
357413498266Sopenharmony_ci"              there seem to be broken SSL implementations in the wild that may\n"
357513498266Sopenharmony_ci"              require you to disable this in order for you to succeed.\n"
357613498266Sopenharmony_ci"\n"
357713498266Sopenharmony_ci, stdout);
357813498266Sopenharmony_ci fputs(
357913498266Sopenharmony_ci"              Note  that  this  is the negated option name documented. You can\n"
358013498266Sopenharmony_ci"              thus use --sessionid to enforce session-ID caching.\n"
358113498266Sopenharmony_ci"\n"
358213498266Sopenharmony_ci"              Providing --no-sessionid multiple times  has  no  extra  effect.\n"
358313498266Sopenharmony_ci"              Disable it again with --sessionid.\n"
358413498266Sopenharmony_ci"\n"
358513498266Sopenharmony_ci"              Example:\n"
358613498266Sopenharmony_ci"               curl --no-sessionid https://example.com\n"
358713498266Sopenharmony_ci"\n"
358813498266Sopenharmony_ci"              See also -k, --insecure.\n"
358913498266Sopenharmony_ci"\n"
359013498266Sopenharmony_ci"       --noproxy <no-proxy-list>\n"
359113498266Sopenharmony_ci, stdout);
359213498266Sopenharmony_ci fputs(
359313498266Sopenharmony_ci"              Comma-separated  list  of hosts for which not to use a proxy, if\n"
359413498266Sopenharmony_ci"              one is specified. The only wildcard is a single  \"*\"  character,\n"
359513498266Sopenharmony_ci"              which  matches  all  hosts,  and effectively disables the proxy.\n"
359613498266Sopenharmony_ci"              Each name in this list is matched as either a domain which  con-\n"
359713498266Sopenharmony_ci"              tains  the  hostname,  or the hostname itself. For example, \"lo-\n"
359813498266Sopenharmony_ci"              cal.com\" would match \"local.com\", \"local.com:80\",  and  \"www.lo-\n"
359913498266Sopenharmony_ci, stdout);
360013498266Sopenharmony_ci fputs(
360113498266Sopenharmony_ci"              cal.com\", but not \"www.notlocal.com\".\n"
360213498266Sopenharmony_ci"\n"
360313498266Sopenharmony_ci"              This option overrides the environment variables that disable the\n"
360413498266Sopenharmony_ci"              proxy (\"no_proxy\" and \"NO_PROXY\") (added in 7.53.0). If there is\n"
360513498266Sopenharmony_ci"              an  environment  variable  disabling a proxy, you can set the no\n"
360613498266Sopenharmony_ci"              proxy list to \"\" to override it.\n"
360713498266Sopenharmony_ci"\n"
360813498266Sopenharmony_ci"              IP addresses specified to this option can be provided using CIDR\n"
360913498266Sopenharmony_ci"              notation (added in 7.86.0): an appended slash and number  speci-\n"
361013498266Sopenharmony_ci, stdout);
361113498266Sopenharmony_ci fputs(
361213498266Sopenharmony_ci"              fies the number of network bits out of the address to use in the\n"
361313498266Sopenharmony_ci"              comparison.  For  example  \"192.168.0.0/16\"  would match all ad-\n"
361413498266Sopenharmony_ci"              dresses starting with \"192.168\".\n"
361513498266Sopenharmony_ci"\n"
361613498266Sopenharmony_ci"              If --noproxy is provided several times, the last  set  value  is\n"
361713498266Sopenharmony_ci"              used.\n"
361813498266Sopenharmony_ci"\n"
361913498266Sopenharmony_ci"              Example:\n"
362013498266Sopenharmony_ci"               curl --noproxy \"www.example\" https://example.com\n"
362113498266Sopenharmony_ci"\n"
362213498266Sopenharmony_ci"              See also -x, --proxy.\n"
362313498266Sopenharmony_ci"\n"
362413498266Sopenharmony_ci"       --ntlm-wb\n"
362513498266Sopenharmony_ci, stdout);
362613498266Sopenharmony_ci fputs(
362713498266Sopenharmony_ci"              (HTTP) Enables NTLM much in the style --ntlm does, but hand over\n"
362813498266Sopenharmony_ci"              the authentication to the separate binary \"ntlmauth\" application\n"
362913498266Sopenharmony_ci"              that is executed when needed.\n"
363013498266Sopenharmony_ci"\n"
363113498266Sopenharmony_ci"              Providing --ntlm-wb multiple times has no extra effect.\n"
363213498266Sopenharmony_ci"\n"
363313498266Sopenharmony_ci"              Example:\n"
363413498266Sopenharmony_ci"               curl --ntlm-wb -u user:password https://example.com\n"
363513498266Sopenharmony_ci"\n"
363613498266Sopenharmony_ci"              See also --ntlm and --proxy-ntlm.\n"
363713498266Sopenharmony_ci"\n"
363813498266Sopenharmony_ci"       --ntlm (HTTP)  Enables  NTLM  authentication.  The  NTLM authentication\n"
363913498266Sopenharmony_ci, stdout);
364013498266Sopenharmony_ci fputs(
364113498266Sopenharmony_ci"              method was designed by Microsoft and is used by IIS web servers.\n"
364213498266Sopenharmony_ci"              It is a proprietary protocol, reverse-engineered by clever  peo-\n"
364313498266Sopenharmony_ci"              ple and implemented in curl based on their efforts. This kind of\n"
364413498266Sopenharmony_ci"              behavior  should  not be endorsed, you should encourage everyone\n"
364513498266Sopenharmony_ci"              who uses NTLM to switch to a public and  documented  authentica-\n"
364613498266Sopenharmony_ci"              tion method instead, such as Digest.\n"
364713498266Sopenharmony_ci"\n"
364813498266Sopenharmony_ci, stdout);
364913498266Sopenharmony_ci fputs(
365013498266Sopenharmony_ci"              If  you  want to enable NTLM for your proxy authentication, then\n"
365113498266Sopenharmony_ci"              use --proxy-ntlm.\n"
365213498266Sopenharmony_ci"\n"
365313498266Sopenharmony_ci"              Providing --ntlm multiple times has no extra effect.\n"
365413498266Sopenharmony_ci"\n"
365513498266Sopenharmony_ci"              Example:\n"
365613498266Sopenharmony_ci"               curl --ntlm -u user:password https://example.com\n"
365713498266Sopenharmony_ci"\n"
365813498266Sopenharmony_ci"              See also  --proxy-ntlm.  --ntlm  requires  that  the  underlying\n"
365913498266Sopenharmony_ci"              libcurl was built to support TLS. This option is mutually exclu-\n"
366013498266Sopenharmony_ci"              sive to --basic and --negotiate and --digest and --anyauth.\n"
366113498266Sopenharmony_ci, stdout);
366213498266Sopenharmony_ci fputs(
366313498266Sopenharmony_ci"\n"
366413498266Sopenharmony_ci"       --oauth2-bearer <token>\n"
366513498266Sopenharmony_ci"              (IMAP  LDAP  POP3  SMTP HTTP) Specify the Bearer Token for OAUTH\n"
366613498266Sopenharmony_ci"              2.0 server authentication. The Bearer Token is used in  conjunc-\n"
366713498266Sopenharmony_ci"              tion  with  the  user name which can be specified as part of the\n"
366813498266Sopenharmony_ci"              --url or -u, --user options.\n"
366913498266Sopenharmony_ci"\n"
367013498266Sopenharmony_ci"              The Bearer Token and user name are formatted  according  to  RFC\n"
367113498266Sopenharmony_ci"              6750.\n"
367213498266Sopenharmony_ci"\n"
367313498266Sopenharmony_ci"              If --oauth2-bearer is provided several times, the last set value\n"
367413498266Sopenharmony_ci, stdout);
367513498266Sopenharmony_ci fputs(
367613498266Sopenharmony_ci"              is used.\n"
367713498266Sopenharmony_ci"              Example:\n"
367813498266Sopenharmony_ci"               curl --oauth2-bearer \"mF_9.B5f-4.1JqM\" https://example.com\n"
367913498266Sopenharmony_ci"\n"
368013498266Sopenharmony_ci"              See also --basic, --ntlm and --digest.\n"
368113498266Sopenharmony_ci"\n"
368213498266Sopenharmony_ci"       --output-dir <dir>\n"
368313498266Sopenharmony_ci"              This  option  specifies  the  directory in which files should be\n"
368413498266Sopenharmony_ci"              stored, when -O, --remote-name or -o, --output are used.\n"
368513498266Sopenharmony_ci"\n"
368613498266Sopenharmony_ci"              The given output directory is used for all URLs and  output  op-\n"
368713498266Sopenharmony_ci, stdout);
368813498266Sopenharmony_ci fputs(
368913498266Sopenharmony_ci"              tions on the command line, up until the first -:, --next.\n"
369013498266Sopenharmony_ci"\n"
369113498266Sopenharmony_ci"              If  the specified target directory does not exist, the operation\n"
369213498266Sopenharmony_ci"              fails unless --create-dirs is also used.\n"
369313498266Sopenharmony_ci"\n"
369413498266Sopenharmony_ci"              If --output-dir is provided several times, the last set value is\n"
369513498266Sopenharmony_ci"              used.\n"
369613498266Sopenharmony_ci"\n"
369713498266Sopenharmony_ci"              Example:\n"
369813498266Sopenharmony_ci"               curl --output-dir \"tmp\" -O https://example.com\n"
369913498266Sopenharmony_ci"\n"
370013498266Sopenharmony_ci"              See also -O, --remote-name and -J,  --remote-header-name.  Added\n"
370113498266Sopenharmony_ci"              in 7.73.0.\n"
370213498266Sopenharmony_ci"\n"
370313498266Sopenharmony_ci, stdout);
370413498266Sopenharmony_ci fputs(
370513498266Sopenharmony_ci"       -o, --output <file>\n"
370613498266Sopenharmony_ci"              Write output to <file> instead of stdout. If you are using {} or\n"
370713498266Sopenharmony_ci"              [] to fetch multiple documents, you should quote the URL and you\n"
370813498266Sopenharmony_ci"              can  use  '#' followed by a number in the <file> specifier. That\n"
370913498266Sopenharmony_ci"              variable is replaced with the current string for the  URL  being\n"
371013498266Sopenharmony_ci"              fetched. Like in:\n"
371113498266Sopenharmony_ci"\n"
371213498266Sopenharmony_ci"              curl \"http://{one,two}.example.com\" -o \"file_#1.txt\"\n"
371313498266Sopenharmony_ci"\n"
371413498266Sopenharmony_ci"              or use several variables like:\n"
371513498266Sopenharmony_ci"\n"
371613498266Sopenharmony_ci, stdout);
371713498266Sopenharmony_ci fputs(
371813498266Sopenharmony_ci"              curl \"http://{site,host}.host[1-5].example\" -o \"#1_#2\"\n"
371913498266Sopenharmony_ci"\n"
372013498266Sopenharmony_ci"              You  may use this option as many times as the number of URLs you\n"
372113498266Sopenharmony_ci"              have. For example, if you specify two URLs on the  same  command\n"
372213498266Sopenharmony_ci"              line, you can use it like this:\n"
372313498266Sopenharmony_ci"\n"
372413498266Sopenharmony_ci"              curl -o aa example.com -o bb example.net\n"
372513498266Sopenharmony_ci"\n"
372613498266Sopenharmony_ci"              and  the  order  of the -o options and the URLs does not matter,\n"
372713498266Sopenharmony_ci"              just that the first -o is for the first URL and so  on,  so  the\n"
372813498266Sopenharmony_ci, stdout);
372913498266Sopenharmony_ci fputs(
373013498266Sopenharmony_ci"              above command line can also be written as\n"
373113498266Sopenharmony_ci"\n"
373213498266Sopenharmony_ci"              curl example.com example.net -o aa -o bb\n"
373313498266Sopenharmony_ci"\n"
373413498266Sopenharmony_ci"              See  also  the --create-dirs option to create the local directo-\n"
373513498266Sopenharmony_ci"              ries dynamically. Specifying the output as '-' (a  single  dash)\n"
373613498266Sopenharmony_ci"              passes the output to stdout.\n"
373713498266Sopenharmony_ci"\n"
373813498266Sopenharmony_ci"              To   suppress  response  bodies,  you  can  redirect  output  to\n"
373913498266Sopenharmony_ci"              /dev/null:\n"
374013498266Sopenharmony_ci"\n"
374113498266Sopenharmony_ci"              curl example.com -o /dev/null\n"
374213498266Sopenharmony_ci"\n"
374313498266Sopenharmony_ci"              Or for Windows:\n"
374413498266Sopenharmony_ci"\n"
374513498266Sopenharmony_ci, stdout);
374613498266Sopenharmony_ci fputs(
374713498266Sopenharmony_ci"              curl example.com -o nul\n"
374813498266Sopenharmony_ci"\n"
374913498266Sopenharmony_ci"              --output can be used several times in a command line\n"
375013498266Sopenharmony_ci"\n"
375113498266Sopenharmony_ci"              Examples:\n"
375213498266Sopenharmony_ci"               curl -o file https://example.com\n"
375313498266Sopenharmony_ci"               curl \"http://{one,two}.example.com\" -o \"file_#1.txt\"\n"
375413498266Sopenharmony_ci"               curl \"http://{site,host}.host[1-5].example\" -o \"#1_#2\"\n"
375513498266Sopenharmony_ci"               curl -o file https://example.com -o file2 https://example.net\n"
375613498266Sopenharmony_ci"\n"
375713498266Sopenharmony_ci"              See also -O,  --remote-name,  --remote-name-all  and  -J,  --re-\n"
375813498266Sopenharmony_ci, stdout);
375913498266Sopenharmony_ci fputs(
376013498266Sopenharmony_ci"              mote-header-name.\n"
376113498266Sopenharmony_ci"\n"
376213498266Sopenharmony_ci"       --parallel-immediate\n"
376313498266Sopenharmony_ci"              When  doing  parallel transfers, this option instructs curl that\n"
376413498266Sopenharmony_ci"              it should rather prefer opening up more connections in  parallel\n"
376513498266Sopenharmony_ci"              at once rather than waiting to see if new transfers can be added\n"
376613498266Sopenharmony_ci"              as multiplexed streams on another connection.\n"
376713498266Sopenharmony_ci"\n"
376813498266Sopenharmony_ci"              This option is global and does not need to be specified for each\n"
376913498266Sopenharmony_ci"              use of --next.\n"
377013498266Sopenharmony_ci"\n"
377113498266Sopenharmony_ci, stdout);
377213498266Sopenharmony_ci fputs(
377313498266Sopenharmony_ci"              Providing  --parallel-immediate  multiple times has no extra ef-\n"
377413498266Sopenharmony_ci"              fect.  Disable it again with --no-parallel-immediate.\n"
377513498266Sopenharmony_ci"\n"
377613498266Sopenharmony_ci"              Example:\n"
377713498266Sopenharmony_ci"               curl --parallel-immediate -Z https://example.com -o file1 https://example.com -o file2\n"
377813498266Sopenharmony_ci"\n"
377913498266Sopenharmony_ci"              See also -Z, --parallel and --parallel-max. Added in 7.68.0.\n"
378013498266Sopenharmony_ci"\n"
378113498266Sopenharmony_ci"       --parallel-max <num>\n"
378213498266Sopenharmony_ci"              When asked to do parallel transfers, using -Z, --parallel,  this\n"
378313498266Sopenharmony_ci, stdout);
378413498266Sopenharmony_ci fputs(
378513498266Sopenharmony_ci"              option controls the maximum amount of transfers to do simultane-\n"
378613498266Sopenharmony_ci"              ously.\n"
378713498266Sopenharmony_ci"\n"
378813498266Sopenharmony_ci"              This option is global and does not need to be specified for each\n"
378913498266Sopenharmony_ci"              use of -:, --next.\n"
379013498266Sopenharmony_ci"              The default is 50.\n"
379113498266Sopenharmony_ci"\n"
379213498266Sopenharmony_ci"              If  --parallel-max is provided several times, the last set value\n"
379313498266Sopenharmony_ci"              is used.\n"
379413498266Sopenharmony_ci"              Example:\n"
379513498266Sopenharmony_ci"               curl --parallel-max 100 -Z https://example.com ftp://example.com/\n"
379613498266Sopenharmony_ci"\n"
379713498266Sopenharmony_ci, stdout);
379813498266Sopenharmony_ci fputs(
379913498266Sopenharmony_ci"              See also -Z, --parallel. Added in 7.66.0.\n"
380013498266Sopenharmony_ci"\n"
380113498266Sopenharmony_ci"       -Z, --parallel\n"
380213498266Sopenharmony_ci"              Makes curl perform its transfers in parallel as compared to  the\n"
380313498266Sopenharmony_ci"              regular serial manner.\n"
380413498266Sopenharmony_ci"\n"
380513498266Sopenharmony_ci"              This option is global and does not need to be specified for each\n"
380613498266Sopenharmony_ci"              use of --next.\n"
380713498266Sopenharmony_ci"\n"
380813498266Sopenharmony_ci"              Providing  --parallel  multiple times has no extra effect.  Dis-\n"
380913498266Sopenharmony_ci"              able it again with --no-parallel.\n"
381013498266Sopenharmony_ci"\n"
381113498266Sopenharmony_ci"              Example:\n"
381213498266Sopenharmony_ci, stdout);
381313498266Sopenharmony_ci fputs(
381413498266Sopenharmony_ci"               curl --parallel https://example.com -o file1 https://example.com -o file2\n"
381513498266Sopenharmony_ci"\n"
381613498266Sopenharmony_ci"              See also -:, --next and -v, --verbose. Added in 7.66.0.\n"
381713498266Sopenharmony_ci"\n"
381813498266Sopenharmony_ci"       --pass <phrase>\n"
381913498266Sopenharmony_ci"              (SSH TLS) Passphrase for the private key.\n"
382013498266Sopenharmony_ci"\n"
382113498266Sopenharmony_ci"              If --pass is provided several times, the last set value is used.\n"
382213498266Sopenharmony_ci"\n"
382313498266Sopenharmony_ci"              Example:\n"
382413498266Sopenharmony_ci"               curl --pass secret --key file https://example.com\n"
382513498266Sopenharmony_ci"\n"
382613498266Sopenharmony_ci"              See also --key and -u, --user.\n"
382713498266Sopenharmony_ci"\n"
382813498266Sopenharmony_ci"       --path-as-is\n"
382913498266Sopenharmony_ci, stdout);
383013498266Sopenharmony_ci fputs(
383113498266Sopenharmony_ci"              Tell curl to not handle sequences of /../ or /./  in  the  given\n"
383213498266Sopenharmony_ci"              URL  path.  Normally  curl  squashes or merges them according to\n"
383313498266Sopenharmony_ci"              standards but with this option set you tell it not to do that.\n"
383413498266Sopenharmony_ci"\n"
383513498266Sopenharmony_ci"              Providing --path-as-is multiple times has no extra effect.  Dis-\n"
383613498266Sopenharmony_ci"              able it again with --no-path-as-is.\n"
383713498266Sopenharmony_ci"\n"
383813498266Sopenharmony_ci"              Example:\n"
383913498266Sopenharmony_ci"               curl --path-as-is https://example.com/../../etc/passwd\n"
384013498266Sopenharmony_ci"\n"
384113498266Sopenharmony_ci, stdout);
384213498266Sopenharmony_ci fputs(
384313498266Sopenharmony_ci"              See also --request-target.\n"
384413498266Sopenharmony_ci"\n"
384513498266Sopenharmony_ci"       --pinnedpubkey <hashes>\n"
384613498266Sopenharmony_ci"              (TLS) Tells curl to  use  the  specified  public  key  file  (or\n"
384713498266Sopenharmony_ci"              hashes)  to  verify the peer. This can be a path to a file which\n"
384813498266Sopenharmony_ci"              contains a single public key in PEM or DER format, or any number\n"
384913498266Sopenharmony_ci"              of base64 encoded sha256 hashes preceded by 'sha256//' and sepa-\n"
385013498266Sopenharmony_ci"              rated by ';'.\n"
385113498266Sopenharmony_ci"\n"
385213498266Sopenharmony_ci"              When negotiating a TLS or SSL connection,  the  server  sends  a\n"
385313498266Sopenharmony_ci, stdout);
385413498266Sopenharmony_ci fputs(
385513498266Sopenharmony_ci"              certificate  indicating  its identity. A public key is extracted\n"
385613498266Sopenharmony_ci"              from this certificate and if it does not exactly match the  pub-\n"
385713498266Sopenharmony_ci"              lic  key provided to this option, curl aborts the connection be-\n"
385813498266Sopenharmony_ci"              fore sending or receiving any data.\n"
385913498266Sopenharmony_ci"\n"
386013498266Sopenharmony_ci"              This option is independent of option -k, --insecure. If you  use\n"
386113498266Sopenharmony_ci"              both  options together then the peer is still verified by public\n"
386213498266Sopenharmony_ci"              key.\n"
386313498266Sopenharmony_ci"\n"
386413498266Sopenharmony_ci"              PEM/DER support:\n"
386513498266Sopenharmony_ci"\n"
386613498266Sopenharmony_ci, stdout);
386713498266Sopenharmony_ci fputs(
386813498266Sopenharmony_ci"              OpenSSL and GnuTLS, wolfSSL (added in 7.43.0), mbedTLS ,  Secure\n"
386913498266Sopenharmony_ci"              Transport macOS 10.7+/iOS 10+ (7.54.1), Schannel (7.58.1)\n"
387013498266Sopenharmony_ci"\n"
387113498266Sopenharmony_ci"              sha256 support:\n"
387213498266Sopenharmony_ci"\n"
387313498266Sopenharmony_ci"              OpenSSL,  GnuTLS  and wolfSSL, mbedTLS (added in 7.47.0), Secure\n"
387413498266Sopenharmony_ci"              Transport macOS 10.7+/iOS 10+ (7.54.1), Schannel (7.58.1)\n"
387513498266Sopenharmony_ci"\n"
387613498266Sopenharmony_ci"              Other SSL backends not supported.\n"
387713498266Sopenharmony_ci"\n"
387813498266Sopenharmony_ci"              If --pinnedpubkey is provided several times, the last set  value\n"
387913498266Sopenharmony_ci"              is used.\n"
388013498266Sopenharmony_ci"\n"
388113498266Sopenharmony_ci, stdout);
388213498266Sopenharmony_ci fputs(
388313498266Sopenharmony_ci"              Examples:\n"
388413498266Sopenharmony_ci"               curl --pinnedpubkey keyfile https://example.com\n"
388513498266Sopenharmony_ci"               curl --pinnedpubkey 'sha256//ce118b51897f4452dc' https://example.com\n"
388613498266Sopenharmony_ci"\n"
388713498266Sopenharmony_ci"              See also --hostpubsha256.\n"
388813498266Sopenharmony_ci"\n"
388913498266Sopenharmony_ci"       --post301\n"
389013498266Sopenharmony_ci"              (HTTP) Tells curl to respect RFC 7231/6.4.2 and not convert POST\n"
389113498266Sopenharmony_ci"              requests into GET requests when following a 301 redirection. The\n"
389213498266Sopenharmony_ci"              non-RFC behavior is ubiquitous in web browsers, so curl does the\n"
389313498266Sopenharmony_ci, stdout);
389413498266Sopenharmony_ci fputs(
389513498266Sopenharmony_ci"              conversion by default to maintain consistency. However, a server\n"
389613498266Sopenharmony_ci"              may  require  a  POST to remain a POST after such a redirection.\n"
389713498266Sopenharmony_ci"              This option is meaningful only when using -L, --location.\n"
389813498266Sopenharmony_ci"\n"
389913498266Sopenharmony_ci"              Providing --post301 multiple times has no extra effect.  Disable\n"
390013498266Sopenharmony_ci"              it again with --no-post301.\n"
390113498266Sopenharmony_ci"\n"
390213498266Sopenharmony_ci"              Example:\n"
390313498266Sopenharmony_ci"               curl --post301 --location -d \"data\" https://example.com\n"
390413498266Sopenharmony_ci"\n"
390513498266Sopenharmony_ci, stdout);
390613498266Sopenharmony_ci fputs(
390713498266Sopenharmony_ci"              See also --post302, --post303 and -L, --location.\n"
390813498266Sopenharmony_ci"\n"
390913498266Sopenharmony_ci"       --post302\n"
391013498266Sopenharmony_ci"              (HTTP) Tells curl to respect RFC 7231/6.4.3 and not convert POST\n"
391113498266Sopenharmony_ci"              requests into GET requests when following a 302 redirection. The\n"
391213498266Sopenharmony_ci"              non-RFC behavior is ubiquitous in web browsers, so curl does the\n"
391313498266Sopenharmony_ci"              conversion by default to maintain consistency. However, a server\n"
391413498266Sopenharmony_ci"              may require a POST to remain a POST after  such  a  redirection.\n"
391513498266Sopenharmony_ci, stdout);
391613498266Sopenharmony_ci fputs(
391713498266Sopenharmony_ci"              This option is meaningful only when using -L, --location.\n"
391813498266Sopenharmony_ci"\n"
391913498266Sopenharmony_ci"              Providing --post302 multiple times has no extra effect.  Disable\n"
392013498266Sopenharmony_ci"              it again with --no-post302.\n"
392113498266Sopenharmony_ci"\n"
392213498266Sopenharmony_ci"              Example:\n"
392313498266Sopenharmony_ci"               curl --post302 --location -d \"data\" https://example.com\n"
392413498266Sopenharmony_ci"\n"
392513498266Sopenharmony_ci"              See also --post301, --post303 and -L, --location.\n"
392613498266Sopenharmony_ci"\n"
392713498266Sopenharmony_ci"       --post303\n"
392813498266Sopenharmony_ci"              (HTTP) Tells curl to violate RFC 7231/6.4.4 and not convert POST\n"
392913498266Sopenharmony_ci, stdout);
393013498266Sopenharmony_ci fputs(
393113498266Sopenharmony_ci"              requests  into  GET  requests when following 303 redirections. A\n"
393213498266Sopenharmony_ci"              server may require a POST to remain a POST after a 303  redirec-\n"
393313498266Sopenharmony_ci"              tion. This option is meaningful only when using -L, --location.\n"
393413498266Sopenharmony_ci"\n"
393513498266Sopenharmony_ci"              Providing --post303 multiple times has no extra effect.  Disable\n"
393613498266Sopenharmony_ci"              it again with --no-post303.\n"
393713498266Sopenharmony_ci"\n"
393813498266Sopenharmony_ci"              Example:\n"
393913498266Sopenharmony_ci"               curl --post303 --location -d \"data\" https://example.com\n"
394013498266Sopenharmony_ci"\n"
394113498266Sopenharmony_ci, stdout);
394213498266Sopenharmony_ci fputs(
394313498266Sopenharmony_ci"              See also --post302, --post301 and -L, --location.\n"
394413498266Sopenharmony_ci"\n"
394513498266Sopenharmony_ci"       --preproxy [protocol://]host[:port]\n"
394613498266Sopenharmony_ci"              Use  the  specified  SOCKS proxy before connecting to an HTTP or\n"
394713498266Sopenharmony_ci"              HTTPS -x, --proxy. In such a case curl  first  connects  to  the\n"
394813498266Sopenharmony_ci"              SOCKS  proxy  and  then  connects (through SOCKS) to the HTTP or\n"
394913498266Sopenharmony_ci"              HTTPS proxy. Hence pre proxy.\n"
395013498266Sopenharmony_ci"\n"
395113498266Sopenharmony_ci"              The pre proxy string should be specified with a protocol:// pre-\n"
395213498266Sopenharmony_ci, stdout);
395313498266Sopenharmony_ci fputs(
395413498266Sopenharmony_ci"              fix to  specify  alternative  proxy  protocols.  Use  socks4://,\n"
395513498266Sopenharmony_ci"              socks4a://,  socks5://  or  socks5h://  to  request the specific\n"
395613498266Sopenharmony_ci"              SOCKS version to be used. No protocol specified makes  curl  de-\n"
395713498266Sopenharmony_ci"              fault to SOCKS4.\n"
395813498266Sopenharmony_ci"\n"
395913498266Sopenharmony_ci"              If  the  port number is not specified in the proxy string, it is\n"
396013498266Sopenharmony_ci"              assumed to be 1080.\n"
396113498266Sopenharmony_ci"\n"
396213498266Sopenharmony_ci"              User and password that might be provided in the proxy string are\n"
396313498266Sopenharmony_ci, stdout);
396413498266Sopenharmony_ci fputs(
396513498266Sopenharmony_ci"              URL decoded by curl. This allows you to pass in special  charac-\n"
396613498266Sopenharmony_ci"              ters such as @ by using %40 or pass in a colon with %3a.\n"
396713498266Sopenharmony_ci"\n"
396813498266Sopenharmony_ci"              If  --preproxy  is provided several times, the last set value is\n"
396913498266Sopenharmony_ci"              used.\n"
397013498266Sopenharmony_ci"\n"
397113498266Sopenharmony_ci"              Example:\n"
397213498266Sopenharmony_ci"               curl --preproxy socks5://proxy.example -x http://http.example https://example.com\n"
397313498266Sopenharmony_ci"\n"
397413498266Sopenharmony_ci"              See also -x, --proxy and --socks5. Added in 7.52.0.\n"
397513498266Sopenharmony_ci"\n"
397613498266Sopenharmony_ci"       -#, --progress-bar\n"
397713498266Sopenharmony_ci, stdout);
397813498266Sopenharmony_ci fputs(
397913498266Sopenharmony_ci"              Make curl display transfer progress as a simple progress bar in-\n"
398013498266Sopenharmony_ci"              stead of the standard, more informational, meter.\n"
398113498266Sopenharmony_ci"\n"
398213498266Sopenharmony_ci"              This progress bar draws a single line of '#'  characters  across\n"
398313498266Sopenharmony_ci"              the screen and shows a percentage if the transfer size is known.\n"
398413498266Sopenharmony_ci"              For  transfers  without  a  known  size,  there  is a space ship\n"
398513498266Sopenharmony_ci"              (-=o=-) that moves back and forth but only while data  is  being\n"
398613498266Sopenharmony_ci, stdout);
398713498266Sopenharmony_ci fputs(
398813498266Sopenharmony_ci"              transferred, with a set of flying hash sign symbols on top.\n"
398913498266Sopenharmony_ci"\n"
399013498266Sopenharmony_ci"              This option is global and does not need to be specified for each\n"
399113498266Sopenharmony_ci"              use of --next.\n"
399213498266Sopenharmony_ci"\n"
399313498266Sopenharmony_ci"              Providing  --progress-bar  multiple  times  has no extra effect.\n"
399413498266Sopenharmony_ci"              Disable it again with --no-progress-bar.\n"
399513498266Sopenharmony_ci"\n"
399613498266Sopenharmony_ci"              Example:\n"
399713498266Sopenharmony_ci"               curl -# -O https://example.com\n"
399813498266Sopenharmony_ci"\n"
399913498266Sopenharmony_ci"              See also --styled-output.\n"
400013498266Sopenharmony_ci"\n"
400113498266Sopenharmony_ci"       --proto-default <protocol>\n"
400213498266Sopenharmony_ci, stdout);
400313498266Sopenharmony_ci fputs(
400413498266Sopenharmony_ci"              Tells curl to use protocol for any URL missing a scheme name.\n"
400513498266Sopenharmony_ci"\n"
400613498266Sopenharmony_ci"              An unknown or unsupported  protocol  causes  error  CURLE_UNSUP-\n"
400713498266Sopenharmony_ci"              PORTED_PROTOCOL (1).\n"
400813498266Sopenharmony_ci"\n"
400913498266Sopenharmony_ci"              This option does not change the default proxy protocol (http).\n"
401013498266Sopenharmony_ci"\n"
401113498266Sopenharmony_ci"              Without this option set, curl guesses protocol based on the host\n"
401213498266Sopenharmony_ci"              name, see --url for details.\n"
401313498266Sopenharmony_ci"\n"
401413498266Sopenharmony_ci"              If --proto-default is provided several times, the last set value\n"
401513498266Sopenharmony_ci"              is used.\n"
401613498266Sopenharmony_ci, stdout);
401713498266Sopenharmony_ci fputs(
401813498266Sopenharmony_ci"              Example:\n"
401913498266Sopenharmony_ci"               curl --proto-default https ftp.example.com\n"
402013498266Sopenharmony_ci"\n"
402113498266Sopenharmony_ci"              See also --proto and --proto-redir.\n"
402213498266Sopenharmony_ci"\n"
402313498266Sopenharmony_ci"       --proto-redir <protocols>\n"
402413498266Sopenharmony_ci"              Tells  curl to limit what protocols it may use on redirect. Pro-\n"
402513498266Sopenharmony_ci"              tocols denied by --proto are not overridden by this option.  See\n"
402613498266Sopenharmony_ci"              --proto for how protocols are represented.\n"
402713498266Sopenharmony_ci"\n"
402813498266Sopenharmony_ci"              Example, allow only HTTP and HTTPS on redirect:\n"
402913498266Sopenharmony_ci"\n"
403013498266Sopenharmony_ci, stdout);
403113498266Sopenharmony_ci fputs(
403213498266Sopenharmony_ci"              curl --proto-redir -all,http,https http://example.com\n"
403313498266Sopenharmony_ci"\n"
403413498266Sopenharmony_ci"              By  default  curl only allows HTTP, HTTPS, FTP and FTPS on redi-\n"
403513498266Sopenharmony_ci"              rects (added in 7.65.2). Specifying all or +all enables all pro-\n"
403613498266Sopenharmony_ci"              tocols on redirects, which is not good for security.\n"
403713498266Sopenharmony_ci"\n"
403813498266Sopenharmony_ci"              If --proto-redir is provided several times, the last  set  value\n"
403913498266Sopenharmony_ci"              is used.\n"
404013498266Sopenharmony_ci"              Example:\n"
404113498266Sopenharmony_ci"               curl --proto-redir =http,https https://example.com\n"
404213498266Sopenharmony_ci"\n"
404313498266Sopenharmony_ci, stdout);
404413498266Sopenharmony_ci fputs(
404513498266Sopenharmony_ci"              See also --proto.\n"
404613498266Sopenharmony_ci"\n"
404713498266Sopenharmony_ci"       --proto <protocols>\n"
404813498266Sopenharmony_ci"              Tells  curl  to  limit  what protocols it may use for transfers.\n"
404913498266Sopenharmony_ci"              Protocols are evaluated left to right, are comma separated,  and\n"
405013498266Sopenharmony_ci"              are  each  a protocol name or 'all', optionally prefixed by zero\n"
405113498266Sopenharmony_ci"              or more modifiers. Available modifiers are:\n"
405213498266Sopenharmony_ci"\n"
405313498266Sopenharmony_ci"              +      Permit this protocol in  addition  to  protocols  already\n"
405413498266Sopenharmony_ci, stdout);
405513498266Sopenharmony_ci fputs(
405613498266Sopenharmony_ci"                     permitted (this is the default if no modifier is used).\n"
405713498266Sopenharmony_ci"\n"
405813498266Sopenharmony_ci"              -      Deny  this  protocol, removing it from the list of proto-\n"
405913498266Sopenharmony_ci"                     cols already permitted.\n"
406013498266Sopenharmony_ci"\n"
406113498266Sopenharmony_ci"              =      Permit only this protocol (ignoring the list already per-\n"
406213498266Sopenharmony_ci"                     mitted), though subject to later modification  by  subse-\n"
406313498266Sopenharmony_ci"                     quent entries in the comma separated list.\n"
406413498266Sopenharmony_ci"\n"
406513498266Sopenharmony_ci, stdout);
406613498266Sopenharmony_ci fputs(
406713498266Sopenharmony_ci"              For  example: --proto -ftps uses the default protocols, but dis-\n"
406813498266Sopenharmony_ci"              ables ftps\n"
406913498266Sopenharmony_ci"\n"
407013498266Sopenharmony_ci"              --proto -all,https,+http only enables http and https\n"
407113498266Sopenharmony_ci"              --proto =http,https also only enables http and https\n"
407213498266Sopenharmony_ci"\n"
407313498266Sopenharmony_ci"              Unknown and disabled protocols produce a  warning.  This  allows\n"
407413498266Sopenharmony_ci"              scripts to safely rely on being able to disable potentially dan-\n"
407513498266Sopenharmony_ci"              gerous protocols, without relying upon support for that protocol\n"
407613498266Sopenharmony_ci, stdout);
407713498266Sopenharmony_ci fputs(
407813498266Sopenharmony_ci"              being built into curl to avoid an error.\n"
407913498266Sopenharmony_ci"\n"
408013498266Sopenharmony_ci"              This option can be used multiple times, in which case the effect\n"
408113498266Sopenharmony_ci"              is  the same as concatenating the protocols into one instance of\n"
408213498266Sopenharmony_ci"              the option.\n"
408313498266Sopenharmony_ci"\n"
408413498266Sopenharmony_ci"              If --proto is provided several times,  the  last  set  value  is\n"
408513498266Sopenharmony_ci"              used.\n"
408613498266Sopenharmony_ci"\n"
408713498266Sopenharmony_ci"              Example:\n"
408813498266Sopenharmony_ci"               curl --proto =http,https,sftp https://example.com\n"
408913498266Sopenharmony_ci"\n"
409013498266Sopenharmony_ci"              See also --proto-redir and --proto-default.\n"
409113498266Sopenharmony_ci"\n"
409213498266Sopenharmony_ci, stdout);
409313498266Sopenharmony_ci fputs(
409413498266Sopenharmony_ci"       --proxy-anyauth\n"
409513498266Sopenharmony_ci"              Tells  curl to pick a suitable authentication method when commu-\n"
409613498266Sopenharmony_ci"              nicating with the given HTTP proxy. This might  cause  an  extra\n"
409713498266Sopenharmony_ci"              request/response round-trip.\n"
409813498266Sopenharmony_ci"\n"
409913498266Sopenharmony_ci"              Providing --proxy-anyauth multiple times has no extra effect.\n"
410013498266Sopenharmony_ci"\n"
410113498266Sopenharmony_ci"              Example:\n"
410213498266Sopenharmony_ci"               curl --proxy-anyauth --proxy-user user:passwd -x proxy https://example.com\n"
410313498266Sopenharmony_ci"\n"
410413498266Sopenharmony_ci"              See also -x, --proxy, --proxy-basic and --proxy-digest.\n"
410513498266Sopenharmony_ci"\n"
410613498266Sopenharmony_ci, stdout);
410713498266Sopenharmony_ci fputs(
410813498266Sopenharmony_ci"       --proxy-basic\n"
410913498266Sopenharmony_ci"              Tells  curl  to use HTTP Basic authentication when communicating\n"
411013498266Sopenharmony_ci"              with the given proxy. Use --basic for enabling HTTP Basic with a\n"
411113498266Sopenharmony_ci"              remote host. Basic is the  default  authentication  method  curl\n"
411213498266Sopenharmony_ci"              uses with proxies.\n"
411313498266Sopenharmony_ci"\n"
411413498266Sopenharmony_ci"              Providing --proxy-basic multiple times has no extra effect.\n"
411513498266Sopenharmony_ci"\n"
411613498266Sopenharmony_ci"              Example:\n"
411713498266Sopenharmony_ci"               curl --proxy-basic --proxy-user user:passwd -x proxy https://example.com\n"
411813498266Sopenharmony_ci"\n"
411913498266Sopenharmony_ci, stdout);
412013498266Sopenharmony_ci fputs(
412113498266Sopenharmony_ci"              See also -x, --proxy, --proxy-anyauth and --proxy-digest.\n"
412213498266Sopenharmony_ci"\n"
412313498266Sopenharmony_ci"       --proxy-ca-native\n"
412413498266Sopenharmony_ci"              (TLS)  Tells  curl to use the CA store from the native operating\n"
412513498266Sopenharmony_ci"              system to verify the HTTPS proxy. By default,  curl  uses  a  CA\n"
412613498266Sopenharmony_ci"              store  provided  in  a  single file or directory, but when using\n"
412713498266Sopenharmony_ci"              this option it interfaces the operating system's own vault.\n"
412813498266Sopenharmony_ci"\n"
412913498266Sopenharmony_ci"              This option works for curl on Windows when built to use OpenSSL,\n"
413013498266Sopenharmony_ci, stdout);
413113498266Sopenharmony_ci fputs(
413213498266Sopenharmony_ci"              wolfSSL (added in 8.3.0) or GnuTLS (added in 8.5.0).  When  curl\n"
413313498266Sopenharmony_ci"              on Windows is built to use Schannel, this feature is implied and\n"
413413498266Sopenharmony_ci"              curl then only uses the native CA store.\n"
413513498266Sopenharmony_ci"\n"
413613498266Sopenharmony_ci"              Providing  --proxy-ca-native multiple times has no extra effect.\n"
413713498266Sopenharmony_ci"              Disable it again with --no-proxy-ca-native.\n"
413813498266Sopenharmony_ci"\n"
413913498266Sopenharmony_ci"              Example:\n"
414013498266Sopenharmony_ci"               curl --ca-native https://example.com\n"
414113498266Sopenharmony_ci"\n"
414213498266Sopenharmony_ci, stdout);
414313498266Sopenharmony_ci fputs(
414413498266Sopenharmony_ci"              See also --cacert, --capath and -k, --insecure. Added in 8.2.0.\n"
414513498266Sopenharmony_ci"\n"
414613498266Sopenharmony_ci"       --proxy-cacert <file>\n"
414713498266Sopenharmony_ci"              Same as --cacert but used in HTTPS proxy context.\n"
414813498266Sopenharmony_ci"\n"
414913498266Sopenharmony_ci"              If --proxy-cacert is provided several times, the last set  value\n"
415013498266Sopenharmony_ci"              is used.\n"
415113498266Sopenharmony_ci"              Example:\n"
415213498266Sopenharmony_ci"               curl --proxy-cacert CA-file.txt -x https://proxy https://example.com\n"
415313498266Sopenharmony_ci"\n"
415413498266Sopenharmony_ci"              See  also  --proxy-capath,  --cacert,  --capath and -x, --proxy.\n"
415513498266Sopenharmony_ci"              Added in 7.52.0.\n"
415613498266Sopenharmony_ci"\n"
415713498266Sopenharmony_ci, stdout);
415813498266Sopenharmony_ci fputs(
415913498266Sopenharmony_ci"       --proxy-capath <dir>\n"
416013498266Sopenharmony_ci"              Same as --capath but used in HTTPS proxy context.\n"
416113498266Sopenharmony_ci"\n"
416213498266Sopenharmony_ci"              If --proxy-capath is provided several times, the last set  value\n"
416313498266Sopenharmony_ci"              is used.\n"
416413498266Sopenharmony_ci"              Example:\n"
416513498266Sopenharmony_ci"               curl --proxy-capath /local/directory -x https://proxy https://example.com\n"
416613498266Sopenharmony_ci"\n"
416713498266Sopenharmony_ci"              See  also  --proxy-cacert,  -x,  --proxy  and --capath. Added in\n"
416813498266Sopenharmony_ci"              7.52.0.\n"
416913498266Sopenharmony_ci"\n"
417013498266Sopenharmony_ci"       --proxy-cert-type <type>\n"
417113498266Sopenharmony_ci, stdout);
417213498266Sopenharmony_ci fputs(
417313498266Sopenharmony_ci"              Same as --cert-type but used in HTTPS proxy context.\n"
417413498266Sopenharmony_ci"\n"
417513498266Sopenharmony_ci"              If --proxy-cert-type is provided several  times,  the  last  set\n"
417613498266Sopenharmony_ci"              value is used.\n"
417713498266Sopenharmony_ci"\n"
417813498266Sopenharmony_ci"              Example:\n"
417913498266Sopenharmony_ci"               curl --proxy-cert-type PEM --proxy-cert file -x https://proxy https://example.com\n"
418013498266Sopenharmony_ci"\n"
418113498266Sopenharmony_ci"              See also --proxy-cert. Added in 7.52.0.\n"
418213498266Sopenharmony_ci"\n"
418313498266Sopenharmony_ci"       --proxy-cert <cert[:passwd]>\n"
418413498266Sopenharmony_ci"              Same as -E, --cert but used in HTTPS proxy context.\n"
418513498266Sopenharmony_ci"\n"
418613498266Sopenharmony_ci, stdout);
418713498266Sopenharmony_ci fputs(
418813498266Sopenharmony_ci"              If --proxy-cert is provided several times, the last set value is\n"
418913498266Sopenharmony_ci"              used.\n"
419013498266Sopenharmony_ci"\n"
419113498266Sopenharmony_ci"              Example:\n"
419213498266Sopenharmony_ci"               curl --proxy-cert file -x https://proxy https://example.com\n"
419313498266Sopenharmony_ci"\n"
419413498266Sopenharmony_ci"              See also --proxy-cert-type. Added in 7.52.0.\n"
419513498266Sopenharmony_ci"\n"
419613498266Sopenharmony_ci"       --proxy-ciphers <list>\n"
419713498266Sopenharmony_ci"              Same as --ciphers but used in HTTPS proxy context.\n"
419813498266Sopenharmony_ci"\n"
419913498266Sopenharmony_ci"              Specifies  which  ciphers  to use in the connection to the HTTPS\n"
420013498266Sopenharmony_ci, stdout);
420113498266Sopenharmony_ci fputs(
420213498266Sopenharmony_ci"              proxy. The list of ciphers must specify valid ciphers.  Read  up\n"
420313498266Sopenharmony_ci"              on SSL cipher list details on this URL:\n"
420413498266Sopenharmony_ci"\n"
420513498266Sopenharmony_ci"              https://curl.se/docs/ssl-ciphers.html\n"
420613498266Sopenharmony_ci"\n"
420713498266Sopenharmony_ci"              If --proxy-ciphers is provided several times, the last set value\n"
420813498266Sopenharmony_ci"              is used.\n"
420913498266Sopenharmony_ci"              Example:\n"
421013498266Sopenharmony_ci"               curl --proxy-ciphers ECDHE-ECDSA-AES256-CCM8 -x https://proxy https://example.com\n"
421113498266Sopenharmony_ci"\n"
421213498266Sopenharmony_ci"              See also --ciphers, --curves and -x, --proxy. Added in 7.52.0.\n"
421313498266Sopenharmony_ci"\n"
421413498266Sopenharmony_ci, stdout);
421513498266Sopenharmony_ci fputs(
421613498266Sopenharmony_ci"       --proxy-crlfile <file>\n"
421713498266Sopenharmony_ci"              Same as --crlfile but used in HTTPS proxy context.\n"
421813498266Sopenharmony_ci"\n"
421913498266Sopenharmony_ci"              If --proxy-crlfile is provided several times, the last set value\n"
422013498266Sopenharmony_ci"              is used.\n"
422113498266Sopenharmony_ci"              Example:\n"
422213498266Sopenharmony_ci"               curl --proxy-crlfile rejects.txt -x https://proxy https://example.com\n"
422313498266Sopenharmony_ci"\n"
422413498266Sopenharmony_ci"              See also --crlfile and -x, --proxy. Added in 7.52.0.\n"
422513498266Sopenharmony_ci"\n"
422613498266Sopenharmony_ci"       --proxy-digest\n"
422713498266Sopenharmony_ci"              Tells  curl to use HTTP Digest authentication when communicating\n"
422813498266Sopenharmony_ci, stdout);
422913498266Sopenharmony_ci fputs(
423013498266Sopenharmony_ci"              with the given proxy. Use --digest for enabling HTTP Digest with\n"
423113498266Sopenharmony_ci"              a remote host.\n"
423213498266Sopenharmony_ci"\n"
423313498266Sopenharmony_ci"              Providing --proxy-digest multiple times has no extra effect.\n"
423413498266Sopenharmony_ci"\n"
423513498266Sopenharmony_ci"              Example:\n"
423613498266Sopenharmony_ci"               curl --proxy-digest --proxy-user user:passwd -x proxy https://example.com\n"
423713498266Sopenharmony_ci"\n"
423813498266Sopenharmony_ci"              See also -x, --proxy, --proxy-anyauth and --proxy-basic.\n"
423913498266Sopenharmony_ci"\n"
424013498266Sopenharmony_ci"       --proxy-header <header/@file>\n"
424113498266Sopenharmony_ci"              (HTTP) Extra header to include in the request when sending  HTTP\n"
424213498266Sopenharmony_ci, stdout);
424313498266Sopenharmony_ci fputs(
424413498266Sopenharmony_ci"              to a proxy. You may specify any number of extra headers. This is\n"
424513498266Sopenharmony_ci"              the  equivalent option to -H, --header but is for proxy communi-\n"
424613498266Sopenharmony_ci"              cation only like in CONNECT requests when you  want  a  separate\n"
424713498266Sopenharmony_ci"              header  sent  to  the proxy to what is sent to the actual remote\n"
424813498266Sopenharmony_ci"              host.\n"
424913498266Sopenharmony_ci"\n"
425013498266Sopenharmony_ci"              curl makes sure that each header you add/replace  is  sent  with\n"
425113498266Sopenharmony_ci"              the proper end-of-line marker, you should thus not add that as a\n"
425213498266Sopenharmony_ci, stdout);
425313498266Sopenharmony_ci fputs(
425413498266Sopenharmony_ci"              part  of the header content: do not add newlines or carriage re-\n"
425513498266Sopenharmony_ci"              turns, they only mess things up for you.\n"
425613498266Sopenharmony_ci"\n"
425713498266Sopenharmony_ci"              Headers specified with this option are not included in  requests\n"
425813498266Sopenharmony_ci"              that curl knows are not be sent to a proxy.\n"
425913498266Sopenharmony_ci"\n"
426013498266Sopenharmony_ci"              This  option can take an argument in @filename style, which then\n"
426113498266Sopenharmony_ci"              adds a header for each line in the input file (added in 7.55.0).\n"
426213498266Sopenharmony_ci"              Using @- makes curl read the headers from stdin.\n"
426313498266Sopenharmony_ci"\n"
426413498266Sopenharmony_ci, stdout);
426513498266Sopenharmony_ci fputs(
426613498266Sopenharmony_ci"              This option can be used  multiple  times  to  add/replace/remove\n"
426713498266Sopenharmony_ci"              multiple headers.\n"
426813498266Sopenharmony_ci"\n"
426913498266Sopenharmony_ci"              --proxy-header can be used several times in a command line\n"
427013498266Sopenharmony_ci"\n"
427113498266Sopenharmony_ci"              Examples:\n"
427213498266Sopenharmony_ci"               curl --proxy-header \"X-First-Name: Joe\" -x http://proxy https://example.com\n"
427313498266Sopenharmony_ci"               curl --proxy-header \"User-Agent: surprise\" -x http://proxy https://example.com\n"
427413498266Sopenharmony_ci"               curl --proxy-header \"Host:\" -x http://proxy https://example.com\n"
427513498266Sopenharmony_ci"\n"
427613498266Sopenharmony_ci, stdout);
427713498266Sopenharmony_ci fputs(
427813498266Sopenharmony_ci"              See also -x, --proxy.\n"
427913498266Sopenharmony_ci"\n"
428013498266Sopenharmony_ci"       --proxy-http2\n"
428113498266Sopenharmony_ci"              (HTTP)  Tells curl to try negotiate HTTP version 2 with an HTTPS\n"
428213498266Sopenharmony_ci"              proxy. The proxy might still only offer  HTTP/1  and  then  curl\n"
428313498266Sopenharmony_ci"              sticks to using that version.\n"
428413498266Sopenharmony_ci"\n"
428513498266Sopenharmony_ci"              This has no effect for any other kinds of proxies.\n"
428613498266Sopenharmony_ci"\n"
428713498266Sopenharmony_ci"              Providing  --proxy-http2  multiple  times  has  no extra effect.\n"
428813498266Sopenharmony_ci"              Disable it again with --no-proxy-http2.\n"
428913498266Sopenharmony_ci"\n"
429013498266Sopenharmony_ci"              Example:\n"
429113498266Sopenharmony_ci, stdout);
429213498266Sopenharmony_ci fputs(
429313498266Sopenharmony_ci"               curl --proxy-http2 -x proxy https://example.com\n"
429413498266Sopenharmony_ci"\n"
429513498266Sopenharmony_ci"              See also -x, --proxy. --proxy-http2 requires that the underlying\n"
429613498266Sopenharmony_ci"              libcurl was built to support HTTP/2. Added in 8.1.0.\n"
429713498266Sopenharmony_ci"\n"
429813498266Sopenharmony_ci"       --proxy-insecure\n"
429913498266Sopenharmony_ci"              Same as -k, --insecure but used in HTTPS proxy context.\n"
430013498266Sopenharmony_ci"\n"
430113498266Sopenharmony_ci"              Providing --proxy-insecure multiple times has no  extra  effect.\n"
430213498266Sopenharmony_ci"              Disable it again with --no-proxy-insecure.\n"
430313498266Sopenharmony_ci"\n"
430413498266Sopenharmony_ci"              Example:\n"
430513498266Sopenharmony_ci, stdout);
430613498266Sopenharmony_ci fputs(
430713498266Sopenharmony_ci"               curl --proxy-insecure -x https://proxy https://example.com\n"
430813498266Sopenharmony_ci"\n"
430913498266Sopenharmony_ci"              See also -x, --proxy and -k, --insecure. Added in 7.52.0.\n"
431013498266Sopenharmony_ci"\n"
431113498266Sopenharmony_ci"       --proxy-key-type <type>\n"
431213498266Sopenharmony_ci"              Same as --key-type but used in HTTPS proxy context.\n"
431313498266Sopenharmony_ci"\n"
431413498266Sopenharmony_ci"              If  --proxy-key-type  is  provided  several  times, the last set\n"
431513498266Sopenharmony_ci"              value is used.\n"
431613498266Sopenharmony_ci"\n"
431713498266Sopenharmony_ci"              Example:\n"
431813498266Sopenharmony_ci"               curl --proxy-key-type DER --proxy-key here -x https://proxy https://example.com\n"
431913498266Sopenharmony_ci"\n"
432013498266Sopenharmony_ci, stdout);
432113498266Sopenharmony_ci fputs(
432213498266Sopenharmony_ci"              See also --proxy-key and -x, --proxy. Added in 7.52.0.\n"
432313498266Sopenharmony_ci"\n"
432413498266Sopenharmony_ci"       --proxy-key <key>\n"
432513498266Sopenharmony_ci"              Same as --key but used in HTTPS proxy context.\n"
432613498266Sopenharmony_ci"\n"
432713498266Sopenharmony_ci"              If --proxy-key is provided several times, the last set value  is\n"
432813498266Sopenharmony_ci"              used.\n"
432913498266Sopenharmony_ci"\n"
433013498266Sopenharmony_ci"              Example:\n"
433113498266Sopenharmony_ci"               curl --proxy-key here -x https://proxy https://example.com\n"
433213498266Sopenharmony_ci"\n"
433313498266Sopenharmony_ci"              See also --proxy-key-type and -x, --proxy. Added in 7.52.0.\n"
433413498266Sopenharmony_ci"\n"
433513498266Sopenharmony_ci"       --proxy-negotiate\n"
433613498266Sopenharmony_ci, stdout);
433713498266Sopenharmony_ci fputs(
433813498266Sopenharmony_ci"              Tells  curl  to  use HTTP Negotiate (SPNEGO) authentication when\n"
433913498266Sopenharmony_ci"              communicating with the given proxy. Use --negotiate for enabling\n"
434013498266Sopenharmony_ci"              HTTP Negotiate (SPNEGO) with a remote host.\n"
434113498266Sopenharmony_ci"\n"
434213498266Sopenharmony_ci"              Providing --proxy-negotiate multiple times has no extra effect.\n"
434313498266Sopenharmony_ci"\n"
434413498266Sopenharmony_ci"              Example:\n"
434513498266Sopenharmony_ci"               curl --proxy-negotiate --proxy-user user:passwd -x proxy https://example.com\n"
434613498266Sopenharmony_ci"\n"
434713498266Sopenharmony_ci"              See also --proxy-anyauth and --proxy-basic.\n"
434813498266Sopenharmony_ci"\n"
434913498266Sopenharmony_ci"       --proxy-ntlm\n"
435013498266Sopenharmony_ci, stdout);
435113498266Sopenharmony_ci fputs(
435213498266Sopenharmony_ci"              Tells curl to use HTTP NTLM  authentication  when  communicating\n"
435313498266Sopenharmony_ci"              with the given proxy. Use --ntlm for enabling NTLM with a remote\n"
435413498266Sopenharmony_ci"              host.\n"
435513498266Sopenharmony_ci"\n"
435613498266Sopenharmony_ci"              Providing --proxy-ntlm multiple times has no extra effect.\n"
435713498266Sopenharmony_ci"\n"
435813498266Sopenharmony_ci"              Example:\n"
435913498266Sopenharmony_ci"               curl --proxy-ntlm --proxy-user user:passwd -x http://proxy https://example.com\n"
436013498266Sopenharmony_ci"\n"
436113498266Sopenharmony_ci"              See also --proxy-negotiate and --proxy-anyauth.\n"
436213498266Sopenharmony_ci"\n"
436313498266Sopenharmony_ci"       --proxy-pass <phrase>\n"
436413498266Sopenharmony_ci, stdout);
436513498266Sopenharmony_ci fputs(
436613498266Sopenharmony_ci"              Same as --pass but used in HTTPS proxy context.\n"
436713498266Sopenharmony_ci"\n"
436813498266Sopenharmony_ci"              If --proxy-pass is provided several times, the last set value is\n"
436913498266Sopenharmony_ci"              used.\n"
437013498266Sopenharmony_ci"\n"
437113498266Sopenharmony_ci"              Example:\n"
437213498266Sopenharmony_ci"               curl --proxy-pass secret --proxy-key here -x https://proxy https://example.com\n"
437313498266Sopenharmony_ci"\n"
437413498266Sopenharmony_ci"              See also -x, --proxy and --proxy-key. Added in 7.52.0.\n"
437513498266Sopenharmony_ci"\n"
437613498266Sopenharmony_ci"       --proxy-pinnedpubkey <hashes>\n"
437713498266Sopenharmony_ci"              (TLS)  Tells  curl  to  use  the  specified  public key file (or\n"
437813498266Sopenharmony_ci, stdout);
437913498266Sopenharmony_ci fputs(
438013498266Sopenharmony_ci"              hashes) to verify the proxy. This can be a path to a file  which\n"
438113498266Sopenharmony_ci"              contains a single public key in PEM or DER format, or any number\n"
438213498266Sopenharmony_ci"              of base64 encoded sha256 hashes preceded by 'sha256//' and sepa-\n"
438313498266Sopenharmony_ci"              rated by ';'.\n"
438413498266Sopenharmony_ci"\n"
438513498266Sopenharmony_ci"              When  negotiating  a  TLS  or SSL connection, the server sends a\n"
438613498266Sopenharmony_ci"              certificate indicating its identity. A public key  is  extracted\n"
438713498266Sopenharmony_ci, stdout);
438813498266Sopenharmony_ci fputs(
438913498266Sopenharmony_ci"              from  this certificate and if it does not exactly match the pub-\n"
439013498266Sopenharmony_ci"              lic key provided to this option, curl aborts the connection  be-\n"
439113498266Sopenharmony_ci"              fore sending or receiving any data.\n"
439213498266Sopenharmony_ci"\n"
439313498266Sopenharmony_ci"              If  --proxy-pinnedpubkey is provided several times, the last set\n"
439413498266Sopenharmony_ci"              value is used.\n"
439513498266Sopenharmony_ci"\n"
439613498266Sopenharmony_ci"              Examples:\n"
439713498266Sopenharmony_ci"               curl --proxy-pinnedpubkey keyfile https://example.com\n"
439813498266Sopenharmony_ci, stdout);
439913498266Sopenharmony_ci fputs(
440013498266Sopenharmony_ci"               curl --proxy-pinnedpubkey 'sha256//ce118b51897f4452dc' https://example.com\n"
440113498266Sopenharmony_ci"\n"
440213498266Sopenharmony_ci"              See also --pinnedpubkey and -x, --proxy. Added in 7.59.0.\n"
440313498266Sopenharmony_ci"\n"
440413498266Sopenharmony_ci"       --proxy-service-name <name>\n"
440513498266Sopenharmony_ci"              This option allows you to change the service name for proxy  ne-\n"
440613498266Sopenharmony_ci"              gotiation.\n"
440713498266Sopenharmony_ci"\n"
440813498266Sopenharmony_ci"              If  --proxy-service-name is provided several times, the last set\n"
440913498266Sopenharmony_ci"              value is used.\n"
441013498266Sopenharmony_ci"\n"
441113498266Sopenharmony_ci"              Example:\n"
441213498266Sopenharmony_ci, stdout);
441313498266Sopenharmony_ci fputs(
441413498266Sopenharmony_ci"               curl --proxy-service-name \"shrubbery\" -x proxy https://example.com\n"
441513498266Sopenharmony_ci"\n"
441613498266Sopenharmony_ci"              See also --service-name and -x, --proxy.\n"
441713498266Sopenharmony_ci"\n"
441813498266Sopenharmony_ci"       --proxy-ssl-allow-beast\n"
441913498266Sopenharmony_ci"              Same as --ssl-allow-beast but used in HTTPS proxy context.\n"
442013498266Sopenharmony_ci"\n"
442113498266Sopenharmony_ci"              Providing --proxy-ssl-allow-beast multiple times  has  no  extra\n"
442213498266Sopenharmony_ci"              effect.  Disable it again with --no-proxy-ssl-allow-beast.\n"
442313498266Sopenharmony_ci"\n"
442413498266Sopenharmony_ci"              Example:\n"
442513498266Sopenharmony_ci, stdout);
442613498266Sopenharmony_ci fputs(
442713498266Sopenharmony_ci"               curl --proxy-ssl-allow-beast -x https://proxy https://example.com\n"
442813498266Sopenharmony_ci"\n"
442913498266Sopenharmony_ci"              See also --ssl-allow-beast and -x, --proxy. Added in 7.52.0.\n"
443013498266Sopenharmony_ci"\n"
443113498266Sopenharmony_ci"       --proxy-ssl-auto-client-cert\n"
443213498266Sopenharmony_ci"              Same as --ssl-auto-client-cert but used in HTTPS proxy context.\n"
443313498266Sopenharmony_ci"\n"
443413498266Sopenharmony_ci"              Providing --proxy-ssl-auto-client-cert multiple times has no ex-\n"
443513498266Sopenharmony_ci"              tra  effect.   Disable it again with --no-proxy-ssl-auto-client-\n"
443613498266Sopenharmony_ci"              cert.\n"
443713498266Sopenharmony_ci"\n"
443813498266Sopenharmony_ci"              Example:\n"
443913498266Sopenharmony_ci, stdout);
444013498266Sopenharmony_ci fputs(
444113498266Sopenharmony_ci"               curl --proxy-ssl-auto-client-cert -x https://proxy https://example.com\n"
444213498266Sopenharmony_ci"\n"
444313498266Sopenharmony_ci"              See  also  --ssl-auto-client-cert  and  -x,  --proxy.  Added  in\n"
444413498266Sopenharmony_ci"              7.77.0.\n"
444513498266Sopenharmony_ci"\n"
444613498266Sopenharmony_ci"       --proxy-tls13-ciphers <ciphersuite list>\n"
444713498266Sopenharmony_ci"              (TLS)  Specifies which cipher suites to use in the connection to\n"
444813498266Sopenharmony_ci"              your HTTPS proxy when it negotiates TLS 1.3. The list of ciphers\n"
444913498266Sopenharmony_ci"              suites must specify valid ciphers. Read up  on  TLS  1.3  cipher\n"
445013498266Sopenharmony_ci, stdout);
445113498266Sopenharmony_ci fputs(
445213498266Sopenharmony_ci"              suite details on this URL:\n"
445313498266Sopenharmony_ci"\n"
445413498266Sopenharmony_ci"              https://curl.se/docs/ssl-ciphers.html\n"
445513498266Sopenharmony_ci"\n"
445613498266Sopenharmony_ci"              This  option  is  currently  used only when curl is built to use\n"
445713498266Sopenharmony_ci"              OpenSSL 1.1.1 or later. If you are using a different SSL backend\n"
445813498266Sopenharmony_ci"              you  can  try  setting  TLS  1.3  cipher  suites  by  using  the\n"
445913498266Sopenharmony_ci"              --proxy-ciphers option.\n"
446013498266Sopenharmony_ci"\n"
446113498266Sopenharmony_ci"              If --proxy-tls13-ciphers is provided several times, the last set\n"
446213498266Sopenharmony_ci"              value is used.\n"
446313498266Sopenharmony_ci"\n"
446413498266Sopenharmony_ci, stdout);
446513498266Sopenharmony_ci fputs(
446613498266Sopenharmony_ci"              Example:\n"
446713498266Sopenharmony_ci"               curl --proxy-tls13-ciphers TLS_AES_128_GCM_SHA256 -x proxy https://example.com\n"
446813498266Sopenharmony_ci"\n"
446913498266Sopenharmony_ci"              See also --tls13-ciphers, --curves and --proxy-ciphers. Added in\n"
447013498266Sopenharmony_ci"              7.61.0.\n"
447113498266Sopenharmony_ci"\n"
447213498266Sopenharmony_ci"       --proxy-tlsauthtype <type>\n"
447313498266Sopenharmony_ci"              Same as --tlsauthtype but used in HTTPS proxy context.\n"
447413498266Sopenharmony_ci"\n"
447513498266Sopenharmony_ci"              If  --proxy-tlsauthtype  is provided several times, the last set\n"
447613498266Sopenharmony_ci"              value is used.\n"
447713498266Sopenharmony_ci"\n"
447813498266Sopenharmony_ci"              Example:\n"
447913498266Sopenharmony_ci, stdout);
448013498266Sopenharmony_ci fputs(
448113498266Sopenharmony_ci"               curl --proxy-tlsauthtype SRP -x https://proxy https://example.com\n"
448213498266Sopenharmony_ci"\n"
448313498266Sopenharmony_ci"              See also -x, --proxy and --proxy-tlsuser. Added in 7.52.0.\n"
448413498266Sopenharmony_ci"\n"
448513498266Sopenharmony_ci"       --proxy-tlspassword <string>\n"
448613498266Sopenharmony_ci"              Same as --tlspassword but used in HTTPS proxy context.\n"
448713498266Sopenharmony_ci"\n"
448813498266Sopenharmony_ci"              If --proxy-tlspassword is provided several times, the  last  set\n"
448913498266Sopenharmony_ci"              value is used.\n"
449013498266Sopenharmony_ci"\n"
449113498266Sopenharmony_ci"              Example:\n"
449213498266Sopenharmony_ci"               curl --proxy-tlspassword passwd -x https://proxy https://example.com\n"
449313498266Sopenharmony_ci"\n"
449413498266Sopenharmony_ci, stdout);
449513498266Sopenharmony_ci fputs(
449613498266Sopenharmony_ci"              See also -x, --proxy and --proxy-tlsuser. Added in 7.52.0.\n"
449713498266Sopenharmony_ci"\n"
449813498266Sopenharmony_ci"       --proxy-tlsuser <name>\n"
449913498266Sopenharmony_ci"              Same as --tlsuser but used in HTTPS proxy context.\n"
450013498266Sopenharmony_ci"\n"
450113498266Sopenharmony_ci"              If --proxy-tlsuser is provided several times, the last set value\n"
450213498266Sopenharmony_ci"              is used.\n"
450313498266Sopenharmony_ci"              Example:\n"
450413498266Sopenharmony_ci"               curl --proxy-tlsuser smith -x https://proxy https://example.com\n"
450513498266Sopenharmony_ci"\n"
450613498266Sopenharmony_ci"              See also -x, --proxy and --proxy-tlspassword. Added in 7.52.0.\n"
450713498266Sopenharmony_ci"\n"
450813498266Sopenharmony_ci"       --proxy-tlsv1\n"
450913498266Sopenharmony_ci, stdout);
451013498266Sopenharmony_ci fputs(
451113498266Sopenharmony_ci"              Same as -1, --tlsv1 but used in HTTPS proxy context.\n"
451213498266Sopenharmony_ci"\n"
451313498266Sopenharmony_ci"              Providing --proxy-tlsv1 multiple times has no extra effect.\n"
451413498266Sopenharmony_ci"\n"
451513498266Sopenharmony_ci"              Example:\n"
451613498266Sopenharmony_ci"               curl --proxy-tlsv1 -x https://proxy https://example.com\n"
451713498266Sopenharmony_ci"\n"
451813498266Sopenharmony_ci"              See also -x, --proxy. Added in 7.52.0.\n"
451913498266Sopenharmony_ci"\n"
452013498266Sopenharmony_ci"       -U, --proxy-user <user:password>\n"
452113498266Sopenharmony_ci"              Specify  the user name and password to use for proxy authentica-\n"
452213498266Sopenharmony_ci"              tion.\n"
452313498266Sopenharmony_ci"\n"
452413498266Sopenharmony_ci, stdout);
452513498266Sopenharmony_ci fputs(
452613498266Sopenharmony_ci"              If you use a Windows SSPI-enabled curl binary and do either  Ne-\n"
452713498266Sopenharmony_ci"              gotiate  or NTLM authentication then you can tell curl to select\n"
452813498266Sopenharmony_ci"              the user name and password from your environment by specifying a\n"
452913498266Sopenharmony_ci"              single colon with this option: \"-U :\".\n"
453013498266Sopenharmony_ci"\n"
453113498266Sopenharmony_ci"              On systems where it works, curl hides the given option  argument\n"
453213498266Sopenharmony_ci"              from process listings. This is not enough to protect credentials\n"
453313498266Sopenharmony_ci, stdout);
453413498266Sopenharmony_ci fputs(
453513498266Sopenharmony_ci"              from  possibly getting seen by other users on the same system as\n"
453613498266Sopenharmony_ci"              they still are visible for a moment before cleared. Such  sensi-\n"
453713498266Sopenharmony_ci"              tive data should be retrieved from a file instead or similar and\n"
453813498266Sopenharmony_ci"              never used in clear text in a command line.\n"
453913498266Sopenharmony_ci"\n"
454013498266Sopenharmony_ci"              If --proxy-user is provided several times, the last set value is\n"
454113498266Sopenharmony_ci"              used.\n"
454213498266Sopenharmony_ci"\n"
454313498266Sopenharmony_ci"              Example:\n"
454413498266Sopenharmony_ci"               curl --proxy-user name:pwd -x proxy https://example.com\n"
454513498266Sopenharmony_ci"\n"
454613498266Sopenharmony_ci, stdout);
454713498266Sopenharmony_ci fputs(
454813498266Sopenharmony_ci"              See also --proxy-pass.\n"
454913498266Sopenharmony_ci"\n"
455013498266Sopenharmony_ci"       -x, --proxy [protocol://]host[:port]\n"
455113498266Sopenharmony_ci"              Use the specified proxy.\n"
455213498266Sopenharmony_ci"\n"
455313498266Sopenharmony_ci"              The  proxy string can be specified with a protocol:// prefix. No\n"
455413498266Sopenharmony_ci"              protocol specified or http:// it is treated as  an  HTTP  proxy.\n"
455513498266Sopenharmony_ci"              Use  socks4://, socks4a://, socks5:// or socks5h:// to request a\n"
455613498266Sopenharmony_ci"              specific SOCKS version to be used.\n"
455713498266Sopenharmony_ci"\n"
455813498266Sopenharmony_ci"              Unix domain sockets are supported for socks proxy. Set localhost\n"
455913498266Sopenharmony_ci, stdout);
456013498266Sopenharmony_ci fputs(
456113498266Sopenharmony_ci"              for the host part. e.g. socks5h://localhost/path/to/socket.sock\n"
456213498266Sopenharmony_ci"\n"
456313498266Sopenharmony_ci"              HTTPS proxy support works set with the https:// protocol  prefix\n"
456413498266Sopenharmony_ci"              for  OpenSSL  and  GnuTLS  (added  in 7.52.0). It also works for\n"
456513498266Sopenharmony_ci"              BearSSL, mbedTLS, rustls, Schannel, Secure Transport and wolfSSL\n"
456613498266Sopenharmony_ci"              (added in 7.87.0).\n"
456713498266Sopenharmony_ci"\n"
456813498266Sopenharmony_ci"              Unrecognized and unsupported  proxy  protocols  cause  an  error\n"
456913498266Sopenharmony_ci, stdout);
457013498266Sopenharmony_ci fputs(
457113498266Sopenharmony_ci"              (added  in  7.52.0).   Ancient  curl  versions  ignored  unknown\n"
457213498266Sopenharmony_ci"              schemes and used http:// instead.\n"
457313498266Sopenharmony_ci"\n"
457413498266Sopenharmony_ci"              If the port number is not specified in the proxy string,  it  is\n"
457513498266Sopenharmony_ci"              assumed to be 1080.\n"
457613498266Sopenharmony_ci"\n"
457713498266Sopenharmony_ci"              This  option  overrides  existing environment variables that set\n"
457813498266Sopenharmony_ci"              the proxy to use. If there is an environment variable setting  a\n"
457913498266Sopenharmony_ci"              proxy, you can set proxy to \"\" to override it.\n"
458013498266Sopenharmony_ci"\n"
458113498266Sopenharmony_ci, stdout);
458213498266Sopenharmony_ci fputs(
458313498266Sopenharmony_ci"              All  operations that are performed over an HTTP proxy are trans-\n"
458413498266Sopenharmony_ci"              parently converted to HTTP. It means that certain protocol  spe-\n"
458513498266Sopenharmony_ci"              cific operations might not be available. This is not the case if\n"
458613498266Sopenharmony_ci"              you  can  tunnel through the proxy, as one with the -p, --proxy-\n"
458713498266Sopenharmony_ci"              tunnel option.\n"
458813498266Sopenharmony_ci"\n"
458913498266Sopenharmony_ci"              User and password that might be provided in the proxy string are\n"
459013498266Sopenharmony_ci, stdout);
459113498266Sopenharmony_ci fputs(
459213498266Sopenharmony_ci"              URL decoded by curl. This allows you to pass in special  charac-\n"
459313498266Sopenharmony_ci"              ters such as @ by using %40 or pass in a colon with %3a.\n"
459413498266Sopenharmony_ci"\n"
459513498266Sopenharmony_ci"              The  proxy host can be specified the same way as the proxy envi-\n"
459613498266Sopenharmony_ci"              ronment variables, including the protocol prefix  (http://)  and\n"
459713498266Sopenharmony_ci"              the embedded user + password.\n"
459813498266Sopenharmony_ci"\n"
459913498266Sopenharmony_ci"              When  a  proxy  is  used,  the  active  FTP mode as set with -P,\n"
460013498266Sopenharmony_ci"              --ftp-port, cannot be used.\n"
460113498266Sopenharmony_ci"\n"
460213498266Sopenharmony_ci, stdout);
460313498266Sopenharmony_ci fputs(
460413498266Sopenharmony_ci"              If --proxy is provided several times,  the  last  set  value  is\n"
460513498266Sopenharmony_ci"              used.\n"
460613498266Sopenharmony_ci"\n"
460713498266Sopenharmony_ci"              Example:\n"
460813498266Sopenharmony_ci"               curl --proxy http://proxy.example https://example.com\n"
460913498266Sopenharmony_ci"\n"
461013498266Sopenharmony_ci"              See also --socks5 and --proxy-basic.\n"
461113498266Sopenharmony_ci"\n"
461213498266Sopenharmony_ci"       --proxy1.0 <host[:port]>\n"
461313498266Sopenharmony_ci"              Use  the  specified  HTTP  1.0  proxy. If the port number is not\n"
461413498266Sopenharmony_ci"              specified, it is assumed at port 1080.\n"
461513498266Sopenharmony_ci"\n"
461613498266Sopenharmony_ci"              The only difference between this and the HTTP proxy  option  -x,\n"
461713498266Sopenharmony_ci, stdout);
461813498266Sopenharmony_ci fputs(
461913498266Sopenharmony_ci"              --proxy, is that attempts to use CONNECT through the proxy spec-\n"
462013498266Sopenharmony_ci"              ifies an HTTP 1.0 protocol instead of the default HTTP 1.1.\n"
462113498266Sopenharmony_ci"\n"
462213498266Sopenharmony_ci"              Providing --proxy1.0 multiple times has no extra effect.\n"
462313498266Sopenharmony_ci"\n"
462413498266Sopenharmony_ci"              Example:\n"
462513498266Sopenharmony_ci"               curl --proxy1.0 -x http://proxy https://example.com\n"
462613498266Sopenharmony_ci"\n"
462713498266Sopenharmony_ci"              See also -x, --proxy, --socks5 and --preproxy.\n"
462813498266Sopenharmony_ci"\n"
462913498266Sopenharmony_ci"       -p, --proxytunnel\n"
463013498266Sopenharmony_ci"              When  an  HTTP proxy is used -x, --proxy, this option makes curl\n"
463113498266Sopenharmony_ci, stdout);
463213498266Sopenharmony_ci fputs(
463313498266Sopenharmony_ci"              tunnel the traffic through the proxy.  The  tunnel  approach  is\n"
463413498266Sopenharmony_ci"              made  with  the HTTP proxy CONNECT request and requires that the\n"
463513498266Sopenharmony_ci"              proxy allows direct connect to the remote port number curl wants\n"
463613498266Sopenharmony_ci"              to tunnel through to.\n"
463713498266Sopenharmony_ci"\n"
463813498266Sopenharmony_ci"              To suppress proxy CONNECT response headers when curl is  set  to\n"
463913498266Sopenharmony_ci"              output headers use --suppress-connect-headers.\n"
464013498266Sopenharmony_ci"\n"
464113498266Sopenharmony_ci"              Providing  --proxytunnel  multiple  times  has  no extra effect.\n"
464213498266Sopenharmony_ci, stdout);
464313498266Sopenharmony_ci fputs(
464413498266Sopenharmony_ci"              Disable it again with --no-proxytunnel.\n"
464513498266Sopenharmony_ci"\n"
464613498266Sopenharmony_ci"              Example:\n"
464713498266Sopenharmony_ci"               curl --proxytunnel -x http://proxy https://example.com\n"
464813498266Sopenharmony_ci"\n"
464913498266Sopenharmony_ci"              See also -x, --proxy.\n"
465013498266Sopenharmony_ci"\n"
465113498266Sopenharmony_ci"       --pubkey <key>\n"
465213498266Sopenharmony_ci"              (SFTP SCP) Public key file name. Allows you to provide your pub-\n"
465313498266Sopenharmony_ci"              lic key in this separate file.\n"
465413498266Sopenharmony_ci"\n"
465513498266Sopenharmony_ci"              curl attempts to automatically extract the public key  from  the\n"
465613498266Sopenharmony_ci"              private  key  file,  so passing this option is generally not re-\n"
465713498266Sopenharmony_ci, stdout);
465813498266Sopenharmony_ci fputs(
465913498266Sopenharmony_ci"              quired. Note that this public key extraction requires libcurl to\n"
466013498266Sopenharmony_ci"              be linked against a copy of libssh2 1.2.8 or higher that is  it-\n"
466113498266Sopenharmony_ci"              self linked against OpenSSL.\n"
466213498266Sopenharmony_ci"\n"
466313498266Sopenharmony_ci"              If  --pubkey  is  provided  several times, the last set value is\n"
466413498266Sopenharmony_ci"              used.\n"
466513498266Sopenharmony_ci"\n"
466613498266Sopenharmony_ci"              Example:\n"
466713498266Sopenharmony_ci"               curl --pubkey file.pub sftp://example.com/\n"
466813498266Sopenharmony_ci"\n"
466913498266Sopenharmony_ci"              See also --pass.\n"
467013498266Sopenharmony_ci"\n"
467113498266Sopenharmony_ci"       -Q, --quote <command>\n"
467213498266Sopenharmony_ci, stdout);
467313498266Sopenharmony_ci fputs(
467413498266Sopenharmony_ci"              (FTP SFTP) Send an arbitrary command to the remote FTP  or  SFTP\n"
467513498266Sopenharmony_ci"              server.  Quote commands are sent BEFORE the transfer takes place\n"
467613498266Sopenharmony_ci"              (just after the initial PWD command in an FTP  transfer,  to  be\n"
467713498266Sopenharmony_ci"              exact). To make commands take place after a successful transfer,\n"
467813498266Sopenharmony_ci"              prefix them with a dash '-'.\n"
467913498266Sopenharmony_ci"\n"
468013498266Sopenharmony_ci"              (FTP  only)  To make commands be sent after curl has changed the\n"
468113498266Sopenharmony_ci, stdout);
468213498266Sopenharmony_ci fputs(
468313498266Sopenharmony_ci"              working directory, just before  the  file  transfer  command(s),\n"
468413498266Sopenharmony_ci"              prefix  the command with a '+'. This is not performed when a di-\n"
468513498266Sopenharmony_ci"              rectory listing is performed.\n"
468613498266Sopenharmony_ci"\n"
468713498266Sopenharmony_ci"              You may specify any number of commands.\n"
468813498266Sopenharmony_ci"\n"
468913498266Sopenharmony_ci"              By default curl stops at first failure. To  make  curl  continue\n"
469013498266Sopenharmony_ci"              even  if  the command fails, prefix the command with an asterisk\n"
469113498266Sopenharmony_ci"              (*). Otherwise, if the server returns failure  for  one  of  the\n"
469213498266Sopenharmony_ci, stdout);
469313498266Sopenharmony_ci fputs(
469413498266Sopenharmony_ci"              commands, the entire operation is aborted.\n"
469513498266Sopenharmony_ci"\n"
469613498266Sopenharmony_ci"              You  must send syntactically correct FTP commands as RFC 959 de-\n"
469713498266Sopenharmony_ci"              fines to FTP servers, or one of the  commands  listed  below  to\n"
469813498266Sopenharmony_ci"              SFTP servers.\n"
469913498266Sopenharmony_ci"\n"
470013498266Sopenharmony_ci"              SFTP  is a binary protocol. Unlike for FTP, curl interprets SFTP\n"
470113498266Sopenharmony_ci"              quote commands itself before sending them to  the  server.  File\n"
470213498266Sopenharmony_ci"              names may be quoted shell-style to embed spaces or special char-\n"
470313498266Sopenharmony_ci, stdout);
470413498266Sopenharmony_ci fputs(
470513498266Sopenharmony_ci"              acters.  Following  is the list of all supported SFTP quote com-\n"
470613498266Sopenharmony_ci"              mands:\n"
470713498266Sopenharmony_ci"\n"
470813498266Sopenharmony_ci"              atime date file\n"
470913498266Sopenharmony_ci"                     The atime command sets the last access time of  the  file\n"
471013498266Sopenharmony_ci"                     named  by  the file operand. The <date expression> can be\n"
471113498266Sopenharmony_ci"                     all sorts of date strings, see  the  curl_getdate(3)  man\n"
471213498266Sopenharmony_ci"                     page for date expression details. (Added in 7.73.0)\n"
471313498266Sopenharmony_ci"\n"
471413498266Sopenharmony_ci"              chgrp group file\n"
471513498266Sopenharmony_ci, stdout);
471613498266Sopenharmony_ci fputs(
471713498266Sopenharmony_ci"                     The  chgrp command sets the group ID of the file named by\n"
471813498266Sopenharmony_ci"                     the file operand to the group ID specified by  the  group\n"
471913498266Sopenharmony_ci"                     operand. The group operand is a decimal integer group ID.\n"
472013498266Sopenharmony_ci"\n"
472113498266Sopenharmony_ci"              chmod mode file\n"
472213498266Sopenharmony_ci"                     The  chmod  command  modifies  the  file mode bits of the\n"
472313498266Sopenharmony_ci"                     specified file. The mode operand is an octal integer mode\n"
472413498266Sopenharmony_ci"                     number.\n"
472513498266Sopenharmony_ci"\n"
472613498266Sopenharmony_ci"              chown user file\n"
472713498266Sopenharmony_ci, stdout);
472813498266Sopenharmony_ci fputs(
472913498266Sopenharmony_ci"                     The chown command sets the owner of the file named by the\n"
473013498266Sopenharmony_ci"                     file operand  to  the  user  ID  specified  by  the  user\n"
473113498266Sopenharmony_ci"                     operand. The user operand is a decimal integer user ID.\n"
473213498266Sopenharmony_ci"\n"
473313498266Sopenharmony_ci"              ln source_file target_file\n"
473413498266Sopenharmony_ci"                     The ln and symlink commands create a symbolic link at the\n"
473513498266Sopenharmony_ci"                     target_file  location  pointing  to the source_file loca-\n"
473613498266Sopenharmony_ci"                     tion.\n"
473713498266Sopenharmony_ci"\n"
473813498266Sopenharmony_ci"              mkdir directory_name\n"
473913498266Sopenharmony_ci, stdout);
474013498266Sopenharmony_ci fputs(
474113498266Sopenharmony_ci"                     The mkdir command creates the directory named by the  di-\n"
474213498266Sopenharmony_ci"                     rectory_name operand.\n"
474313498266Sopenharmony_ci"\n"
474413498266Sopenharmony_ci"              mtime date file\n"
474513498266Sopenharmony_ci"                     The  mtime command sets the last modification time of the\n"
474613498266Sopenharmony_ci"                     file named by the file operand. The <date expression> can\n"
474713498266Sopenharmony_ci"                     be all sorts of date strings, see the curl_getdate(3) man\n"
474813498266Sopenharmony_ci"                     page for date expression details. (Added in 7.73.0)\n"
474913498266Sopenharmony_ci"\n"
475013498266Sopenharmony_ci, stdout);
475113498266Sopenharmony_ci fputs(
475213498266Sopenharmony_ci"              pwd    The pwd command returns the absolute  path  name  of  the\n"
475313498266Sopenharmony_ci"                     current working directory.\n"
475413498266Sopenharmony_ci"\n"
475513498266Sopenharmony_ci"              rename source target\n"
475613498266Sopenharmony_ci"                     The rename command renames the file or directory named by\n"
475713498266Sopenharmony_ci"                     the  source  operand to the destination path named by the\n"
475813498266Sopenharmony_ci"                     target operand.\n"
475913498266Sopenharmony_ci"\n"
476013498266Sopenharmony_ci"              rm file\n"
476113498266Sopenharmony_ci"                     The rm command removes the file  specified  by  the  file\n"
476213498266Sopenharmony_ci"                     operand.\n"
476313498266Sopenharmony_ci"\n"
476413498266Sopenharmony_ci, stdout);
476513498266Sopenharmony_ci fputs(
476613498266Sopenharmony_ci"              rmdir directory\n"
476713498266Sopenharmony_ci"                     The  rmdir  command removes the directory entry specified\n"
476813498266Sopenharmony_ci"                     by the directory operand, provided it is empty.\n"
476913498266Sopenharmony_ci"\n"
477013498266Sopenharmony_ci"              symlink source_file target_file\n"
477113498266Sopenharmony_ci"                     See ln.\n"
477213498266Sopenharmony_ci"\n"
477313498266Sopenharmony_ci"              --quote can be used several times in a command line\n"
477413498266Sopenharmony_ci"\n"
477513498266Sopenharmony_ci"              Example:\n"
477613498266Sopenharmony_ci"               curl --quote \"DELE file\" ftp://example.com/foo\n"
477713498266Sopenharmony_ci"\n"
477813498266Sopenharmony_ci"              See also -X, --request.\n"
477913498266Sopenharmony_ci"\n"
478013498266Sopenharmony_ci"       --random-file <file>\n"
478113498266Sopenharmony_ci, stdout);
478213498266Sopenharmony_ci fputs(
478313498266Sopenharmony_ci"              Deprecated option. This option is  ignored  (added  in  7.84.0).\n"
478413498266Sopenharmony_ci"              Prior  to that it only had an effect on curl if built to use old\n"
478513498266Sopenharmony_ci"              versions of OpenSSL.\n"
478613498266Sopenharmony_ci"\n"
478713498266Sopenharmony_ci"              Specify the path name to file containing random data.  The  data\n"
478813498266Sopenharmony_ci"              may be used to seed the random engine for SSL connections.\n"
478913498266Sopenharmony_ci"\n"
479013498266Sopenharmony_ci"              If  --random-file  is provided several times, the last set value\n"
479113498266Sopenharmony_ci"              is used.\n"
479213498266Sopenharmony_ci"              Example:\n"
479313498266Sopenharmony_ci, stdout);
479413498266Sopenharmony_ci fputs(
479513498266Sopenharmony_ci"               curl --random-file rubbish https://example.com\n"
479613498266Sopenharmony_ci"\n"
479713498266Sopenharmony_ci"              See also --egd-file.\n"
479813498266Sopenharmony_ci"\n"
479913498266Sopenharmony_ci"       -r, --range <range>\n"
480013498266Sopenharmony_ci"              (HTTP FTP SFTP FILE) Retrieve a byte range (i.e. a partial docu-\n"
480113498266Sopenharmony_ci"              ment) from an HTTP/1.1, FTP or SFTP  server  or  a  local  FILE.\n"
480213498266Sopenharmony_ci"              Ranges can be specified in a number of ways.\n"
480313498266Sopenharmony_ci"\n"
480413498266Sopenharmony_ci"              0-499  specifies the first 500 bytes\n"
480513498266Sopenharmony_ci"\n"
480613498266Sopenharmony_ci"              500-999\n"
480713498266Sopenharmony_ci"                     specifies the second 500 bytes\n"
480813498266Sopenharmony_ci"\n"
480913498266Sopenharmony_ci, stdout);
481013498266Sopenharmony_ci fputs(
481113498266Sopenharmony_ci"              -500   specifies the last 500 bytes\n"
481213498266Sopenharmony_ci"\n"
481313498266Sopenharmony_ci"              9500-  specifies the bytes from offset 9500 and forward\n"
481413498266Sopenharmony_ci"\n"
481513498266Sopenharmony_ci"              0-0,-1 specifies the first and last byte only(*)(HTTP)\n"
481613498266Sopenharmony_ci"\n"
481713498266Sopenharmony_ci"              100-199,500-599\n"
481813498266Sopenharmony_ci"                     specifies two separate 100-byte ranges(*) (HTTP)\n"
481913498266Sopenharmony_ci"\n"
482013498266Sopenharmony_ci"              (*) = NOTE that these make the server reply with a multipart re-\n"
482113498266Sopenharmony_ci"              sponse,  which  is  returned as-is by curl! Parsing or otherwise\n"
482213498266Sopenharmony_ci, stdout);
482313498266Sopenharmony_ci fputs(
482413498266Sopenharmony_ci"              transforming this response is the responsibility of the caller.\n"
482513498266Sopenharmony_ci"\n"
482613498266Sopenharmony_ci"              Only digit characters (0-9) are valid in the 'start' and  'stop'\n"
482713498266Sopenharmony_ci"              fields  of the 'start-stop' range syntax. If a non-digit charac-\n"
482813498266Sopenharmony_ci"              ter is given in the range, the server's response is unspecified,\n"
482913498266Sopenharmony_ci"              depending on the server's configuration.\n"
483013498266Sopenharmony_ci"\n"
483113498266Sopenharmony_ci"              Many HTTP/1.1 servers do not have this feature enabled, so  that\n"
483213498266Sopenharmony_ci, stdout);
483313498266Sopenharmony_ci fputs(
483413498266Sopenharmony_ci"              when  you  attempt  to  get a range, curl instead gets the whole\n"
483513498266Sopenharmony_ci"              document.\n"
483613498266Sopenharmony_ci"\n"
483713498266Sopenharmony_ci"              FTP  and  SFTP  range  downloads   only   support   the   simple\n"
483813498266Sopenharmony_ci"              'start-stop'  syntax  (optionally  with one of the numbers omit-\n"
483913498266Sopenharmony_ci"              ted). FTP use depends on the extended FTP command SIZE.\n"
484013498266Sopenharmony_ci"\n"
484113498266Sopenharmony_ci"              If --range is provided several times,  the  last  set  value  is\n"
484213498266Sopenharmony_ci"              used.\n"
484313498266Sopenharmony_ci"\n"
484413498266Sopenharmony_ci"              Example:\n"
484513498266Sopenharmony_ci, stdout);
484613498266Sopenharmony_ci fputs(
484713498266Sopenharmony_ci"               curl --range 22-44 https://example.com\n"
484813498266Sopenharmony_ci"\n"
484913498266Sopenharmony_ci"              See also -C, --continue-at and -a, --append.\n"
485013498266Sopenharmony_ci"\n"
485113498266Sopenharmony_ci"       --rate <max request rate>\n"
485213498266Sopenharmony_ci"              Specify  the  maximum transfer frequency you allow curl to use -\n"
485313498266Sopenharmony_ci"              in number of transfer starts per time unit (sometimes called re-\n"
485413498266Sopenharmony_ci"              quest rate). Without this option, curl starts the next  transfer\n"
485513498266Sopenharmony_ci"              as fast as possible.\n"
485613498266Sopenharmony_ci"\n"
485713498266Sopenharmony_ci"              If  given  several URLs and a transfer completes faster than the\n"
485813498266Sopenharmony_ci, stdout);
485913498266Sopenharmony_ci fputs(
486013498266Sopenharmony_ci"              allowed rate, curl waits until the next transfer is  started  to\n"
486113498266Sopenharmony_ci"              maintain  the requested rate. This option has no effect when -Z,\n"
486213498266Sopenharmony_ci"              --parallel is used.\n"
486313498266Sopenharmony_ci"\n"
486413498266Sopenharmony_ci"              The request rate is provided as \"N/U\" where N is an integer num-\n"
486513498266Sopenharmony_ci"              ber and U is a time unit. Supported units are 's' (second),  'm'\n"
486613498266Sopenharmony_ci"              (minute),  'h'  (hour) and 'd' /(day, as in a 24 hour unit). The\n"
486713498266Sopenharmony_ci, stdout);
486813498266Sopenharmony_ci fputs(
486913498266Sopenharmony_ci"              default time unit, if no \"/U\" is provided, is number  of  trans-\n"
487013498266Sopenharmony_ci"              fers per hour.\n"
487113498266Sopenharmony_ci"\n"
487213498266Sopenharmony_ci"              If  curl  is  told  to allow 10 requests per minute, it does not\n"
487313498266Sopenharmony_ci"              start the next request until 6 seconds have  elapsed  since  the\n"
487413498266Sopenharmony_ci"              previous transfer was started.\n"
487513498266Sopenharmony_ci"\n"
487613498266Sopenharmony_ci"              This  function  uses millisecond resolution. If the allowed fre-\n"
487713498266Sopenharmony_ci"              quency is set more than 1000 per second, it instead  runs  unre-\n"
487813498266Sopenharmony_ci"              stricted.\n"
487913498266Sopenharmony_ci"\n"
488013498266Sopenharmony_ci, stdout);
488113498266Sopenharmony_ci fputs(
488213498266Sopenharmony_ci"              When  retrying  transfers,  enabled  with  --retry, the separate\n"
488313498266Sopenharmony_ci"              retry delay logic is used and not this setting.\n"
488413498266Sopenharmony_ci"\n"
488513498266Sopenharmony_ci"              This option is global and does not need to be specified for each\n"
488613498266Sopenharmony_ci"              use of --next.\n"
488713498266Sopenharmony_ci"\n"
488813498266Sopenharmony_ci"              If --rate is provided several times, the last set value is used.\n"
488913498266Sopenharmony_ci"\n"
489013498266Sopenharmony_ci"              Examples:\n"
489113498266Sopenharmony_ci"               curl --rate 2/s https://example.com ...\n"
489213498266Sopenharmony_ci"               curl --rate 3/h https://example.com ...\n"
489313498266Sopenharmony_ci, stdout);
489413498266Sopenharmony_ci fputs(
489513498266Sopenharmony_ci"               curl --rate 14/m https://example.com ...\n"
489613498266Sopenharmony_ci"\n"
489713498266Sopenharmony_ci"              See also --limit-rate and --retry-delay. Added in 7.84.0.\n"
489813498266Sopenharmony_ci"\n"
489913498266Sopenharmony_ci"       --raw  (HTTP) When used, it disables all internal HTTP decoding of con-\n"
490013498266Sopenharmony_ci"              tent or transfer encodings and instead makes them passed on  un-\n"
490113498266Sopenharmony_ci"              altered, raw.\n"
490213498266Sopenharmony_ci"\n"
490313498266Sopenharmony_ci"              Providing  --raw multiple times has no extra effect.  Disable it\n"
490413498266Sopenharmony_ci"              again with --no-raw.\n"
490513498266Sopenharmony_ci"\n"
490613498266Sopenharmony_ci"              Example:\n"
490713498266Sopenharmony_ci, stdout);
490813498266Sopenharmony_ci fputs(
490913498266Sopenharmony_ci"               curl --raw https://example.com\n"
491013498266Sopenharmony_ci"\n"
491113498266Sopenharmony_ci"              See also --tr-encoding.\n"
491213498266Sopenharmony_ci"\n"
491313498266Sopenharmony_ci"       -e, --referer <URL>\n"
491413498266Sopenharmony_ci"              (HTTP) Sends the \"Referrer Page\" information to the HTTP server.\n"
491513498266Sopenharmony_ci"              This can also be set with the -H, --header flag of course.  When\n"
491613498266Sopenharmony_ci"              used  with  -L,  --location  you  can  append \";auto\" to the -e,\n"
491713498266Sopenharmony_ci"              --referer URL to make curl automatically set  the  previous  URL\n"
491813498266Sopenharmony_ci, stdout);
491913498266Sopenharmony_ci fputs(
492013498266Sopenharmony_ci"              when  it  follows  a Location: header. The \";auto\" string can be\n"
492113498266Sopenharmony_ci"              used alone, even if you do not set an initial -e, --referer.\n"
492213498266Sopenharmony_ci"\n"
492313498266Sopenharmony_ci"              If --referer is provided several times, the last  set  value  is\n"
492413498266Sopenharmony_ci"              used.\n"
492513498266Sopenharmony_ci"\n"
492613498266Sopenharmony_ci"              Examples:\n"
492713498266Sopenharmony_ci"               curl --referer \"https://fake.example\" https://example.com\n"
492813498266Sopenharmony_ci"               curl --referer \"https://fake.example;auto\" -L https://example.com\n"
492913498266Sopenharmony_ci"               curl --referer \";auto\" -L https://example.com\n"
493013498266Sopenharmony_ci"\n"
493113498266Sopenharmony_ci, stdout);
493213498266Sopenharmony_ci fputs(
493313498266Sopenharmony_ci"              See also -A, --user-agent and -H, --header.\n"
493413498266Sopenharmony_ci"\n"
493513498266Sopenharmony_ci"       -J, --remote-header-name\n"
493613498266Sopenharmony_ci"              (HTTP) This option tells the -O, --remote-name option to use the\n"
493713498266Sopenharmony_ci"              server-specified  Content-Disposition  filename  instead  of ex-\n"
493813498266Sopenharmony_ci"              tracting a filename from the URL. If  the  server-provided  file\n"
493913498266Sopenharmony_ci"              name  contains a path, that is stripped off before the file name\n"
494013498266Sopenharmony_ci"              is used.\n"
494113498266Sopenharmony_ci"\n"
494213498266Sopenharmony_ci, stdout);
494313498266Sopenharmony_ci fputs(
494413498266Sopenharmony_ci"              The file is saved in the current directory, or in the  directory\n"
494513498266Sopenharmony_ci"              specified with --output-dir.\n"
494613498266Sopenharmony_ci"\n"
494713498266Sopenharmony_ci"              If  the  server  specifies a file name and a file with that name\n"
494813498266Sopenharmony_ci"              already exists in the destination directory, it is not overwrit-\n"
494913498266Sopenharmony_ci"              ten and an error occurs - unless  you  allow  it  by  using  the\n"
495013498266Sopenharmony_ci"              --clobber  option.  If  the  server does not specify a file name\n"
495113498266Sopenharmony_ci"              then this option has no effect.\n"
495213498266Sopenharmony_ci"\n"
495313498266Sopenharmony_ci, stdout);
495413498266Sopenharmony_ci fputs(
495513498266Sopenharmony_ci"              There is no attempt to decode %-sequences (yet) in the  provided\n"
495613498266Sopenharmony_ci"              file name, so this option may provide you with rather unexpected\n"
495713498266Sopenharmony_ci"              file names.\n"
495813498266Sopenharmony_ci"\n"
495913498266Sopenharmony_ci"              This  feature  uses  the name from the \"filename\" field, it does\n"
496013498266Sopenharmony_ci"              not yet support the \"filename*\" field (filenames  with  explicit\n"
496113498266Sopenharmony_ci"              character sets).\n"
496213498266Sopenharmony_ci"\n"
496313498266Sopenharmony_ci"              WARNING:  Exercise  judicious  use of this option, especially on\n"
496413498266Sopenharmony_ci, stdout);
496513498266Sopenharmony_ci fputs(
496613498266Sopenharmony_ci"              Windows. A rogue server could send you the  name  of  a  DLL  or\n"
496713498266Sopenharmony_ci"              other file that could be loaded automatically by Windows or some\n"
496813498266Sopenharmony_ci"              third party software.\n"
496913498266Sopenharmony_ci"\n"
497013498266Sopenharmony_ci"              Providing  --remote-header-name  multiple times has no extra ef-\n"
497113498266Sopenharmony_ci"              fect.  Disable it again with --no-remote-header-name.\n"
497213498266Sopenharmony_ci"\n"
497313498266Sopenharmony_ci"              Example:\n"
497413498266Sopenharmony_ci"               curl -OJ https://example.com/file\n"
497513498266Sopenharmony_ci"\n"
497613498266Sopenharmony_ci"              See also -O, --remote-name.\n"
497713498266Sopenharmony_ci"\n"
497813498266Sopenharmony_ci"       --remote-name-all\n"
497913498266Sopenharmony_ci, stdout);
498013498266Sopenharmony_ci fputs(
498113498266Sopenharmony_ci"              This option changes the default action for all given URLs to  be\n"
498213498266Sopenharmony_ci"              dealt with as if -O, --remote-name were used for each one. So if\n"
498313498266Sopenharmony_ci"              you  want  to  disable  that  for  a  specific  URL  after --re-\n"
498413498266Sopenharmony_ci"              mote-name-all has been used, you must use  \"-o  -\"  or  --no-re-\n"
498513498266Sopenharmony_ci"              mote-name.\n"
498613498266Sopenharmony_ci"\n"
498713498266Sopenharmony_ci"              Providing  --remote-name-all multiple times has no extra effect.\n"
498813498266Sopenharmony_ci"              Disable it again with --no-remote-name-all.\n"
498913498266Sopenharmony_ci"\n"
499013498266Sopenharmony_ci, stdout);
499113498266Sopenharmony_ci fputs(
499213498266Sopenharmony_ci"              Example:\n"
499313498266Sopenharmony_ci"               curl --remote-name-all ftp://example.com/file1 ftp://example.com/file2\n"
499413498266Sopenharmony_ci"\n"
499513498266Sopenharmony_ci"              See also -O, --remote-name.\n"
499613498266Sopenharmony_ci"\n"
499713498266Sopenharmony_ci"       -O, --remote-name\n"
499813498266Sopenharmony_ci"              Write output to a local file named like the remote file we  get.\n"
499913498266Sopenharmony_ci"              (Only  the file part of the remote file is used, the path is cut\n"
500013498266Sopenharmony_ci"              off.)\n"
500113498266Sopenharmony_ci"\n"
500213498266Sopenharmony_ci"              The file is saved in the current working directory. If you  want\n"
500313498266Sopenharmony_ci, stdout);
500413498266Sopenharmony_ci fputs(
500513498266Sopenharmony_ci"              the  file  saved  in a different directory, make sure you change\n"
500613498266Sopenharmony_ci"              the current working directory before invoking curl with this op-\n"
500713498266Sopenharmony_ci"              tion or use --output-dir.\n"
500813498266Sopenharmony_ci"\n"
500913498266Sopenharmony_ci"              The remote file name to use for saving  is  extracted  from  the\n"
501013498266Sopenharmony_ci"              given  URL,  nothing  else, and if it already exists it is over-\n"
501113498266Sopenharmony_ci"              written. If you want the server to be able to  choose  the  file\n"
501213498266Sopenharmony_ci, stdout);
501313498266Sopenharmony_ci fputs(
501413498266Sopenharmony_ci"              name  refer to -J, --remote-header-name which can be used in ad-\n"
501513498266Sopenharmony_ci"              dition to this option. If the server chooses  a  file  name  and\n"
501613498266Sopenharmony_ci"              that name already exists it is not overwritten.\n"
501713498266Sopenharmony_ci"\n"
501813498266Sopenharmony_ci"              There is no URL decoding done on the file name. If it has %20 or\n"
501913498266Sopenharmony_ci"              other  URL  encoded parts of the name, they end up as-is as file\n"
502013498266Sopenharmony_ci"              name.\n"
502113498266Sopenharmony_ci"\n"
502213498266Sopenharmony_ci"              You may use this option as many times as the number of URLs  you\n"
502313498266Sopenharmony_ci"              have.\n"
502413498266Sopenharmony_ci"\n"
502513498266Sopenharmony_ci, stdout);
502613498266Sopenharmony_ci fputs(
502713498266Sopenharmony_ci"              --remote-name can be used several times in a command line\n"
502813498266Sopenharmony_ci"\n"
502913498266Sopenharmony_ci"              Example:\n"
503013498266Sopenharmony_ci"               curl -O https://example.com/filename\n"
503113498266Sopenharmony_ci"\n"
503213498266Sopenharmony_ci"              See   also   --remote-name-all,   --output-dir   and  -J,  --re-\n"
503313498266Sopenharmony_ci"              mote-header-name.\n"
503413498266Sopenharmony_ci"       -R, --remote-time\n"
503513498266Sopenharmony_ci"              Makes curl attempt to figure out the  timestamp  of  the  remote\n"
503613498266Sopenharmony_ci"              file  that  is getting downloaded, and if that is available make\n"
503713498266Sopenharmony_ci"              the local file get that same timestamp.\n"
503813498266Sopenharmony_ci"\n"
503913498266Sopenharmony_ci, stdout);
504013498266Sopenharmony_ci fputs(
504113498266Sopenharmony_ci"              Providing --remote-time multiple  times  has  no  extra  effect.\n"
504213498266Sopenharmony_ci"              Disable it again with --no-remote-time.\n"
504313498266Sopenharmony_ci"\n"
504413498266Sopenharmony_ci"              Example:\n"
504513498266Sopenharmony_ci"               curl --remote-time -o foo https://example.com\n"
504613498266Sopenharmony_ci"\n"
504713498266Sopenharmony_ci"              See also -O, --remote-name and -z, --time-cond.\n"
504813498266Sopenharmony_ci"\n"
504913498266Sopenharmony_ci"       --remove-on-error\n"
505013498266Sopenharmony_ci"              When  curl  returns an error when told to save output in a local\n"
505113498266Sopenharmony_ci"              file, this option removes that saved file before  exiting.  This\n"
505213498266Sopenharmony_ci, stdout);
505313498266Sopenharmony_ci fputs(
505413498266Sopenharmony_ci"              prevents  curl from leaving a partial file in the case of an er-\n"
505513498266Sopenharmony_ci"              ror during transfer.\n"
505613498266Sopenharmony_ci"\n"
505713498266Sopenharmony_ci"              If the output is not a regular file, this option has no effect.\n"
505813498266Sopenharmony_ci"\n"
505913498266Sopenharmony_ci"              Providing --remove-on-error multiple times has no extra  effect.\n"
506013498266Sopenharmony_ci"              Disable it again with --no-remove-on-error.\n"
506113498266Sopenharmony_ci"\n"
506213498266Sopenharmony_ci"              Example:\n"
506313498266Sopenharmony_ci"               curl --remove-on-error -o output https://example.com\n"
506413498266Sopenharmony_ci"\n"
506513498266Sopenharmony_ci"              See also -f, --fail. Added in 7.83.0.\n"
506613498266Sopenharmony_ci"\n"
506713498266Sopenharmony_ci, stdout);
506813498266Sopenharmony_ci fputs(
506913498266Sopenharmony_ci"       --request-target <path>\n"
507013498266Sopenharmony_ci"              (HTTP)  Tells curl to use an alternative \"target\" (path) instead\n"
507113498266Sopenharmony_ci"              of using the path as provided in the  URL.  Particularly  useful\n"
507213498266Sopenharmony_ci"              when  wanting  to  issue  HTTP requests without leading slash or\n"
507313498266Sopenharmony_ci"              other data that does not follow the regular  URL  pattern,  like\n"
507413498266Sopenharmony_ci"              \"OPTIONS *\".\n"
507513498266Sopenharmony_ci"\n"
507613498266Sopenharmony_ci"              curl  passes  on the verbatim string you give it its the request\n"
507713498266Sopenharmony_ci, stdout);
507813498266Sopenharmony_ci fputs(
507913498266Sopenharmony_ci"              without any filter or other safe  guards.  That  includes  white\n"
508013498266Sopenharmony_ci"              space and control characters.\n"
508113498266Sopenharmony_ci"\n"
508213498266Sopenharmony_ci"              If  --request-target  is  provided  several  times, the last set\n"
508313498266Sopenharmony_ci"              value is used.\n"
508413498266Sopenharmony_ci"\n"
508513498266Sopenharmony_ci"              Example:\n"
508613498266Sopenharmony_ci"               curl --request-target \"*\" -X OPTIONS https://example.com\n"
508713498266Sopenharmony_ci"\n"
508813498266Sopenharmony_ci"              See also -X, --request. Added in 7.55.0.\n"
508913498266Sopenharmony_ci"\n"
509013498266Sopenharmony_ci"       -X, --request <method>\n"
509113498266Sopenharmony_ci"              Change the method to use when starting the transfer.\n"
509213498266Sopenharmony_ci"\n"
509313498266Sopenharmony_ci, stdout);
509413498266Sopenharmony_ci fputs(
509513498266Sopenharmony_ci"              curl passes on the verbatim string you give it its  the  request\n"
509613498266Sopenharmony_ci"              without  any  filter  or  other safe guards. That includes white\n"
509713498266Sopenharmony_ci"              space and control characters.\n"
509813498266Sopenharmony_ci"\n"
509913498266Sopenharmony_ci"              HTTP   Specifies a custom request method to use when communicat-\n"
510013498266Sopenharmony_ci"                     ing with the HTTP server. The specified request method is\n"
510113498266Sopenharmony_ci"                     used instead of the method otherwise used (which defaults\n"
510213498266Sopenharmony_ci, stdout);
510313498266Sopenharmony_ci fputs(
510413498266Sopenharmony_ci"                     to GET). Read the HTTP 1.1 specification for details  and\n"
510513498266Sopenharmony_ci"                     explanations. Common additional HTTP requests include PUT\n"
510613498266Sopenharmony_ci"                     and DELETE, while related technologies like WebDAV offers\n"
510713498266Sopenharmony_ci"                     PROPFIND, COPY, MOVE and more.\n"
510813498266Sopenharmony_ci"\n"
510913498266Sopenharmony_ci"                     Normally  you  do not need this option. All sorts of GET,\n"
511013498266Sopenharmony_ci"                     HEAD, POST and PUT requests are rather invoked  by  using\n"
511113498266Sopenharmony_ci, stdout);
511213498266Sopenharmony_ci fputs(
511313498266Sopenharmony_ci"                     dedicated command line options.\n"
511413498266Sopenharmony_ci"\n"
511513498266Sopenharmony_ci"                     This option only changes the actual word used in the HTTP\n"
511613498266Sopenharmony_ci"                     request,  it  does not alter the way curl behaves. So for\n"
511713498266Sopenharmony_ci"                     example if you want to make a proper HEAD request,  using\n"
511813498266Sopenharmony_ci"                     -X  HEAD does not suffice. You need to use the -I, --head\n"
511913498266Sopenharmony_ci"                     option.\n"
512013498266Sopenharmony_ci"\n"
512113498266Sopenharmony_ci"                     The method string you set with -X, --request is used  for\n"
512213498266Sopenharmony_ci, stdout);
512313498266Sopenharmony_ci fputs(
512413498266Sopenharmony_ci"                     all requests, which if you for example use -L, --location\n"
512513498266Sopenharmony_ci"                     may  cause  unintended  side-effects  when  curl does not\n"
512613498266Sopenharmony_ci"                     change request method according to the HTTP 30x  response\n"
512713498266Sopenharmony_ci"                     codes - and similar.\n"
512813498266Sopenharmony_ci"\n"
512913498266Sopenharmony_ci"              FTP    Specifies  a  custom  FTP  command to use instead of LIST\n"
513013498266Sopenharmony_ci"                     when doing file lists with FTP.\n"
513113498266Sopenharmony_ci"\n"
513213498266Sopenharmony_ci"              POP3   Specifies a custom POP3 command to use instead of LIST or\n"
513313498266Sopenharmony_ci, stdout);
513413498266Sopenharmony_ci fputs(
513513498266Sopenharmony_ci"                     RETR.\n"
513613498266Sopenharmony_ci"\n"
513713498266Sopenharmony_ci"              IMAP   Specifies a custom IMAP command to use instead of LIST.\n"
513813498266Sopenharmony_ci"\n"
513913498266Sopenharmony_ci"              SMTP   Specifies a custom SMTP command to use instead of HELP or\n"
514013498266Sopenharmony_ci"                     VRFY.\n"
514113498266Sopenharmony_ci"\n"
514213498266Sopenharmony_ci"              If --request is provided several times, the last  set  value  is\n"
514313498266Sopenharmony_ci"              used.\n"
514413498266Sopenharmony_ci"\n"
514513498266Sopenharmony_ci"              Examples:\n"
514613498266Sopenharmony_ci"               curl -X \"DELETE\" https://example.com\n"
514713498266Sopenharmony_ci"               curl -X NLST ftp://example.com/\n"
514813498266Sopenharmony_ci"\n"
514913498266Sopenharmony_ci"              See also --request-target.\n"
515013498266Sopenharmony_ci"\n"
515113498266Sopenharmony_ci, stdout);
515213498266Sopenharmony_ci fputs(
515313498266Sopenharmony_ci"       --resolve <[+]host:port:addr[,addr]...>\n"
515413498266Sopenharmony_ci"              Provide  a custom address for a specific host and port pair. Us-\n"
515513498266Sopenharmony_ci"              ing this, you can make the curl requests(s) use a specified  ad-\n"
515613498266Sopenharmony_ci"              dress  and prevent the otherwise normally resolved address to be\n"
515713498266Sopenharmony_ci"              used. Consider it a sort of /etc/hosts alternative  provided  on\n"
515813498266Sopenharmony_ci"              the  command line. The port number should be the number used for\n"
515913498266Sopenharmony_ci, stdout);
516013498266Sopenharmony_ci fputs(
516113498266Sopenharmony_ci"              the specific protocol the host is used for. It  means  you  need\n"
516213498266Sopenharmony_ci"              several entries if you want to provide address for the same host\n"
516313498266Sopenharmony_ci"              but different ports.\n"
516413498266Sopenharmony_ci"\n"
516513498266Sopenharmony_ci"              By  specifying '*' as host you can tell curl to resolve any host\n"
516613498266Sopenharmony_ci"              and specific port pair to the specified address. Wildcard is re-\n"
516713498266Sopenharmony_ci"              solved last so any --resolve with a specific host  and  port  is\n"
516813498266Sopenharmony_ci"              used first.\n"
516913498266Sopenharmony_ci"\n"
517013498266Sopenharmony_ci, stdout);
517113498266Sopenharmony_ci fputs(
517213498266Sopenharmony_ci"              The  provided  address  set  by  this option is used even if -4,\n"
517313498266Sopenharmony_ci"              --ipv4 or -6, --ipv6 is set to make curl use another IP version.\n"
517413498266Sopenharmony_ci"              By prefixing the host with a '+' you can make the entry time out\n"
517513498266Sopenharmony_ci"              after curl's default timeout (1 minute).  Note  that  this  only\n"
517613498266Sopenharmony_ci"              makes  sense  for  long running parallel transfers with a lot of\n"
517713498266Sopenharmony_ci"              files. In such cases, if this option is used curl tries  to  re-\n"
517813498266Sopenharmony_ci, stdout);
517913498266Sopenharmony_ci fputs(
518013498266Sopenharmony_ci"              solve  the  host  as  it normally would once the timeout has ex-\n"
518113498266Sopenharmony_ci"              pired.\n"
518213498266Sopenharmony_ci"\n"
518313498266Sopenharmony_ci"              Support for providing the IP address within [brackets] was added\n"
518413498266Sopenharmony_ci"              in 7.57.0.\n"
518513498266Sopenharmony_ci"\n"
518613498266Sopenharmony_ci"              Support for providing multiple IP addresses per entry was  added\n"
518713498266Sopenharmony_ci"              in 7.59.0.\n"
518813498266Sopenharmony_ci"\n"
518913498266Sopenharmony_ci"              Support for resolving with wildcard was added in 7.64.0.\n"
519013498266Sopenharmony_ci"\n"
519113498266Sopenharmony_ci"              Support for the '+' prefix was was added in 7.75.0.\n"
519213498266Sopenharmony_ci"\n"
519313498266Sopenharmony_ci, stdout);
519413498266Sopenharmony_ci fputs(
519513498266Sopenharmony_ci"              --resolve can be used several times in a command line\n"
519613498266Sopenharmony_ci"\n"
519713498266Sopenharmony_ci"              Example:\n"
519813498266Sopenharmony_ci"               curl --resolve example.com:443:127.0.0.1 https://example.com\n"
519913498266Sopenharmony_ci"\n"
520013498266Sopenharmony_ci"              See also --connect-to and --alt-svc.\n"
520113498266Sopenharmony_ci"\n"
520213498266Sopenharmony_ci"       --retry-all-errors\n"
520313498266Sopenharmony_ci"              Retry on any error. This option is used together with --retry.\n"
520413498266Sopenharmony_ci"\n"
520513498266Sopenharmony_ci"              This  option  is the \"sledgehammer\" of retrying. Do not use this\n"
520613498266Sopenharmony_ci"              option by default (for example in your curlrc), there may be un-\n"
520713498266Sopenharmony_ci, stdout);
520813498266Sopenharmony_ci fputs(
520913498266Sopenharmony_ci"              intended consequences such as  sending  or  receiving  duplicate\n"
521013498266Sopenharmony_ci"              data.  Do not use with redirected input or output. You'd be much\n"
521113498266Sopenharmony_ci"              better off handling your unique problems in shell script. Please\n"
521213498266Sopenharmony_ci"              read the example below.\n"
521313498266Sopenharmony_ci"\n"
521413498266Sopenharmony_ci"              WARNING: For server compatibility curl attempts to retry  failed\n"
521513498266Sopenharmony_ci"              flaky  transfers  as close as possible to how they were started,\n"
521613498266Sopenharmony_ci, stdout);
521713498266Sopenharmony_ci fputs(
521813498266Sopenharmony_ci"              but this is not possible with redirected input  or  output.  For\n"
521913498266Sopenharmony_ci"              example,  before  retrying  it removes output data from a failed\n"
522013498266Sopenharmony_ci"              partial transfer that was written to  an  output  file.  However\n"
522113498266Sopenharmony_ci"              this is not true of data redirected to a | pipe or > file, which\n"
522213498266Sopenharmony_ci"              are  not  reset.  We strongly suggest you do not parse or record\n"
522313498266Sopenharmony_ci"              output via redirect in combination with this option,  since  you\n"
522413498266Sopenharmony_ci, stdout);
522513498266Sopenharmony_ci fputs(
522613498266Sopenharmony_ci"              may receive duplicate data.\n"
522713498266Sopenharmony_ci"\n"
522813498266Sopenharmony_ci"              By default curl does not return error for transfers with an HTTP\n"
522913498266Sopenharmony_ci"              response  code that indicates an HTTP error, if the transfer was\n"
523013498266Sopenharmony_ci"              successful. For example, if a server replies 404 Not  Found  and\n"
523113498266Sopenharmony_ci"              the  reply  is  fully  received  then that is not an error. When\n"
523213498266Sopenharmony_ci"              --retry is used then curl retries on some  HTTP  response  codes\n"
523313498266Sopenharmony_ci, stdout);
523413498266Sopenharmony_ci fputs(
523513498266Sopenharmony_ci"              that  indicate  transient HTTP errors, but that does not include\n"
523613498266Sopenharmony_ci"              most 4xx response codes such as 404. If you want to retry on all\n"
523713498266Sopenharmony_ci"              response codes that indicate HTTP errors (4xx and 5xx) then com-\n"
523813498266Sopenharmony_ci"              bine with -f, --fail.\n"
523913498266Sopenharmony_ci"\n"
524013498266Sopenharmony_ci"              Providing --retry-all-errors multiple times has no extra effect.\n"
524113498266Sopenharmony_ci"              Disable it again with --no-retry-all-errors.\n"
524213498266Sopenharmony_ci"\n"
524313498266Sopenharmony_ci"              Example:\n"
524413498266Sopenharmony_ci, stdout);
524513498266Sopenharmony_ci fputs(
524613498266Sopenharmony_ci"               curl --retry 5 --retry-all-errors https://example.com\n"
524713498266Sopenharmony_ci"\n"
524813498266Sopenharmony_ci"              See also --retry. Added in 7.71.0.\n"
524913498266Sopenharmony_ci"\n"
525013498266Sopenharmony_ci"       --retry-connrefused\n"
525113498266Sopenharmony_ci"              In addition to the other conditions, consider ECONNREFUSED as  a\n"
525213498266Sopenharmony_ci"              transient  error  too  for --retry. This option is used together\n"
525313498266Sopenharmony_ci"              with --retry.\n"
525413498266Sopenharmony_ci"\n"
525513498266Sopenharmony_ci"              Providing --retry-connrefused multiple times has  no  extra  ef-\n"
525613498266Sopenharmony_ci"              fect.  Disable it again with --no-retry-connrefused.\n"
525713498266Sopenharmony_ci"\n"
525813498266Sopenharmony_ci, stdout);
525913498266Sopenharmony_ci fputs(
526013498266Sopenharmony_ci"              Example:\n"
526113498266Sopenharmony_ci"               curl --retry-connrefused --retry 7 https://example.com\n"
526213498266Sopenharmony_ci"\n"
526313498266Sopenharmony_ci"              See also --retry and --retry-all-errors. Added in 7.52.0.\n"
526413498266Sopenharmony_ci"\n"
526513498266Sopenharmony_ci"       --retry-delay <seconds>\n"
526613498266Sopenharmony_ci"              Make  curl  sleep  this  amount of time before each retry when a\n"
526713498266Sopenharmony_ci"              transfer has failed with a transient error (it changes  the  de-\n"
526813498266Sopenharmony_ci"              fault  backoff  time  algorithm between retries). This option is\n"
526913498266Sopenharmony_ci, stdout);
527013498266Sopenharmony_ci fputs(
527113498266Sopenharmony_ci"              only interesting if --retry is also used. Setting this delay  to\n"
527213498266Sopenharmony_ci"              zero makes curl use the default backoff time.\n"
527313498266Sopenharmony_ci"\n"
527413498266Sopenharmony_ci"              If  --retry-delay  is provided several times, the last set value\n"
527513498266Sopenharmony_ci"              is used.\n"
527613498266Sopenharmony_ci"              Example:\n"
527713498266Sopenharmony_ci"               curl --retry-delay 5 --retry 7 https://example.com\n"
527813498266Sopenharmony_ci"\n"
527913498266Sopenharmony_ci"              See also --retry.\n"
528013498266Sopenharmony_ci"\n"
528113498266Sopenharmony_ci"       --retry-max-time <seconds>\n"
528213498266Sopenharmony_ci"              The retry timer is reset before the first transfer attempt.  Re-\n"
528313498266Sopenharmony_ci, stdout);
528413498266Sopenharmony_ci fputs(
528513498266Sopenharmony_ci"              tries  are  done as usual (see --retry) as long as the timer has\n"
528613498266Sopenharmony_ci"              not reached this given limit. Notice that if the timer  has  not\n"
528713498266Sopenharmony_ci"              reached  the limit, the request is made and while performing, it\n"
528813498266Sopenharmony_ci"              may take longer than this given time period. To limit  a  single\n"
528913498266Sopenharmony_ci"              request's  maximum  time, use -m, --max-time. Set this option to\n"
529013498266Sopenharmony_ci"              zero to not timeout retries.\n"
529113498266Sopenharmony_ci"\n"
529213498266Sopenharmony_ci, stdout);
529313498266Sopenharmony_ci fputs(
529413498266Sopenharmony_ci"              If --retry-max-time is provided  several  times,  the  last  set\n"
529513498266Sopenharmony_ci"              value is used.\n"
529613498266Sopenharmony_ci"\n"
529713498266Sopenharmony_ci"              Example:\n"
529813498266Sopenharmony_ci"               curl --retry-max-time 30 --retry 10 https://example.com\n"
529913498266Sopenharmony_ci"\n"
530013498266Sopenharmony_ci"              See also --retry.\n"
530113498266Sopenharmony_ci"\n"
530213498266Sopenharmony_ci"       --retry <num>\n"
530313498266Sopenharmony_ci"              If  a  transient  error is returned when curl tries to perform a\n"
530413498266Sopenharmony_ci"              transfer, it retries this number of times before giving up. Set-\n"
530513498266Sopenharmony_ci"              ting the number to 0 makes curl do no retries (which is the  de-\n"
530613498266Sopenharmony_ci, stdout);
530713498266Sopenharmony_ci fputs(
530813498266Sopenharmony_ci"              fault).  Transient error means either: a timeout, an FTP 4xx re-\n"
530913498266Sopenharmony_ci"              sponse code or an HTTP 408, 429, 500, 502, 503 or  504  response\n"
531013498266Sopenharmony_ci"              code.\n"
531113498266Sopenharmony_ci"\n"
531213498266Sopenharmony_ci"              When  curl is about to retry a transfer, it first waits one sec-\n"
531313498266Sopenharmony_ci"              ond and then for all forthcoming retries it doubles the  waiting\n"
531413498266Sopenharmony_ci"              time  until  it  reaches 10 minutes which then remains delay be-\n"
531513498266Sopenharmony_ci"              tween the rest of the retries. By using --retry-delay  you  dis-\n"
531613498266Sopenharmony_ci, stdout);
531713498266Sopenharmony_ci fputs(
531813498266Sopenharmony_ci"              able    this    exponential    backoff   algorithm.   See   also\n"
531913498266Sopenharmony_ci"              --retry-max-time to limit the total time allowed for retries.\n"
532013498266Sopenharmony_ci"\n"
532113498266Sopenharmony_ci"              curl complies with the Retry-After: response header if  one  was\n"
532213498266Sopenharmony_ci"              present to know when to issue the next retry (added in 7.66.0).\n"
532313498266Sopenharmony_ci"\n"
532413498266Sopenharmony_ci"              If  --retry  is  provided  several  times, the last set value is\n"
532513498266Sopenharmony_ci"              used.\n"
532613498266Sopenharmony_ci"\n"
532713498266Sopenharmony_ci"              Example:\n"
532813498266Sopenharmony_ci"               curl --retry 7 https://example.com\n"
532913498266Sopenharmony_ci"\n"
533013498266Sopenharmony_ci, stdout);
533113498266Sopenharmony_ci fputs(
533213498266Sopenharmony_ci"              See also --retry-max-time.\n"
533313498266Sopenharmony_ci"\n"
533413498266Sopenharmony_ci"       --sasl-authzid <identity>\n"
533513498266Sopenharmony_ci"              Use this authorization identity (authzid), during SASL PLAIN au-\n"
533613498266Sopenharmony_ci"              thentication, in addition to the authentication identity  (auth-\n"
533713498266Sopenharmony_ci"              cid) as specified by -u, --user.\n"
533813498266Sopenharmony_ci"\n"
533913498266Sopenharmony_ci"              If  the  option is not specified, the server derives the authzid\n"
534013498266Sopenharmony_ci"              from the authcid, but if specified, and depending on the  server\n"
534113498266Sopenharmony_ci, stdout);
534213498266Sopenharmony_ci fputs(
534313498266Sopenharmony_ci"              implementation,  it  may be used to access another user's inbox,\n"
534413498266Sopenharmony_ci"              that the user has been granted access to, or  a  shared  mailbox\n"
534513498266Sopenharmony_ci"              for example.\n"
534613498266Sopenharmony_ci"\n"
534713498266Sopenharmony_ci"              If  --sasl-authzid is provided several times, the last set value\n"
534813498266Sopenharmony_ci"              is used.\n"
534913498266Sopenharmony_ci"              Example:\n"
535013498266Sopenharmony_ci"               curl --sasl-authzid zid imap://example.com/\n"
535113498266Sopenharmony_ci"\n"
535213498266Sopenharmony_ci"              See also --login-options. Added in 7.66.0.\n"
535313498266Sopenharmony_ci"\n"
535413498266Sopenharmony_ci"       --sasl-ir\n"
535513498266Sopenharmony_ci, stdout);
535613498266Sopenharmony_ci fputs(
535713498266Sopenharmony_ci"              Enable initial response in SASL authentication.\n"
535813498266Sopenharmony_ci"\n"
535913498266Sopenharmony_ci"              Providing --sasl-ir multiple times has no extra effect.  Disable\n"
536013498266Sopenharmony_ci"              it again with --no-sasl-ir.\n"
536113498266Sopenharmony_ci"\n"
536213498266Sopenharmony_ci"              Example:\n"
536313498266Sopenharmony_ci"               curl --sasl-ir imap://example.com/\n"
536413498266Sopenharmony_ci"\n"
536513498266Sopenharmony_ci"              See also --sasl-authzid.\n"
536613498266Sopenharmony_ci"\n"
536713498266Sopenharmony_ci"       --service-name <name>\n"
536813498266Sopenharmony_ci"              This option allows you to change the service name for SPNEGO.\n"
536913498266Sopenharmony_ci"\n"
537013498266Sopenharmony_ci"              If --service-name is provided several times, the last set  value\n"
537113498266Sopenharmony_ci, stdout);
537213498266Sopenharmony_ci fputs(
537313498266Sopenharmony_ci"              is used.\n"
537413498266Sopenharmony_ci"              Example:\n"
537513498266Sopenharmony_ci"               curl --service-name sockd/server https://example.com\n"
537613498266Sopenharmony_ci"\n"
537713498266Sopenharmony_ci"              See also --negotiate and --proxy-service-name.\n"
537813498266Sopenharmony_ci"\n"
537913498266Sopenharmony_ci"       -S, --show-error\n"
538013498266Sopenharmony_ci"              When used with -s, --silent, it makes curl show an error message\n"
538113498266Sopenharmony_ci"              if it fails.\n"
538213498266Sopenharmony_ci"\n"
538313498266Sopenharmony_ci"              This option is global and does not need to be specified for each\n"
538413498266Sopenharmony_ci"              use of --next.\n"
538513498266Sopenharmony_ci"\n"
538613498266Sopenharmony_ci"              Providing --show-error multiple times has no extra effect.  Dis-\n"
538713498266Sopenharmony_ci, stdout);
538813498266Sopenharmony_ci fputs(
538913498266Sopenharmony_ci"              able it again with --no-show-error.\n"
539013498266Sopenharmony_ci"\n"
539113498266Sopenharmony_ci"              Example:\n"
539213498266Sopenharmony_ci"               curl --show-error --silent https://example.com\n"
539313498266Sopenharmony_ci"\n"
539413498266Sopenharmony_ci"              See also --no-progress-meter.\n"
539513498266Sopenharmony_ci"\n"
539613498266Sopenharmony_ci"       -s, --silent\n"
539713498266Sopenharmony_ci"              Silent  or  quiet mode. Do not show progress meter or error mes-\n"
539813498266Sopenharmony_ci"              sages. Makes Curl mute. It still outputs the data you  ask  for,\n"
539913498266Sopenharmony_ci"              potentially even to the terminal/stdout unless you redirect it.\n"
540013498266Sopenharmony_ci"\n"
540113498266Sopenharmony_ci, stdout);
540213498266Sopenharmony_ci fputs(
540313498266Sopenharmony_ci"              Use  -S,  --show-error  in  addition  to  this option to disable\n"
540413498266Sopenharmony_ci"              progress meter but still show error messages.\n"
540513498266Sopenharmony_ci"\n"
540613498266Sopenharmony_ci"              Providing --silent multiple times has no extra effect.   Disable\n"
540713498266Sopenharmony_ci"              it again with --no-silent.\n"
540813498266Sopenharmony_ci"\n"
540913498266Sopenharmony_ci"              Example:\n"
541013498266Sopenharmony_ci"               curl -s https://example.com\n"
541113498266Sopenharmony_ci"\n"
541213498266Sopenharmony_ci"              See also -v, --verbose, --stderr and --no-progress-meter.\n"
541313498266Sopenharmony_ci"\n"
541413498266Sopenharmony_ci"       --socks4 <host[:port]>\n"
541513498266Sopenharmony_ci, stdout);
541613498266Sopenharmony_ci fputs(
541713498266Sopenharmony_ci"              Use the specified SOCKS4 proxy. If the port number is not speci-\n"
541813498266Sopenharmony_ci"              fied,  it  is  assumed at port 1080. Using this socket type make\n"
541913498266Sopenharmony_ci"              curl resolve the host name and passing the  address  on  to  the\n"
542013498266Sopenharmony_ci"              proxy.\n"
542113498266Sopenharmony_ci"\n"
542213498266Sopenharmony_ci"              To  specify  proxy  on  a  unix domain socket, use localhost for\n"
542313498266Sopenharmony_ci"              host, e.g.  \"socks4://localhost/path/to/socket.sock\"\n"
542413498266Sopenharmony_ci"\n"
542513498266Sopenharmony_ci"              This option overrides any previous use of -x, --proxy,  as  they\n"
542613498266Sopenharmony_ci, stdout);
542713498266Sopenharmony_ci fputs(
542813498266Sopenharmony_ci"              are mutually exclusive.\n"
542913498266Sopenharmony_ci"\n"
543013498266Sopenharmony_ci"              This  option is superfluous since you can specify a socks4 proxy\n"
543113498266Sopenharmony_ci"              with -x, --proxy using a socks4:// protocol prefix.\n"
543213498266Sopenharmony_ci"\n"
543313498266Sopenharmony_ci"              --preproxy can be used to specify a SOCKS proxy at the same time\n"
543413498266Sopenharmony_ci"              proxy is used with an HTTP/HTTPS proxy  (added  in  7.52.0).  In\n"
543513498266Sopenharmony_ci"              such  a  case,  curl  first connects to the SOCKS proxy and then\n"
543613498266Sopenharmony_ci"              connects (through SOCKS) to the HTTP or HTTPS proxy.\n"
543713498266Sopenharmony_ci"\n"
543813498266Sopenharmony_ci, stdout);
543913498266Sopenharmony_ci fputs(
544013498266Sopenharmony_ci"              If --socks4 is provided several times, the  last  set  value  is\n"
544113498266Sopenharmony_ci"              used.\n"
544213498266Sopenharmony_ci"\n"
544313498266Sopenharmony_ci"              Example:\n"
544413498266Sopenharmony_ci"               curl --socks4 hostname:4096 https://example.com\n"
544513498266Sopenharmony_ci"\n"
544613498266Sopenharmony_ci"              See also --socks4a, --socks5 and --socks5-hostname.\n"
544713498266Sopenharmony_ci"\n"
544813498266Sopenharmony_ci"       --socks4a <host[:port]>\n"
544913498266Sopenharmony_ci"              Use the specified SOCKS4a proxy. If the port number is not spec-\n"
545013498266Sopenharmony_ci"              ified,  it  is  assumed at port 1080. This asks the proxy to re-\n"
545113498266Sopenharmony_ci"              solve the host name.\n"
545213498266Sopenharmony_ci"\n"
545313498266Sopenharmony_ci, stdout);
545413498266Sopenharmony_ci fputs(
545513498266Sopenharmony_ci"              To specify proxy on a unix  domain  socket,  use  localhost  for\n"
545613498266Sopenharmony_ci"              host, e.g.  \"socks4a://localhost/path/to/socket.sock\"\n"
545713498266Sopenharmony_ci"\n"
545813498266Sopenharmony_ci"              This  option  overrides any previous use of -x, --proxy, as they\n"
545913498266Sopenharmony_ci"              are mutually exclusive.\n"
546013498266Sopenharmony_ci"\n"
546113498266Sopenharmony_ci"              This option is superfluous since you can specify a socks4a proxy\n"
546213498266Sopenharmony_ci"              with -x, --proxy using a socks4a:// protocol prefix.\n"
546313498266Sopenharmony_ci"\n"
546413498266Sopenharmony_ci"              --preproxy can be used to specify a SOCKS proxy at the same time\n"
546513498266Sopenharmony_ci, stdout);
546613498266Sopenharmony_ci fputs(
546713498266Sopenharmony_ci"              -x, --proxy is used with an HTTP/HTTPS proxy (added in  7.52.0).\n"
546813498266Sopenharmony_ci"              In  such a case, curl first connects to the SOCKS proxy and then\n"
546913498266Sopenharmony_ci"              connects (through SOCKS) to the HTTP or HTTPS proxy.\n"
547013498266Sopenharmony_ci"\n"
547113498266Sopenharmony_ci"              If --socks4a is provided several times, the last  set  value  is\n"
547213498266Sopenharmony_ci"              used.\n"
547313498266Sopenharmony_ci"\n"
547413498266Sopenharmony_ci"              Example:\n"
547513498266Sopenharmony_ci"               curl --socks4a hostname:4096 https://example.com\n"
547613498266Sopenharmony_ci"\n"
547713498266Sopenharmony_ci"              See also --socks4, --socks5 and --socks5-hostname.\n"
547813498266Sopenharmony_ci"\n"
547913498266Sopenharmony_ci, stdout);
548013498266Sopenharmony_ci fputs(
548113498266Sopenharmony_ci"       --socks5-basic\n"
548213498266Sopenharmony_ci"              Tells curl to use username/password authentication when connect-\n"
548313498266Sopenharmony_ci"              ing  to  a SOCKS5 proxy. The username/password authentication is\n"
548413498266Sopenharmony_ci"              enabled by default. Use --socks5-gssapi to force GSS-API authen-\n"
548513498266Sopenharmony_ci"              tication to SOCKS5 proxies.\n"
548613498266Sopenharmony_ci"\n"
548713498266Sopenharmony_ci"              Providing --socks5-basic multiple times has no extra effect.\n"
548813498266Sopenharmony_ci"\n"
548913498266Sopenharmony_ci"              Example:\n"
549013498266Sopenharmony_ci"               curl --socks5-basic --socks5 hostname:4096 https://example.com\n"
549113498266Sopenharmony_ci"\n"
549213498266Sopenharmony_ci, stdout);
549313498266Sopenharmony_ci fputs(
549413498266Sopenharmony_ci"              See also --socks5. Added in 7.55.0.\n"
549513498266Sopenharmony_ci"\n"
549613498266Sopenharmony_ci"       --socks5-gssapi-nec\n"
549713498266Sopenharmony_ci"              As part of the GSS-API negotiation a protection mode is  negoti-\n"
549813498266Sopenharmony_ci"              ated.  RFC  1961 says in section 4.3/4.4 it should be protected,\n"
549913498266Sopenharmony_ci"              but the  NEC  reference  implementation  does  not.  The  option\n"
550013498266Sopenharmony_ci"              --socks5-gssapi-nec  allows the unprotected exchange of the pro-\n"
550113498266Sopenharmony_ci"              tection mode negotiation.\n"
550213498266Sopenharmony_ci"\n"
550313498266Sopenharmony_ci, stdout);
550413498266Sopenharmony_ci fputs(
550513498266Sopenharmony_ci"              Providing --socks5-gssapi-nec multiple times has  no  extra  ef-\n"
550613498266Sopenharmony_ci"              fect.  Disable it again with --no-socks5-gssapi-nec.\n"
550713498266Sopenharmony_ci"\n"
550813498266Sopenharmony_ci"              Example:\n"
550913498266Sopenharmony_ci"               curl --socks5-gssapi-nec --socks5 hostname:4096 https://example.com\n"
551013498266Sopenharmony_ci"\n"
551113498266Sopenharmony_ci"              See also --socks5.\n"
551213498266Sopenharmony_ci"\n"
551313498266Sopenharmony_ci"       --socks5-gssapi-service <name>\n"
551413498266Sopenharmony_ci"              The default service name for a socks server is rcmd/server-fqdn.\n"
551513498266Sopenharmony_ci"              This option allows you to change it.\n"
551613498266Sopenharmony_ci"\n"
551713498266Sopenharmony_ci, stdout);
551813498266Sopenharmony_ci fputs(
551913498266Sopenharmony_ci"              If  --socks5-gssapi-service  is provided several times, the last\n"
552013498266Sopenharmony_ci"              set value is used.\n"
552113498266Sopenharmony_ci"\n"
552213498266Sopenharmony_ci"              Example:\n"
552313498266Sopenharmony_ci"               curl --socks5-gssapi-service sockd --socks5 hostname:4096 https://example.com\n"
552413498266Sopenharmony_ci"\n"
552513498266Sopenharmony_ci"              See also --socks5.\n"
552613498266Sopenharmony_ci"\n"
552713498266Sopenharmony_ci"       --socks5-gssapi\n"
552813498266Sopenharmony_ci"              Tells curl to use GSS-API authentication when  connecting  to  a\n"
552913498266Sopenharmony_ci"              SOCKS5  proxy.  The GSS-API authentication is enabled by default\n"
553013498266Sopenharmony_ci, stdout);
553113498266Sopenharmony_ci fputs(
553213498266Sopenharmony_ci"              (if curl is compiled with GSS-API support).  Use  --socks5-basic\n"
553313498266Sopenharmony_ci"              to force username/password authentication to SOCKS5 proxies.\n"
553413498266Sopenharmony_ci"\n"
553513498266Sopenharmony_ci"              Providing  --socks5-gssapi  multiple  times has no extra effect.\n"
553613498266Sopenharmony_ci"              Disable it again with --no-socks5-gssapi.\n"
553713498266Sopenharmony_ci"\n"
553813498266Sopenharmony_ci"              Example:\n"
553913498266Sopenharmony_ci"               curl --socks5-gssapi --socks5 hostname:4096 https://example.com\n"
554013498266Sopenharmony_ci"\n"
554113498266Sopenharmony_ci"              See also --socks5. Added in 7.55.0.\n"
554213498266Sopenharmony_ci"\n"
554313498266Sopenharmony_ci"       --socks5-hostname <host[:port]>\n"
554413498266Sopenharmony_ci, stdout);
554513498266Sopenharmony_ci fputs(
554613498266Sopenharmony_ci"              Use the specified SOCKS5 proxy (and let the  proxy  resolve  the\n"
554713498266Sopenharmony_ci"              host  name).  If the port number is not specified, it is assumed\n"
554813498266Sopenharmony_ci"              at port 1080.\n"
554913498266Sopenharmony_ci"\n"
555013498266Sopenharmony_ci"              To specify proxy on a unix  domain  socket,  use  localhost  for\n"
555113498266Sopenharmony_ci"              host, e.g.  \"socks5h://localhost/path/to/socket.sock\"\n"
555213498266Sopenharmony_ci"\n"
555313498266Sopenharmony_ci"              This  option  overrides any previous use of -x, --proxy, as they\n"
555413498266Sopenharmony_ci"              are mutually exclusive.\n"
555513498266Sopenharmony_ci"\n"
555613498266Sopenharmony_ci, stdout);
555713498266Sopenharmony_ci fputs(
555813498266Sopenharmony_ci"              This option is superfluous since you can specify a socks5  host-\n"
555913498266Sopenharmony_ci"              name proxy with -x, --proxy using a socks5h:// protocol prefix.\n"
556013498266Sopenharmony_ci"\n"
556113498266Sopenharmony_ci"              --preproxy can be used to specify a SOCKS proxy at the same time\n"
556213498266Sopenharmony_ci"              -x,  --proxy is used with an HTTP/HTTPS proxy (added in 7.52.0).\n"
556313498266Sopenharmony_ci"              In such a case, curl first connects to the SOCKS proxy and  then\n"
556413498266Sopenharmony_ci"              connects (through SOCKS) to the HTTP or HTTPS proxy.\n"
556513498266Sopenharmony_ci"\n"
556613498266Sopenharmony_ci, stdout);
556713498266Sopenharmony_ci fputs(
556813498266Sopenharmony_ci"              If  --socks5-hostname  is  provided  several times, the last set\n"
556913498266Sopenharmony_ci"              value is used.\n"
557013498266Sopenharmony_ci"\n"
557113498266Sopenharmony_ci"              Example:\n"
557213498266Sopenharmony_ci"               curl --socks5-hostname proxy.example:7000 https://example.com\n"
557313498266Sopenharmony_ci"\n"
557413498266Sopenharmony_ci"              See also --socks5 and --socks4a.\n"
557513498266Sopenharmony_ci"\n"
557613498266Sopenharmony_ci"       --socks5 <host[:port]>\n"
557713498266Sopenharmony_ci"              Use the specified SOCKS5 proxy - but resolve the host  name  lo-\n"
557813498266Sopenharmony_ci"              cally.  If  the  port  number is not specified, it is assumed at\n"
557913498266Sopenharmony_ci"              port 1080.\n"
558013498266Sopenharmony_ci"\n"
558113498266Sopenharmony_ci, stdout);
558213498266Sopenharmony_ci fputs(
558313498266Sopenharmony_ci"              To specify proxy on a unix  domain  socket,  use  localhost  for\n"
558413498266Sopenharmony_ci"              host, e.g.  \"socks5://localhost/path/to/socket.sock\"\n"
558513498266Sopenharmony_ci"\n"
558613498266Sopenharmony_ci"              This  option  overrides any previous use of -x, --proxy, as they\n"
558713498266Sopenharmony_ci"              are mutually exclusive.\n"
558813498266Sopenharmony_ci"\n"
558913498266Sopenharmony_ci"              This option is superfluous since you can specify a socks5  proxy\n"
559013498266Sopenharmony_ci"              with -x, --proxy using a socks5:// protocol prefix.\n"
559113498266Sopenharmony_ci"\n"
559213498266Sopenharmony_ci"              --preproxy can be used to specify a SOCKS proxy at the same time\n"
559313498266Sopenharmony_ci, stdout);
559413498266Sopenharmony_ci fputs(
559513498266Sopenharmony_ci"              -x,  --proxy is used with an HTTP/HTTPS proxy (added in 7.52.0).\n"
559613498266Sopenharmony_ci"              In such a case, curl first connects to the SOCKS proxy and  then\n"
559713498266Sopenharmony_ci"              connects (through SOCKS) to the HTTP or HTTPS proxy.\n"
559813498266Sopenharmony_ci"\n"
559913498266Sopenharmony_ci"              This  option (as well as --socks4) does not work with IPV6, FTPS\n"
560013498266Sopenharmony_ci"              or LDAP.\n"
560113498266Sopenharmony_ci"\n"
560213498266Sopenharmony_ci"              If --socks5 is provided several times, the  last  set  value  is\n"
560313498266Sopenharmony_ci"              used.\n"
560413498266Sopenharmony_ci"\n"
560513498266Sopenharmony_ci"              Example:\n"
560613498266Sopenharmony_ci, stdout);
560713498266Sopenharmony_ci fputs(
560813498266Sopenharmony_ci"               curl --socks5 proxy.example:7000 https://example.com\n"
560913498266Sopenharmony_ci"\n"
561013498266Sopenharmony_ci"              See also --socks5-hostname and --socks4a.\n"
561113498266Sopenharmony_ci"\n"
561213498266Sopenharmony_ci"       -Y, --speed-limit <speed>\n"
561313498266Sopenharmony_ci"              If  a  transfer is slower than this set speed (in bytes per sec-\n"
561413498266Sopenharmony_ci"              ond) for a given number of seconds, it gets  aborted.  The  time\n"
561513498266Sopenharmony_ci"              period  is  set  with  -y, --speed-time and is 30 seconds by de-\n"
561613498266Sopenharmony_ci"              fault.\n"
561713498266Sopenharmony_ci"\n"
561813498266Sopenharmony_ci"              If --speed-limit is provided several times, the last  set  value\n"
561913498266Sopenharmony_ci, stdout);
562013498266Sopenharmony_ci fputs(
562113498266Sopenharmony_ci"              is used.\n"
562213498266Sopenharmony_ci"              Example:\n"
562313498266Sopenharmony_ci"               curl --speed-limit 300 --speed-time 10 https://example.com\n"
562413498266Sopenharmony_ci"\n"
562513498266Sopenharmony_ci"              See also -y, --speed-time, --limit-rate and -m, --max-time.\n"
562613498266Sopenharmony_ci"\n"
562713498266Sopenharmony_ci"       -y, --speed-time <seconds>\n"
562813498266Sopenharmony_ci"              If a transfer runs slower than speed-limit bytes per second dur-\n"
562913498266Sopenharmony_ci"              ing  a speed-time period, the transfer is aborted. If speed-time\n"
563013498266Sopenharmony_ci"              is used, the default  speed-limit  is  1  unless  set  with  -Y,\n"
563113498266Sopenharmony_ci"              --speed-limit.\n"
563213498266Sopenharmony_ci"\n"
563313498266Sopenharmony_ci, stdout);
563413498266Sopenharmony_ci fputs(
563513498266Sopenharmony_ci"              This option controls transfers (in both directions) but does not\n"
563613498266Sopenharmony_ci"              affect  slow connects etc. If this is a concern for you, try the\n"
563713498266Sopenharmony_ci"              --connect-timeout option.\n"
563813498266Sopenharmony_ci"\n"
563913498266Sopenharmony_ci"              If --speed-time is provided several times, the last set value is\n"
564013498266Sopenharmony_ci"              used.\n"
564113498266Sopenharmony_ci"\n"
564213498266Sopenharmony_ci"              Example:\n"
564313498266Sopenharmony_ci"               curl --speed-limit 300 --speed-time 10 https://example.com\n"
564413498266Sopenharmony_ci"\n"
564513498266Sopenharmony_ci"              See also -Y, --speed-limit and --limit-rate.\n"
564613498266Sopenharmony_ci"\n"
564713498266Sopenharmony_ci"       --ssl-allow-beast\n"
564813498266Sopenharmony_ci, stdout);
564913498266Sopenharmony_ci fputs(
565013498266Sopenharmony_ci"              (TLS) This option tells curl to not work around a security  flaw\n"
565113498266Sopenharmony_ci"              in  the SSL3 and TLS1.0 protocols known as BEAST. If this option\n"
565213498266Sopenharmony_ci"              is not used, the SSL layer may use workarounds  known  to  cause\n"
565313498266Sopenharmony_ci"              interoperability problems with some older SSL implementations.\n"
565413498266Sopenharmony_ci"\n"
565513498266Sopenharmony_ci"              WARNING: this option loosens the SSL security, and by using this\n"
565613498266Sopenharmony_ci"              flag you ask for exactly that.\n"
565713498266Sopenharmony_ci"\n"
565813498266Sopenharmony_ci, stdout);
565913498266Sopenharmony_ci fputs(
566013498266Sopenharmony_ci"              Providing  --ssl-allow-beast multiple times has no extra effect.\n"
566113498266Sopenharmony_ci"              Disable it again with --no-ssl-allow-beast.\n"
566213498266Sopenharmony_ci"\n"
566313498266Sopenharmony_ci"              Example:\n"
566413498266Sopenharmony_ci"               curl --ssl-allow-beast https://example.com\n"
566513498266Sopenharmony_ci"\n"
566613498266Sopenharmony_ci"              See also --proxy-ssl-allow-beast and -k, --insecure.\n"
566713498266Sopenharmony_ci"\n"
566813498266Sopenharmony_ci"       --ssl-auto-client-cert\n"
566913498266Sopenharmony_ci"              (TLS) (Schannel) Tell libcurl to automatically locate and use  a\n"
567013498266Sopenharmony_ci"              client  certificate  for  authentication,  when requested by the\n"
567113498266Sopenharmony_ci, stdout);
567213498266Sopenharmony_ci fputs(
567313498266Sopenharmony_ci"              server. Since the server can request any certificate  that  sup-\n"
567413498266Sopenharmony_ci"              ports client authentication in the OS certificate store it could\n"
567513498266Sopenharmony_ci"              be a privacy violation and unexpected.\n"
567613498266Sopenharmony_ci"\n"
567713498266Sopenharmony_ci"              Providing --ssl-auto-client-cert multiple times has no extra ef-\n"
567813498266Sopenharmony_ci"              fect.  Disable it again with --no-ssl-auto-client-cert.\n"
567913498266Sopenharmony_ci"\n"
568013498266Sopenharmony_ci"              Example:\n"
568113498266Sopenharmony_ci"               curl --ssl-auto-client-cert https://example.com\n"
568213498266Sopenharmony_ci"\n"
568313498266Sopenharmony_ci, stdout);
568413498266Sopenharmony_ci fputs(
568513498266Sopenharmony_ci"              See also --proxy-ssl-auto-client-cert. Added in 7.77.0.\n"
568613498266Sopenharmony_ci"\n"
568713498266Sopenharmony_ci"       --ssl-no-revoke\n"
568813498266Sopenharmony_ci"              (TLS)  (Schannel)  This option tells curl to disable certificate\n"
568913498266Sopenharmony_ci"              revocation checks.  WARNING: this option loosens the  SSL  secu-\n"
569013498266Sopenharmony_ci"              rity, and by using this flag you ask for exactly that.\n"
569113498266Sopenharmony_ci"\n"
569213498266Sopenharmony_ci"              Providing  --ssl-no-revoke  multiple  times has no extra effect.\n"
569313498266Sopenharmony_ci"              Disable it again with --no-ssl-no-revoke.\n"
569413498266Sopenharmony_ci"\n"
569513498266Sopenharmony_ci"              Example:\n"
569613498266Sopenharmony_ci, stdout);
569713498266Sopenharmony_ci fputs(
569813498266Sopenharmony_ci"               curl --ssl-no-revoke https://example.com\n"
569913498266Sopenharmony_ci"\n"
570013498266Sopenharmony_ci"              See also --crlfile.\n"
570113498266Sopenharmony_ci"\n"
570213498266Sopenharmony_ci"       --ssl-reqd\n"
570313498266Sopenharmony_ci"              (FTP IMAP POP3 SMTP LDAP) Require SSL/TLS  for  the  connection.\n"
570413498266Sopenharmony_ci"              Terminates  the connection if the transfer cannot be upgraded to\n"
570513498266Sopenharmony_ci"              use SSL/TLS.\n"
570613498266Sopenharmony_ci"\n"
570713498266Sopenharmony_ci"              This option is handled in LDAP (added in 7.81.0).  It  is  fully\n"
570813498266Sopenharmony_ci"              supported  by  the  OpenLDAP backend and rejected by the generic\n"
570913498266Sopenharmony_ci, stdout);
571013498266Sopenharmony_ci fputs(
571113498266Sopenharmony_ci"              ldap backend if explicit TLS is required.\n"
571213498266Sopenharmony_ci"\n"
571313498266Sopenharmony_ci"              This option is unnecessary if you use a URL scheme that  in  it-\n"
571413498266Sopenharmony_ci"              self  implies  immediate and implicit use of TLS, like for FTPS,\n"
571513498266Sopenharmony_ci"              IMAPS, POP3S, SMTPS and LDAPS. Such a transfer always  fails  if\n"
571613498266Sopenharmony_ci"              the TLS handshake does not work.\n"
571713498266Sopenharmony_ci"\n"
571813498266Sopenharmony_ci"              This option was formerly known as --ftp-ssl-reqd.\n"
571913498266Sopenharmony_ci"\n"
572013498266Sopenharmony_ci"              Providing  --ssl-reqd  multiple times has no extra effect.  Dis-\n"
572113498266Sopenharmony_ci, stdout);
572213498266Sopenharmony_ci fputs(
572313498266Sopenharmony_ci"              able it again with --no-ssl-reqd.\n"
572413498266Sopenharmony_ci"\n"
572513498266Sopenharmony_ci"              Example:\n"
572613498266Sopenharmony_ci"               curl --ssl-reqd ftp://example.com\n"
572713498266Sopenharmony_ci"\n"
572813498266Sopenharmony_ci"              See also --ssl and -k, --insecure.\n"
572913498266Sopenharmony_ci"\n"
573013498266Sopenharmony_ci"       --ssl-revoke-best-effort\n"
573113498266Sopenharmony_ci"              (TLS) (Schannel) This option tells curl  to  ignore  certificate\n"
573213498266Sopenharmony_ci"              revocation  checks  when they failed due to missing/offline dis-\n"
573313498266Sopenharmony_ci"              tribution points for the revocation check lists.\n"
573413498266Sopenharmony_ci"\n"
573513498266Sopenharmony_ci, stdout);
573613498266Sopenharmony_ci fputs(
573713498266Sopenharmony_ci"              Providing --ssl-revoke-best-effort multiple times has  no  extra\n"
573813498266Sopenharmony_ci"              effect.  Disable it again with --no-ssl-revoke-best-effort.\n"
573913498266Sopenharmony_ci"\n"
574013498266Sopenharmony_ci"              Example:\n"
574113498266Sopenharmony_ci"               curl --ssl-revoke-best-effort https://example.com\n"
574213498266Sopenharmony_ci"\n"
574313498266Sopenharmony_ci"              See also --crlfile and -k, --insecure. Added in 7.70.0.\n"
574413498266Sopenharmony_ci"\n"
574513498266Sopenharmony_ci"       --ssl  (FTP  IMAP  POP3 SMTP LDAP) Warning: this is considered an inse-\n"
574613498266Sopenharmony_ci"              cure option. Consider using --ssl-reqd instead to be  sure  curl\n"
574713498266Sopenharmony_ci, stdout);
574813498266Sopenharmony_ci fputs(
574913498266Sopenharmony_ci"              upgrades to a secure connection.\n"
575013498266Sopenharmony_ci"\n"
575113498266Sopenharmony_ci"              Try  to  use SSL/TLS for the connection. Reverts to a non-secure\n"
575213498266Sopenharmony_ci"              connection if the server does  not  support  SSL/TLS.  See  also\n"
575313498266Sopenharmony_ci"              --ftp-ssl-control and --ssl-reqd for different levels of encryp-\n"
575413498266Sopenharmony_ci"              tion required.\n"
575513498266Sopenharmony_ci"\n"
575613498266Sopenharmony_ci"              This  option  is  handled in LDAP (added in 7.81.0). It is fully\n"
575713498266Sopenharmony_ci"              supported by the OpenLDAP backend and  ignored  by  the  generic\n"
575813498266Sopenharmony_ci, stdout);
575913498266Sopenharmony_ci fputs(
576013498266Sopenharmony_ci"              ldap backend.\n"
576113498266Sopenharmony_ci"\n"
576213498266Sopenharmony_ci"              Please  note that a server may close the connection if the nego-\n"
576313498266Sopenharmony_ci"              tiation does not succeed.\n"
576413498266Sopenharmony_ci"\n"
576513498266Sopenharmony_ci"              This option was formerly known as --ftp-ssl.  That  option  name\n"
576613498266Sopenharmony_ci"              can still be used but might be removed in a future version.\n"
576713498266Sopenharmony_ci"\n"
576813498266Sopenharmony_ci"              Providing  --ssl multiple times has no extra effect.  Disable it\n"
576913498266Sopenharmony_ci"              again with --no-ssl.\n"
577013498266Sopenharmony_ci"\n"
577113498266Sopenharmony_ci"              Example:\n"
577213498266Sopenharmony_ci"               curl --ssl pop3://example.com/\n"
577313498266Sopenharmony_ci"\n"
577413498266Sopenharmony_ci, stdout);
577513498266Sopenharmony_ci fputs(
577613498266Sopenharmony_ci"              See also --ssl-reqd, -k, --insecure and --ciphers.\n"
577713498266Sopenharmony_ci"\n"
577813498266Sopenharmony_ci"       -2, --sslv2\n"
577913498266Sopenharmony_ci"              (SSL) This option previously asked curl to use SSLv2, but is now\n"
578013498266Sopenharmony_ci"              ignored (added in 7.77.0). SSLv2 is widely  considered  insecure\n"
578113498266Sopenharmony_ci"              (see RFC 6176).\n"
578213498266Sopenharmony_ci"\n"
578313498266Sopenharmony_ci"              Providing --sslv2 multiple times has no extra effect.\n"
578413498266Sopenharmony_ci"\n"
578513498266Sopenharmony_ci"              Example:\n"
578613498266Sopenharmony_ci"               curl --sslv2 https://example.com\n"
578713498266Sopenharmony_ci"\n"
578813498266Sopenharmony_ci"              See  also  --http1.1  and --http2. -2, --sslv2 requires that the\n"
578913498266Sopenharmony_ci, stdout);
579013498266Sopenharmony_ci fputs(
579113498266Sopenharmony_ci"              underlying libcurl was built to support TLS. This option is  mu-\n"
579213498266Sopenharmony_ci"              tually  exclusive  to  -3, --sslv3 and -1, --tlsv1 and --tlsv1.1\n"
579313498266Sopenharmony_ci"              and --tlsv1.2.\n"
579413498266Sopenharmony_ci"\n"
579513498266Sopenharmony_ci"       -3, --sslv3\n"
579613498266Sopenharmony_ci"              (SSL) This option previously asked curl to use SSLv3, but is now\n"
579713498266Sopenharmony_ci"              ignored (added in 7.77.0). SSLv3 is widely  considered  insecure\n"
579813498266Sopenharmony_ci"              (see RFC 7568).\n"
579913498266Sopenharmony_ci"\n"
580013498266Sopenharmony_ci"              Providing --sslv3 multiple times has no extra effect.\n"
580113498266Sopenharmony_ci"\n"
580213498266Sopenharmony_ci"              Example:\n"
580313498266Sopenharmony_ci, stdout);
580413498266Sopenharmony_ci fputs(
580513498266Sopenharmony_ci"               curl --sslv3 https://example.com\n"
580613498266Sopenharmony_ci"\n"
580713498266Sopenharmony_ci"              See  also  --http1.1  and --http2. -3, --sslv3 requires that the\n"
580813498266Sopenharmony_ci"              underlying libcurl was built to support TLS. This option is  mu-\n"
580913498266Sopenharmony_ci"              tually  exclusive  to  -2, --sslv2 and -1, --tlsv1 and --tlsv1.1\n"
581013498266Sopenharmony_ci"              and --tlsv1.2.\n"
581113498266Sopenharmony_ci"\n"
581213498266Sopenharmony_ci"       --stderr <file>\n"
581313498266Sopenharmony_ci"              Redirect all writes to stderr to the specified file instead.  If\n"
581413498266Sopenharmony_ci"              the file name is a plain '-', it is instead written to stdout.\n"
581513498266Sopenharmony_ci"\n"
581613498266Sopenharmony_ci, stdout);
581713498266Sopenharmony_ci fputs(
581813498266Sopenharmony_ci"              This option is global and does not need to be specified for each\n"
581913498266Sopenharmony_ci"              use of --next.\n"
582013498266Sopenharmony_ci"\n"
582113498266Sopenharmony_ci"              If  --stderr  is  provided  several times, the last set value is\n"
582213498266Sopenharmony_ci"              used.\n"
582313498266Sopenharmony_ci"\n"
582413498266Sopenharmony_ci"              Example:\n"
582513498266Sopenharmony_ci"               curl --stderr output.txt https://example.com\n"
582613498266Sopenharmony_ci"\n"
582713498266Sopenharmony_ci"              See also -v, --verbose and -s, --silent.\n"
582813498266Sopenharmony_ci"\n"
582913498266Sopenharmony_ci"       --styled-output\n"
583013498266Sopenharmony_ci"              Enables the automatic use of bold font styles when writing  HTTP\n"
583113498266Sopenharmony_ci, stdout);
583213498266Sopenharmony_ci fputs(
583313498266Sopenharmony_ci"              headers  to  the terminal. Use --no-styled-output to switch them\n"
583413498266Sopenharmony_ci"              off.\n"
583513498266Sopenharmony_ci"\n"
583613498266Sopenharmony_ci"              Styled output requires a terminal that supports bold fonts. This\n"
583713498266Sopenharmony_ci"              feature is not present on curl for Windows due to lack  of  this\n"
583813498266Sopenharmony_ci"              capability.\n"
583913498266Sopenharmony_ci"\n"
584013498266Sopenharmony_ci"              This option is global and does not need to be specified for each\n"
584113498266Sopenharmony_ci"              use of --next.\n"
584213498266Sopenharmony_ci"\n"
584313498266Sopenharmony_ci"              Providing  --styled-output  multiple  times has no extra effect.\n"
584413498266Sopenharmony_ci, stdout);
584513498266Sopenharmony_ci fputs(
584613498266Sopenharmony_ci"              Disable it again with --no-styled-output.\n"
584713498266Sopenharmony_ci"\n"
584813498266Sopenharmony_ci"              Example:\n"
584913498266Sopenharmony_ci"               curl --styled-output -I https://example.com\n"
585013498266Sopenharmony_ci"\n"
585113498266Sopenharmony_ci"              See also -I, --head and -v, --verbose. Added in 7.61.0.\n"
585213498266Sopenharmony_ci"\n"
585313498266Sopenharmony_ci"       --suppress-connect-headers\n"
585413498266Sopenharmony_ci"              When -p, --proxytunnel is used and a CONNECT request is made  do\n"
585513498266Sopenharmony_ci"              not  output proxy CONNECT response headers. This option is meant\n"
585613498266Sopenharmony_ci"              to be used with -D, --dump-header or  -i,  --include  which  are\n"
585713498266Sopenharmony_ci, stdout);
585813498266Sopenharmony_ci fputs(
585913498266Sopenharmony_ci"              used to show protocol headers in the output. It has no effect on\n"
586013498266Sopenharmony_ci"              debug  options  such as -v, --verbose or --trace, or any statis-\n"
586113498266Sopenharmony_ci"              tics.\n"
586213498266Sopenharmony_ci"\n"
586313498266Sopenharmony_ci"              Providing --suppress-connect-headers multiple times has no extra\n"
586413498266Sopenharmony_ci"              effect.  Disable it again with --no-suppress-connect-headers.\n"
586513498266Sopenharmony_ci"\n"
586613498266Sopenharmony_ci"              Example:\n"
586713498266Sopenharmony_ci"               curl --suppress-connect-headers --include -x proxy https://example.com\n"
586813498266Sopenharmony_ci"\n"
586913498266Sopenharmony_ci, stdout);
587013498266Sopenharmony_ci fputs(
587113498266Sopenharmony_ci"              See also -D, --dump-header, -i, --include and -p, --proxytunnel.\n"
587213498266Sopenharmony_ci"              Added in 7.54.0.\n"
587313498266Sopenharmony_ci"\n"
587413498266Sopenharmony_ci"       --tcp-fastopen\n"
587513498266Sopenharmony_ci"              Enable use of TCP Fast Open (RFC 7413). TCP Fast Open is  a  TCP\n"
587613498266Sopenharmony_ci"              extension  that allows data to get sent earlier over the connec-\n"
587713498266Sopenharmony_ci"              tion (before the final handshake ACK) if the client  and  server\n"
587813498266Sopenharmony_ci"              have been connected previously.\n"
587913498266Sopenharmony_ci"\n"
588013498266Sopenharmony_ci"              Providing  --tcp-fastopen  multiple  times  has no extra effect.\n"
588113498266Sopenharmony_ci, stdout);
588213498266Sopenharmony_ci fputs(
588313498266Sopenharmony_ci"              Disable it again with --no-tcp-fastopen.\n"
588413498266Sopenharmony_ci"\n"
588513498266Sopenharmony_ci"              Example:\n"
588613498266Sopenharmony_ci"               curl --tcp-fastopen https://example.com\n"
588713498266Sopenharmony_ci"\n"
588813498266Sopenharmony_ci"              See also --false-start.\n"
588913498266Sopenharmony_ci"\n"
589013498266Sopenharmony_ci"       --tcp-nodelay\n"
589113498266Sopenharmony_ci"              Turn on the TCP_NODELAY option. See the curl_easy_setopt(3)  man\n"
589213498266Sopenharmony_ci"              page for details about this option.\n"
589313498266Sopenharmony_ci"\n"
589413498266Sopenharmony_ci"              curl  sets  this  option  by  default and you need to explicitly\n"
589513498266Sopenharmony_ci"              switch it off if you do not want it on (added in 7.50.2).\n"
589613498266Sopenharmony_ci"\n"
589713498266Sopenharmony_ci, stdout);
589813498266Sopenharmony_ci fputs(
589913498266Sopenharmony_ci"              Providing --tcp-nodelay multiple  times  has  no  extra  effect.\n"
590013498266Sopenharmony_ci"              Disable it again with --no-tcp-nodelay.\n"
590113498266Sopenharmony_ci"\n"
590213498266Sopenharmony_ci"              Example:\n"
590313498266Sopenharmony_ci"               curl --tcp-nodelay https://example.com\n"
590413498266Sopenharmony_ci"\n"
590513498266Sopenharmony_ci"              See also -N, --no-buffer.\n"
590613498266Sopenharmony_ci"\n"
590713498266Sopenharmony_ci"       -t, --telnet-option <opt=val>\n"
590813498266Sopenharmony_ci"              Pass options to the telnet protocol. Supported options are:\n"
590913498266Sopenharmony_ci"\n"
591013498266Sopenharmony_ci"              `TTYPE=<term>`\n"
591113498266Sopenharmony_ci"                     Sets the terminal type.\n"
591213498266Sopenharmony_ci"\n"
591313498266Sopenharmony_ci"              `XDISPLOC=<X display>`\n"
591413498266Sopenharmony_ci, stdout);
591513498266Sopenharmony_ci fputs(
591613498266Sopenharmony_ci"                     Sets the X display location.\n"
591713498266Sopenharmony_ci"\n"
591813498266Sopenharmony_ci"              `NEW_ENV=<var,val>`\n"
591913498266Sopenharmony_ci"                     Sets an environment variable.\n"
592013498266Sopenharmony_ci"\n"
592113498266Sopenharmony_ci"              --telnet-option can be used several times in a command line\n"
592213498266Sopenharmony_ci"\n"
592313498266Sopenharmony_ci"              Example:\n"
592413498266Sopenharmony_ci"               curl -t TTYPE=vt100 telnet://example.com/\n"
592513498266Sopenharmony_ci"\n"
592613498266Sopenharmony_ci"              See also -K, --config.\n"
592713498266Sopenharmony_ci"       --tftp-blksize <value>\n"
592813498266Sopenharmony_ci"              (TFTP)  Set  the TFTP BLKSIZE option (must be >512). This is the\n"
592913498266Sopenharmony_ci, stdout);
593013498266Sopenharmony_ci fputs(
593113498266Sopenharmony_ci"              block size that curl tries to use when transferring data  to  or\n"
593213498266Sopenharmony_ci"              from a TFTP server. By default 512 bytes are used.\n"
593313498266Sopenharmony_ci"\n"
593413498266Sopenharmony_ci"              If  --tftp-blksize is provided several times, the last set value\n"
593513498266Sopenharmony_ci"              is used.\n"
593613498266Sopenharmony_ci"              Example:\n"
593713498266Sopenharmony_ci"               curl --tftp-blksize 1024 tftp://example.com/file\n"
593813498266Sopenharmony_ci"\n"
593913498266Sopenharmony_ci"              See also --tftp-no-options.\n"
594013498266Sopenharmony_ci"\n"
594113498266Sopenharmony_ci"       --tftp-no-options\n"
594213498266Sopenharmony_ci"              (TFTP) Tells curl not to send TFTP options requests.\n"
594313498266Sopenharmony_ci"\n"
594413498266Sopenharmony_ci, stdout);
594513498266Sopenharmony_ci fputs(
594613498266Sopenharmony_ci"              This option improves interop with some legacy  servers  that  do\n"
594713498266Sopenharmony_ci"              not  acknowledge  or  properly implement TFTP options. When this\n"
594813498266Sopenharmony_ci"              option is used --tftp-blksize is ignored.\n"
594913498266Sopenharmony_ci"\n"
595013498266Sopenharmony_ci"              Providing --tftp-no-options multiple times has no extra  effect.\n"
595113498266Sopenharmony_ci"              Disable it again with --no-tftp-no-options.\n"
595213498266Sopenharmony_ci"\n"
595313498266Sopenharmony_ci"              Example:\n"
595413498266Sopenharmony_ci"               curl --tftp-no-options tftp://192.168.0.1/\n"
595513498266Sopenharmony_ci"\n"
595613498266Sopenharmony_ci"              See also --tftp-blksize.\n"
595713498266Sopenharmony_ci"\n"
595813498266Sopenharmony_ci, stdout);
595913498266Sopenharmony_ci fputs(
596013498266Sopenharmony_ci"       -z, --time-cond <time>\n"
596113498266Sopenharmony_ci"              (HTTP  FTP) Request a file that has been modified later than the\n"
596213498266Sopenharmony_ci"              given time and date, or one that has been modified  before  that\n"
596313498266Sopenharmony_ci"              time.  The <date expression> can be all sorts of date strings or\n"
596413498266Sopenharmony_ci"              if it does not match any internal ones, it is taken as  a  file-\n"
596513498266Sopenharmony_ci"              name  and tries to get the modification date (mtime) from <file>\n"
596613498266Sopenharmony_ci, stdout);
596713498266Sopenharmony_ci fputs(
596813498266Sopenharmony_ci"              instead. See the curl_getdate(3) man pages for  date  expression\n"
596913498266Sopenharmony_ci"              details.\n"
597013498266Sopenharmony_ci"\n"
597113498266Sopenharmony_ci"              Start the date expression with a dash (-) to make it request for\n"
597213498266Sopenharmony_ci"              a  document that is older than the given date/time, default is a\n"
597313498266Sopenharmony_ci"              document that is newer than the specified date/time.\n"
597413498266Sopenharmony_ci"\n"
597513498266Sopenharmony_ci"              If provided a non-existing file, curl outputs  a  warning  about\n"
597613498266Sopenharmony_ci"              that  fact and proceeds to do the transfer without a time condi-\n"
597713498266Sopenharmony_ci, stdout);
597813498266Sopenharmony_ci fputs(
597913498266Sopenharmony_ci"              tion.\n"
598013498266Sopenharmony_ci"\n"
598113498266Sopenharmony_ci"              If --time-cond is provided several times, the last set value  is\n"
598213498266Sopenharmony_ci"              used.\n"
598313498266Sopenharmony_ci"\n"
598413498266Sopenharmony_ci"              Examples:\n"
598513498266Sopenharmony_ci"               curl -z \"Wed 01 Sep 2021 12:18:00\" https://example.com\n"
598613498266Sopenharmony_ci"               curl -z \"-Wed 01 Sep 2021 12:18:00\" https://example.com\n"
598713498266Sopenharmony_ci"               curl -z file https://example.com\n"
598813498266Sopenharmony_ci"\n"
598913498266Sopenharmony_ci"              See also --etag-compare and -R, --remote-time.\n"
599013498266Sopenharmony_ci"\n"
599113498266Sopenharmony_ci"       --tls-max <VERSION>\n"
599213498266Sopenharmony_ci, stdout);
599313498266Sopenharmony_ci fputs(
599413498266Sopenharmony_ci"              (TLS) VERSION defines maximum supported TLS version. The minimum\n"
599513498266Sopenharmony_ci"              acceptable  version  is  set  by  tlsv1.0,  tlsv1.1,  tlsv1.2 or\n"
599613498266Sopenharmony_ci"              tlsv1.3.\n"
599713498266Sopenharmony_ci"\n"
599813498266Sopenharmony_ci"              If the connection is done without TLS, this option  has  no  ef-\n"
599913498266Sopenharmony_ci"              fect. This includes QUIC-using (HTTP/3) transfers.\n"
600013498266Sopenharmony_ci"\n"
600113498266Sopenharmony_ci"              default\n"
600213498266Sopenharmony_ci"                     Use up to recommended TLS version.\n"
600313498266Sopenharmony_ci"\n"
600413498266Sopenharmony_ci"              1.0    Use up to TLSv1.0.\n"
600513498266Sopenharmony_ci"              1.1    Use up to TLSv1.1.\n"
600613498266Sopenharmony_ci, stdout);
600713498266Sopenharmony_ci fputs(
600813498266Sopenharmony_ci"              1.2    Use up to TLSv1.2.\n"
600913498266Sopenharmony_ci"              1.3    Use up to TLSv1.3.\n"
601013498266Sopenharmony_ci"\n"
601113498266Sopenharmony_ci"              If  --tls-max  is  provided several times, the last set value is\n"
601213498266Sopenharmony_ci"              used.\n"
601313498266Sopenharmony_ci"\n"
601413498266Sopenharmony_ci"              Examples:\n"
601513498266Sopenharmony_ci"               curl --tls-max 1.2 https://example.com\n"
601613498266Sopenharmony_ci"               curl --tls-max 1.3 --tlsv1.2 https://example.com\n"
601713498266Sopenharmony_ci"\n"
601813498266Sopenharmony_ci"              See  also  --tlsv1.0,  --tlsv1.1,   --tlsv1.2   and   --tlsv1.3.\n"
601913498266Sopenharmony_ci"              --tls-max requires that the underlying libcurl was built to sup-\n"
602013498266Sopenharmony_ci, stdout);
602113498266Sopenharmony_ci fputs(
602213498266Sopenharmony_ci"              port TLS. Added in 7.54.0.\n"
602313498266Sopenharmony_ci"\n"
602413498266Sopenharmony_ci"       --tls13-ciphers <ciphersuite list>\n"
602513498266Sopenharmony_ci"              (TLS)  Specifies which cipher suites to use in the connection if\n"
602613498266Sopenharmony_ci"              it negotiates TLS 1.3. The list of ciphers suites  must  specify\n"
602713498266Sopenharmony_ci"              valid  ciphers.  Read up on TLS 1.3 cipher suite details on this\n"
602813498266Sopenharmony_ci"              URL:\n"
602913498266Sopenharmony_ci"\n"
603013498266Sopenharmony_ci"              https://curl.se/docs/ssl-ciphers.html\n"
603113498266Sopenharmony_ci"\n"
603213498266Sopenharmony_ci"              This option is currently used only when curl  is  built  to  use\n"
603313498266Sopenharmony_ci, stdout);
603413498266Sopenharmony_ci fputs(
603513498266Sopenharmony_ci"              OpenSSL  1.1.1 or later, or Schannel. If you are using a differ-\n"
603613498266Sopenharmony_ci"              ent SSL backend you can try setting TLS 1.3 cipher suites by us-\n"
603713498266Sopenharmony_ci"              ing the --ciphers option.\n"
603813498266Sopenharmony_ci"\n"
603913498266Sopenharmony_ci"              If --tls13-ciphers is provided several times, the last set value\n"
604013498266Sopenharmony_ci"              is used.\n"
604113498266Sopenharmony_ci"              Example:\n"
604213498266Sopenharmony_ci"               curl --tls13-ciphers TLS_AES_128_GCM_SHA256 https://example.com\n"
604313498266Sopenharmony_ci"\n"
604413498266Sopenharmony_ci"              See also --ciphers, --curves and --proxy-tls13-ciphers. Added in\n"
604513498266Sopenharmony_ci, stdout);
604613498266Sopenharmony_ci fputs(
604713498266Sopenharmony_ci"              7.61.0.\n"
604813498266Sopenharmony_ci"\n"
604913498266Sopenharmony_ci"       --tlsauthtype <type>\n"
605013498266Sopenharmony_ci"              (TLS) Set TLS authentication type. Currently, the only supported\n"
605113498266Sopenharmony_ci"              option is \"SRP\",  for  TLS-SRP  (RFC  5054).  If  --tlsuser  and\n"
605213498266Sopenharmony_ci"              --tlspassword  are specified but --tlsauthtype is not, then this\n"
605313498266Sopenharmony_ci"              option defaults to \"SRP\". This option works only if the underly-\n"
605413498266Sopenharmony_ci"              ing libcurl  is  built  with  TLS-SRP  support,  which  requires\n"
605513498266Sopenharmony_ci"              OpenSSL or GnuTLS with TLS-SRP support.\n"
605613498266Sopenharmony_ci, stdout);
605713498266Sopenharmony_ci fputs(
605813498266Sopenharmony_ci"\n"
605913498266Sopenharmony_ci"              If  --tlsauthtype  is provided several times, the last set value\n"
606013498266Sopenharmony_ci"              is used.\n"
606113498266Sopenharmony_ci"              Example:\n"
606213498266Sopenharmony_ci"               curl --tlsauthtype SRP https://example.com\n"
606313498266Sopenharmony_ci"\n"
606413498266Sopenharmony_ci"              See also --tlsuser.\n"
606513498266Sopenharmony_ci"\n"
606613498266Sopenharmony_ci"       --tlspassword <string>\n"
606713498266Sopenharmony_ci"              (TLS) Set password for use with the  TLS  authentication  method\n"
606813498266Sopenharmony_ci"              specified  with  --tlsauthtype.  Requires that --tlsuser also be\n"
606913498266Sopenharmony_ci"              set.\n"
607013498266Sopenharmony_ci"\n"
607113498266Sopenharmony_ci"              This option does not work with TLS 1.3.\n"
607213498266Sopenharmony_ci"\n"
607313498266Sopenharmony_ci, stdout);
607413498266Sopenharmony_ci fputs(
607513498266Sopenharmony_ci"              If --tlspassword is provided several times, the last  set  value\n"
607613498266Sopenharmony_ci"              is used.\n"
607713498266Sopenharmony_ci"              Example:\n"
607813498266Sopenharmony_ci"               curl --tlspassword pwd --tlsuser user https://example.com\n"
607913498266Sopenharmony_ci"\n"
608013498266Sopenharmony_ci"              See also --tlsuser.\n"
608113498266Sopenharmony_ci"\n"
608213498266Sopenharmony_ci"       --tlsuser <name>\n"
608313498266Sopenharmony_ci"              (TLS)  Set  username  for use with the TLS authentication method\n"
608413498266Sopenharmony_ci"              specified with --tlsauthtype. Requires that  --tlspassword  also\n"
608513498266Sopenharmony_ci"              is set.\n"
608613498266Sopenharmony_ci"\n"
608713498266Sopenharmony_ci"              This option does not work with TLS 1.3.\n"
608813498266Sopenharmony_ci"\n"
608913498266Sopenharmony_ci, stdout);
609013498266Sopenharmony_ci fputs(
609113498266Sopenharmony_ci"              If  --tlsuser  is  provided several times, the last set value is\n"
609213498266Sopenharmony_ci"              used.\n"
609313498266Sopenharmony_ci"\n"
609413498266Sopenharmony_ci"              Example:\n"
609513498266Sopenharmony_ci"               curl --tlspassword pwd --tlsuser user https://example.com\n"
609613498266Sopenharmony_ci"\n"
609713498266Sopenharmony_ci"              See also --tlspassword.\n"
609813498266Sopenharmony_ci"\n"
609913498266Sopenharmony_ci"       --tlsv1.0\n"
610013498266Sopenharmony_ci"              (TLS) Forces curl to use TLS version 1.0 or later when  connect-\n"
610113498266Sopenharmony_ci"              ing to a remote TLS server.\n"
610213498266Sopenharmony_ci"\n"
610313498266Sopenharmony_ci"              In  old  versions  of  curl  this option was documented to allow\n"
610413498266Sopenharmony_ci, stdout);
610513498266Sopenharmony_ci fputs(
610613498266Sopenharmony_ci"              _only_ TLS 1.0.  That behavior was inconsistent depending on the\n"
610713498266Sopenharmony_ci"              TLS library. Use --tls-max if you want to set a maximum TLS ver-\n"
610813498266Sopenharmony_ci"              sion.\n"
610913498266Sopenharmony_ci"\n"
611013498266Sopenharmony_ci"              Providing --tlsv1.0 multiple times has no extra effect.\n"
611113498266Sopenharmony_ci"\n"
611213498266Sopenharmony_ci"              Example:\n"
611313498266Sopenharmony_ci"               curl --tlsv1.0 https://example.com\n"
611413498266Sopenharmony_ci"\n"
611513498266Sopenharmony_ci"              See also --tlsv1.3.\n"
611613498266Sopenharmony_ci"\n"
611713498266Sopenharmony_ci"       --tlsv1.1\n"
611813498266Sopenharmony_ci"              (TLS) Forces curl to use TLS version 1.1 or later when  connect-\n"
611913498266Sopenharmony_ci"              ing to a remote TLS server.\n"
612013498266Sopenharmony_ci"\n"
612113498266Sopenharmony_ci, stdout);
612213498266Sopenharmony_ci fputs(
612313498266Sopenharmony_ci"              In  old  versions  of  curl  this option was documented to allow\n"
612413498266Sopenharmony_ci"              _only_ TLS 1.1.  That behavior was inconsistent depending on the\n"
612513498266Sopenharmony_ci"              TLS library. Use --tls-max if you want to set a maximum TLS ver-\n"
612613498266Sopenharmony_ci"              sion.\n"
612713498266Sopenharmony_ci"\n"
612813498266Sopenharmony_ci"              Providing --tlsv1.1 multiple times has no extra effect.\n"
612913498266Sopenharmony_ci"\n"
613013498266Sopenharmony_ci"              Example:\n"
613113498266Sopenharmony_ci"               curl --tlsv1.1 https://example.com\n"
613213498266Sopenharmony_ci"\n"
613313498266Sopenharmony_ci"              See also --tlsv1.3 and --tls-max.\n"
613413498266Sopenharmony_ci"\n"
613513498266Sopenharmony_ci"       --tlsv1.2\n"
613613498266Sopenharmony_ci, stdout);
613713498266Sopenharmony_ci fputs(
613813498266Sopenharmony_ci"              (TLS) Forces curl to use TLS version 1.2 or later when  connect-\n"
613913498266Sopenharmony_ci"              ing to a remote TLS server.\n"
614013498266Sopenharmony_ci"\n"
614113498266Sopenharmony_ci"              In  old  versions  of  curl  this option was documented to allow\n"
614213498266Sopenharmony_ci"              _only_ TLS 1.2.  That behavior was inconsistent depending on the\n"
614313498266Sopenharmony_ci"              TLS library. Use --tls-max if you want to set a maximum TLS ver-\n"
614413498266Sopenharmony_ci"              sion.\n"
614513498266Sopenharmony_ci"\n"
614613498266Sopenharmony_ci"              Providing --tlsv1.2 multiple times has no extra effect.\n"
614713498266Sopenharmony_ci"\n"
614813498266Sopenharmony_ci"              Example:\n"
614913498266Sopenharmony_ci, stdout);
615013498266Sopenharmony_ci fputs(
615113498266Sopenharmony_ci"               curl --tlsv1.2 https://example.com\n"
615213498266Sopenharmony_ci"\n"
615313498266Sopenharmony_ci"              See also --tlsv1.3 and --tls-max.\n"
615413498266Sopenharmony_ci"\n"
615513498266Sopenharmony_ci"       --tlsv1.3\n"
615613498266Sopenharmony_ci"              (TLS) Forces curl to use TLS version 1.3 or later when  connect-\n"
615713498266Sopenharmony_ci"              ing to a remote TLS server.\n"
615813498266Sopenharmony_ci"\n"
615913498266Sopenharmony_ci"              If  the  connection  is done without TLS, this option has no ef-\n"
616013498266Sopenharmony_ci"              fect. This includes QUIC-using (HTTP/3) transfers.\n"
616113498266Sopenharmony_ci"\n"
616213498266Sopenharmony_ci"              Note that TLS 1.3 is not supported by all TLS backends.\n"
616313498266Sopenharmony_ci, stdout);
616413498266Sopenharmony_ci fputs(
616513498266Sopenharmony_ci"              Providing --tlsv1.3 multiple times has no extra effect.\n"
616613498266Sopenharmony_ci"\n"
616713498266Sopenharmony_ci"              Example:\n"
616813498266Sopenharmony_ci"               curl --tlsv1.3 https://example.com\n"
616913498266Sopenharmony_ci"\n"
617013498266Sopenharmony_ci"              See also --tlsv1.2 and --tls-max. Added in 7.52.0.\n"
617113498266Sopenharmony_ci"\n"
617213498266Sopenharmony_ci"       -1, --tlsv1\n"
617313498266Sopenharmony_ci"              (TLS) Tells curl to use at least TLS version 1.x when  negotiat-\n"
617413498266Sopenharmony_ci"              ing  with  a  remote  TLS  server. That means TLS version 1.0 or\n"
617513498266Sopenharmony_ci"              higher\n"
617613498266Sopenharmony_ci"\n"
617713498266Sopenharmony_ci"              Providing --tlsv1 multiple times has no extra effect.\n"
617813498266Sopenharmony_ci"\n"
617913498266Sopenharmony_ci, stdout);
618013498266Sopenharmony_ci fputs(
618113498266Sopenharmony_ci"              Example:\n"
618213498266Sopenharmony_ci"               curl --tlsv1 https://example.com\n"
618313498266Sopenharmony_ci"\n"
618413498266Sopenharmony_ci"              See also --http1.1 and --http2. -1, --tlsv1  requires  that  the\n"
618513498266Sopenharmony_ci"              underlying  libcurl was built to support TLS. This option is mu-\n"
618613498266Sopenharmony_ci"              tually exclusive to --tlsv1.1 and --tlsv1.2 and --tlsv1.3.\n"
618713498266Sopenharmony_ci"\n"
618813498266Sopenharmony_ci"       --tr-encoding\n"
618913498266Sopenharmony_ci"              (HTTP) Request a compressed Transfer-Encoding response using one\n"
619013498266Sopenharmony_ci"              of the algorithms curl supports, and uncompress the  data  while\n"
619113498266Sopenharmony_ci, stdout);
619213498266Sopenharmony_ci fputs(
619313498266Sopenharmony_ci"              receiving it.\n"
619413498266Sopenharmony_ci"\n"
619513498266Sopenharmony_ci"              Providing  --tr-encoding  multiple  times  has  no extra effect.\n"
619613498266Sopenharmony_ci"              Disable it again with --no-tr-encoding.\n"
619713498266Sopenharmony_ci"\n"
619813498266Sopenharmony_ci"              Example:\n"
619913498266Sopenharmony_ci"               curl --tr-encoding https://example.com\n"
620013498266Sopenharmony_ci"\n"
620113498266Sopenharmony_ci"              See also --compressed.\n"
620213498266Sopenharmony_ci"\n"
620313498266Sopenharmony_ci"       --trace-ascii <file>\n"
620413498266Sopenharmony_ci"              Enables a full trace dump of all incoming and outgoing data, in-\n"
620513498266Sopenharmony_ci"              cluding descriptive information, to the given output  file.  Use\n"
620613498266Sopenharmony_ci, stdout);
620713498266Sopenharmony_ci fputs(
620813498266Sopenharmony_ci"              \"-\" as filename to have the output sent to stdout.\n"
620913498266Sopenharmony_ci"\n"
621013498266Sopenharmony_ci"              This is similar to --trace, but leaves out the hex part and only\n"
621113498266Sopenharmony_ci"              shows  the  ASCII part of the dump. It makes smaller output that\n"
621213498266Sopenharmony_ci"              might be easier to read for untrained humans.\n"
621313498266Sopenharmony_ci"\n"
621413498266Sopenharmony_ci"              Note that verbose output of curl activities and network  traffic\n"
621513498266Sopenharmony_ci"              might  contain sensitive data, including user names, credentials\n"
621613498266Sopenharmony_ci, stdout);
621713498266Sopenharmony_ci fputs(
621813498266Sopenharmony_ci"              or secret data content. Be aware and  be  careful  when  sharing\n"
621913498266Sopenharmony_ci"              trace logs with others.\n"
622013498266Sopenharmony_ci"\n"
622113498266Sopenharmony_ci"              This option is global and does not need to be specified for each\n"
622213498266Sopenharmony_ci"              use of --next.\n"
622313498266Sopenharmony_ci"\n"
622413498266Sopenharmony_ci"              If  --trace-ascii  is provided several times, the last set value\n"
622513498266Sopenharmony_ci"              is used.\n"
622613498266Sopenharmony_ci"              Example:\n"
622713498266Sopenharmony_ci"               curl --trace-ascii log.txt https://example.com\n"
622813498266Sopenharmony_ci"\n"
622913498266Sopenharmony_ci"              See also -v, --verbose and --trace. This option is mutually  ex-\n"
623013498266Sopenharmony_ci, stdout);
623113498266Sopenharmony_ci fputs(
623213498266Sopenharmony_ci"              clusive to --trace and -v, --verbose.\n"
623313498266Sopenharmony_ci"\n"
623413498266Sopenharmony_ci"       --trace-config <string>\n"
623513498266Sopenharmony_ci"              Set  configuration  for  trace output. A comma-separated list of\n"
623613498266Sopenharmony_ci"              components where detailed output can  be  made  available  from.\n"
623713498266Sopenharmony_ci"              Names  are  case-insensitive.  Specify 'all' to enable all trace\n"
623813498266Sopenharmony_ci"              components.\n"
623913498266Sopenharmony_ci"\n"
624013498266Sopenharmony_ci"              In addition to trace component names, specify \"ids\"  and  \"time\"\n"
624113498266Sopenharmony_ci"              to avoid extra --trace-ids or --trace-time parameters.\n"
624213498266Sopenharmony_ci"\n"
624313498266Sopenharmony_ci, stdout);
624413498266Sopenharmony_ci fputs(
624513498266Sopenharmony_ci"              See the curl_global_trace(3) man page for more details.\n"
624613498266Sopenharmony_ci"\n"
624713498266Sopenharmony_ci"              This option is global and does not need to be specified for each\n"
624813498266Sopenharmony_ci"              use of --next.\n"
624913498266Sopenharmony_ci"\n"
625013498266Sopenharmony_ci"              --trace-config can be used several times in a command line\n"
625113498266Sopenharmony_ci"\n"
625213498266Sopenharmony_ci"              Example:\n"
625313498266Sopenharmony_ci"               curl --trace-config ids,http/2 https://example.com\n"
625413498266Sopenharmony_ci"\n"
625513498266Sopenharmony_ci"              See  also -v, --verbose and --trace. This option is mutually ex-\n"
625613498266Sopenharmony_ci"              clusive to --trace and -v, --verbose. Added in 8.3.0.\n"
625713498266Sopenharmony_ci"\n"
625813498266Sopenharmony_ci, stdout);
625913498266Sopenharmony_ci fputs(
626013498266Sopenharmony_ci"       --trace-ids\n"
626113498266Sopenharmony_ci"              Prepends the transfer and connection identifiers to  each  trace\n"
626213498266Sopenharmony_ci"              or verbose line that curl displays.\n"
626313498266Sopenharmony_ci"\n"
626413498266Sopenharmony_ci"              This option is global and does not need to be specified for each\n"
626513498266Sopenharmony_ci"              use of --next.\n"
626613498266Sopenharmony_ci"\n"
626713498266Sopenharmony_ci"              Providing  --trace-ids multiple times has no extra effect.  Dis-\n"
626813498266Sopenharmony_ci"              able it again with --no-trace-ids.\n"
626913498266Sopenharmony_ci"\n"
627013498266Sopenharmony_ci"              Example:\n"
627113498266Sopenharmony_ci"               curl --trace-ids --trace-ascii output https://example.com\n"
627213498266Sopenharmony_ci"\n"
627313498266Sopenharmony_ci, stdout);
627413498266Sopenharmony_ci fputs(
627513498266Sopenharmony_ci"              See also --trace and -v, --verbose. Added in 8.2.0.\n"
627613498266Sopenharmony_ci"\n"
627713498266Sopenharmony_ci"       --trace-time\n"
627813498266Sopenharmony_ci"              Prepends a time stamp to each trace or verbose  line  that  curl\n"
627913498266Sopenharmony_ci"              displays.\n"
628013498266Sopenharmony_ci"\n"
628113498266Sopenharmony_ci"              This option is global and does not need to be specified for each\n"
628213498266Sopenharmony_ci"              use of --next.\n"
628313498266Sopenharmony_ci"\n"
628413498266Sopenharmony_ci"              Providing --trace-time multiple times has no extra effect.  Dis-\n"
628513498266Sopenharmony_ci"              able it again with --no-trace-time.\n"
628613498266Sopenharmony_ci"\n"
628713498266Sopenharmony_ci"              Example:\n"
628813498266Sopenharmony_ci, stdout);
628913498266Sopenharmony_ci fputs(
629013498266Sopenharmony_ci"               curl --trace-time --trace-ascii output https://example.com\n"
629113498266Sopenharmony_ci"\n"
629213498266Sopenharmony_ci"              See also --trace and -v, --verbose.\n"
629313498266Sopenharmony_ci"\n"
629413498266Sopenharmony_ci"       --trace <file>\n"
629513498266Sopenharmony_ci"              Enables a full trace dump of all incoming and outgoing data, in-\n"
629613498266Sopenharmony_ci"              cluding  descriptive  information, to the given output file. Use\n"
629713498266Sopenharmony_ci"              \"-\" as filename to have the output sent to stdout.  Use  \"%\"  as\n"
629813498266Sopenharmony_ci"              filename to have the output sent to stderr.\n"
629913498266Sopenharmony_ci"\n"
630013498266Sopenharmony_ci, stdout);
630113498266Sopenharmony_ci fputs(
630213498266Sopenharmony_ci"              Note  that verbose output of curl activities and network traffic\n"
630313498266Sopenharmony_ci"              might contain sensitive data, including user names,  credentials\n"
630413498266Sopenharmony_ci"              or  secret  data  content.  Be aware and be careful when sharing\n"
630513498266Sopenharmony_ci"              trace logs with others.\n"
630613498266Sopenharmony_ci"\n"
630713498266Sopenharmony_ci"              This option is global and does not need to be specified for each\n"
630813498266Sopenharmony_ci"              use of --next.\n"
630913498266Sopenharmony_ci"\n"
631013498266Sopenharmony_ci"              If --trace is provided several times,  the  last  set  value  is\n"
631113498266Sopenharmony_ci"              used.\n"
631213498266Sopenharmony_ci"\n"
631313498266Sopenharmony_ci, stdout);
631413498266Sopenharmony_ci fputs(
631513498266Sopenharmony_ci"              Example:\n"
631613498266Sopenharmony_ci"               curl --trace log.txt https://example.com\n"
631713498266Sopenharmony_ci"\n"
631813498266Sopenharmony_ci"              See   also   --trace-ascii,   --trace-config,   --trace-ids  and\n"
631913498266Sopenharmony_ci"              --trace-time. This option is mutually exclusive to -v, --verbose\n"
632013498266Sopenharmony_ci"              and --trace-ascii.\n"
632113498266Sopenharmony_ci"\n"
632213498266Sopenharmony_ci"       --unix-socket <path>\n"
632313498266Sopenharmony_ci"              (HTTP) Connect through this Unix domain socket, instead of using\n"
632413498266Sopenharmony_ci"              the network.\n"
632513498266Sopenharmony_ci"\n"
632613498266Sopenharmony_ci"              If --unix-socket is provided several times, the last  set  value\n"
632713498266Sopenharmony_ci, stdout);
632813498266Sopenharmony_ci fputs(
632913498266Sopenharmony_ci"              is used.\n"
633013498266Sopenharmony_ci"              Example:\n"
633113498266Sopenharmony_ci"               curl --unix-socket socket-path https://example.com\n"
633213498266Sopenharmony_ci"\n"
633313498266Sopenharmony_ci"              See also --abstract-unix-socket.\n"
633413498266Sopenharmony_ci"\n"
633513498266Sopenharmony_ci"       -T, --upload-file <file>\n"
633613498266Sopenharmony_ci"              This transfers the specified local file to the remote URL.\n"
633713498266Sopenharmony_ci"\n"
633813498266Sopenharmony_ci"              If  there is no file part in the specified URL, curl appends the\n"
633913498266Sopenharmony_ci"              local file name to the end  of  the  URL  before  the  operation\n"
634013498266Sopenharmony_ci, stdout);
634113498266Sopenharmony_ci fputs(
634213498266Sopenharmony_ci"              starts.  You must use a trailing slash (/) on the last directory\n"
634313498266Sopenharmony_ci"              to prove to curl that there is no file name or curl thinks  that\n"
634413498266Sopenharmony_ci"              your last directory name is the remote file name to use.\n"
634513498266Sopenharmony_ci"\n"
634613498266Sopenharmony_ci"              When putting the local file name at the end of the URL, curl ig-\n"
634713498266Sopenharmony_ci"              nores what is on the left side of any slash (/) or backslash (\\)\n"
634813498266Sopenharmony_ci"              used in the file name and only appends what is on the right side\n"
634913498266Sopenharmony_ci, stdout);
635013498266Sopenharmony_ci fputs(
635113498266Sopenharmony_ci"              of the rightmost such character.\n"
635213498266Sopenharmony_ci"\n"
635313498266Sopenharmony_ci"              Use  the file name \"-\" (a single dash) to use stdin instead of a\n"
635413498266Sopenharmony_ci"              given file.  Alternately, the file name \".\"  (a  single  period)\n"
635513498266Sopenharmony_ci"              may  be  specified  instead  of \"-\" to use stdin in non-blocking\n"
635613498266Sopenharmony_ci"              mode to allow reading server output while  stdin  is  being  up-\n"
635713498266Sopenharmony_ci"              loaded.\n"
635813498266Sopenharmony_ci"\n"
635913498266Sopenharmony_ci"              If  this  option  is  used with a HTTP(S) URL, the PUT method is\n"
636013498266Sopenharmony_ci"              used.\n"
636113498266Sopenharmony_ci"\n"
636213498266Sopenharmony_ci, stdout);
636313498266Sopenharmony_ci fputs(
636413498266Sopenharmony_ci"              You can specify one -T, --upload-file for each URL on  the  com-\n"
636513498266Sopenharmony_ci"              mand  line.  Each -T, --upload-file + URL pair specifies what to\n"
636613498266Sopenharmony_ci"              upload and to where. curl also supports \"globbing\"  of  the  -T,\n"
636713498266Sopenharmony_ci"              --upload-file  argument,  meaning  that  you can upload multiple\n"
636813498266Sopenharmony_ci"              files to a single URL by using the same URL globbing style  sup-\n"
636913498266Sopenharmony_ci"              ported in the URL.\n"
637013498266Sopenharmony_ci"\n"
637113498266Sopenharmony_ci, stdout);
637213498266Sopenharmony_ci fputs(
637313498266Sopenharmony_ci"              When  uploading  to an SMTP server: the uploaded data is assumed\n"
637413498266Sopenharmony_ci"              to be RFC 5322 formatted. It has to feature the necessary set of\n"
637513498266Sopenharmony_ci"              headers and mail body formatted correctly by the  user  as  curl\n"
637613498266Sopenharmony_ci"              does not transcode nor encode it further in any way.\n"
637713498266Sopenharmony_ci"\n"
637813498266Sopenharmony_ci"              --upload-file can be used several times in a command line\n"
637913498266Sopenharmony_ci"\n"
638013498266Sopenharmony_ci"              Examples:\n"
638113498266Sopenharmony_ci"               curl -T file https://example.com\n"
638213498266Sopenharmony_ci, stdout);
638313498266Sopenharmony_ci fputs(
638413498266Sopenharmony_ci"               curl -T \"img[1-1000].png\" ftp://ftp.example.com/\n"
638513498266Sopenharmony_ci"               curl --upload-file \"{file1,file2}\" https://example.com\n"
638613498266Sopenharmony_ci"\n"
638713498266Sopenharmony_ci"              See also -G, --get, -I, --head, -X, --request and -d, --data.\n"
638813498266Sopenharmony_ci"\n"
638913498266Sopenharmony_ci"       --url-query <data>\n"
639013498266Sopenharmony_ci"              (all)  This  option adds a piece of data, usually a name + value\n"
639113498266Sopenharmony_ci"              pair, to the end of the URL query part. The syntax is  identical\n"
639213498266Sopenharmony_ci"              to that used for --data-urlencode with one extension:\n"
639313498266Sopenharmony_ci"\n"
639413498266Sopenharmony_ci, stdout);
639513498266Sopenharmony_ci fputs(
639613498266Sopenharmony_ci"              If the argument starts with a '+' (plus), the rest of the string\n"
639713498266Sopenharmony_ci"              is provided as-is unencoded.\n"
639813498266Sopenharmony_ci"\n"
639913498266Sopenharmony_ci"              The  query  part of a URL is the one following the question mark\n"
640013498266Sopenharmony_ci"              on the right end.\n"
640113498266Sopenharmony_ci"\n"
640213498266Sopenharmony_ci"              --url-query can be used several times in a command line\n"
640313498266Sopenharmony_ci"\n"
640413498266Sopenharmony_ci"              Examples:\n"
640513498266Sopenharmony_ci"               curl --url-query name=val https://example.com\n"
640613498266Sopenharmony_ci"               curl --url-query =encodethis http://example.net/foo\n"
640713498266Sopenharmony_ci, stdout);
640813498266Sopenharmony_ci fputs(
640913498266Sopenharmony_ci"               curl --url-query name@file https://example.com\n"
641013498266Sopenharmony_ci"               curl --url-query @fileonly https://example.com\n"
641113498266Sopenharmony_ci"               curl --url-query \"+name=%20foo\" https://example.com\n"
641213498266Sopenharmony_ci"\n"
641313498266Sopenharmony_ci"              See also --data-urlencode and -G, --get. Added in 7.87.0.\n"
641413498266Sopenharmony_ci"\n"
641513498266Sopenharmony_ci"       --url <url>\n"
641613498266Sopenharmony_ci"              Specify a URL to fetch. This option is  mostly  handy  when  you\n"
641713498266Sopenharmony_ci"              want to specify URL(s) in a config file.\n"
641813498266Sopenharmony_ci"\n"
641913498266Sopenharmony_ci"              If  the given URL is missing a scheme name (such as \"http://\" or\n"
642013498266Sopenharmony_ci, stdout);
642113498266Sopenharmony_ci fputs(
642213498266Sopenharmony_ci"              \"ftp://\" etc) then curl makes a guess based on the host. If  the\n"
642313498266Sopenharmony_ci"              outermost  subdomain name matches DICT, FTP, IMAP, LDAP, POP3 or\n"
642413498266Sopenharmony_ci"              SMTP then that protocol is used, otherwise HTTP is used.  Guess-\n"
642513498266Sopenharmony_ci"              ing can be avoided by providing a full URL including the scheme,\n"
642613498266Sopenharmony_ci"              or disabled by setting a default protocol (added in 7.45.0), see\n"
642713498266Sopenharmony_ci"              --proto-default for details.\n"
642813498266Sopenharmony_ci"\n"
642913498266Sopenharmony_ci, stdout);
643013498266Sopenharmony_ci fputs(
643113498266Sopenharmony_ci"              To  control  where  this URL is written, use the -o, --output or\n"
643213498266Sopenharmony_ci"              the -O, --remote-name options.\n"
643313498266Sopenharmony_ci"\n"
643413498266Sopenharmony_ci"              WARNING: On Windows, particular file://  accesses  can  be  con-\n"
643513498266Sopenharmony_ci"              verted to network accesses by the operating system. Beware!\n"
643613498266Sopenharmony_ci"\n"
643713498266Sopenharmony_ci"              --url can be used several times in a command line\n"
643813498266Sopenharmony_ci"\n"
643913498266Sopenharmony_ci"              Example:\n"
644013498266Sopenharmony_ci"               curl --url https://example.com\n"
644113498266Sopenharmony_ci"\n"
644213498266Sopenharmony_ci"              See also -:, --next and -K, --config.\n"
644313498266Sopenharmony_ci"\n"
644413498266Sopenharmony_ci"       -B, --use-ascii\n"
644513498266Sopenharmony_ci, stdout);
644613498266Sopenharmony_ci fputs(
644713498266Sopenharmony_ci"              (FTP  LDAP) Enable ASCII transfer. For FTP, this can also be en-\n"
644813498266Sopenharmony_ci"              forced by using a URL that  ends  with  \";type=A\".  This  option\n"
644913498266Sopenharmony_ci"              causes data sent to stdout to be in text mode for win32 systems.\n"
645013498266Sopenharmony_ci"              Providing  --use-ascii multiple times has no extra effect.  Dis-\n"
645113498266Sopenharmony_ci"              able it again with --no-use-ascii.\n"
645213498266Sopenharmony_ci"\n"
645313498266Sopenharmony_ci"              Example:\n"
645413498266Sopenharmony_ci"               curl -B ftp://example.com/README\n"
645513498266Sopenharmony_ci"\n"
645613498266Sopenharmony_ci"              See also --crlf and --data-ascii.\n"
645713498266Sopenharmony_ci"\n"
645813498266Sopenharmony_ci, stdout);
645913498266Sopenharmony_ci fputs(
646013498266Sopenharmony_ci"       -A, --user-agent <name>\n"
646113498266Sopenharmony_ci"              (HTTP) Specify the User-Agent string to send to the HTTP server.\n"
646213498266Sopenharmony_ci"              To encode blanks in the string, surround the string with  single\n"
646313498266Sopenharmony_ci"              quote  marks.  This header can also be set with the -H, --header\n"
646413498266Sopenharmony_ci"              or the --proxy-header options.\n"
646513498266Sopenharmony_ci"\n"
646613498266Sopenharmony_ci"              If you give an empty argument to -A, --user-agent (\"\"),  it  re-\n"
646713498266Sopenharmony_ci"              moves  the  header  completely from the request. If you prefer a\n"
646813498266Sopenharmony_ci, stdout);
646913498266Sopenharmony_ci fputs(
647013498266Sopenharmony_ci"              blank header, you can set it to a single space (\" \").\n"
647113498266Sopenharmony_ci"\n"
647213498266Sopenharmony_ci"              If --user-agent is provided several times, the last set value is\n"
647313498266Sopenharmony_ci"              used.\n"
647413498266Sopenharmony_ci"\n"
647513498266Sopenharmony_ci"              Example:\n"
647613498266Sopenharmony_ci"               curl -A \"Agent 007\" https://example.com\n"
647713498266Sopenharmony_ci"\n"
647813498266Sopenharmony_ci"              See also -H, --header and --proxy-header.\n"
647913498266Sopenharmony_ci"\n"
648013498266Sopenharmony_ci"       -u, --user <user:password>\n"
648113498266Sopenharmony_ci"              Specify the user name and password to use for server authentica-\n"
648213498266Sopenharmony_ci"              tion. Overrides -n, --netrc and --netrc-optional.\n"
648313498266Sopenharmony_ci"\n"
648413498266Sopenharmony_ci, stdout);
648513498266Sopenharmony_ci fputs(
648613498266Sopenharmony_ci"              If you simply specify the user name, curl prompts  for  a  pass-\n"
648713498266Sopenharmony_ci"              word.\n"
648813498266Sopenharmony_ci"\n"
648913498266Sopenharmony_ci"              The  user  name  and  passwords are split up on the first colon,\n"
649013498266Sopenharmony_ci"              which makes it impossible to use a colon in the user  name  with\n"
649113498266Sopenharmony_ci"              this option. The password can, still.\n"
649213498266Sopenharmony_ci"\n"
649313498266Sopenharmony_ci"              On  systems where it works, curl hides the given option argument\n"
649413498266Sopenharmony_ci"              from process listings. This is not enough to protect credentials\n"
649513498266Sopenharmony_ci, stdout);
649613498266Sopenharmony_ci fputs(
649713498266Sopenharmony_ci"              from possibly getting seen by other users on the same system  as\n"
649813498266Sopenharmony_ci"              they  still are visible for a moment before cleared. Such sensi-\n"
649913498266Sopenharmony_ci"              tive data should be retrieved from a file instead or similar and\n"
650013498266Sopenharmony_ci"              never used in clear text in a command line.\n"
650113498266Sopenharmony_ci"\n"
650213498266Sopenharmony_ci"              When using Kerberos V5 with a Windows based  server  you  should\n"
650313498266Sopenharmony_ci"              include  the  Windows domain name in the user name, in order for\n"
650413498266Sopenharmony_ci, stdout);
650513498266Sopenharmony_ci fputs(
650613498266Sopenharmony_ci"              the server to successfully obtain a Kerberos Ticket. If  you  do\n"
650713498266Sopenharmony_ci"              not, then the initial authentication handshake may fail.\n"
650813498266Sopenharmony_ci"\n"
650913498266Sopenharmony_ci"              When  using  NTLM,  the user name can be specified simply as the\n"
651013498266Sopenharmony_ci"              user name, without the domain, if there is a single  domain  and\n"
651113498266Sopenharmony_ci"              forest in your setup for example.\n"
651213498266Sopenharmony_ci"\n"
651313498266Sopenharmony_ci"              To  specify  the domain name use either Down-Level Logon Name or\n"
651413498266Sopenharmony_ci, stdout);
651513498266Sopenharmony_ci fputs(
651613498266Sopenharmony_ci"              UPN (User Principal Name) formats. For example, EXAMPLE\\user and\n"
651713498266Sopenharmony_ci"              user@example.com respectively.\n"
651813498266Sopenharmony_ci"\n"
651913498266Sopenharmony_ci"              If you use a Windows SSPI-enabled curl binary and  perform  Ker-\n"
652013498266Sopenharmony_ci"              beros  V5, Negotiate, NTLM or Digest authentication then you can\n"
652113498266Sopenharmony_ci"              tell curl to select the user name and password from  your  envi-\n"
652213498266Sopenharmony_ci"              ronment by specifying a single colon with this option: \"-u :\".\n"
652313498266Sopenharmony_ci"\n"
652413498266Sopenharmony_ci, stdout);
652513498266Sopenharmony_ci fputs(
652613498266Sopenharmony_ci"              If --user is provided several times, the last set value is used.\n"
652713498266Sopenharmony_ci"\n"
652813498266Sopenharmony_ci"              Example:\n"
652913498266Sopenharmony_ci"               curl -u user:secret https://example.com\n"
653013498266Sopenharmony_ci"\n"
653113498266Sopenharmony_ci"              See also -n, --netrc and -K, --config.\n"
653213498266Sopenharmony_ci"\n"
653313498266Sopenharmony_ci"       --variable <[%]name=text/@file>\n"
653413498266Sopenharmony_ci"              Set  a variable with \"name=content\" or \"name@file\" (where \"file\"\n"
653513498266Sopenharmony_ci"              can be stdin if set to a single dash (-)). The name  is  a  case\n"
653613498266Sopenharmony_ci"              sensitive  identifier that must consist of no other letters than\n"
653713498266Sopenharmony_ci, stdout);
653813498266Sopenharmony_ci fputs(
653913498266Sopenharmony_ci"              a-z, A-Z, 0-9 or underscore. The specified content is then asso-\n"
654013498266Sopenharmony_ci"              ciated with this identifier.\n"
654113498266Sopenharmony_ci"\n"
654213498266Sopenharmony_ci"              Setting the same variable name again overwrites the old contents\n"
654313498266Sopenharmony_ci"              with the new.\n"
654413498266Sopenharmony_ci"\n"
654513498266Sopenharmony_ci"              The contents of a variable can be referenced in a later  command\n"
654613498266Sopenharmony_ci"              line  option when that option name is prefixed with \"--expand-\",\n"
654713498266Sopenharmony_ci"              and the name is used as \"{{name}}\" (without the quotes).\n"
654813498266Sopenharmony_ci"\n"
654913498266Sopenharmony_ci, stdout);
655013498266Sopenharmony_ci fputs(
655113498266Sopenharmony_ci"              --variable can import environment variables into the name space.\n"
655213498266Sopenharmony_ci"              Opt to either require the environment variable to be set or pro-\n"
655313498266Sopenharmony_ci"              vide a default value for the variable in case it is not  already\n"
655413498266Sopenharmony_ci"              set.\n"
655513498266Sopenharmony_ci"\n"
655613498266Sopenharmony_ci"              --variable  %name  imports  the variable called 'name' but exits\n"
655713498266Sopenharmony_ci"              with an error if that environment variable is not  already  set.\n"
655813498266Sopenharmony_ci"              To  provide  a  default value if the environment variable is not\n"
655913498266Sopenharmony_ci, stdout);
656013498266Sopenharmony_ci fputs(
656113498266Sopenharmony_ci"              set, use --variable %name=content or  --variable  %name@content.\n"
656213498266Sopenharmony_ci"              Note  that on some systems - but not all - environment variables\n"
656313498266Sopenharmony_ci"              are case insensitive.\n"
656413498266Sopenharmony_ci"\n"
656513498266Sopenharmony_ci"              When expanding variables, curl supports a set of functions  that\n"
656613498266Sopenharmony_ci"              can make the variable contents more convenient to use. You apply\n"
656713498266Sopenharmony_ci"              a  function  to  a variable expansion by adding a colon and then\n"
656813498266Sopenharmony_ci, stdout);
656913498266Sopenharmony_ci fputs(
657013498266Sopenharmony_ci"              list the desired functions in a  comma-separated  list  that  is\n"
657113498266Sopenharmony_ci"              evaluated  in  a  left-to-right  order. Variable content holding\n"
657213498266Sopenharmony_ci"              null bytes that are not encoded when expanded, causes an error.\n"
657313498266Sopenharmony_ci"\n"
657413498266Sopenharmony_ci"              Available functions:\n"
657513498266Sopenharmony_ci"\n"
657613498266Sopenharmony_ci"              trim   removes all leading and trailing white space.\n"
657713498266Sopenharmony_ci"\n"
657813498266Sopenharmony_ci"              json   outputs the content using JSON string quoting rules.\n"
657913498266Sopenharmony_ci"\n"
658013498266Sopenharmony_ci"              url    shows the content URL (percent) encoded.\n"
658113498266Sopenharmony_ci"\n"
658213498266Sopenharmony_ci, stdout);
658313498266Sopenharmony_ci fputs(
658413498266Sopenharmony_ci"              b64    expands the variable base64 encoded\n"
658513498266Sopenharmony_ci"\n"
658613498266Sopenharmony_ci"              --variable can be used several times in a command line\n"
658713498266Sopenharmony_ci"\n"
658813498266Sopenharmony_ci"              Example:\n"
658913498266Sopenharmony_ci"               curl --variable name=smith https://example.com\n"
659013498266Sopenharmony_ci"\n"
659113498266Sopenharmony_ci"              See also -K, --config. Added in 8.3.0.\n"
659213498266Sopenharmony_ci"\n"
659313498266Sopenharmony_ci"       -v, --verbose\n"
659413498266Sopenharmony_ci"              Makes curl verbose during the operation.  Useful  for  debugging\n"
659513498266Sopenharmony_ci"              and  seeing  what's  going  on \"under the hood\". A line starting\n"
659613498266Sopenharmony_ci, stdout);
659713498266Sopenharmony_ci fputs(
659813498266Sopenharmony_ci"              with '>' means \"header data\" sent by  curl,  '<'  means  \"header\n"
659913498266Sopenharmony_ci"              data\"  received  by  curl  that is hidden in normal cases, and a\n"
660013498266Sopenharmony_ci"              line starting with '*' means additional info provided by curl.\n"
660113498266Sopenharmony_ci"\n"
660213498266Sopenharmony_ci"              If you only want HTTP headers in the output,  -i,  --include  or\n"
660313498266Sopenharmony_ci"              -D, --dump-header might be more suitable options.\n"
660413498266Sopenharmony_ci"\n"
660513498266Sopenharmony_ci"              If you think this option still does not give you enough details,\n"
660613498266Sopenharmony_ci, stdout);
660713498266Sopenharmony_ci fputs(
660813498266Sopenharmony_ci"              consider using --trace or --trace-ascii instead.\n"
660913498266Sopenharmony_ci"\n"
661013498266Sopenharmony_ci"              Note  that verbose output of curl activities and network traffic\n"
661113498266Sopenharmony_ci"              might contain sensitive data, including user names,  credentials\n"
661213498266Sopenharmony_ci"              or  secret  data  content.  Be aware and be careful when sharing\n"
661313498266Sopenharmony_ci"              trace logs with others.\n"
661413498266Sopenharmony_ci"\n"
661513498266Sopenharmony_ci"              This option is global and does not need to be specified for each\n"
661613498266Sopenharmony_ci"              use of --next.\n"
661713498266Sopenharmony_ci"\n"
661813498266Sopenharmony_ci, stdout);
661913498266Sopenharmony_ci fputs(
662013498266Sopenharmony_ci"              Providing --verbose multiple times has no extra effect.  Disable\n"
662113498266Sopenharmony_ci"              it again with --no-verbose.\n"
662213498266Sopenharmony_ci"\n"
662313498266Sopenharmony_ci"              Example:\n"
662413498266Sopenharmony_ci"               curl --verbose https://example.com\n"
662513498266Sopenharmony_ci"\n"
662613498266Sopenharmony_ci"              See also -i, --include, -s, --silent, --trace and --trace-ascii.\n"
662713498266Sopenharmony_ci"              This option is mutually exclusive to --trace and --trace-ascii.\n"
662813498266Sopenharmony_ci"\n"
662913498266Sopenharmony_ci"       -V, --version\n"
663013498266Sopenharmony_ci"              Displays information about curl and the libcurl version it uses.\n"
663113498266Sopenharmony_ci, stdout);
663213498266Sopenharmony_ci fputs(
663313498266Sopenharmony_ci"              The first line includes the full version of  curl,  libcurl  and\n"
663413498266Sopenharmony_ci"              other 3rd party libraries linked with the executable.\n"
663513498266Sopenharmony_ci"\n"
663613498266Sopenharmony_ci"              The  second line (starts with \"Release-Date:\") shows the release\n"
663713498266Sopenharmony_ci"              date.\n"
663813498266Sopenharmony_ci"\n"
663913498266Sopenharmony_ci"              The third line (starts with \"Protocols:\")  shows  all  protocols\n"
664013498266Sopenharmony_ci"              that libcurl reports to support.\n"
664113498266Sopenharmony_ci"\n"
664213498266Sopenharmony_ci"              The  fourth  line  (starts with \"Features:\") shows specific fea-\n"
664313498266Sopenharmony_ci, stdout);
664413498266Sopenharmony_ci fputs(
664513498266Sopenharmony_ci"              tures libcurl reports to offer. Available features include:\n"
664613498266Sopenharmony_ci"\n"
664713498266Sopenharmony_ci"              `alt-svc`\n"
664813498266Sopenharmony_ci"                     Support for the Alt-Svc: header is provided.\n"
664913498266Sopenharmony_ci"\n"
665013498266Sopenharmony_ci"              `AsynchDNS`\n"
665113498266Sopenharmony_ci"                     This curl uses asynchronous name  resolves.  Asynchronous\n"
665213498266Sopenharmony_ci"                     name  resolves can be done using either the c-ares or the\n"
665313498266Sopenharmony_ci"                     threaded resolver backends.\n"
665413498266Sopenharmony_ci"\n"
665513498266Sopenharmony_ci"              `brotli`\n"
665613498266Sopenharmony_ci"                     Support for automatic brotli compression over HTTP(S).\n"
665713498266Sopenharmony_ci"\n"
665813498266Sopenharmony_ci, stdout);
665913498266Sopenharmony_ci fputs(
666013498266Sopenharmony_ci"              `CharConv`\n"
666113498266Sopenharmony_ci"                     curl was built with support for character set conversions\n"
666213498266Sopenharmony_ci"                     (like EBCDIC)\n"
666313498266Sopenharmony_ci"\n"
666413498266Sopenharmony_ci"              `Debug`\n"
666513498266Sopenharmony_ci"                     This curl uses a libcurl built with Debug.  This  enables\n"
666613498266Sopenharmony_ci"                     more   error-tracking   and  memory  debugging  etc.  For\n"
666713498266Sopenharmony_ci"                     curl-developers only!\n"
666813498266Sopenharmony_ci"\n"
666913498266Sopenharmony_ci"              `gsasl`\n"
667013498266Sopenharmony_ci"                     The built-in SASL authentication includes  extensions  to\n"
667113498266Sopenharmony_ci, stdout);
667213498266Sopenharmony_ci fputs(
667313498266Sopenharmony_ci"                     support SCRAM because libcurl was built with libgsasl.\n"
667413498266Sopenharmony_ci"\n"
667513498266Sopenharmony_ci"              `GSS-API`\n"
667613498266Sopenharmony_ci"                     GSS-API is supported.\n"
667713498266Sopenharmony_ci"\n"
667813498266Sopenharmony_ci"              `HSTS` HSTS support is present.\n"
667913498266Sopenharmony_ci"\n"
668013498266Sopenharmony_ci"              `HTTP2`\n"
668113498266Sopenharmony_ci"                     HTTP/2 support has been built-in.\n"
668213498266Sopenharmony_ci"\n"
668313498266Sopenharmony_ci"              `HTTP3`\n"
668413498266Sopenharmony_ci"                     HTTP/3 support has been built-in.\n"
668513498266Sopenharmony_ci"\n"
668613498266Sopenharmony_ci"              `HTTPS-proxy`\n"
668713498266Sopenharmony_ci"                     This curl is built to support HTTPS proxy.\n"
668813498266Sopenharmony_ci"\n"
668913498266Sopenharmony_ci, stdout);
669013498266Sopenharmony_ci fputs(
669113498266Sopenharmony_ci"              `IDN`  This curl supports IDN - international domain names.\n"
669213498266Sopenharmony_ci"\n"
669313498266Sopenharmony_ci"              `IPv6` You can use IPv6 with this.\n"
669413498266Sopenharmony_ci"\n"
669513498266Sopenharmony_ci"              `Kerberos`\n"
669613498266Sopenharmony_ci"                     Kerberos V5 authentication is supported.\n"
669713498266Sopenharmony_ci"\n"
669813498266Sopenharmony_ci"              `Largefile`\n"
669913498266Sopenharmony_ci"                     This curl supports transfers of large files, files larger\n"
670013498266Sopenharmony_ci"                     than 2GB.\n"
670113498266Sopenharmony_ci"\n"
670213498266Sopenharmony_ci"              `libz` Automatic decompression (via gzip, deflate) of compressed\n"
670313498266Sopenharmony_ci"                     files over HTTP is supported.\n"
670413498266Sopenharmony_ci"\n"
670513498266Sopenharmony_ci, stdout);
670613498266Sopenharmony_ci fputs(
670713498266Sopenharmony_ci"              `MultiSSL`\n"
670813498266Sopenharmony_ci"                     This curl supports multiple TLS backends.\n"
670913498266Sopenharmony_ci"\n"
671013498266Sopenharmony_ci"              `NTLM` NTLM authentication is supported.\n"
671113498266Sopenharmony_ci"\n"
671213498266Sopenharmony_ci"              `NTLM_WB`\n"
671313498266Sopenharmony_ci"                     NTLM delegation to winbind helper is supported.\n"
671413498266Sopenharmony_ci"\n"
671513498266Sopenharmony_ci"              `PSL`  PSL  is  short for Public Suffix List and means that this\n"
671613498266Sopenharmony_ci"                     curl has been built with  knowledge  about  \"public  suf-\n"
671713498266Sopenharmony_ci"                     fixes\".\n"
671813498266Sopenharmony_ci"\n"
671913498266Sopenharmony_ci"              `SPNEGO`\n"
672013498266Sopenharmony_ci, stdout);
672113498266Sopenharmony_ci fputs(
672213498266Sopenharmony_ci"                     SPNEGO authentication is supported.\n"
672313498266Sopenharmony_ci"\n"
672413498266Sopenharmony_ci"              `SSL`  SSL  versions of various protocols are supported, such as\n"
672513498266Sopenharmony_ci"                     HTTPS, FTPS, POP3S and so on.\n"
672613498266Sopenharmony_ci"\n"
672713498266Sopenharmony_ci"              `SSPI` SSPI is supported.\n"
672813498266Sopenharmony_ci"\n"
672913498266Sopenharmony_ci"              `TLS-SRP`\n"
673013498266Sopenharmony_ci"                     SRP (Secure Remote Password) authentication is  supported\n"
673113498266Sopenharmony_ci"                     for TLS.\n"
673213498266Sopenharmony_ci"\n"
673313498266Sopenharmony_ci"              `TrackMemory`\n"
673413498266Sopenharmony_ci"                     Debug memory tracking is supported.\n"
673513498266Sopenharmony_ci"\n"
673613498266Sopenharmony_ci"              `Unicode`\n"
673713498266Sopenharmony_ci, stdout);
673813498266Sopenharmony_ci fputs(
673913498266Sopenharmony_ci"                     Unicode support on Windows.\n"
674013498266Sopenharmony_ci"\n"
674113498266Sopenharmony_ci"              `UnixSockets`\n"
674213498266Sopenharmony_ci"                     Unix sockets support is provided.\n"
674313498266Sopenharmony_ci"\n"
674413498266Sopenharmony_ci"              `zstd` Automatic  decompression  (via  zstd) of compressed files\n"
674513498266Sopenharmony_ci"                     over HTTP is supported.\n"
674613498266Sopenharmony_ci"\n"
674713498266Sopenharmony_ci"              Example:\n"
674813498266Sopenharmony_ci"               curl --version\n"
674913498266Sopenharmony_ci"\n"
675013498266Sopenharmony_ci"              See also -h, --help and -M, --manual.\n"
675113498266Sopenharmony_ci"\n"
675213498266Sopenharmony_ci"       -w, --write-out <format>\n"
675313498266Sopenharmony_ci"              Make curl display information on stdout after a completed trans-\n"
675413498266Sopenharmony_ci, stdout);
675513498266Sopenharmony_ci fputs(
675613498266Sopenharmony_ci"              fer. The format is a string that may contain  plain  text  mixed\n"
675713498266Sopenharmony_ci"              with  any  number of variables. The format can be specified as a\n"
675813498266Sopenharmony_ci"              literal \"string\", or you can have curl read the  format  from  a\n"
675913498266Sopenharmony_ci"              file  with  \"@filename\" and to tell curl to read the format from\n"
676013498266Sopenharmony_ci"              stdin you write \"@-\".\n"
676113498266Sopenharmony_ci"\n"
676213498266Sopenharmony_ci"              The variables present in the output format  are  substituted  by\n"
676313498266Sopenharmony_ci, stdout);
676413498266Sopenharmony_ci fputs(
676513498266Sopenharmony_ci"              the  value or text that curl thinks fit, as described below. All\n"
676613498266Sopenharmony_ci"              variables are specified as %{variable_name} and to output a nor-\n"
676713498266Sopenharmony_ci"              mal % you just write them as %%. You can output a newline by us-\n"
676813498266Sopenharmony_ci"              ing \\n, a carriage return with \\r and a tab space with \\t.\n"
676913498266Sopenharmony_ci"\n"
677013498266Sopenharmony_ci"              The output is by default written to standard output, but can  be\n"
677113498266Sopenharmony_ci"              changed with %{stderr} and %output{}.\n"
677213498266Sopenharmony_ci"\n"
677313498266Sopenharmony_ci, stdout);
677413498266Sopenharmony_ci fputs(
677513498266Sopenharmony_ci"              Output  HTTP  headers  from  the  most  recent  request by using\n"
677613498266Sopenharmony_ci"              %header{name} where name is the case  insensitive  name  of  the\n"
677713498266Sopenharmony_ci"              header (without the trailing colon). The header contents are ex-\n"
677813498266Sopenharmony_ci"              actly as sent over the network, with leading and trailing white-\n"
677913498266Sopenharmony_ci"              space trimmed (added in 7.84.0).\n"
678013498266Sopenharmony_ci"\n"
678113498266Sopenharmony_ci"              Select  a  specific  target destination file to write the output\n"
678213498266Sopenharmony_ci, stdout);
678313498266Sopenharmony_ci fputs(
678413498266Sopenharmony_ci"              to, by using %output{name} (added in curl 8.3.0) where  name  is\n"
678513498266Sopenharmony_ci"              the  full  file  name.  The output following that instruction is\n"
678613498266Sopenharmony_ci"              then written to that file. More than one  %output{}  instruction\n"
678713498266Sopenharmony_ci"              can  be  specified  in  the same write-out argument. If the file\n"
678813498266Sopenharmony_ci"              name cannot be created, curl leaves the  output  destination  to\n"
678913498266Sopenharmony_ci"              the  one  used  prior  to  the  %output{} instruction. Use %out-\n"
679013498266Sopenharmony_ci, stdout);
679113498266Sopenharmony_ci fputs(
679213498266Sopenharmony_ci"              put{>>name} to append data to an existing file.\n"
679313498266Sopenharmony_ci"\n"
679413498266Sopenharmony_ci"              NOTE: In Windows the %-symbol is a special symbol used to expand\n"
679513498266Sopenharmony_ci"              environment variables. In batch files all occurrences of %  must\n"
679613498266Sopenharmony_ci"              be  doubled  when  using this option to properly escape. If this\n"
679713498266Sopenharmony_ci"              option is used at the command prompt then the %  cannot  be  es-\n"
679813498266Sopenharmony_ci"              caped and unintended expansion is possible.\n"
679913498266Sopenharmony_ci"\n"
680013498266Sopenharmony_ci"              The variables available are:\n"
680113498266Sopenharmony_ci"\n"
680213498266Sopenharmony_ci, stdout);
680313498266Sopenharmony_ci fputs(
680413498266Sopenharmony_ci"              `certs`\n"
680513498266Sopenharmony_ci"                     Output the certificate chain with details. Supported only\n"
680613498266Sopenharmony_ci"                     by  the  OpenSSL,  GnuTLS,  Schannel and Secure Transport\n"
680713498266Sopenharmony_ci"                     backends. (Added in 7.88.0)\n"
680813498266Sopenharmony_ci"\n"
680913498266Sopenharmony_ci"              `content_type`\n"
681013498266Sopenharmony_ci"                     The Content-Type of the requested document, if there  was\n"
681113498266Sopenharmony_ci"                     any.\n"
681213498266Sopenharmony_ci"\n"
681313498266Sopenharmony_ci"              `errormsg`\n"
681413498266Sopenharmony_ci"                     The error message. (Added in 7.75.0)\n"
681513498266Sopenharmony_ci"\n"
681613498266Sopenharmony_ci"              `exitcode`\n"
681713498266Sopenharmony_ci, stdout);
681813498266Sopenharmony_ci fputs(
681913498266Sopenharmony_ci"                     The  numerical  exit  code  of  the  transfer.  (Added in\n"
682013498266Sopenharmony_ci"                     7.75.0)\n"
682113498266Sopenharmony_ci"\n"
682213498266Sopenharmony_ci"              `filename_effective`\n"
682313498266Sopenharmony_ci"                     The ultimate filename that curl writes out  to.  This  is\n"
682413498266Sopenharmony_ci"                     only  meaningful  if curl is told to write to a file with\n"
682513498266Sopenharmony_ci"                     the -O, --remote-name or -o, --output option.  It's  most\n"
682613498266Sopenharmony_ci"                     useful  in  combination with the -J, --remote-header-name\n"
682713498266Sopenharmony_ci"                     option.\n"
682813498266Sopenharmony_ci"\n"
682913498266Sopenharmony_ci, stdout);
683013498266Sopenharmony_ci fputs(
683113498266Sopenharmony_ci"              `ftp_entry_path`\n"
683213498266Sopenharmony_ci"                     The initial path curl ended up in when logging on to  the\n"
683313498266Sopenharmony_ci"                     remote FTP server.\n"
683413498266Sopenharmony_ci"\n"
683513498266Sopenharmony_ci"              `header_json`\n"
683613498266Sopenharmony_ci"                     A JSON object with all HTTP response headers from the re-\n"
683713498266Sopenharmony_ci"                     cent  transfer.  Values  are provided as arrays, since in\n"
683813498266Sopenharmony_ci"                     the case of multiple headers there can be  multiple  val-\n"
683913498266Sopenharmony_ci"                     ues. (Added in 7.83.0)\n"
684013498266Sopenharmony_ci"\n"
684113498266Sopenharmony_ci, stdout);
684213498266Sopenharmony_ci fputs(
684313498266Sopenharmony_ci"                     The  header  names provided in lowercase, listed in order\n"
684413498266Sopenharmony_ci"                     of appearance over the wire. Except for duplicated  head-\n"
684513498266Sopenharmony_ci"                     ers.  They  are  grouped  on the first occurrence of that\n"
684613498266Sopenharmony_ci"                     header, each value is presented in the JSON array.\n"
684713498266Sopenharmony_ci"\n"
684813498266Sopenharmony_ci"              `http_code`\n"
684913498266Sopenharmony_ci"                     The numerical response code that was found  in  the  last\n"
685013498266Sopenharmony_ci"                     retrieved HTTP(S) or FTP(s) transfer.\n"
685113498266Sopenharmony_ci"\n"
685213498266Sopenharmony_ci, stdout);
685313498266Sopenharmony_ci fputs(
685413498266Sopenharmony_ci"              `http_connect`\n"
685513498266Sopenharmony_ci"                     The  numerical  code  that was found in the last response\n"
685613498266Sopenharmony_ci"                     (from a proxy) to a curl CONNECT request.\n"
685713498266Sopenharmony_ci"\n"
685813498266Sopenharmony_ci"              `http_version`\n"
685913498266Sopenharmony_ci"                     The http version that was  effectively  used.  (Added  in\n"
686013498266Sopenharmony_ci"                     7.50.0)\n"
686113498266Sopenharmony_ci"\n"
686213498266Sopenharmony_ci"              `json` A JSON object with all available keys. (Added in 7.70.0)\n"
686313498266Sopenharmony_ci"\n"
686413498266Sopenharmony_ci"              `local_ip`\n"
686513498266Sopenharmony_ci"                     The IP address of the local end of the most recently done\n"
686613498266Sopenharmony_ci, stdout);
686713498266Sopenharmony_ci fputs(
686813498266Sopenharmony_ci"                     connection - can be either IPv4 or IPv6.\n"
686913498266Sopenharmony_ci"\n"
687013498266Sopenharmony_ci"              `local_port`\n"
687113498266Sopenharmony_ci"                     The  local  port number of the most recently done connec-\n"
687213498266Sopenharmony_ci"                     tion.\n"
687313498266Sopenharmony_ci"\n"
687413498266Sopenharmony_ci"              `method`\n"
687513498266Sopenharmony_ci"                     The http method used in the  most  recent  HTTP  request.\n"
687613498266Sopenharmony_ci"                     (Added in 7.72.0)\n"
687713498266Sopenharmony_ci"\n"
687813498266Sopenharmony_ci"              `num_certs`\n"
687913498266Sopenharmony_ci"                     Number  of  server certificates received in the TLS hand-\n"
688013498266Sopenharmony_ci, stdout);
688113498266Sopenharmony_ci fputs(
688213498266Sopenharmony_ci"                     shake. Supported only by the  OpenSSL,  GnuTLS,  Schannel\n"
688313498266Sopenharmony_ci"                     and Secure Transport backends.  (Added in 7.88.0)\n"
688413498266Sopenharmony_ci"\n"
688513498266Sopenharmony_ci"              `num_connects`\n"
688613498266Sopenharmony_ci"                     Number of new connects made in the recent transfer.\n"
688713498266Sopenharmony_ci"\n"
688813498266Sopenharmony_ci"              `num_headers`\n"
688913498266Sopenharmony_ci"                     The number of response headers in the most recent request\n"
689013498266Sopenharmony_ci"                     (restarted  at  each redirect). Note that the status line\n"
689113498266Sopenharmony_ci"                     IS NOT a header. (Added in 7.73.0)\n"
689213498266Sopenharmony_ci"\n"
689313498266Sopenharmony_ci, stdout);
689413498266Sopenharmony_ci fputs(
689513498266Sopenharmony_ci"              `num_redirects`\n"
689613498266Sopenharmony_ci"                     Number of redirects that were followed in the request.\n"
689713498266Sopenharmony_ci"\n"
689813498266Sopenharmony_ci"              `onerror`\n"
689913498266Sopenharmony_ci"                     The rest of the output is only shown if the transfer  re-\n"
690013498266Sopenharmony_ci"                     turned a non-zero error.  (Added in 7.75.0)\n"
690113498266Sopenharmony_ci"\n"
690213498266Sopenharmony_ci"              `proxy_ssl_verify_result`\n"
690313498266Sopenharmony_ci"                     The result of the HTTPS proxy's SSL peer certificate ver-\n"
690413498266Sopenharmony_ci"                     ification  that  was  requested. 0 means the verification\n"
690513498266Sopenharmony_ci, stdout);
690613498266Sopenharmony_ci fputs(
690713498266Sopenharmony_ci"                     was successful. (Added in 7.52.0)\n"
690813498266Sopenharmony_ci"\n"
690913498266Sopenharmony_ci"              `redirect_url`\n"
691013498266Sopenharmony_ci"                     When an HTTP request was made without -L,  --location  to\n"
691113498266Sopenharmony_ci"                     follow  redirects  (or  when  --max-redirs  is met), this\n"
691213498266Sopenharmony_ci"                     variable shows the actual URL a redirect would have  gone\n"
691313498266Sopenharmony_ci"                     to.\n"
691413498266Sopenharmony_ci"\n"
691513498266Sopenharmony_ci"              `referer`\n"
691613498266Sopenharmony_ci"                     The Referer: header, if there was any. (Added in 7.76.0)\n"
691713498266Sopenharmony_ci"\n"
691813498266Sopenharmony_ci"              `remote_ip`\n"
691913498266Sopenharmony_ci, stdout);
692013498266Sopenharmony_ci fputs(
692113498266Sopenharmony_ci"                     The  remote  IP address of the most recently done connec-\n"
692213498266Sopenharmony_ci"                     tion - can be either IPv4 or IPv6.\n"
692313498266Sopenharmony_ci"\n"
692413498266Sopenharmony_ci"              `remote_port`\n"
692513498266Sopenharmony_ci"                     The remote port number of the most recently done  connec-\n"
692613498266Sopenharmony_ci"                     tion.\n"
692713498266Sopenharmony_ci"\n"
692813498266Sopenharmony_ci"              `response_code`\n"
692913498266Sopenharmony_ci"                     The  numerical  response  code that was found in the last\n"
693013498266Sopenharmony_ci"                     transfer (formerly known as \"http_code\").\n"
693113498266Sopenharmony_ci"\n"
693213498266Sopenharmony_ci"              `scheme`\n"
693313498266Sopenharmony_ci, stdout);
693413498266Sopenharmony_ci fputs(
693513498266Sopenharmony_ci"                     The URL scheme (sometimes called protocol) that  was  ef-\n"
693613498266Sopenharmony_ci"                     fectively used. (Added in 7.52.0)\n"
693713498266Sopenharmony_ci"\n"
693813498266Sopenharmony_ci"              `size_download`\n"
693913498266Sopenharmony_ci"                     The  total  amount of bytes that were downloaded. This is\n"
694013498266Sopenharmony_ci"                     the size of the body/data that was transferred, excluding\n"
694113498266Sopenharmony_ci"                     headers.\n"
694213498266Sopenharmony_ci"\n"
694313498266Sopenharmony_ci"              `size_header`\n"
694413498266Sopenharmony_ci"                     The total amount of bytes of the downloaded headers.\n"
694513498266Sopenharmony_ci"\n"
694613498266Sopenharmony_ci"              `size_request`\n"
694713498266Sopenharmony_ci, stdout);
694813498266Sopenharmony_ci fputs(
694913498266Sopenharmony_ci"                     The total amount of bytes that were sent in the HTTP  re-\n"
695013498266Sopenharmony_ci"                     quest.\n"
695113498266Sopenharmony_ci"\n"
695213498266Sopenharmony_ci"              `size_upload`\n"
695313498266Sopenharmony_ci"                     The total amount of bytes that were uploaded. This is the\n"
695413498266Sopenharmony_ci"                     size  of  the  body/data  that was transferred, excluding\n"
695513498266Sopenharmony_ci"                     headers.\n"
695613498266Sopenharmony_ci"\n"
695713498266Sopenharmony_ci"              `speed_download`\n"
695813498266Sopenharmony_ci"                     The average download speed that  curl  measured  for  the\n"
695913498266Sopenharmony_ci"                     complete download. Bytes per second.\n"
696013498266Sopenharmony_ci"\n"
696113498266Sopenharmony_ci, stdout);
696213498266Sopenharmony_ci fputs(
696313498266Sopenharmony_ci"              `speed_upload`\n"
696413498266Sopenharmony_ci"                     The  average upload speed that curl measured for the com-\n"
696513498266Sopenharmony_ci"                     plete upload. Bytes per second.\n"
696613498266Sopenharmony_ci"\n"
696713498266Sopenharmony_ci"              `ssl_verify_result`\n"
696813498266Sopenharmony_ci"                     The result of the SSL peer certificate verification  that\n"
696913498266Sopenharmony_ci"                     was requested. 0 means the verification was successful.\n"
697013498266Sopenharmony_ci"\n"
697113498266Sopenharmony_ci"              `stderr`\n"
697213498266Sopenharmony_ci"                     From this point on, the -w, --write-out output is written\n"
697313498266Sopenharmony_ci, stdout);
697413498266Sopenharmony_ci fputs(
697513498266Sopenharmony_ci"                     to standard error. (Added in 7.63.0)\n"
697613498266Sopenharmony_ci"\n"
697713498266Sopenharmony_ci"              `stdout`\n"
697813498266Sopenharmony_ci"                     From this point on, the -w, --write-out output is written\n"
697913498266Sopenharmony_ci"                     to standard output.  This is the default, but can be used\n"
698013498266Sopenharmony_ci"                     to  switch  back  after  switching  to stderr.  (Added in\n"
698113498266Sopenharmony_ci"                     7.63.0)\n"
698213498266Sopenharmony_ci"\n"
698313498266Sopenharmony_ci"              `time_appconnect`\n"
698413498266Sopenharmony_ci"                     The time, in seconds, it took from the  start  until  the\n"
698513498266Sopenharmony_ci, stdout);
698613498266Sopenharmony_ci fputs(
698713498266Sopenharmony_ci"                     SSL/SSH/etc connect/handshake to the remote host was com-\n"
698813498266Sopenharmony_ci"                     pleted.\n"
698913498266Sopenharmony_ci"\n"
699013498266Sopenharmony_ci"              `time_connect`\n"
699113498266Sopenharmony_ci"                     The  time,  in  seconds, it took from the start until the\n"
699213498266Sopenharmony_ci"                     TCP connect to the remote host (or proxy) was completed.\n"
699313498266Sopenharmony_ci"\n"
699413498266Sopenharmony_ci"              `time_namelookup`\n"
699513498266Sopenharmony_ci"                     The time, in seconds, it took from the  start  until  the\n"
699613498266Sopenharmony_ci"                     name resolving was completed.\n"
699713498266Sopenharmony_ci"\n"
699813498266Sopenharmony_ci"              `time_pretransfer`\n"
699913498266Sopenharmony_ci, stdout);
700013498266Sopenharmony_ci fputs(
700113498266Sopenharmony_ci"                     The  time,  in  seconds, it took from the start until the\n"
700213498266Sopenharmony_ci"                     file transfer was just about to begin. This includes  all\n"
700313498266Sopenharmony_ci"                     pre-transfer  commands and negotiations that are specific\n"
700413498266Sopenharmony_ci"                     to the particular protocol(s) involved.\n"
700513498266Sopenharmony_ci"\n"
700613498266Sopenharmony_ci"              `time_redirect`\n"
700713498266Sopenharmony_ci"                     The time, in seconds, it took for all  redirection  steps\n"
700813498266Sopenharmony_ci"                     including  name lookup, connect, pretransfer and transfer\n"
700913498266Sopenharmony_ci, stdout);
701013498266Sopenharmony_ci fputs(
701113498266Sopenharmony_ci"                     before the final transaction was started. \"time_redirect\"\n"
701213498266Sopenharmony_ci"                     shows the complete execution time for  multiple  redirec-\n"
701313498266Sopenharmony_ci"                     tions.\n"
701413498266Sopenharmony_ci"\n"
701513498266Sopenharmony_ci"              `time_starttransfer`\n"
701613498266Sopenharmony_ci"                     The  time,  in  seconds, it took from the start until the\n"
701713498266Sopenharmony_ci"                     first byte is received.  This  includes  time_pretransfer\n"
701813498266Sopenharmony_ci"                     and  also the time the server needed to calculate the re-\n"
701913498266Sopenharmony_ci"                     sult.\n"
702013498266Sopenharmony_ci"\n"
702113498266Sopenharmony_ci, stdout);
702213498266Sopenharmony_ci fputs(
702313498266Sopenharmony_ci"              `time_total`\n"
702413498266Sopenharmony_ci"                     The total time,  in  seconds,  that  the  full  operation\n"
702513498266Sopenharmony_ci"                     lasted.\n"
702613498266Sopenharmony_ci"\n"
702713498266Sopenharmony_ci"              `url`  The URL that was fetched. (Added in 7.75.0)\n"
702813498266Sopenharmony_ci"\n"
702913498266Sopenharmony_ci"              `url.scheme`\n"
703013498266Sopenharmony_ci"                     The  scheme  part  of the URL that was fetched. (Added in\n"
703113498266Sopenharmony_ci"                     8.1.0)\n"
703213498266Sopenharmony_ci"\n"
703313498266Sopenharmony_ci"              `url.user`\n"
703413498266Sopenharmony_ci"                     The user part of the URL  that  was  fetched.  (Added  in\n"
703513498266Sopenharmony_ci"                     8.1.0)\n"
703613498266Sopenharmony_ci"\n"
703713498266Sopenharmony_ci"              `url.password`\n"
703813498266Sopenharmony_ci, stdout);
703913498266Sopenharmony_ci fputs(
704013498266Sopenharmony_ci"                     The  password part of the URL that was fetched. (Added in\n"
704113498266Sopenharmony_ci"                     8.1.0)\n"
704213498266Sopenharmony_ci"\n"
704313498266Sopenharmony_ci"              `url.options`\n"
704413498266Sopenharmony_ci"                     The options part of the URL that was fetched.  (Added  in\n"
704513498266Sopenharmony_ci"                     8.1.0)\n"
704613498266Sopenharmony_ci"\n"
704713498266Sopenharmony_ci"              `url.host`\n"
704813498266Sopenharmony_ci"                     The  host  part  of  the  URL that was fetched. (Added in\n"
704913498266Sopenharmony_ci"                     8.1.0)\n"
705013498266Sopenharmony_ci"\n"
705113498266Sopenharmony_ci"              `url.port`\n"
705213498266Sopenharmony_ci"                     The port number of the URL that was fetched. If  no  port\n"
705313498266Sopenharmony_ci, stdout);
705413498266Sopenharmony_ci fputs(
705513498266Sopenharmony_ci"                     number  was  specified  and the URL scheme is known, that\n"
705613498266Sopenharmony_ci"                     scheme's default port number is shown. (Added in 8.1.0)\n"
705713498266Sopenharmony_ci"\n"
705813498266Sopenharmony_ci"              `url.path`\n"
705913498266Sopenharmony_ci"                     The path part of the URL  that  was  fetched.  (Added  in\n"
706013498266Sopenharmony_ci"                     8.1.0)\n"
706113498266Sopenharmony_ci"\n"
706213498266Sopenharmony_ci"              `url.query`\n"
706313498266Sopenharmony_ci"                     The  query  part  of  the URL that was fetched. (Added in\n"
706413498266Sopenharmony_ci"                     8.1.0)\n"
706513498266Sopenharmony_ci"\n"
706613498266Sopenharmony_ci"              `url.fragment`\n"
706713498266Sopenharmony_ci, stdout);
706813498266Sopenharmony_ci fputs(
706913498266Sopenharmony_ci"                     The fragment part of the URL that was fetched. (Added  in\n"
707013498266Sopenharmony_ci"                     8.1.0)\n"
707113498266Sopenharmony_ci"\n"
707213498266Sopenharmony_ci"              `url.zoneid`\n"
707313498266Sopenharmony_ci"                     The  zone  id part of the URL that was fetched. (Added in\n"
707413498266Sopenharmony_ci"                     8.1.0)\n"
707513498266Sopenharmony_ci"\n"
707613498266Sopenharmony_ci"              `urle.scheme`\n"
707713498266Sopenharmony_ci"                     The scheme part of the  effective  (last)  URL  that  was\n"
707813498266Sopenharmony_ci"                     fetched. (Added in 8.1.0)\n"
707913498266Sopenharmony_ci"\n"
708013498266Sopenharmony_ci"              `urle.user`\n"
708113498266Sopenharmony_ci, stdout);
708213498266Sopenharmony_ci fputs(
708313498266Sopenharmony_ci"                     The  user  part  of  the  effective  (last)  URL that was\n"
708413498266Sopenharmony_ci"                     fetched. (Added in 8.1.0)\n"
708513498266Sopenharmony_ci"\n"
708613498266Sopenharmony_ci"              `urle.password`\n"
708713498266Sopenharmony_ci"                     The password part of the effective (last)  URL  that  was\n"
708813498266Sopenharmony_ci"                     fetched. (Added in 8.1.0)\n"
708913498266Sopenharmony_ci"\n"
709013498266Sopenharmony_ci"              `urle.options`\n"
709113498266Sopenharmony_ci"                     The  options  part  of  the effective (last) URL that was\n"
709213498266Sopenharmony_ci"                     fetched. (Added in 8.1.0)\n"
709313498266Sopenharmony_ci"\n"
709413498266Sopenharmony_ci"              `urle.host`\n"
709513498266Sopenharmony_ci, stdout);
709613498266Sopenharmony_ci fputs(
709713498266Sopenharmony_ci"                     The host part  of  the  effective  (last)  URL  that  was\n"
709813498266Sopenharmony_ci"                     fetched. (Added in 8.1.0)\n"
709913498266Sopenharmony_ci"\n"
710013498266Sopenharmony_ci"              `urle.port`\n"
710113498266Sopenharmony_ci"                     The  port  number  of  the  effective (last) URL that was\n"
710213498266Sopenharmony_ci"                     fetched. If no port number was  specified,  but  the  URL\n"
710313498266Sopenharmony_ci"                     scheme  is  known,  that  scheme's default port number is\n"
710413498266Sopenharmony_ci"                     shown. (Added in 8.1.0)\n"
710513498266Sopenharmony_ci"\n"
710613498266Sopenharmony_ci"              `urle.path`\n"
710713498266Sopenharmony_ci, stdout);
710813498266Sopenharmony_ci fputs(
710913498266Sopenharmony_ci"                     The path part  of  the  effective  (last)  URL  that  was\n"
711013498266Sopenharmony_ci"                     fetched. (Added in 8.1.0)\n"
711113498266Sopenharmony_ci"\n"
711213498266Sopenharmony_ci"              `urle.query`\n"
711313498266Sopenharmony_ci"                     The  query  part  of  the  effective  (last) URL that was\n"
711413498266Sopenharmony_ci"                     fetched. (Added in 8.1.0)\n"
711513498266Sopenharmony_ci"\n"
711613498266Sopenharmony_ci"              `urle.fragment`\n"
711713498266Sopenharmony_ci"                     The fragment part of the effective (last)  URL  that  was\n"
711813498266Sopenharmony_ci"                     fetched. (Added in 8.1.0)\n"
711913498266Sopenharmony_ci"\n"
712013498266Sopenharmony_ci"              `urle.zoneid`\n"
712113498266Sopenharmony_ci, stdout);
712213498266Sopenharmony_ci fputs(
712313498266Sopenharmony_ci"                     The  zone  id  part  of the effective (last) URL that was\n"
712413498266Sopenharmony_ci"                     fetched. (Added in 8.1.0)\n"
712513498266Sopenharmony_ci"\n"
712613498266Sopenharmony_ci"              `urlnum`\n"
712713498266Sopenharmony_ci"                     The URL index number of  this  transfer,  0-indexed.  Un-\n"
712813498266Sopenharmony_ci"                     globbed  URLs  share  the same index number as the origin\n"
712913498266Sopenharmony_ci"                     globbed URL. (Added in 7.75.0)\n"
713013498266Sopenharmony_ci"\n"
713113498266Sopenharmony_ci"              `url_effective`\n"
713213498266Sopenharmony_ci"                     The URL that was fetched last. This is most meaningful if\n"
713313498266Sopenharmony_ci, stdout);
713413498266Sopenharmony_ci fputs(
713513498266Sopenharmony_ci"                     you have told curl to follow location: headers.\n"
713613498266Sopenharmony_ci"\n"
713713498266Sopenharmony_ci"              If --write-out is provided several times, the last set value  is\n"
713813498266Sopenharmony_ci"              used.\n"
713913498266Sopenharmony_ci"\n"
714013498266Sopenharmony_ci"              Example:\n"
714113498266Sopenharmony_ci"               curl -w '%{response_code}\\n' https://example.com\n"
714213498266Sopenharmony_ci"\n"
714313498266Sopenharmony_ci"              See also -v, --verbose and -I, --head.\n"
714413498266Sopenharmony_ci"\n"
714513498266Sopenharmony_ci"       --xattr\n"
714613498266Sopenharmony_ci"              When  saving  output  to a file, this option tells curl to store\n"
714713498266Sopenharmony_ci"              certain file metadata in extended  file  attributes.  Currently,\n"
714813498266Sopenharmony_ci, stdout);
714913498266Sopenharmony_ci fputs(
715013498266Sopenharmony_ci"              the  URL  is  stored  in the \"xdg.origin.url\" attribute and, for\n"
715113498266Sopenharmony_ci"              HTTP, the content type is stored in the  \"mime_type\"  attribute.\n"
715213498266Sopenharmony_ci"              If the file system does not support extended attributes, a warn-\n"
715313498266Sopenharmony_ci"              ing is issued.\n"
715413498266Sopenharmony_ci"\n"
715513498266Sopenharmony_ci"              Providing  --xattr  multiple times has no extra effect.  Disable\n"
715613498266Sopenharmony_ci"              it again with --no-xattr.\n"
715713498266Sopenharmony_ci"\n"
715813498266Sopenharmony_ci"              Example:\n"
715913498266Sopenharmony_ci"               curl --xattr -o storage https://example.com\n"
716013498266Sopenharmony_ci"\n"
716113498266Sopenharmony_ci, stdout);
716213498266Sopenharmony_ci fputs(
716313498266Sopenharmony_ci"              See also -R, --remote-time, -w, --write-out and -v, --verbose.\n"
716413498266Sopenharmony_ci"\n"
716513498266Sopenharmony_ci"FILES\n"
716613498266Sopenharmony_ci"       ~/.curlrc\n"
716713498266Sopenharmony_ci"\n"
716813498266Sopenharmony_ci"       Default config file, see -K, --config for details.\n"
716913498266Sopenharmony_ci"\n"
717013498266Sopenharmony_ci"ENVIRONMENT\n"
717113498266Sopenharmony_ci"       The environment variables can be specified in lower case or upper case.\n"
717213498266Sopenharmony_ci"       The lower case version has precedence. \"http_proxy\" is an exception  as\n"
717313498266Sopenharmony_ci"       it is only available in lower case.\n"
717413498266Sopenharmony_ci"\n"
717513498266Sopenharmony_ci"       Using  an  environment variable to set the proxy has the same effect as\n"
717613498266Sopenharmony_ci"       using the -x, --proxy option.\n"
717713498266Sopenharmony_ci"\n"
717813498266Sopenharmony_ci, stdout);
717913498266Sopenharmony_ci fputs(
718013498266Sopenharmony_ci"       `http_proxy` [protocol://]<host>[:port]\n"
718113498266Sopenharmony_ci"              Sets the proxy server to use for HTTP.\n"
718213498266Sopenharmony_ci"\n"
718313498266Sopenharmony_ci"       `HTTPS_PROXY` [protocol://]<host>[:port]\n"
718413498266Sopenharmony_ci"              Sets the proxy server to use for HTTPS.\n"
718513498266Sopenharmony_ci"\n"
718613498266Sopenharmony_ci"       `[url-protocol]_PROXY` [protocol://]<host>[:port]\n"
718713498266Sopenharmony_ci"              Sets the proxy server to use for [url-protocol], where the  pro-\n"
718813498266Sopenharmony_ci"              tocol  is  a  protocol  that curl supports and as specified in a\n"
718913498266Sopenharmony_ci"              URL. FTP, FTPS, POP3, IMAP, SMTP, LDAP, etc.\n"
719013498266Sopenharmony_ci"\n"
719113498266Sopenharmony_ci, stdout);
719213498266Sopenharmony_ci fputs(
719313498266Sopenharmony_ci"       `ALL_PROXY` [protocol://]<host>[:port]\n"
719413498266Sopenharmony_ci"              Sets the proxy server to use if no  protocol-specific  proxy  is\n"
719513498266Sopenharmony_ci"              set.\n"
719613498266Sopenharmony_ci"\n"
719713498266Sopenharmony_ci"       `NO_PROXY` <comma-separated list of hosts/domains>\n"
719813498266Sopenharmony_ci"              list  of host names that should not go through any proxy. If set\n"
719913498266Sopenharmony_ci"              to an asterisk '*' only, it matches all hosts. Each name in this\n"
720013498266Sopenharmony_ci"              list is matched as either a domain name which contains the host-\n"
720113498266Sopenharmony_ci"              name, or the hostname itself.\n"
720213498266Sopenharmony_ci"\n"
720313498266Sopenharmony_ci, stdout);
720413498266Sopenharmony_ci fputs(
720513498266Sopenharmony_ci"              This environment variable disables use of the  proxy  even  when\n"
720613498266Sopenharmony_ci"              specified with the -x, --proxy option. That is\n"
720713498266Sopenharmony_ci"\n"
720813498266Sopenharmony_ci"              NO_PROXY=direct.example.com curl -x http://proxy.example.com\n"
720913498266Sopenharmony_ci"              http://direct.example.com\n"
721013498266Sopenharmony_ci"\n"
721113498266Sopenharmony_ci"              accesses the target URL directly, and\n"
721213498266Sopenharmony_ci"\n"
721313498266Sopenharmony_ci"              NO_PROXY=direct.example.com curl -x http://proxy.example.com\n"
721413498266Sopenharmony_ci"              http://somewhere.example.com\n"
721513498266Sopenharmony_ci"\n"
721613498266Sopenharmony_ci"              accesses the target URL through the proxy.\n"
721713498266Sopenharmony_ci"\n"
721813498266Sopenharmony_ci, stdout);
721913498266Sopenharmony_ci fputs(
722013498266Sopenharmony_ci"              The  list  of  host  names  can also be include numerical IP ad-\n"
722113498266Sopenharmony_ci"              dresses, and IPv6 versions should then be given without  enclos-\n"
722213498266Sopenharmony_ci"              ing brackets.\n"
722313498266Sopenharmony_ci"\n"
722413498266Sopenharmony_ci"              IP  addresses  can be specified using CIDR notation: an appended\n"
722513498266Sopenharmony_ci"              slash and number specifies the number of \"network bits\"  out  of\n"
722613498266Sopenharmony_ci"              the  address to use in the comparison (added in 7.86.0). For ex-\n"
722713498266Sopenharmony_ci, stdout);
722813498266Sopenharmony_ci fputs(
722913498266Sopenharmony_ci"              ample \"192.168.0.0/16\" would match all addresses  starting  with\n"
723013498266Sopenharmony_ci"              \"192.168\".\n"
723113498266Sopenharmony_ci"\n"
723213498266Sopenharmony_ci"       `APPDATA` <dir>\n"
723313498266Sopenharmony_ci"              On  Windows,  this variable is used when trying to find the home\n"
723413498266Sopenharmony_ci"              directory. If the primary home variable are all unset.\n"
723513498266Sopenharmony_ci"\n"
723613498266Sopenharmony_ci"       `COLUMNS` <terminal width>\n"
723713498266Sopenharmony_ci"              If set, the specified number of characters is used as the termi-\n"
723813498266Sopenharmony_ci"              nal width when the alternative progress-bar  is  shown.  If  not\n"
723913498266Sopenharmony_ci, stdout);
724013498266Sopenharmony_ci fputs(
724113498266Sopenharmony_ci"              set, curl tries to figure it out using other ways.\n"
724213498266Sopenharmony_ci"\n"
724313498266Sopenharmony_ci"       `CURL_CA_BUNDLE` <file>\n"
724413498266Sopenharmony_ci"              If set, it is used as the --cacert value. This environment vari-\n"
724513498266Sopenharmony_ci"              able is ignored if Schannel is used as the TLS backend.\n"
724613498266Sopenharmony_ci"\n"
724713498266Sopenharmony_ci"       `CURL_HOME` <dir>\n"
724813498266Sopenharmony_ci"              If  set,  is  the first variable curl checks when trying to find\n"
724913498266Sopenharmony_ci"              its home directory. If not set, it continues to  check  XDG_CON-\n"
725013498266Sopenharmony_ci"              FIG_HOME\n"
725113498266Sopenharmony_ci"\n"
725213498266Sopenharmony_ci"       `CURL_SSL_BACKEND` <TLS backend>\n"
725313498266Sopenharmony_ci, stdout);
725413498266Sopenharmony_ci fputs(
725513498266Sopenharmony_ci"              If  curl  was built with support for \"MultiSSL\", meaning that it\n"
725613498266Sopenharmony_ci"              has built-in support for more than one TLS backend,  this  envi-\n"
725713498266Sopenharmony_ci"              ronment  variable can be set to the case insensitive name of the\n"
725813498266Sopenharmony_ci"              particular backend to use when curl is invoked. Setting  a  name\n"
725913498266Sopenharmony_ci"              that  is not a built-in alternative makes curl stay with the de-\n"
726013498266Sopenharmony_ci"              fault.\n"
726113498266Sopenharmony_ci"\n"
726213498266Sopenharmony_ci"              SSL backend names (case-insensitive): bearssl, gnutls,  mbedtls,\n"
726313498266Sopenharmony_ci, stdout);
726413498266Sopenharmony_ci fputs(
726513498266Sopenharmony_ci"              openssl, rustls, schannel, secure-transport, wolfssl\n"
726613498266Sopenharmony_ci"\n"
726713498266Sopenharmony_ci"       `HOME` <dir>\n"
726813498266Sopenharmony_ci"              If  set,  this  is  used to find the home directory when that is\n"
726913498266Sopenharmony_ci"              needed. Like when looking for the default .curlrc. CURL_HOME and\n"
727013498266Sopenharmony_ci"              XDG_CONFIG_HOME have preference.\n"
727113498266Sopenharmony_ci"\n"
727213498266Sopenharmony_ci"       `QLOGDIR` <directory name>\n"
727313498266Sopenharmony_ci"              If curl was built with HTTP/3 support, setting this  environment\n"
727413498266Sopenharmony_ci"              variable  to  a local directory makes curl produce qlogs in that\n"
727513498266Sopenharmony_ci, stdout);
727613498266Sopenharmony_ci fputs(
727713498266Sopenharmony_ci"              directory, using file names named after the destination  connec-\n"
727813498266Sopenharmony_ci"              tion  id  (in  hex).  Do note that these files can become rather\n"
727913498266Sopenharmony_ci"              large. Works with the ngtcp2 and quiche QUIC backends.\n"
728013498266Sopenharmony_ci"\n"
728113498266Sopenharmony_ci"       `SHELL`\n"
728213498266Sopenharmony_ci"              Used on VMS when trying to detect if  using  a  DCL  or  a  unix\n"
728313498266Sopenharmony_ci"              shell.\n"
728413498266Sopenharmony_ci"\n"
728513498266Sopenharmony_ci"       `SSL_CERT_DIR` <dir>\n"
728613498266Sopenharmony_ci"              If set, it is used as the --capath value. This environment vari-\n"
728713498266Sopenharmony_ci, stdout);
728813498266Sopenharmony_ci fputs(
728913498266Sopenharmony_ci"              able is ignored if Schannel is used as the TLS backend.\n"
729013498266Sopenharmony_ci"\n"
729113498266Sopenharmony_ci"       `SSL_CERT_FILE` <path>\n"
729213498266Sopenharmony_ci"              If set, it is used as the --cacert value. This environment vari-\n"
729313498266Sopenharmony_ci"              able is ignored if Schannel is used as the TLS backend.\n"
729413498266Sopenharmony_ci"\n"
729513498266Sopenharmony_ci"       `SSLKEYLOGFILE` <file name>\n"
729613498266Sopenharmony_ci"              If you set this environment variable to a file name, curl stores\n"
729713498266Sopenharmony_ci"              TLS  secrets  from  its connections in that file when invoked to\n"
729813498266Sopenharmony_ci, stdout);
729913498266Sopenharmony_ci fputs(
730013498266Sopenharmony_ci"              enable you to analyze the TLS traffic in real time using network\n"
730113498266Sopenharmony_ci"              analyzing tools such as Wireshark. This works with the following\n"
730213498266Sopenharmony_ci"              TLS backends: OpenSSL, libressl, BoringSSL, GnuTLS and wolfSSL.\n"
730313498266Sopenharmony_ci"\n"
730413498266Sopenharmony_ci"       `USERPROFILE` <dir>\n"
730513498266Sopenharmony_ci"              On Windows, this variable is used when trying to find  the  home\n"
730613498266Sopenharmony_ci"              directory.  If  the  other,  primary, variable are all unset. If\n"
730713498266Sopenharmony_ci"              set, curl uses the path \"$USERPROFILE\\Application Data\".\n"
730813498266Sopenharmony_ci"\n"
730913498266Sopenharmony_ci, stdout);
731013498266Sopenharmony_ci fputs(
731113498266Sopenharmony_ci"       `XDG_CONFIG_HOME` <dir>\n"
731213498266Sopenharmony_ci"              If CURL_HOME is not set, this variable is checked  when  looking\n"
731313498266Sopenharmony_ci"              for a default .curlrc file.\n"
731413498266Sopenharmony_ci"\n"
731513498266Sopenharmony_ci"PROXY PROTOCOL PREFIXES\n"
731613498266Sopenharmony_ci"       The  proxy string may be specified with a protocol:// prefix to specify\n"
731713498266Sopenharmony_ci"       alternative proxy protocols.\n"
731813498266Sopenharmony_ci"\n"
731913498266Sopenharmony_ci"       If no protocol is specified in the proxy string or if the  string  does\n"
732013498266Sopenharmony_ci"       not match a supported one, the proxy is treated as an HTTP proxy.\n"
732113498266Sopenharmony_ci"\n"
732213498266Sopenharmony_ci, stdout);
732313498266Sopenharmony_ci fputs(
732413498266Sopenharmony_ci"       The supported proxy protocol prefixes are as follows:\n"
732513498266Sopenharmony_ci"\n"
732613498266Sopenharmony_ci"       http://\n"
732713498266Sopenharmony_ci"              Makes  it use it as an HTTP proxy. The default if no scheme pre-\n"
732813498266Sopenharmony_ci"              fix is used.\n"
732913498266Sopenharmony_ci"\n"
733013498266Sopenharmony_ci"       https://\n"
733113498266Sopenharmony_ci"              Makes it treated as an HTTPS proxy.\n"
733213498266Sopenharmony_ci"\n"
733313498266Sopenharmony_ci"       socks4://\n"
733413498266Sopenharmony_ci"              Makes it the equivalent of --socks4\n"
733513498266Sopenharmony_ci"\n"
733613498266Sopenharmony_ci"       socks4a://\n"
733713498266Sopenharmony_ci"              Makes it the equivalent of --socks4a\n"
733813498266Sopenharmony_ci"\n"
733913498266Sopenharmony_ci"       socks5://\n"
734013498266Sopenharmony_ci"              Makes it the equivalent of --socks5\n"
734113498266Sopenharmony_ci"\n"
734213498266Sopenharmony_ci"       socks5h://\n"
734313498266Sopenharmony_ci, stdout);
734413498266Sopenharmony_ci fputs(
734513498266Sopenharmony_ci"              Makes it the equivalent of --socks5-hostname\n"
734613498266Sopenharmony_ci"\n"
734713498266Sopenharmony_ci"EXIT CODES\n"
734813498266Sopenharmony_ci"       There are a bunch of different error codes and their corresponding  er-\n"
734913498266Sopenharmony_ci"       ror  messages  that  may  appear under error conditions. At the time of\n"
735013498266Sopenharmony_ci"       this writing, the exit codes are:\n"
735113498266Sopenharmony_ci"\n"
735213498266Sopenharmony_ci"       0      Success. The operation completed successfully according  to  the\n"
735313498266Sopenharmony_ci"              instructions.\n"
735413498266Sopenharmony_ci"\n"
735513498266Sopenharmony_ci"       1      Unsupported protocol. This build of curl has no support for this\n"
735613498266Sopenharmony_ci"              protocol.\n"
735713498266Sopenharmony_ci"\n"
735813498266Sopenharmony_ci, stdout);
735913498266Sopenharmony_ci fputs(
736013498266Sopenharmony_ci"       2      Failed to initialize.\n"
736113498266Sopenharmony_ci"\n"
736213498266Sopenharmony_ci"       3      URL malformed. The syntax was not correct.\n"
736313498266Sopenharmony_ci"\n"
736413498266Sopenharmony_ci"       4      A  feature  or option that was needed to perform the desired re-\n"
736513498266Sopenharmony_ci"              quest was not enabled or was explicitly disabled at  build-time.\n"
736613498266Sopenharmony_ci"              To make curl able to do this, you probably need another build of\n"
736713498266Sopenharmony_ci"              libcurl.\n"
736813498266Sopenharmony_ci"\n"
736913498266Sopenharmony_ci"       5      Could  not  resolve proxy. The given proxy host could not be re-\n"
737013498266Sopenharmony_ci"              solved.\n"
737113498266Sopenharmony_ci"\n"
737213498266Sopenharmony_ci, stdout);
737313498266Sopenharmony_ci fputs(
737413498266Sopenharmony_ci"       6      Could not resolve host. The given remote host could not  be  re-\n"
737513498266Sopenharmony_ci"              solved.\n"
737613498266Sopenharmony_ci"\n"
737713498266Sopenharmony_ci"       7      Failed to connect to host.\n"
737813498266Sopenharmony_ci"\n"
737913498266Sopenharmony_ci"       8      Weird server reply. The server sent data curl could not parse.\n"
738013498266Sopenharmony_ci"\n"
738113498266Sopenharmony_ci"       9      FTP  access  denied. The server denied login or denied access to\n"
738213498266Sopenharmony_ci"              the particular resource or directory you wanted to  reach.  Most\n"
738313498266Sopenharmony_ci"              often  you tried to change to a directory that does not exist on\n"
738413498266Sopenharmony_ci"              the server.\n"
738513498266Sopenharmony_ci"\n"
738613498266Sopenharmony_ci, stdout);
738713498266Sopenharmony_ci fputs(
738813498266Sopenharmony_ci"       10     FTP accept failed. While waiting for the server to connect  back\n"
738913498266Sopenharmony_ci"              when  an active FTP session is used, an error code was sent over\n"
739013498266Sopenharmony_ci"              the control connection or similar.\n"
739113498266Sopenharmony_ci"\n"
739213498266Sopenharmony_ci"       11     FTP weird PASS reply. Curl could not parse the reply sent to the\n"
739313498266Sopenharmony_ci"              PASS request.\n"
739413498266Sopenharmony_ci"\n"
739513498266Sopenharmony_ci"       12     During an active FTP session while waiting  for  the  server  to\n"
739613498266Sopenharmony_ci"              connect back to curl, the timeout expired.\n"
739713498266Sopenharmony_ci"\n"
739813498266Sopenharmony_ci, stdout);
739913498266Sopenharmony_ci fputs(
740013498266Sopenharmony_ci"       13     FTP weird PASV reply, Curl could not parse the reply sent to the\n"
740113498266Sopenharmony_ci"              PASV request.\n"
740213498266Sopenharmony_ci"\n"
740313498266Sopenharmony_ci"       14     FTP  weird  227  format.  Curl  could not parse the 227-line the\n"
740413498266Sopenharmony_ci"              server sent.\n"
740513498266Sopenharmony_ci"\n"
740613498266Sopenharmony_ci"       15     FTP cannot use host. Could not resolve the host IP we got in the\n"
740713498266Sopenharmony_ci"              227-line.\n"
740813498266Sopenharmony_ci"\n"
740913498266Sopenharmony_ci"       16     HTTP/2 error. A problem was detected in the HTTP2 framing layer.\n"
741013498266Sopenharmony_ci"              This is somewhat generic and can be one out of several problems,\n"
741113498266Sopenharmony_ci, stdout);
741213498266Sopenharmony_ci fputs(
741313498266Sopenharmony_ci"              see the error message for details.\n"
741413498266Sopenharmony_ci"\n"
741513498266Sopenharmony_ci"       17     FTP could not set binary. Could not change  transfer  method  to\n"
741613498266Sopenharmony_ci"              binary.\n"
741713498266Sopenharmony_ci"\n"
741813498266Sopenharmony_ci"       18     Partial file. Only a part of the file was transferred.\n"
741913498266Sopenharmony_ci"\n"
742013498266Sopenharmony_ci"       19     FTP could not download/access the given file, the RETR (or simi-\n"
742113498266Sopenharmony_ci"              lar) command failed.\n"
742213498266Sopenharmony_ci"\n"
742313498266Sopenharmony_ci"       21     FTP quote error. A quote command returned error from the server.\n"
742413498266Sopenharmony_ci"       22     HTTP  page not retrieved. The requested URL was not found or re-\n"
742513498266Sopenharmony_ci, stdout);
742613498266Sopenharmony_ci fputs(
742713498266Sopenharmony_ci"              turned another error with the  HTTP  error  code  being  400  or\n"
742813498266Sopenharmony_ci"              above. This return code only appears if -f, --fail is used.\n"
742913498266Sopenharmony_ci"\n"
743013498266Sopenharmony_ci"       23     Write  error. Curl could not write data to a local filesystem or\n"
743113498266Sopenharmony_ci"              similar.\n"
743213498266Sopenharmony_ci"\n"
743313498266Sopenharmony_ci"       25     Failed starting the upload. For FTP, the server typically denied\n"
743413498266Sopenharmony_ci"              the STOR command.\n"
743513498266Sopenharmony_ci"\n"
743613498266Sopenharmony_ci"       26     Read error. Various reading problems.\n"
743713498266Sopenharmony_ci"\n"
743813498266Sopenharmony_ci"       27     Out of memory. A memory allocation request failed.\n"
743913498266Sopenharmony_ci"\n"
744013498266Sopenharmony_ci, stdout);
744113498266Sopenharmony_ci fputs(
744213498266Sopenharmony_ci"       28     Operation timeout. The specified time-out period was reached ac-\n"
744313498266Sopenharmony_ci"              cording to the conditions.\n"
744413498266Sopenharmony_ci"\n"
744513498266Sopenharmony_ci"       30     FTP PORT failed. The PORT command failed. Not  all  FTP  servers\n"
744613498266Sopenharmony_ci"              support  the  PORT  command, try doing a transfer using PASV in-\n"
744713498266Sopenharmony_ci"              stead.\n"
744813498266Sopenharmony_ci"\n"
744913498266Sopenharmony_ci"       31     FTP could not use REST. The REST command failed. This command is\n"
745013498266Sopenharmony_ci"              used for resumed FTP transfers.\n"
745113498266Sopenharmony_ci"\n"
745213498266Sopenharmony_ci"       33     HTTP range error. The range \"command\" did not work.\n"
745313498266Sopenharmony_ci"\n"
745413498266Sopenharmony_ci, stdout);
745513498266Sopenharmony_ci fputs(
745613498266Sopenharmony_ci"       34     HTTP post error. Internal post-request generation error.\n"
745713498266Sopenharmony_ci"\n"
745813498266Sopenharmony_ci"       35     SSL connect error. The SSL handshaking failed.\n"
745913498266Sopenharmony_ci"\n"
746013498266Sopenharmony_ci"       36     Bad download resume. Could not continue an earlier aborted down-\n"
746113498266Sopenharmony_ci"              load.\n"
746213498266Sopenharmony_ci"\n"
746313498266Sopenharmony_ci"       37     FILE could not read file. Failed to open the file. Permissions?\n"
746413498266Sopenharmony_ci"\n"
746513498266Sopenharmony_ci"       38     LDAP cannot bind. LDAP bind operation failed.\n"
746613498266Sopenharmony_ci"\n"
746713498266Sopenharmony_ci"       39     LDAP search failed.\n"
746813498266Sopenharmony_ci"\n"
746913498266Sopenharmony_ci"       41     Function not found. A required LDAP function was not found.\n"
747013498266Sopenharmony_ci"\n"
747113498266Sopenharmony_ci, stdout);
747213498266Sopenharmony_ci fputs(
747313498266Sopenharmony_ci"       42     Aborted by callback. An application told curl to abort the oper-\n"
747413498266Sopenharmony_ci"              ation.\n"
747513498266Sopenharmony_ci"\n"
747613498266Sopenharmony_ci"       43     Internal error. A function was called with a bad parameter.\n"
747713498266Sopenharmony_ci"\n"
747813498266Sopenharmony_ci"       45     Interface error. A specified outgoing  interface  could  not  be\n"
747913498266Sopenharmony_ci"              used.\n"
748013498266Sopenharmony_ci"\n"
748113498266Sopenharmony_ci"       47     Too many redirects. When following redirects, curl hit the maxi-\n"
748213498266Sopenharmony_ci"              mum amount.\n"
748313498266Sopenharmony_ci"\n"
748413498266Sopenharmony_ci"       48     Unknown  option  specified  to  libcurl. This indicates that you\n"
748513498266Sopenharmony_ci, stdout);
748613498266Sopenharmony_ci fputs(
748713498266Sopenharmony_ci"              passed a weird option to curl that was passed on to libcurl  and\n"
748813498266Sopenharmony_ci"              rejected. Read up in the manual!\n"
748913498266Sopenharmony_ci"\n"
749013498266Sopenharmony_ci"       49     Malformed telnet option.\n"
749113498266Sopenharmony_ci"\n"
749213498266Sopenharmony_ci"       52     The  server  did not reply anything, which here is considered an\n"
749313498266Sopenharmony_ci"              error.\n"
749413498266Sopenharmony_ci"\n"
749513498266Sopenharmony_ci"       53     SSL crypto engine not found.\n"
749613498266Sopenharmony_ci"\n"
749713498266Sopenharmony_ci"       54     Cannot set SSL crypto engine as default.\n"
749813498266Sopenharmony_ci"\n"
749913498266Sopenharmony_ci"       55     Failed sending network data.\n"
750013498266Sopenharmony_ci"\n"
750113498266Sopenharmony_ci"       56     Failure in receiving network data.\n"
750213498266Sopenharmony_ci"\n"
750313498266Sopenharmony_ci, stdout);
750413498266Sopenharmony_ci fputs(
750513498266Sopenharmony_ci"       58     Problem with the local certificate.\n"
750613498266Sopenharmony_ci"       59     Could not use specified SSL cipher.\n"
750713498266Sopenharmony_ci"\n"
750813498266Sopenharmony_ci"       60     Peer certificate cannot be authenticated with known CA  certifi-\n"
750913498266Sopenharmony_ci"              cates.\n"
751013498266Sopenharmony_ci"\n"
751113498266Sopenharmony_ci"       61     Unrecognized transfer encoding.\n"
751213498266Sopenharmony_ci"\n"
751313498266Sopenharmony_ci"       63     Maximum file size exceeded.\n"
751413498266Sopenharmony_ci"\n"
751513498266Sopenharmony_ci"       64     Requested FTP SSL level failed.\n"
751613498266Sopenharmony_ci"\n"
751713498266Sopenharmony_ci"       65     Sending the data requires a rewind that failed.\n"
751813498266Sopenharmony_ci"\n"
751913498266Sopenharmony_ci"       66     Failed to initialize SSL Engine.\n"
752013498266Sopenharmony_ci"\n"
752113498266Sopenharmony_ci, stdout);
752213498266Sopenharmony_ci fputs(
752313498266Sopenharmony_ci"       67     The  user  name,  password, or similar was not accepted and curl\n"
752413498266Sopenharmony_ci"              failed to log in.\n"
752513498266Sopenharmony_ci"\n"
752613498266Sopenharmony_ci"       68     File not found on TFTP server.\n"
752713498266Sopenharmony_ci"\n"
752813498266Sopenharmony_ci"       69     Permission problem on TFTP server.\n"
752913498266Sopenharmony_ci"\n"
753013498266Sopenharmony_ci"       70     Out of disk space on TFTP server.\n"
753113498266Sopenharmony_ci"\n"
753213498266Sopenharmony_ci"       71     Illegal TFTP operation.\n"
753313498266Sopenharmony_ci"\n"
753413498266Sopenharmony_ci"       72     Unknown TFTP transfer ID.\n"
753513498266Sopenharmony_ci"\n"
753613498266Sopenharmony_ci"       73     File already exists (TFTP).\n"
753713498266Sopenharmony_ci"\n"
753813498266Sopenharmony_ci"       74     No such user (TFTP).\n"
753913498266Sopenharmony_ci"\n"
754013498266Sopenharmony_ci"       77     Problem reading the SSL CA cert (path? access rights?).\n"
754113498266Sopenharmony_ci"\n"
754213498266Sopenharmony_ci, stdout);
754313498266Sopenharmony_ci fputs(
754413498266Sopenharmony_ci"       78     The resource referenced in the URL does not exist.\n"
754513498266Sopenharmony_ci"\n"
754613498266Sopenharmony_ci"       79     An unspecified error occurred during the SSH session.\n"
754713498266Sopenharmony_ci"\n"
754813498266Sopenharmony_ci"       80     Failed to shut down the SSL connection.\n"
754913498266Sopenharmony_ci"\n"
755013498266Sopenharmony_ci"       82     Could not load CRL file, missing or wrong format.\n"
755113498266Sopenharmony_ci"\n"
755213498266Sopenharmony_ci"       83     Issuer check failed.\n"
755313498266Sopenharmony_ci"\n"
755413498266Sopenharmony_ci"       84     The FTP PRET command failed.\n"
755513498266Sopenharmony_ci"\n"
755613498266Sopenharmony_ci"       85     Mismatch of RTSP CSeq numbers.\n"
755713498266Sopenharmony_ci"\n"
755813498266Sopenharmony_ci"       86     Mismatch of RTSP Session Identifiers.\n"
755913498266Sopenharmony_ci"\n"
756013498266Sopenharmony_ci"       87     Unable to parse FTP file list.\n"
756113498266Sopenharmony_ci"\n"
756213498266Sopenharmony_ci, stdout);
756313498266Sopenharmony_ci fputs(
756413498266Sopenharmony_ci"       88     FTP chunk callback reported error.\n"
756513498266Sopenharmony_ci"\n"
756613498266Sopenharmony_ci"       89     No connection available, the session is queued.\n"
756713498266Sopenharmony_ci"\n"
756813498266Sopenharmony_ci"       90     SSL public key does not matched pinned public key.\n"
756913498266Sopenharmony_ci"\n"
757013498266Sopenharmony_ci"       91     Invalid SSL certificate status.\n"
757113498266Sopenharmony_ci"\n"
757213498266Sopenharmony_ci"       92     Stream error in HTTP/2 framing layer.\n"
757313498266Sopenharmony_ci"\n"
757413498266Sopenharmony_ci"       93     An API function was called from inside a callback.\n"
757513498266Sopenharmony_ci"\n"
757613498266Sopenharmony_ci"       94     An authentication function returned an error.\n"
757713498266Sopenharmony_ci"\n"
757813498266Sopenharmony_ci"       95     A problem was detected in the HTTP/3  layer.  This  is  somewhat\n"
757913498266Sopenharmony_ci, stdout);
758013498266Sopenharmony_ci fputs(
758113498266Sopenharmony_ci"              generic  and  can  be one out of several problems, see the error\n"
758213498266Sopenharmony_ci"              message for details.\n"
758313498266Sopenharmony_ci"\n"
758413498266Sopenharmony_ci"       96     QUIC connection error. This error may be caused by  an  SSL  li-\n"
758513498266Sopenharmony_ci"              brary error. QUIC is the protocol used for HTTP/3 transfers.\n"
758613498266Sopenharmony_ci"\n"
758713498266Sopenharmony_ci"       97     Proxy handshake error.\n"
758813498266Sopenharmony_ci"\n"
758913498266Sopenharmony_ci"       98     A  client-side certificate is required to complete the TLS hand-\n"
759013498266Sopenharmony_ci"              shake.\n"
759113498266Sopenharmony_ci"\n"
759213498266Sopenharmony_ci"       99     Poll or select returned fatal error.\n"
759313498266Sopenharmony_ci"\n"
759413498266Sopenharmony_ci, stdout);
759513498266Sopenharmony_ci fputs(
759613498266Sopenharmony_ci"       XX     More error codes might appear here in future releases.  The  ex-\n"
759713498266Sopenharmony_ci"              isting ones are meant to never change.\n"
759813498266Sopenharmony_ci"\n"
759913498266Sopenharmony_ci"BUGS\n"
760013498266Sopenharmony_ci"       If  you  experience  any  problems  with  curl,  submit an issue in the\n"
760113498266Sopenharmony_ci"       project's bug tracker on GitHub: https://github.com/curl/curl/issues\n"
760213498266Sopenharmony_ci"\n"
760313498266Sopenharmony_ci"AUTHORS\n"
760413498266Sopenharmony_ci"       Daniel Stenberg is the main author, but the whole list of  contributors\n"
760513498266Sopenharmony_ci"       is found in the separate THANKS file.\n"
760613498266Sopenharmony_ci"\n"
760713498266Sopenharmony_ci"WWW\n"
760813498266Sopenharmony_ci"       https://curl.se\n"
760913498266Sopenharmony_ci"\n"
761013498266Sopenharmony_ci"SEE ALSO\n"
761113498266Sopenharmony_ci"       ftp (1), wget (1)\n"
761213498266Sopenharmony_ci"\n"
761313498266Sopenharmony_ci, stdout) ;
761413498266Sopenharmony_ci}
761513498266Sopenharmony_ci#endif /* USE_MANUAL */
761613498266Sopenharmony_ci#else
761713498266Sopenharmony_ci/*
761813498266Sopenharmony_ci * NEVER EVER edit this manually, fix the mkhelp.pl script instead!
761913498266Sopenharmony_ci */
762013498266Sopenharmony_ci#ifdef USE_MANUAL
762113498266Sopenharmony_ci#include "tool_hugehelp.h"
762213498266Sopenharmony_ci#include <zlib.h>
762313498266Sopenharmony_ci#include "memdebug.h" /* keep this as LAST include */
762413498266Sopenharmony_cistatic const unsigned char hugehelpgz[] = {
762513498266Sopenharmony_ci  /* This mumbo-jumbo is the huge help text compressed with gzip.
762613498266Sopenharmony_ci     Thanks to this operation, the size of this data shrank from 279592
762713498266Sopenharmony_ci     to 69830 bytes. You can disable the use of compressed help
762813498266Sopenharmony_ci     texts by NOT passing -c to the mkhelp.pl tool. */
762913498266Sopenharmony_ci  0x1f, 0x8b, 0x08, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x03, 0xec, 0xfd,
763013498266Sopenharmony_ci  0x6b, 0x7f, 0xdb, 0x46, 0x96, 0x2f, 0x8c, 0xbe, 0xcf, 0xa7, 0xc0, 0xb0,
763113498266Sopenharmony_ci  0x77, 0x6f, 0x49, 0xd3, 0x04, 0x75, 0xf3, 0x2d, 0x6a, 0x25, 0x4f, 0x14,
763213498266Sopenharmony_ci  0x5b, 0x8e, 0xdd, 0xb1, 0x2d, 0xb5, 0x25, 0x27, 0xe9, 0x49, 0xf2, 0xf3,
763313498266Sopenharmony_ci  0x06, 0x49, 0x50, 0x42, 0x4c, 0x02, 0x6c, 0x00, 0x94, 0xac, 0xf4, 0xee,
763413498266Sopenharmony_ci  0xf3, 0xd9, 0xcf, 0xba, 0x56, 0x15, 0x50, 0x05, 0x4a, 0x94, 0xa5, 0x78,
763513498266Sopenharmony_ci  0xe6, 0x39, 0xa7, 0x67, 0x22, 0x4b, 0x24, 0x50, 0xd7, 0x55, 0xab, 0xd6,
763613498266Sopenharmony_ci  0xf5, 0xbf, 0xa2, 0xe8, 0xba, 0xff, 0xbd, 0xa7, 0xff, 0xde, 0xc3, 0xff,
763713498266Sopenharmony_ci  0xe0, 0xdf, 0x2f, 0xa2, 0xe8, 0xb8, 0x2c, 0x7e, 0x4b, 0x47, 0x75, 0xf8,
763813498266Sopenharmony_ci  0xd9, 0xf7, 0xef, 0xff, 0x6f, 0xc4, 0xff, 0x07, 0xef, 0xfc, 0x02, 0xff,
763913498266Sopenharmony_ci  0x7e, 0xb1, 0xb4, 0xed, 0xcd, 0xc8, 0xbe, 0xf0, 0x7f, 0xdf, 0x6f, 0x44,
764013498266Sopenharmony_ci  0xd7, 0xbd, 0xf0, 0x7f, 0xa3, 0x75, 0x7a, 0xe1, 0xbd, 0xf4, 0xb0, 0x8f,
764113498266Sopenharmony_ci  0xbf, 0xbf, 0x7f, 0xbf, 0xbc, 0x93, 0x5f, 0x70, 0x54, 0xf8, 0x63, 0x13,
764213498266Sopenharmony_ci  0xdf, 0xfb, 0xe5, 0x3d, 0xfe, 0x0a, 0x9f, 0x7c, 0xf1, 0xc5, 0x9b, 0x83,
764313498266Sopenharmony_ci  0xd7, 0x87, 0xfa, 0xea, 0x68, 0x51, 0x4e, 0xa3, 0x38, 0xaa, 0xcb, 0x24,
764413498266Sopenharmony_ci  0xaf, 0x26, 0x69, 0x19, 0x25, 0xd1, 0xbb, 0xb7, 0xaf, 0xbe, 0xf8, 0xe2,
764513498266Sopenharmony_ci  0xe4, 0x1f, 0x6f, 0x8e, 0x8e, 0x4f, 0x5e, 0x9e, 0x34, 0x1e, 0xfb, 0xb9,
764613498266Sopenharmony_ci  0x98, 0xd7, 0x59, 0x91, 0x57, 0x30, 0x7c, 0x78, 0xa8, 0xfa, 0xf5, 0x8b,
764713498266Sopenharmony_ci  0x2f, 0x9e, 0x1d, 0x9e, 0x3c, 0x7d, 0xfb, 0xf2, 0xf8, 0xf4, 0xe5, 0xd1,
764813498266Sopenharmony_ci  0x9b, 0xc6, 0x93, 0x59, 0x05, 0x0d, 0xd5, 0x45, 0x31, 0x8d, 0x26, 0x45,
764913498266Sopenharmony_ci  0x69, 0x1a, 0x2f, 0xb3, 0xfc, 0x2c, 0x1a, 0x27, 0x75, 0x12, 0x4d, 0xca,
765013498266Sopenharmony_ci  0x62, 0x16, 0xe1, 0x37, 0x05, 0x3c, 0x57, 0xa5, 0xe5, 0x05, 0xf4, 0xbc,
765113498266Sopenharmony_ci  0xa8, 0xf0, 0x6b, 0x6c, 0x78, 0x10, 0xbd, 0xac, 0xb5, 0xb9, 0x6a, 0x31,
765213498266Sopenharmony_ci  0x9f, 0x17, 0x65, 0x5d, 0x45, 0xf5, 0x79, 0x5a, 0xa5, 0xd1, 0xbc, 0x2c,
765313498266Sopenharmony_ci  0xea, 0x62, 0x54, 0x4c, 0xab, 0xbd, 0xe8, 0xd9, 0xcb, 0xa7, 0xa7, 0xfd,
765413498266Sopenharmony_ci  0xe8, 0xf9, 0xcb, 0x57, 0x87, 0xf0, 0xf3, 0xf4, 0x98, 0x7e, 0x9c, 0xf4,
765513498266Sopenharmony_ci  0xa3, 0xef, 0x8e, 0x8e, 0x5f, 0x1c, 0xbe, 0xd5, 0x7f, 0xe1, 0x83, 0x17,
765613498266Sopenharmony_ci  0xa7, 0xf0, 0xa5, 0x36, 0x87, 0x7f, 0xc0, 0x67, 0xd1, 0xcb, 0xd7, 0x07,
765713498266Sopenharmony_ci  0xf0, 0x06, 0xfe, 0x84, 0xbf, 0x5e, 0x3d, 0xc3, 0x3f, 0xf0, 0x27, 0xfc,
765813498266Sopenharmony_ci  0xf1, 0xfa, 0xef, 0xa7, 0xd0, 0xec, 0xf1, 0xd1, 0xf1, 0x2e, 0xff, 0x84,
765913498266Sopenharmony_ci  0x8f, 0xde, 0x9e, 0xbe, 0x3e, 0xe6, 0x9f, 0xf4, 0xc7, 0x89, 0x6d, 0xee,
766013498266Sopenharmony_ci  0xe4, 0x29, 0x7c, 0x71, 0x42, 0xbd, 0x9f, 0xbc, 0xfe, 0x96, 0x7e, 0x9c,
766113498266Sopenharmony_ci  0xe0, 0x4f, 0xfe, 0x80, 0xba, 0x3a, 0x3d, 0x7c, 0xf5, 0xe6, 0x10, 0x5a,
766213498266Sopenharmony_ci  0x3c, 0xa5, 0xa7, 0x7e, 0x3c, 0x89, 0x92, 0x7c, 0x0c, 0xff, 0x9c, 0x0c,
766313498266Sopenharmony_ci  0xbe, 0x68, 0xaf, 0xd8, 0xbc, 0xb8, 0x4c, 0xcb, 0x74, 0x1c, 0x0d, 0xaf,
766413498266Sopenharmony_ci  0xa2, 0x68, 0x9a, 0x0d, 0xe9, 0x63, 0x5a, 0xbf, 0x28, 0x99, 0xc2, 0x6f,
766513498266Sopenharmony_ci  0xba, 0x8a, 0x71, 0x99, 0x4e, 0x93, 0x1a, 0x9e, 0x8b, 0x26, 0x69, 0x52,
766613498266Sopenharmony_ci  0x2f, 0xca, 0x14, 0xd6, 0x2b, 0x3a, 0x49, 0x53, 0x6d, 0x4e, 0x5e, 0x5d,
766713498266Sopenharmony_ci  0xdf, 0xdd, 0xa0, 0x97, 0xc7, 0x69, 0x9d, 0x64, 0xd3, 0x0a, 0xba, 0xc3,
766813498266Sopenharmony_ci  0x8d, 0x95, 0x67, 0x4e, 0xcf, 0xd3, 0x08, 0x97, 0x1a, 0xd6, 0xf7, 0x2a,
766913498266Sopenharmony_ci  0xaf, 0x93, 0x8f, 0xd4, 0xbd, 0x2c, 0x6d, 0x3c, 0x4e, 0xe7, 0x69, 0x3e,
767013498266Sopenharmony_ci  0x4e, 0xf3, 0x7a, 0x10, 0xfd, 0xa3, 0x58, 0x44, 0x93, 0x0c, 0x06, 0x9c,
767113498266Sopenharmony_ci  0x48, 0x3b, 0xd0, 0xed, 0x38, 0xad, 0x46, 0x65, 0x46, 0x94, 0xa0, 0xcd,
767213498266Sopenharmony_ci  0x65, 0x79, 0xf4, 0xf6, 0xf9, 0xd3, 0x68, 0xf7, 0xcb, 0x27, 0x8f, 0xec,
767313498266Sopenharmony_ci  0xb4, 0x5e, 0x4e, 0xa2, 0x2b, 0x78, 0x1d, 0x9a, 0xbd, 0xc8, 0xc6, 0x29,
767413498266Sopenharmony_ci  0x13, 0x56, 0x74, 0x99, 0xd5, 0xe7, 0xc5, 0xa2, 0x86, 0xbf, 0xa6, 0x69,
767513498266Sopenharmony_ci  0x32, 0xc6, 0x0d, 0xd7, 0x6e, 0xf7, 0x36, 0x37, 0xa3, 0x6a, 0x74, 0x9e,
767613498266Sopenharmony_ci  0xce, 0xd2, 0x3e, 0xaf, 0xc8, 0xd9, 0x22, 0xad, 0xaa, 0xb4, 0xd2, 0xe6,
767713498266Sopenharmony_ci  0x2e, 0xcf, 0x93, 0xda, 0x3c, 0x4c, 0x2d, 0x5f, 0x26, 0x38, 0xc4, 0x97,
767813498266Sopenharmony_ci  0x35, 0x92, 0x46, 0x0e, 0xc3, 0x9a, 0x24, 0x8b, 0x29, 0x12, 0x4a, 0xc1,
767913498266Sopenharmony_ci  0xdb, 0x1c, 0x45, 0x43, 0xe8, 0x28, 0x4a, 0xaa, 0x6a, 0x31, 0x4b, 0xab,
768013498266Sopenharmony_ci  0x28, 0x2a, 0xe0, 0xb1, 0xd2, 0x34, 0x37, 0x4c, 0x2a, 0x5c, 0xc2, 0x22,
768113498266Sopenharmony_ci  0x87, 0xff, 0x26, 0x75, 0x9a, 0xc7, 0x0b, 0xfa, 0xfb, 0xbc, 0xa8, 0xe0,
768213498266Sopenharmony_ci  0x9d, 0x3c, 0x99, 0x21, 0xa9, 0xa5, 0x93, 0xec, 0x23, 0xae, 0xee, 0x73,
768313498266Sopenharmony_ci  0x58, 0xc6, 0xf4, 0x63, 0x32, 0x9b, 0x4f, 0x61, 0x6c, 0xb8, 0xa6, 0xf4,
768413498266Sopenharmony_ci  0x14, 0x3e, 0x64, 0x9a, 0xab, 0xea, 0xa4, 0xac, 0x71, 0x3a, 0x38, 0xc1,
768513498266Sopenharmony_ci  0xa8, 0x37, 0xa9, 0xe7, 0x83, 0x1e, 0x4f, 0x43, 0xfb, 0xd7, 0x11, 0x23,
768613498266Sopenharmony_ci  0x99, 0xda, 0x45, 0xc2, 0x05, 0x1e, 0x25, 0x79, 0x54, 0xcd, 0xd3, 0x51,
768713498266Sopenharmony_ci  0x36, 0xb9, 0x02, 0xe2, 0x80, 0xff, 0x66, 0xc5, 0x02, 0x9e, 0x2b, 0x26,
768813498266Sopenharmony_ci  0xb4, 0x45, 0x15, 0x0f, 0xb2, 0xc6, 0x1d, 0x1b, 0x15, 0xb3, 0x19, 0x92,
768913498266Sopenharmony_ci  0x0f, 0xec, 0x71, 0x9e, 0x0e, 0x68, 0x1b, 0x81, 0x56, 0x92, 0xd2, 0xec,
769013498266Sopenharmony_ci  0xfd, 0x24, 0xad, 0x61, 0x09, 0xc7, 0xb4, 0x23, 0xb0, 0xc6, 0x70, 0xb4,
769113498266Sopenharmony_ci  0xfe, 0xb9, 0x80, 0x8d, 0xcc, 0x92, 0x69, 0x04, 0x2f, 0xe6, 0x70, 0xca,
769213498266Sopenharmony_ci  0xe0, 0x0b, 0x6c, 0x8a, 0xfb, 0xcb, 0xe0, 0xd1, 0xa2, 0x1c, 0xe3, 0xe1,
769313498266Sopenharmony_ci  0xcb, 0xa7, 0xb0, 0xda, 0x34, 0x48, 0x58, 0x08, 0x6d, 0x2e, 0xfe, 0xaf,
769413498266Sopenharmony_ci  0x7e, 0x14, 0xc7, 0xf3, 0xa4, 0x04, 0x02, 0x4c, 0xa7, 0x03, 0x6f, 0xb4,
769513498266Sopenharmony_ci  0x3a, 0x1e, 0x1c, 0x4e, 0xa4, 0xcc, 0x01, 0x3f, 0xa0, 0x71, 0xcf, 0x60,
769613498266Sopenharmony_ci  0xf5, 0xc6, 0xf8, 0xa7, 0x43, 0x26, 0x38, 0x3f, 0xee, 0xb1, 0xe0, 0x81,
769713498266Sopenharmony_ci  0xb8, 0x4d, 0xb4, 0x8e, 0x44, 0x52, 0xd7, 0xe9, 0x6c, 0xce, 0x3b, 0x5a,
769813498266Sopenharmony_ci  0xa6, 0x30, 0x2c, 0x78, 0x18, 0xe6, 0x30, 0xe2, 0x6e, 0x2e, 0x69, 0xd3,
769913498266Sopenharmony_ci  0x0b, 0x5c, 0xf3, 0x68, 0x06, 0x1b, 0x9f, 0xc1, 0xee, 0xd8, 0x43, 0x52,
770013498266Sopenharmony_ci  0xc1, 0x19, 0xaf, 0x0a, 0x6d, 0xae, 0x46, 0xda, 0x89, 0xce, 0xd2, 0xba,
770113498266Sopenharmony_ci  0xe6, 0xc7, 0x71, 0x14, 0x13, 0x20, 0xe6, 0x8a, 0x19, 0x11, 0x2d, 0x08,
770213498266Sopenharmony_ci  0x6e, 0xb9, 0x70, 0xa2, 0x71, 0x11, 0xe5, 0x45, 0x8d, 0x0b, 0x61, 0x5b,
770313498266Sopenharmony_ci  0x86, 0xae, 0x63, 0x6d, 0x0e, 0xc7, 0xc0, 0xf3, 0xac, 0xd2, 0x7a, 0x31,
770413498266Sopenharmony_ci  0x8f, 0xce, 0xe1, 0xd7, 0xea, 0x3c, 0xf9, 0x80, 0xb4, 0x72, 0x7a, 0x0e,
770513498266Sopenharmony_ci  0x47, 0x29, 0x9b, 0x21, 0xd5, 0x43, 0xf3, 0xb0, 0x50, 0xe9, 0x78, 0x10,
770613498266Sopenharmony_ci  0x3d, 0x35, 0xe3, 0x8e, 0x64, 0x26, 0xb8, 0x8c, 0xda, 0x5c, 0x91, 0x4f,
770713498266Sopenharmony_ci  0x61, 0x17, 0x87, 0xf0, 0xe1, 0xb8, 0x80, 0x75, 0x24, 0x0a, 0xa3, 0x05,
770813498266Sopenharmony_ci  0xb4, 0x9b, 0x84, 0x1f, 0x01, 0xa3, 0x84, 0xd1, 0x4f, 0x9b, 0x4b, 0x06,
770913498266Sopenharmony_ci  0x6b, 0x7a, 0x51, 0x8c, 0x12, 0xf7, 0x30, 0xe2, 0x57, 0xd0, 0x3a, 0xce,
771013498266Sopenharmony_ci  0x00, 0xda, 0x9c, 0xa7, 0x25, 0xbc, 0x3c, 0x43, 0xb6, 0x92, 0xd6, 0x97,
771113498266Sopenharmony_ci  0x29, 0xac, 0x59, 0x95, 0xe2, 0x86, 0xd6, 0x29, 0x2f, 0x72, 0xb9, 0xc8,
771213498266Sopenharmony_ci  0x2b, 0xbb, 0xee, 0xc7, 0x7a, 0x58, 0xf3, 0xe8, 0xe5, 0xf1, 0xc5, 0xa3,
771313498266Sopenharmony_ci  0xe8, 0x77, 0x1c, 0x50, 0x36, 0x56, 0xaa, 0xd1, 0x13, 0x8c, 0x9d, 0x44,
771413498266Sopenharmony_ci  0x11, 0xf0, 0x81, 0x64, 0x8e, 0xc4, 0x06, 0x7d, 0x8c, 0x80, 0xca, 0x92,
771513498266Sopenharmony_ci  0x33, 0x18, 0x7c, 0x95, 0x9d, 0xe5, 0x03, 0x6d, 0xee, 0x55, 0xf6, 0x01,
771613498266Sopenharmony_ci  0x47, 0x68, 0x9a, 0xef, 0x9d, 0xd7, 0xf5, 0x1c, 0x0e, 0xfa, 0xcf, 0x93,
771713498266Sopenharmony_ci  0xf4, 0xc9, 0xd6, 0xde, 0xde, 0xee, 0x9f, 0x77, 0x1e, 0xa6, 0xf5, 0xf9,
771813498266Sopenharmony_ci  0xd6, 0xaf, 0x9b, 0x3d, 0xf3, 0xc8, 0x21, 0x6c, 0xc0, 0x55, 0x7d, 0x4e,
771913498266Sopenharmony_ci  0xfb, 0x24, 0xac, 0x63, 0x1c, 0xa2, 0x15, 0xde, 0x53, 0x58, 0x6b, 0x9c,
772013498266Sopenharmony_ci  0x67, 0xd2, 0xa6, 0x44, 0xb3, 0x55, 0xb4, 0xe6, 0xb0, 0x78, 0x19, 0x6e,
772113498266Sopenharmony_ci  0x58, 0x79, 0x06, 0x27, 0x31, 0xaf, 0xfb, 0xcd, 0x83, 0x49, 0x77, 0x15,
772213498266Sopenharmony_ci  0xce, 0x0c, 0xdf, 0xaf, 0x4b, 0xe0, 0xa9, 0xf0, 0x19, 0xb4, 0x09, 0xeb,
772313498266Sopenharmony_ci  0xbf, 0x18, 0x9d, 0xc3, 0xda, 0x7c, 0xf7, 0xea, 0xe8, 0xdb, 0x6f, 0x5f,
772413498266Sopenharmony_ci  0xbe, 0xf9, 0xae, 0xeb, 0xcc, 0x1a, 0x1a, 0xa1, 0x4d, 0x83, 0xce, 0x60,
772513498266Sopenharmony_ci  0x7d, 0xa1, 0x0d, 0x38, 0xbf, 0xf4, 0x01, 0xb0, 0xf3, 0xcb, 0x32, 0x23,
772613498266Sopenharmony_ci  0xca, 0x9b, 0x66, 0x15, 0x7c, 0x41, 0x4b, 0x98, 0x99, 0xfd, 0x1a, 0x96,
772713498266Sopenharmony_ci  0xc9, 0x28, 0xa5, 0xf7, 0x80, 0x76, 0xcf, 0xe0, 0x37, 0xfe, 0x9a, 0x3e,
772813498266Sopenharmony_ci  0xff, 0x90, 0xd6, 0x40, 0x53, 0x3f, 0xc2, 0xd4, 0xf1, 0x0a, 0xa8, 0x91,
772913498266Sopenharmony_ci  0xb6, 0x7a, 0x67, 0xd3, 0x62, 0x38, 0x84, 0xd6, 0x7a, 0x81, 0x6d, 0xa3,
773013498266Sopenharmony_ci  0x1e, 0x78, 0x8b, 0xea, 0xf3, 0x32, 0x4d, 0xa3, 0x71, 0x36, 0x81, 0xd3,
773113498266Sopenharmony_ci  0x00, 0x93, 0x66, 0x76, 0x05, 0xdf, 0x7f, 0x48, 0xa9, 0x9d, 0x3d, 0x6f,
773213498266Sopenharmony_ci  0x53, 0xaa, 0xac, 0x4e, 0x07, 0xff, 0x82, 0x0d, 0xef, 0xd7, 0x97, 0x45,
773313498266Sopenharmony_ci  0x9f, 0x5e, 0xff, 0xf7, 0x00, 0xd6, 0xd5, 0xee, 0xcd, 0xb3, 0x42, 0x18,
773413498266Sopenharmony_ci  0x0a, 0x8d, 0x77, 0x02, 0xd7, 0xd2, 0x1c, 0x48, 0x1f, 0x16, 0xb1, 0xcc,
773513498266Sopenharmony_ci  0x46, 0x78, 0x76, 0xb2, 0x94, 0x66, 0xcb, 0x17, 0xf9, 0xcf, 0xbf, 0xe2,
773613498266Sopenharmony_ci  0x12, 0x66, 0xb9, 0xd3, 0xd1, 0x84, 0xfa, 0x41, 0xde, 0x28, 0xdc, 0x14,
773713498266Sopenharmony_ci  0x9b, 0xdf, 0xc4, 0x83, 0xf8, 0xf3, 0x76, 0xbc, 0xbd, 0xb5, 0xf5, 0xeb,
773813498266Sopenharmony_ci  0xa0, 0xfe, 0x58, 0xdb, 0xee, 0x7e, 0xc4, 0x69, 0xe8, 0x35, 0xf1, 0x7b,
773913498266Sopenharmony_ci  0x5a, 0x16, 0x69, 0x75, 0xb3, 0xc6, 0xb6, 0xb6, 0x96, 0x34, 0x07, 0x4c,
774013498266Sopenharmony_ci  0xa5, 0x44, 0x69, 0xa2, 0x2c, 0x16, 0x67, 0xe7, 0x44, 0x56, 0x34, 0x0d,
774113498266Sopenharmony_ci  0x38, 0x1d, 0x37, 0x6b, 0x3c, 0x89, 0x7f, 0x6f, 0x35, 0xfc, 0x26, 0xad,
774213498266Sopenharmony_ci  0xe8, 0x3a, 0xb6, 0x6b, 0x83, 0x2c, 0x99, 0x08, 0x53, 0xa4, 0x97, 0x74,
774313498266Sopenharmony_ci  0xdc, 0xa7, 0xcb, 0xe8, 0x4a, 0x28, 0x07, 0x39, 0x40, 0x95, 0x02, 0xa5,
774413498266Sopenharmony_ci  0x03, 0x5f, 0x86, 0x05, 0x07, 0x22, 0x4e, 0x3f, 0x1a, 0x89, 0x07, 0xb8,
774513498266Sopenharmony_ci  0x5d, 0x9a, 0x8c, 0xce, 0xf9, 0xbe, 0xf2, 0xb7, 0xc9, 0x1d, 0x50, 0x52,
774613498266Sopenharmony_ci  0x8e, 0xce, 0xb3, 0x0b, 0x58, 0xbd, 0x2f, 0xbf, 0x7c, 0x14, 0xc3, 0x8f,
774713498266Sopenharmony_ci  0x2f, 0x7f, 0xdd, 0xbc, 0x28, 0xa6, 0xb0, 0x98, 0x0f, 0x7e, 0xdd, 0x44,
774813498266Sopenharmony_ci  0x22, 0xfc, 0x57, 0xd2, 0x1f, 0xf6, 0x47, 0xff, 0x1e, 0x9c, 0xd7, 0xb3,
774913498266Sopenharmony_ci  0x69, 0xaf, 0xfb, 0xce, 0x81, 0xdb, 0x2b, 0x9d, 0xc3, 0x11, 0x82, 0x5b,
775013498266Sopenharmony_ci  0x07, 0xb8, 0x1f, 0x49, 0x6c, 0xb0, 0x2c, 0x42, 0x8d, 0x30, 0x1c, 0x60,
775113498266Sopenharmony_ci  0x9c, 0x11, 0x8e, 0x16, 0xb8, 0xd4, 0x1b, 0x3c, 0xfc, 0xb0, 0xe5, 0xc3,
775213498266Sopenharmony_ci  0xb4, 0x34, 0xec, 0xab, 0x94, 0x55, 0x5d, 0x3e, 0x56, 0xbb, 0xcd, 0x7b,
775313498266Sopenharmony_ci  0xdb, 0xed, 0xad, 0xe9, 0x7c, 0x1e, 0x16, 0x7b, 0x6f, 0xa7, 0xbd, 0x8f,
775413498266Sopenharmony_ci  0xc8, 0xf8, 0x2d, 0x91, 0x41, 0xf7, 0xff, 0xfa, 0xb7, 0xb3, 0xf6, 0x74,
775513498266Sopenharmony_ci  0x2f, 0x20, 0x57, 0xfc, 0x80, 0x7c, 0x13, 0xd9, 0x7b, 0x8b, 0x3b, 0x00,
775613498266Sopenharmony_ci  0x57, 0x81, 0x5b, 0xc5, 0x88, 0x70, 0x22, 0xa3, 0x0c, 0x93, 0x21, 0x70,
775713498266Sopenharmony_ci  0xe1, 0xf3, 0xe4, 0x22, 0xc5, 0x19, 0xcf, 0x17, 0x24, 0x55, 0x44, 0x93,
775813498266Sopenharmony_ci  0x05, 0x1c, 0x3b, 0xe5, 0x7a, 0x19, 0xde, 0x37, 0x8b, 0x21, 0x1c, 0xf4,
775913498266Sopenharmony_ci  0x7f, 0x2e, 0x8a, 0x9a, 0x97, 0x26, 0xb9, 0x28, 0x80, 0x3d, 0xc2, 0xa3,
776013498266Sopenharmony_ci  0x46, 0x10, 0x38, 0x4f, 0xe1, 0x15, 0xea, 0x37, 0xc3, 0xe5, 0x84, 0xd3,
776113498266Sopenharmony_ci  0x67, 0xc4, 0x82, 0xac, 0x96, 0xfb, 0x21, 0x99, 0x56, 0x20, 0xa4, 0x9c,
776213498266Sopenharmony_ci  0x15, 0x48, 0x2a, 0x24, 0xe0, 0xd1, 0x5e, 0xc3, 0xa5, 0x70, 0x0e, 0x9c,
776313498266Sopenharmony_ci  0x79, 0x54, 0x3b, 0x62, 0x0a, 0xf1, 0x23, 0x98, 0x08, 0xed, 0x55, 0x32,
776413498266Sopenharmony_ci  0xed, 0xf3, 0x01, 0x9e, 0x58, 0x81, 0x24, 0x5a, 0xfb, 0xdf, 0x6b, 0xfd,
776513498266Sopenharmony_ci  0x68, 0xed, 0xff, 0x59, 0x23, 0xf6, 0xb5, 0xf6, 0x9f, 0x6b, 0x96, 0x2b,
776613498266Sopenharmony_ci  0x9c, 0x40, 0xa7, 0x48, 0x47, 0x93, 0x49, 0xa4, 0x3c, 0x83, 0xc7, 0x11,
776713498266Sopenharmony_ci  0x9f, 0xe1, 0xb5, 0x8e, 0x9f, 0xc1, 0x77, 0xf0, 0xfc, 0x0f, 0x07, 0x6f,
776813498266Sopenharmony_ci  0x5f, 0x1e, 0x7c, 0xfb, 0xea, 0xb0, 0x29, 0xed, 0x5b, 0xd1, 0xbb, 0x29,
776913498266Sopenharmony_ci  0x77, 0x44, 0x17, 0x49, 0x99, 0xc1, 0x6a, 0xc1, 0xe0, 0xd7, 0x93, 0x31,
777013498266Sopenharmony_ci  0xb2, 0x67, 0x58, 0x98, 0x27, 0x83, 0xdd, 0xc1, 0xd6, 0xc6, 0x00, 0xe4,
777113498266Sopenharmony_ci  0xd0, 0xda, 0x7e, 0x6f, 0x44, 0x37, 0xea, 0x34, 0xd6, 0xcf, 0x89, 0x15,
777213498266Sopenharmony_ci  0x7d, 0x05, 0x17, 0x6a, 0x8d, 0x7c, 0x09, 0xa6, 0xd2, 0xfa, 0xea, 0x1b,
777313498266Sopenharmony_ci  0xdc, 0xfa, 0x68, 0x1d, 0x36, 0x12, 0x4e, 0x51, 0x0f, 0xff, 0xe8, 0x35,
777413498266Sopenharmony_ci  0xee, 0x4b, 0xb8, 0xd5, 0xaa, 0x1a, 0x98, 0x42, 0x94, 0x4d, 0xf0, 0x02,
777513498266Sopenharmony_ci  0x16, 0x25, 0x82, 0xef, 0xc6, 0x71, 0x52, 0x9d, 0x47, 0xeb, 0xf1, 0xc6,
777613498266Sopenharmony_ci  0x86, 0x5d, 0x86, 0x1f, 0xb4, 0x6d, 0xe9, 0xb1, 0x22, 0xe2, 0x87, 0x46,
777713498266Sopenharmony_ci  0xd2, 0x8f, 0x73, 0x98, 0x14, 0x8f, 0x9f, 0x85, 0x17, 0xe4, 0xdc, 0x30,
777813498266Sopenharmony_ci  0x00, 0xe2, 0x10, 0x4c, 0x60, 0xbd, 0x7f, 0xfd, 0x0b, 0x87, 0xf4, 0xef,
777913498266Sopenharmony_ci  0x7f, 0xf7, 0xb4, 0xb9, 0x75, 0x15, 0x61, 0x59, 0x24, 0x63, 0x52, 0xd8,
778013498266Sopenharmony_ci  0xc0, 0xb1, 0xe0, 0xdf, 0xd2, 0x0e, 0x09, 0x90, 0x24, 0x53, 0x93, 0x0c,
778113498266Sopenharmony_ci  0x39, 0x16, 0xb1, 0x30, 0x8e, 0xb9, 0xcf, 0xb8, 0x37, 0xb0, 0x92, 0x38,
778213498266Sopenharmony_ci  0x3c, 0x06, 0x07, 0xac, 0x92, 0x1b, 0x4e, 0x86, 0x58, 0x70, 0x73, 0x66,
778313498266Sopenharmony_ci  0x5d, 0x7a, 0xd8, 0x62, 0x0f, 0x46, 0x0a, 0x6c, 0x96, 0xd8, 0x09, 0x09,
778413498266Sopenharmony_ci  0x04, 0xd1, 0x70, 0x9a, 0xe4, 0x1f, 0x40, 0xb0, 0x9a, 0x58, 0x49, 0x27,
778513498266Sopenharmony_ci  0x15, 0xf1, 0x15, 0x68, 0x15, 0xc9, 0x0b, 0xb9, 0x10, 0xcc, 0x14, 0xaf,
778613498266Sopenharmony_ci  0x05, 0xe4, 0xc7, 0x89, 0x69, 0x12, 0x24, 0x67, 0x6a, 0x0c, 0xa7, 0xd8,
778713498266Sopenharmony_ci  0x8b, 0xe0, 0x74, 0x0f, 0x41, 0x8a, 0x98, 0xc9, 0x4d, 0x6f, 0xc5, 0x5a,
778813498266Sopenharmony_ci  0xa2, 0x5e, 0x60, 0xea, 0x3c, 0x13, 0xfc, 0x23, 0x93, 0x0b, 0x26, 0x01,
778913498266Sopenharmony_ci  0x19, 0x7a, 0xf4, 0xa1, 0x9a, 0xc2, 0x8a, 0x0b, 0x59, 0xf6, 0x7e, 0x81,
779013498266Sopenharmony_ci  0xa6, 0x9a, 0xb2, 0x2d, 0xac, 0x74, 0x32, 0x1a, 0xa1, 0x68, 0x89, 0xf4,
779113498266Sopenharmony_ci  0xc3, 0xb3, 0x8f, 0xd2, 0xfc, 0x22, 0x2b, 0x8b, 0x1c, 0xef, 0x62, 0x87,
779213498266Sopenharmony_ci  0x98, 0x86, 0x28, 0x93, 0x95, 0x30, 0x4e, 0x90, 0x9e, 0x0a, 0x16, 0xa6,
779313498266Sopenharmony_ci  0x61, 0x24, 0xb3, 0x81, 0xc7, 0xb6, 0xd2, 0x29, 0xaa, 0xe1, 0xc8, 0x26,
779413498266Sopenharmony_ci  0x33, 0x3a, 0x36, 0x25, 0x9c, 0xfd, 0xac, 0x4c, 0x69, 0xee, 0xa1, 0xa6,
779513498266Sopenharmony_ci  0xf1, 0x51, 0xa4, 0x19, 0x20, 0x15, 0x58, 0x36, 0xf7, 0xdc, 0x53, 0x7b,
779613498266Sopenharmony_ci  0x46, 0x43, 0x21, 0x25, 0x87, 0x94, 0x08, 0x78, 0x75, 0xba, 0x40, 0xc9,
779713498266Sopenharmony_ci  0x05, 0x1e, 0x00, 0x56, 0x9d, 0x59, 0x41, 0x63, 0x0a, 0xe7, 0x71, 0x7c,
779813498266Sopenharmony_ci  0x85, 0x6d, 0x0d, 0xa2, 0xe3, 0x69, 0x62, 0x6f, 0x71, 0x87, 0x86, 0xff,
779913498266Sopenharmony_ci  0xcc, 0xbb, 0x3f, 0x33, 0x7a, 0xab, 0x1d, 0x09, 0x5e, 0xe3, 0x40, 0x0d,
780013498266Sopenharmony_ci  0x6b, 0xf8, 0xc4, 0x1a, 0x5d, 0x09, 0xb0, 0x35, 0x2a, 0x12, 0xa0, 0x54,
780113498266Sopenharmony_ci  0xa5, 0xcd, 0x81, 0xb2, 0x8c, 0x52, 0xcb, 0x84, 0xc5, 0x9c, 0xe0, 0xac,
780213498266Sopenharmony_ci  0x42, 0x43, 0x3a, 0x2d, 0x1c, 0x7d, 0x6b, 0x9c, 0x1a, 0x31, 0x88, 0x67,
780313498266Sopenharmony_ci  0x25, 0xd3, 0xc2, 0x66, 0xed, 0x94, 0xe0, 0xbd, 0x3e, 0x5d, 0x48, 0xed,
780413498266Sopenharmony_ci  0x19, 0xf8, 0x27, 0xd4, 0x34, 0x67, 0x1f, 0xfa, 0x46, 0x1e, 0xb2, 0xbb,
780513498266Sopenharmony_ci  0x7e, 0x28, 0x3c, 0x3c, 0xfa, 0x2e, 0x65, 0x1e, 0xfa, 0xee, 0xe4, 0xf0,
780613498266Sopenharmony_ci  0x6d, 0xc7, 0x0c, 0x72, 0xd8, 0x19, 0x91, 0x2b, 0x41, 0xb1, 0x02, 0xf5,
780713498266Sopenharmony_ci  0x92, 0xc6, 0x46, 0x6f, 0x18, 0x9d, 0xc1, 0x8c, 0xd2, 0x5e, 0x2f, 0xce,
780813498266Sopenharmony_ci  0x48, 0xd7, 0xfe, 0x8c, 0x0f, 0xaf, 0xd9, 0x6f, 0xe4, 0x80, 0x21, 0x03,
780913498266Sopenharmony_ci  0xfb, 0x8a, 0xef, 0x95, 0xaa, 0x7d, 0x69, 0xce, 0xb3, 0xcd, 0x7f, 0xfd,
781013498266Sopenharmony_ci  0x0b, 0x5f, 0xfb, 0xf7, 0xbf, 0x37, 0xe1, 0xb0, 0x9f, 0x17, 0xe3, 0xf6,
781113498266Sopenharmony_ci  0xe5, 0xc2, 0x8d, 0x90, 0x0c, 0x6a, 0xe8, 0xb3, 0xef, 0xb1, 0xc5, 0x84,
781213498266Sopenharmony_ci  0x48, 0x0a, 0x4e, 0xea, 0x64, 0x91, 0x8b, 0x52, 0x42, 0xbb, 0xe5, 0xb0,
781313498266Sopenharmony_ci  0xaa, 0x59, 0xf2, 0x21, 0x6d, 0x51, 0x80, 0x9e, 0xf0, 0x59, 0x51, 0xd2,
781413498266Sopenharmony_ci  0x5f, 0x17, 0x69, 0x9e, 0xe1, 0xaa, 0xc0, 0x52, 0xc0, 0x2e, 0x90, 0x3e,
781513498266Sopenharmony_ci  0x8b, 0x54, 0x09, 0x07, 0x6f, 0x16, 0xa9, 0xf4, 0xe3, 0x8a, 0xf6, 0xa8,
781613498266Sopenharmony_ci  0xe2, 0x64, 0x53, 0x1a, 0xdb, 0xe5, 0x39, 0x88, 0x6c, 0x30, 0xa0, 0x39,
781713498266Sopenharmony_ci  0x08, 0x90, 0x42, 0x42, 0xf8, 0x5a, 0x1f, 0x77, 0x17, 0xdb, 0x00, 0x2e,
781813498266Sopenharmony_ci  0xa5, 0x17, 0x99, 0xe9, 0x16, 0x79, 0x80, 0x36, 0xf7, 0xb7, 0x93, 0xa3,
781913498266Sopenharmony_ci  0x37, 0xcc, 0xc0, 0xc6, 0x7a, 0xd2, 0xa9, 0x91, 0xdf, 0xaa, 0x22, 0xef,
782013498266Sopenharmony_ci  0xd3, 0xb5, 0x07, 0x57, 0x6a, 0x31, 0xe6, 0x19, 0xb8, 0x0f, 0xe0, 0x3a,
782113498266Sopenharmony_ci  0xe0, 0xb5, 0x85, 0x4a, 0xf4, 0xa3, 0x07, 0x86, 0x66, 0xf9, 0x61, 0xec,
782213498266Sopenharmony_ci  0x5d, 0xe8, 0x79, 0xf8, 0xe8, 0xc1, 0x40, 0xf8, 0xc0, 0x7c, 0x0e, 0xd7,
782313498266Sopenharmony_ci  0xab, 0x2e, 0x14, 0xb3, 0x6c, 0xb3, 0x26, 0xb4, 0xdc, 0x55, 0x86, 0x9d,
782413498266Sopenharmony_ci  0xc2, 0x85, 0xe2, 0xb0, 0xb2, 0x19, 0x8c, 0x7b, 0x5a, 0x58, 0x95, 0x65,
782513498266Sopenharmony_ci  0x1c, 0x09, 0xc1, 0x94, 0xd9, 0xd9, 0x39, 0x10, 0x05, 0xd2, 0x79, 0x8b,
782613498266Sopenharmony_ci  0x53, 0x0e, 0x1c, 0x86, 0xdf, 0x50, 0xda, 0x88, 0x94, 0xcf, 0x8b, 0x29,
782713498266Sopenharmony_ci  0x6d, 0x6b, 0x8e, 0xf7, 0xfa, 0xf0, 0x8a, 0x2e, 0x71, 0xdc, 0x32, 0x95,
782813498266Sopenharmony_ci  0xd7, 0x78, 0x0a, 0x63, 0x16, 0x22, 0xcc, 0xfd, 0x30, 0x4a, 0xf0, 0x7c,
782913498266Sopenharmony_ci  0xd0, 0x91, 0x1c, 0xb4, 0xc8, 0x7c, 0x8f, 0xd4, 0xca, 0xc8, 0x63, 0xde,
783013498266Sopenharmony_ci  0x09, 0xe9, 0x97, 0x7a, 0xde, 0xff, 0xd7, 0x8b, 0xa3, 0xd7, 0x87, 0x9b,
783113498266Sopenharmony_ci  0x83, 0x2a, 0x1d, 0x95, 0xf0, 0x30, 0x91, 0x3d, 0x4f, 0xbf, 0x79, 0xa2,
783213498266Sopenharmony_ci  0xe4, 0x69, 0xb8, 0xf2, 0x3e, 0xf6, 0x06, 0xd1, 0x6b, 0xa4, 0x9d, 0x6a,
783313498266Sopenharmony_ci  0x51, 0x8a, 0xaa, 0xa3, 0x16, 0x00, 0x3e, 0x93, 0x78, 0x2e, 0x68, 0xb3,
783413498266Sopenharmony_ci  0x51, 0xb3, 0x63, 0xba, 0x00, 0x2d, 0xcc, 0x34, 0x87, 0xea, 0x58, 0xac,
783513498266Sopenharmony_ci  0x93, 0xa9, 0xf0, 0x05, 0xd8, 0xf7, 0xe3, 0xa3, 0x93, 0x53, 0x32, 0xbf,
783613498266Sopenharmony_ci  0x05, 0x4f, 0xd2, 0x9f, 0x71, 0x8c, 0xde, 0x39, 0x32, 0x5f, 0xc3, 0x98,
783713498266Sopenharmony_ci  0xbe, 0xf9, 0xd7, 0xbf, 0xf0, 0x19, 0x38, 0x35, 0x32, 0x13, 0xef, 0x69,
783813498266Sopenharmony_ci  0xb2, 0xed, 0xc1, 0x7d, 0x02, 0x0f, 0xef, 0xe1, 0xe0, 0xf6, 0x80, 0x50,
783913498266Sopenharmony_ci  0x9c, 0xab, 0x33, 0x74, 0x1a, 0xcd, 0x50, 0x9e, 0xba, 0x32, 0x9a, 0xbd,
784013498266Sopenharmony_ci  0x15, 0xcc, 0xb5, 0x51, 0xb1, 0xd6, 0x8f, 0x32, 0x81, 0x91, 0x3a, 0x54,
784113498266Sopenharmony_ci  0xf0, 0x00, 0xee, 0x73, 0xf4, 0xee, 0xf4, 0xf8, 0xdd, 0xa9, 0x63, 0x7b,
784213498266Sopenharmony_ci  0xa2, 0xfd, 0xac, 0x61, 0xbf, 0x59, 0xb8, 0xba, 0xcc, 0x2a, 0x35, 0x2c,
784313498266Sopenharmony_ci  0xa1, 0x36, 0x96, 0x32, 0x63, 0x2e, 0xd3, 0x51, 0x0a, 0x02, 0xf4, 0x98,
784413498266Sopenharmony_ci  0xad, 0x92, 0xb0, 0x2d, 0x20, 0x58, 0xc0, 0xa9, 0xd1, 0x53, 0xe8, 0x48,
784513498266Sopenharmony_ci  0x1c, 0x70, 0xf3, 0xd6, 0xe5, 0x62, 0x24, 0x34, 0x88, 0x7f, 0xc1, 0xd1,
784613498266Sopenharmony_ci  0x8c, 0x2a, 0x92, 0x17, 0x71, 0x7b, 0xa8, 0x01, 0xd9, 0xd9, 0x29, 0x68,
784713498266Sopenharmony_ci  0xe4, 0x68, 0xba, 0xcb, 0xd0, 0x5e, 0x24, 0x82, 0x84, 0x7b, 0xab, 0xc6,
784813498266Sopenharmony_ci  0x45, 0x1f, 0x17, 0x4d, 0x8e, 0x27, 0x9d, 0xa4, 0xf8, 0x08, 0x45, 0xb2,
784913498266Sopenharmony_ci  0x32, 0x9d, 0xc1, 0x61, 0x8c, 0xe9, 0xfe, 0x10, 0x73, 0xca, 0x00, 0xe7,
785013498266Sopenharmony_ci  0xa2, 0x16, 0xc2, 0x33, 0x18, 0x6b, 0x6e, 0xf4, 0x4d, 0x6d, 0x8e, 0xb4,
785113498266Sopenharmony_ci  0x4c, 0x3c, 0x18, 0x6a, 0xc3, 0x0d, 0xa8, 0xcb, 0xc4, 0x13, 0xaa, 0x6c,
785213498266Sopenharmony_ci  0x96, 0x4d, 0x93, 0x12, 0x0e, 0x62, 0x9e, 0xa6, 0xe3, 0xca, 0xb5, 0x9b,
785313498266Sopenharmony_ci  0xb4, 0x54, 0xe6, 0x8a, 0x44, 0x4c, 0x96, 0xc0, 0x70, 0x55, 0x78, 0x9a,
785413498266Sopenharmony_ci  0x78, 0x19, 0x37, 0x45, 0x44, 0x47, 0xc6, 0x80, 0x13, 0x0a, 0x87, 0x04,
785513498266Sopenharmony_ci  0xde, 0x32, 0xcb, 0x1d, 0xf5, 0x16, 0x70, 0x7c, 0xe0, 0x46, 0x87, 0x41,
785613498266Sopenharmony_ci  0xf4, 0xdc, 0x13, 0x82, 0x63, 0x21, 0x91, 0xc7, 0xde, 0xc6, 0xb2, 0x27,
785713498266Sopenharmony_ci  0x40, 0xa5, 0xbc, 0x2a, 0xb4, 0x03, 0xd4, 0x7a, 0x5e, 0xf0, 0xa9, 0xc4,
785813498266Sopenharmony_ci  0x45, 0xc4, 0x95, 0x1a, 0xa7, 0xfc, 0x07, 0xae, 0x2c, 0x1b, 0xad, 0x90,
785913498266Sopenharmony_ci  0x3e, 0xa6, 0xd9, 0x28, 0xab, 0xa7, 0x57, 0xe6, 0x38, 0x55, 0x1f, 0x78,
786013498266Sopenharmony_ci  0xa3, 0x88, 0x0f, 0x01, 0xb5, 0x64, 0x23, 0x62, 0x1f, 0x21, 0x83, 0x15,
786113498266Sopenharmony_ci  0xcc, 0xe9, 0xf8, 0xed, 0xd1, 0xe9, 0xd1, 0xd3, 0xa3, 0x57, 0x9d, 0x02,
786213498266Sopenharmony_ci  0x30, 0x29, 0xb9, 0xc5, 0xa2, 0x8a, 0xac, 0x01, 0x9a, 0x44, 0x30, 0xdc,
786313498266Sopenharmony_ci  0x3f, 0x20, 0x42, 0x64, 0x95, 0x20, 0x34, 0xce, 0xaa, 0x3d, 0x31, 0x61,
786413498266Sopenharmony_ci  0x56, 0x64, 0x2b, 0x33, 0xb3, 0x43, 0x5d, 0x2c, 0x1b, 0x2d, 0x60, 0xed,
786513498266Sopenharmony_ci  0xe1, 0xce, 0xcf, 0x80, 0x24, 0x67, 0xc9, 0x95, 0xab, 0x1f, 0x32, 0xaf,
786613498266Sopenharmony_ci  0x83, 0xd3, 0x6f, 0xd7, 0x17, 0xad, 0xdb, 0x68, 0x41, 0xc1, 0x65, 0x42,
786713498266Sopenharmony_ci  0x51, 0x65, 0x5a, 0x14, 0x1f, 0x16, 0xf3, 0xe8, 0xb2, 0x28, 0xc7, 0x2a,
786813498266Sopenharmony_ci  0x9b, 0x16, 0x39, 0x4d, 0x03, 0xe6, 0x86, 0xf3, 0x48, 0x50, 0xfd, 0xb6,
786913498266Sopenharmony_ci  0xef, 0xa3, 0x5d, 0x1c, 0xfe, 0x79, 0x8b, 0x54, 0x8a, 0x5b, 0x89, 0xeb,
787013498266Sopenharmony_ci  0xeb, 0x12, 0x26, 0x1a, 0x8d, 0xbd, 0x3d, 0xd4, 0xe1, 0x88, 0xcc, 0xe6,
787113498266Sopenharmony_ci  0xdc, 0x3c, 0x2a, 0x47, 0xc0, 0x9b, 0x68, 0xa8, 0xa5, 0x19, 0x33, 0xb5,
787213498266Sopenharmony_ci  0x4e, 0xaf, 0x58, 0xb7, 0x25, 0x96, 0x59, 0x2e, 0xf2, 0x9c, 0x87, 0x16,
787313498266Sopenharmony_ci  0xbd, 0xce, 0x46, 0x65, 0x51, 0x15, 0x93, 0x1a, 0x14, 0xef, 0x7c, 0x5c,
787413498266Sopenharmony_ci  0x5c, 0xe2, 0xa8, 0xe3, 0x56, 0x73, 0x22, 0xe3, 0x81, 0xc0, 0x5a, 0x03,
787513498266Sopenharmony_ci  0x65, 0x47, 0xef, 0xde, 0x3c, 0xc5, 0x8b, 0xa2, 0x2c, 0x50, 0xfd, 0x85,
787613498266Sopenharmony_ci  0x99, 0x7e, 0x70, 0xe7, 0x73, 0x7a, 0xbc, 0x7e, 0xb2, 0xc1, 0x43, 0x76,
787713498266Sopenharmony_ci  0x7d, 0x02, 0xd1, 0x73, 0xe4, 0xb3, 0xa7, 0x4a, 0xfa, 0xc7, 0x6a, 0x20,
787813498266Sopenharmony_ci  0x16, 0x11, 0x15, 0xa6, 0x8c, 0x27, 0x0c, 0xd8, 0x41, 0x7d, 0x99, 0x26,
787913498266Sopenharmony_ci  0x1f, 0xaa, 0xd6, 0x00, 0x88, 0x16, 0x50, 0xb5, 0x45, 0x2b, 0x0b, 0xbe,
788013498266Sopenharmony_ci  0x81, 0x4b, 0x25, 0xf2, 0x3d, 0x2f, 0xf2, 0xe9, 0x2b, 0xc7, 0x52, 0xcf,
788113498266Sopenharmony_ci  0x3e, 0x05, 0x18, 0x47, 0xab, 0x99, 0xb7, 0x29, 0x70, 0x3b, 0x68, 0x46,
788213498266Sopenharmony_ci  0x56, 0xf6, 0x0b, 0xd7, 0xdb, 0xe0, 0x3f, 0xdd, 0x22, 0x2e, 0xb2, 0x55,
788313498266Sopenharmony_ci  0xd3, 0x70, 0x0d, 0x95, 0xb9, 0xa6, 0x54, 0x62, 0x85, 0xca, 0x0a, 0x1a,
788413498266Sopenharmony_ci  0x5c, 0x49, 0x65, 0xf4, 0x39, 0x4c, 0x8c, 0x5b, 0xc1, 0x89, 0xe0, 0xf5,
788513498266Sopenharmony_ci  0xba, 0x35, 0xf8, 0xb2, 0x1f, 0x6d, 0x0f, 0xb6, 0xf0, 0xc7, 0x76, 0x3f,
788613498266Sopenharmony_ci  0xda, 0xa1, 0x86, 0x76, 0x23, 0x36, 0xec, 0xcb, 0xfe, 0x30, 0x21, 0x3a,
788713498266Sopenharmony_ci  0xe7, 0xbe, 0x71, 0xfc, 0xc9, 0x16, 0x46, 0x27, 0xb6, 0x2c, 0x51, 0xda,
788813498266Sopenharmony_ci  0xee, 0x38, 0x38, 0xca, 0x6e, 0x5f, 0x1f, 0x04, 0xe6, 0xf9, 0xae, 0xd2,
788913498266Sopenharmony_ci  0xfd, 0x9d, 0xa1, 0x68, 0x57, 0xb6, 0x0c, 0xfe, 0xc2, 0x8d, 0x51, 0x50,
789013498266Sopenharmony_ci  0xe9, 0x01, 0x7d, 0xe4, 0xd3, 0x22, 0x01, 0x36, 0x91, 0xe2, 0xb3, 0xac,
789113498266Sopenharmony_ci  0x16, 0xb7, 0x9a, 0x83, 0x53, 0x70, 0xa3, 0x4d, 0x42, 0x3f, 0x4e, 0xc7,
789213498266Sopenharmony_ci  0xa2, 0x63, 0x5f, 0xe3, 0x02, 0x4e, 0x0c, 0xce, 0xa9, 0x28, 0xaf, 0xe4,
789313498266Sopenharmony_ci  0x54, 0x31, 0xb7, 0x83, 0xf6, 0xfb, 0xbc, 0x0f, 0x4e, 0xfb, 0x8d, 0x96,
789413498266Sopenharmony_ci  0xd1, 0x35, 0xa4, 0x4d, 0x99, 0xed, 0xa3, 0x0f, 0x75, 0xe1, 0x77, 0x07,
789513498266Sopenharmony_ci  0xd1, 0x33, 0x99, 0x0a, 0x2d, 0x33, 0x5a, 0x93, 0xe9, 0x01, 0x50, 0x51,
789613498266Sopenharmony_ci  0x40, 0xe9, 0x8f, 0x7a, 0xd5, 0x62, 0xd8, 0x5e, 0x70, 0xf4, 0xa6, 0x0c,
789713498266Sopenharmony_ci  0x41, 0xb7, 0xa3, 0xab, 0xa3, 0x2e, 0xe6, 0xd9, 0x08, 0x05, 0x3b, 0x20,
789813498266Sopenharmony_ci  0xea, 0xc5, 0x5c, 0xda, 0xd9, 0x9c, 0x17, 0x15, 0xe9, 0x43, 0xda, 0xca,
789913498266Sopenharmony_ci  0x7c, 0x31, 0x9c, 0x66, 0xd5, 0x79, 0x0f, 0xf7, 0x31, 0x69, 0xef, 0x1f,
790013498266Sopenharmony_ci  0xb6, 0x30, 0xe0, 0x5e, 0xa9, 0x7f, 0x98, 0x82, 0x91, 0xa2, 0xd5, 0x1c,
790113498266Sopenharmony_ci  0x15, 0xad, 0x5f, 0xa5, 0xb5, 0xa3, 0x23, 0xa3, 0xa3, 0xcb, 0x5f, 0x33,
790213498266Sopenharmony_ci  0x77, 0x2a, 0x6c, 0xd2, 0xc0, 0x13, 0x35, 0x2f, 0xe6, 0xbb, 0x91, 0x9a,
790313498266Sopenharmony_ci  0xca, 0x67, 0x29, 0x1c, 0x3c, 0x63, 0x59, 0x4f, 0x68, 0xa7, 0xcd, 0x2e,
790413498266Sopenharmony_ci  0xb5, 0x9a, 0x5b, 0xb2, 0x67, 0xe8, 0x5b, 0xf3, 0xfb, 0x47, 0x2f, 0x15,
790513498266Sopenharmony_ci  0x30, 0x30, 0xb8, 0xa3, 0xe0, 0x3e, 0x7c, 0x0d, 0x0c, 0x29, 0x39, 0xa3,
790613498266Sopenharmony_ci  0xa1, 0x98, 0x43, 0x4e, 0x52, 0xd0, 0x1c, 0x04, 0x0d, 0x38, 0x23, 0x68,
790713498266Sopenharmony_ci  0x43, 0x67, 0x1f, 0x0e, 0x3a, 0x80, 0x68, 0x78, 0xed, 0x85, 0x46, 0x63,
790813498266Sopenharmony_ci  0xca, 0x0c, 0x5b, 0x00, 0xa1, 0x29, 0x4b, 0xd8, 0x50, 0x6e, 0xc9, 0x82,
790913498266Sopenharmony_ci  0xe7, 0x8a, 0x46, 0x1a, 0x67, 0x58, 0x27, 0xc7, 0xde, 0x86, 0xd3, 0x87,
791013498266Sopenharmony_ci  0x70, 0xb8, 0xcc, 0x2b, 0xce, 0x41, 0x38, 0x79, 0x7a, 0x1c, 0x79, 0x2f,
791113498266Sopenharmony_ci  0x9c, 0x9c, 0xbc, 0x30, 0x04, 0xb2, 0x03, 0xdb, 0x3d, 0xb7, 0x5e, 0x0a,
791213498266Sopenharmony_ci  0xe7, 0xcd, 0xe7, 0xa7, 0x7e, 0x57, 0xf4, 0xe1, 0xfa, 0xb8, 0x4c, 0x80,
791313498266Sopenharmony_ci  0x8b, 0x3e, 0xdc, 0x60, 0xf7, 0x00, 0xed, 0x69, 0xa3, 0x49, 0xa7, 0x91,
791413498266Sopenharmony_ci  0xd7, 0xdf, 0xfa, 0x4c, 0x12, 0x3e, 0x34, 0xcf, 0x6e, 0x13, 0xa5, 0x33,
791513498266Sopenharmony_ci  0x61, 0xd1, 0xfc, 0x75, 0x0e, 0x6e, 0x1b, 0x21, 0x9e, 0xf5, 0x6e, 0x6e,
791613498266Sopenharmony_ci  0x08, 0xc1, 0x88, 0xb9, 0xb4, 0xd0, 0xa8, 0x40, 0xe3, 0x2b, 0x4d, 0x82,
791713498266Sopenharmony_ci  0xa8, 0x84, 0xcf, 0xc0, 0xb7, 0x74, 0xa0, 0x07, 0xad, 0xe6, 0x7e, 0x5c,
791813498266Sopenharmony_ci  0x76, 0xcc, 0xd8, 0x63, 0x1a, 0x9d, 0xa6, 0x53, 0x52, 0x73, 0x68, 0x36,
791913498266Sopenharmony_ci  0xd0, 0x15, 0xf9, 0xb6, 0xf0, 0x88, 0xa4, 0xd3, 0x1c, 0xa4, 0x68, 0xbc,
792013498266Sopenharmony_ci  0x81, 0xc8, 0xeb, 0x86, 0xcc, 0x8a, 0x6d, 0x6d, 0xc9, 0x88, 0xae, 0x91,
792113498266Sopenharmony_ci  0x0a, 0xaf, 0xae, 0xa2, 0xcd, 0x26, 0x59, 0x98, 0x41, 0x29, 0x08, 0xc6,
792213498266Sopenharmony_ci  0x56, 0xb1, 0x3b, 0x11, 0xfe, 0x42, 0xae, 0x24, 0x2e, 0x36, 0x36, 0x2a,
792313498266Sopenharmony_ci  0xb1, 0x30, 0xcd, 0x52, 0x48, 0x25, 0x6e, 0x47, 0x57, 0x78, 0x53, 0x62,
792413498266Sopenharmony_ci  0xe2, 0xe9, 0x72, 0x63, 0x2e, 0xcd, 0x9c, 0x3a, 0x1b, 0x29, 0xfc, 0x86,
792513498266Sopenharmony_ci  0x3e, 0x32, 0xd4, 0x42, 0x1d, 0xf0, 0x16, 0x88, 0xec, 0xf1, 0xdd, 0xdb,
792613498266Sopenharmony_ci  0xc3, 0x93, 0x93, 0xe8, 0xf5, 0xe1, 0xa9, 0x55, 0x7b, 0xf9, 0x8e, 0xc8,
792713498266Sopenharmony_ci  0x8b, 0x72, 0x06, 0x52, 0x01, 0x50, 0xf6, 0x38, 0xab, 0xe6, 0xd3, 0xe4,
792813498266Sopenharmony_ci  0x0a, 0x95, 0x4e, 0xe0, 0x9f, 0x67, 0x25, 0xca, 0x3d, 0x64, 0xa8, 0x8a,
792913498266Sopenharmony_ci  0xc6, 0x0b, 0xd2, 0xcb, 0x0a, 0x10, 0xff, 0xf9, 0x9a, 0x00, 0x51, 0x2f,
793013498266Sopenharmony_ci  0x27, 0x79, 0xc7, 0xb9, 0xbe, 0xc9, 0xcc, 0x6d, 0xdc, 0x8a, 0xc6, 0x1f,
793113498266Sopenharmony_ci  0x2f, 0x82, 0x6f, 0xdf, 0xfa, 0xcd, 0x22, 0x76, 0x59, 0x55, 0xb2, 0x0c,
793213498266Sopenharmony_ci  0x29, 0xf0, 0x9d, 0x19, 0x3b, 0x9b, 0xf1, 0x10, 0x1a, 0x17, 0x73, 0x3a,
793313498266Sopenharmony_ci  0xa9, 0xe1, 0x25, 0xd8, 0x10, 0x76, 0x42, 0x7a, 0x63, 0xd2, 0xd1, 0x62,
793413498266Sopenharmony_ci  0xbf, 0xa6, 0x69, 0x72, 0x3a, 0xa1, 0x63, 0x83, 0xf4, 0xae, 0xb9, 0xb5,
793513498266Sopenharmony_ci  0x20, 0x83, 0x36, 0x51, 0xe4, 0xe3, 0x01, 0xb5, 0x54, 0x2d, 0x26, 0xe4,
793613498266Sopenharmony_ci  0x75, 0x8d, 0xd6, 0x3f, 0xf4, 0xa3, 0xd7, 0xfd, 0xe8, 0xbb, 0x7e, 0x84,
793713498266Sopenharmony_ci  0xee, 0xf8, 0x0d, 0x52, 0xd1, 0xb6, 0xb7, 0x76, 0x1e, 0xb0, 0xe7, 0xb6,
793813498266Sopenharmony_ci  0xe1, 0x94, 0x8d, 0xb6, 0xd1, 0x06, 0x66, 0xee, 0x76, 0x7e, 0x0a, 0x3b,
793913498266Sopenharmony_ci  0x19, 0x44, 0xdb, 0xaf, 0x91, 0x47, 0x6c, 0x6f, 0x3d, 0x78, 0xf2, 0xf0,
794013498266Sopenharmony_ci  0xf1, 0x23, 0xf9, 0xb0, 0x2d, 0xc3, 0xea, 0x60, 0xd9, 0xbf, 0x62, 0x54,
794113498266Sopenharmony_ci  0x01, 0x1a, 0x3b, 0x08, 0x75, 0x59, 0x9e, 0xa0, 0xae, 0xa8, 0xb6, 0xa1,
794213498266Sopenharmony_ci  0x7e, 0x54, 0x15, 0x68, 0xa5, 0x40, 0xa1, 0x8c, 0xcd, 0xcc, 0x8d, 0xe6,
794313498266Sopenharmony_ci  0xe0, 0x45, 0xd8, 0x71, 0x54, 0xbe, 0x75, 0x43, 0x68, 0x25, 0xd9, 0xde,
794413498266Sopenharmony_ci  0x92, 0x0c, 0x91, 0xd8, 0x51, 0x2c, 0x25, 0x71, 0xcc, 0xed, 0xc9, 0x74,
794513498266Sopenharmony_ci  0x65, 0x0c, 0xd3, 0xf0, 0x0a, 0x0c, 0x8d, 0xb5, 0xa0, 0xda, 0x5f, 0x63,
794613498266Sopenharmony_ci  0x14, 0x95, 0x8d, 0xa4, 0x8d, 0x36, 0xb9, 0x62, 0x81, 0x82, 0x25, 0x3e,
794713498266Sopenharmony_ci  0x00, 0x72, 0x22, 0xd9, 0x22, 0x89, 0x86, 0x8d, 0x29, 0x82, 0xad, 0x77,
794813498266Sopenharmony_ci  0xed, 0x56, 0x60, 0x6c, 0xf0, 0xe7, 0x1c, 0xe8, 0x86, 0xc7, 0xe3, 0xf9,
794913498266Sopenharmony_ci  0xef, 0xc9, 0x67, 0xed, 0x51, 0x1d, 0xb2, 0x11, 0x12, 0x39, 0x48, 0xa9,
795013498266Sopenharmony_ci  0x84, 0x3f, 0x40, 0xf9, 0x22, 0x43, 0x1c, 0x50, 0x0c, 0x50, 0x20, 0xbe,
795113498266Sopenharmony_ci  0x88, 0x3a, 0x06, 0xcc, 0x4e, 0x9b, 0x03, 0x62, 0xa3, 0x6b, 0x57, 0x14,
795213498266Sopenharmony_ci  0x59, 0xd3, 0xa9, 0x1a, 0x29, 0x0a, 0xd1, 0x99, 0xfb, 0x72, 0x3f, 0xb0,
795313498266Sopenharmony_ci  0x21, 0xdd, 0xbc, 0xb5, 0xfe, 0xf5, 0x46, 0x1f, 0x15, 0x27, 0xab, 0x73,
795413498266Sopenharmony_ci  0xca, 0x8b, 0xd0, 0xb7, 0xe8, 0x35, 0xce, 0x19, 0xc4, 0x8d, 0x14, 0xed,
795513498266Sopenharmony_ci  0xa1, 0x16, 0xdb, 0x03, 0x74, 0x80, 0xc7, 0x50, 0x79, 0x9f, 0x28, 0xfe,
795613498266Sopenharmony_ci  0x76, 0x97, 0xcc, 0xe3, 0x70, 0x02, 0xd0, 0x82, 0x51, 0xd8, 0xa5, 0x43,
795713498266Sopenharmony_ci  0x77, 0x71, 0x63, 0x91, 0xda, 0xe4, 0xd1, 0x58, 0x34, 0xb6, 0x2c, 0xa2,
795813498266Sopenharmony_ci  0xbd, 0x14, 0x8f, 0x53, 0x12, 0xd9, 0xa5, 0x8b, 0x7a, 0xc3, 0xa4, 0xec,
795913498266Sopenharmony_ci  0x45, 0x46, 0x7b, 0x54, 0xdb, 0x45, 0x99, 0x9e, 0x91, 0x6e, 0x40, 0x4b,
796013498266Sopenharmony_ci  0x0b, 0xb3, 0xfc, 0x93, 0x33, 0x4b, 0x7d, 0x39, 0x86, 0x57, 0x91, 0x84,
796113498266Sopenharmony_ci  0xa0, 0x71, 0x58, 0x7d, 0x90, 0x36, 0xf1, 0xc0, 0xa8, 0x49, 0x94, 0xfc,
796213498266Sopenharmony_ci  0x09, 0x42, 0x2c, 0x4d, 0x5a, 0xe1, 0x36, 0x0d, 0x85, 0x16, 0x78, 0x5c,
796313498266Sopenharmony_ci  0x50, 0x66, 0x57, 0x1f, 0x61, 0x1a, 0xc5, 0x15, 0x6a, 0x9e, 0x15, 0xac,
796413498266Sopenharmony_ci  0x3c, 0x32, 0x07, 0x92, 0xec, 0xd0, 0x25, 0x70, 0xf8, 0xf6, 0xc4, 0x09,
796513498266Sopenharmony_ci  0xea, 0xa1, 0x05, 0x45, 0xbf, 0x39, 0xea, 0x32, 0xe8, 0xe6, 0xe5, 0x20,
796613498266Sopenharmony_ci  0x90, 0x21, 0x6a, 0x0e, 0x7c, 0x8a, 0xfe, 0x2c, 0x6f, 0x0c, 0x94, 0x6e,
796713498266Sopenharmony_ci  0xd0, 0x64, 0x02, 0xaa, 0x70, 0x82, 0xd4, 0x22, 0xd7, 0x8f, 0x99, 0xd6,
796813498266Sopenharmony_ci  0xe8, 0x3c, 0x21, 0x5f, 0x4d, 0x52, 0xb2, 0x33, 0x92, 0x5a, 0xa6, 0x86,
796913498266Sopenharmony_ci  0xcd, 0x2e, 0xa0, 0xe7, 0x05, 0xce, 0x5c, 0x31, 0x22, 0x97, 0x2d, 0xb9,
797013498266Sopenharmony_ci  0x4e, 0xec, 0xe2, 0x92, 0x07, 0xdd, 0x31, 0x96, 0x82, 0x4e, 0x9b, 0xe1,
797113498266Sopenharmony_ci  0x62, 0x6b, 0x3f, 0xe6, 0x28, 0xeb, 0xeb, 0x68, 0x2a, 0x61, 0x87, 0x4d,
797213498266Sopenharmony_ci  0x96, 0x8f, 0xa6, 0x8b, 0x71, 0x6a, 0x6e, 0xc4, 0x2c, 0x47, 0xf7, 0x78,
797313498266Sopenharmony_ci  0xd3, 0x81, 0x4e, 0xa7, 0x14, 0x64, 0x30, 0xb8, 0x6e, 0xc4, 0x05, 0x3f,
797413498266Sopenharmony_ci  0x32, 0xcf, 0xb3, 0xdb, 0x39, 0xaf, 0xcb, 0x62, 0xbc, 0x18, 0xa1, 0x46,
797513498266Sopenharmony_ci  0x79, 0x4e, 0x6e, 0x32, 0x3f, 0xa2, 0x23, 0x99, 0x5e, 0x22, 0x53, 0x99,
797613498266Sopenharmony_ci  0xc2, 0xe0, 0x72, 0x69, 0x0c, 0x97, 0x1b, 0x17, 0xa4, 0xaa, 0x79, 0xd1,
797713498266Sopenharmony_ci  0xcc, 0x18, 0xc8, 0xf8, 0x2d, 0xba, 0x53, 0x93, 0x3b, 0xa9, 0xc9, 0x04,
797813498266Sopenharmony_ci  0xff, 0x18, 0x54, 0xe9, 0x26, 0x0e, 0xf7, 0x0b, 0x37, 0x8a, 0x47, 0x94,
797913498266Sopenharmony_ci  0x40, 0x6d, 0x8a, 0x28, 0xca, 0x5d, 0x50, 0xf2, 0x36, 0xd1, 0x48, 0xaa,
798013498266Sopenharmony_ci  0xf3, 0xe2, 0x52, 0x05, 0x72, 0x19, 0x05, 0x2c, 0x46, 0x62, 0x8d, 0x46,
798113498266Sopenharmony_ci  0x39, 0xad, 0xc2, 0x9e, 0xd7, 0x27, 0xac, 0x62, 0xb5, 0x09, 0x0d, 0x62,
798213498266Sopenharmony_ci  0x7b, 0xe4, 0x4a, 0xfc, 0xe2, 0x8b, 0x23, 0x0a, 0xf9, 0x32, 0xea, 0xf2,
798313498266Sopenharmony_ci  0x91, 0xe8, 0x2b, 0x74, 0x1f, 0x8b, 0x0c, 0x9d, 0x93, 0x31, 0xa0, 0xbe,
798413498266Sopenharmony_ci  0x2c, 0xc8, 0x27, 0x83, 0xbc, 0xf8, 0x35, 0x05, 0x7f, 0x30, 0xc9, 0x1b,
798513498266Sopenharmony_ci  0x15, 0xc7, 0x58, 0xef, 0x9d, 0xfd, 0x4c, 0xc6, 0xe3, 0x8c, 0x54, 0xda,
798613498266Sopenharmony_ci  0xa9, 0x31, 0x59, 0xa3, 0x83, 0x54, 0x4e, 0xdd, 0x8c, 0x48, 0xcc, 0xc4,
798713498266Sopenharmony_ci  0x06, 0xd4, 0xf8, 0x8d, 0x21, 0x1b, 0x67, 0x04, 0x46, 0x30, 0x1e, 0x93,
798813498266Sopenharmony_ci  0x87, 0x82, 0x39, 0x30, 0x1c, 0x4b, 0xf4, 0xfa, 0x8f, 0xc5, 0x27, 0x60,
798913498266Sopenharmony_ci  0x5c, 0xfe, 0xe9, 0x98, 0xbd, 0x23, 0x20, 0x55, 0x0c, 0x1a, 0xeb, 0x0b,
799013498266Sopenharmony_ci  0xab, 0x86, 0x3e, 0x12, 0x76, 0x2f, 0xc5, 0xd8, 0x54, 0x0f, 0x99, 0xdf,
799113498266Sopenharmony_ci  0x4c, 0x27, 0x22, 0xf3, 0x80, 0x33, 0x34, 0x16, 0x5f, 0x9e, 0x89, 0x14,
799213498266Sopenharmony_ci  0x22, 0x2d, 0x1f, 0x7a, 0xd1, 0xe6, 0x48, 0x3a, 0x6d, 0x2b, 0x18, 0x89,
799313498266Sopenharmony_ci  0x98, 0x6f, 0x35, 0x3a, 0x03, 0x23, 0x0f, 0xe8, 0xbe, 0xa8, 0x78, 0xea,
799413498266Sopenharmony_ci  0x7d, 0xd8, 0x3e, 0x7c, 0xf2, 0xec, 0x5c, 0x1f, 0x75, 0x2c, 0xe3, 0x09,
799513498266Sopenharmony_ci  0x1a, 0xb0, 0x40, 0x33, 0x4b, 0x73, 0xb6, 0xf3, 0x91, 0x95, 0xb4, 0x28,
799613498266Sopenharmony_ci  0xf9, 0x26, 0x9d, 0x16, 0xe8, 0xbf, 0x62, 0x8f, 0xa5, 0x33, 0x70, 0x1c,
799713498266Sopenharmony_ci  0x29, 0x9e, 0x78, 0x8e, 0xc3, 0xb3, 0x42, 0xba, 0x19, 0xb6, 0x6c, 0x48,
799813498266Sopenharmony_ci  0x75, 0xed, 0xd0, 0x1c, 0x99, 0x91, 0x16, 0xc9, 0x10, 0xa1, 0xdd, 0x5c,
799913498266Sopenharmony_ci  0xb6, 0x5c, 0x4a, 0x3c, 0x0d, 0x5d, 0x08, 0x14, 0xe0, 0x64, 0xf7, 0x97,
800013498266Sopenharmony_ci  0x1a, 0x52, 0x8f, 0x5c, 0x63, 0xa1, 0xc8, 0xb4, 0x09, 0x9a, 0x6f, 0x4a,
800113498266Sopenharmony_ci  0xe6, 0x2a, 0xde, 0x7d, 0xeb, 0x17, 0x0f, 0x38, 0x42, 0xad, 0x43, 0x47,
800213498266Sopenharmony_ci  0x1c, 0xdb, 0x86, 0x9c, 0x28, 0x74, 0xc2, 0x06, 0x28, 0x91, 0xad, 0x8d,
800313498266Sopenharmony_ci  0xc3, 0x3d, 0xe2, 0x8b, 0x08, 0x2f, 0x01, 0x60, 0x46, 0xb8, 0xfd, 0xf1,
800413498266Sopenharmony_ci  0xd1, 0xab, 0x0b, 0x87, 0x95, 0xe7, 0xa0, 0xd7, 0xe4, 0xe8, 0xa3, 0xef,
800513498266Sopenharmony_ci  0x53, 0x13, 0xc3, 0xa2, 0x80, 0xc3, 0x9c, 0x5b, 0xe5, 0xbc, 0x44, 0x77,
800613498266Sopenharmony_ci  0x13, 0xb2, 0xdc, 0xb1, 0x7a, 0x38, 0xc5, 0xfb, 0x87, 0x2d, 0x83, 0x7e,
800713498266Sopenharmony_ci  0x15, 0x25, 0x67, 0x8e, 0x83, 0x48, 0xd8, 0xf3, 0x58, 0x6d, 0xe3, 0x71,
800813498266Sopenharmony_ci  0x9c, 0x17, 0xf2, 0x02, 0x09, 0x51, 0x14, 0xcd, 0xd2, 0x37, 0xac, 0xd3,
800913498266Sopenharmony_ci  0xc4, 0x24, 0xb9, 0x1e, 0xc5, 0xa1, 0xbd, 0x93, 0xd8, 0x1f, 0x67, 0x9c,
801013498266Sopenharmony_ci  0x71, 0x3d, 0x68, 0xac, 0x37, 0x88, 0x5e, 0x14, 0x97, 0x68, 0xcd, 0xe8,
801113498266Sopenharmony_ci  0xb3, 0x1b, 0x2f, 0xab, 0x24, 0x1e, 0x04, 0x0e, 0xd0, 0x0c, 0x54, 0x48,
801213498266Sopenharmony_ci  0x14, 0x24, 0x39, 0xd8, 0x68, 0xca, 0xfe, 0x40, 0x1b, 0x9a, 0x85, 0xcc,
801313498266Sopenharmony_ci  0x81, 0xaf, 0x03, 0x9d, 0x44, 0x83, 0xa3, 0xb8, 0x96, 0x3f, 0x72, 0x91,
801413498266Sopenharmony_ci  0xc4, 0x7b, 0x48, 0x43, 0xb4, 0x2f, 0x59, 0x45, 0x1b, 0xd6, 0x67, 0x69,
801513498266Sopenharmony_ci  0xba, 0x52, 0x57, 0x26, 0xd9, 0x03, 0x4b, 0x3c, 0x90, 0x35, 0x9f, 0x33,
801613498266Sopenharmony_ci  0x9c, 0x19, 0x1f, 0xcf, 0xc6, 0xba, 0x88, 0xe7, 0x0b, 0xb6, 0x8e, 0x56,
801713498266Sopenharmony_ci  0x57, 0xe7, 0x4b, 0xef, 0xf5, 0x61, 0x73, 0x47, 0xe9, 0xbc, 0x36, 0x31,
801813498266Sopenharmony_ci  0x09, 0xba, 0xf6, 0xc6, 0x68, 0x4f, 0xd1, 0x30, 0xc9, 0xd4, 0xfa, 0x53,
801913498266Sopenharmony_ci  0xbf, 0xa3, 0xbf, 0xcd, 0x83, 0x25, 0x46, 0x2d, 0x92, 0x39, 0x34, 0x2b,
802013498266Sopenharmony_ci  0x95, 0xd8, 0x70, 0x30, 0xa8, 0xa6, 0x90, 0x46, 0x8d, 0x06, 0x55, 0x50,
802113498266Sopenharmony_ci  0xaf, 0x60, 0xa4, 0x76, 0x4a, 0x4d, 0x0e, 0x30, 0x29, 0xa6, 0x53, 0xe6,
802213498266Sopenharmony_ci  0x9c, 0xee, 0xce, 0x47, 0xdc, 0xf1, 0x1e, 0x6e, 0x24, 0x7a, 0xae, 0x62,
802313498266Sopenharmony_ci  0xbc, 0x84, 0xae, 0xc8, 0xae, 0x2b, 0x01, 0x98, 0xf4, 0x3b, 0xc5, 0xce,
802413498266Sopenharmony_ci  0xc5, 0x56, 0x6e, 0x9e, 0xc6, 0x86, 0xae, 0xfb, 0x12, 0x60, 0x17, 0x39,
802513498266Sopenharmony_ci  0x21, 0x76, 0xf4, 0xd7, 0x9f, 0xfa, 0xed, 0x8b, 0x9f, 0x3e, 0x28, 0xf9,
802613498266Sopenharmony_ci  0x9d, 0xf8, 0xc4, 0x91, 0x0e, 0x70, 0xdb, 0x62, 0x72, 0x4c, 0xd0, 0x25,
802713498266Sopenharmony_ci  0x5e, 0x8f, 0xe1, 0x77, 0xfe, 0xed, 0x0a, 0x48, 0x4d, 0x44, 0x24, 0xfc,
802813498266Sopenharmony_ci  0xa0, 0xc6, 0x20, 0xa3, 0x38, 0xa9, 0x46, 0x59, 0x66, 0xff, 0x04, 0xa9,
802913498266Sopenharmony_ci  0x7b, 0x92, 0x9d, 0x39, 0xcd, 0xf1, 0xc7, 0xd9, 0xb8, 0xb2, 0xcf, 0xa0,
803013498266Sopenharmony_ci  0xd8, 0x6f, 0xfe, 0x92, 0x33, 0x83, 0x7f, 0xa3, 0xc3, 0xb8, 0xa8, 0x1c,
803113498266Sopenharmony_ci  0x1e, 0x10, 0xc7, 0xc9, 0xb0, 0xc2, 0xa7, 0xea, 0x78, 0x91, 0x67, 0x1f,
803213498266Sopenharmony_ci  0xe3, 0xaa, 0xc0, 0xe8, 0xa5, 0x68, 0x7f, 0x9e, 0xd4, 0xe7, 0x5f, 0xb7,
803313498266Sopenharmony_ci  0x94, 0xa7, 0x75, 0x14, 0x1d, 0x37, 0x34, 0x2c, 0xce, 0x04, 0xe3, 0xe0,
803413498266Sopenharmony_ci  0xad, 0x29, 0x6d, 0x44, 0xef, 0xa0, 0x0d, 0x60, 0x1c, 0x33, 0xdc, 0xbd,
803513498266Sopenharmony_ci  0x88, 0xdb, 0xea, 0x1b, 0xc9, 0xa9, 0xd5, 0x1c, 0x9a, 0xf7, 0xac, 0x95,
803613498266Sopenharmony_ci  0x1d, 0x2f, 0x8b, 0x1a, 0xad, 0x87, 0x70, 0xac, 0xde, 0x14, 0x75, 0xba,
803713498266Sopenharmony_ci  0x87, 0x7f, 0x23, 0x39, 0x11, 0x91, 0x2b, 0x71, 0x22, 0x17, 0x9e, 0x70,
803813498266Sopenharmony_ci  0x8f, 0xb1, 0x6f, 0x27, 0xc0, 0x11, 0xc8, 0x04, 0x9a, 0x2e, 0xfc, 0xb5,
803913498266Sopenharmony_ci  0x6f, 0xd6, 0xfa, 0x18, 0x25, 0x4a, 0xc7, 0x4c, 0xba, 0xe3, 0x29, 0x46,
804013498266Sopenharmony_ci  0x26, 0xbe, 0xac, 0xdd, 0xdc, 0x39, 0x49, 0xe6, 0xc8, 0x01, 0x39, 0xbc,
804113498266Sopenharmony_ci  0x84, 0xce, 0xa5, 0x18, 0xc3, 0x4c, 0xc4, 0x87, 0x5d, 0x48, 0x47, 0x92,
804213498266Sopenharmony_ci  0xec, 0x58, 0x53, 0x31, 0x7b, 0xc8, 0x05, 0xa8, 0x81, 0x44, 0xb8, 0x53,
804313498266Sopenharmony_ci  0xb0, 0x71, 0x7c, 0xbd, 0x57, 0xde, 0x28, 0x52, 0xe3, 0xd5, 0xe6, 0xf3,
804413498266Sopenharmony_ci  0xea, 0x75, 0xa8, 0x1e, 0xad, 0x76, 0x50, 0x39, 0x47, 0x88, 0x87, 0x47,
804513498266Sopenharmony_ci  0xc2, 0xff, 0xd0, 0x6a, 0x06, 0x9c, 0x3b, 0xed, 0x1e, 0x4e, 0xd2, 0x94,
804613498266Sopenharmony_ci  0x45, 0xd5, 0xd8, 0x6d, 0x64, 0x10, 0x1d, 0xa8, 0x3f, 0xe7, 0xf1, 0xe0,
804713498266Sopenharmony_ci  0x21, 0x7b, 0x73, 0x2c, 0x4d, 0x4d, 0xeb, 0xb8, 0xba, 0x18, 0x45, 0xfb,
804813498266Sopenharmony_ci  0xe4, 0x4e, 0x43, 0x26, 0x18, 0xa4, 0xa5, 0x93, 0x0d, 0x16, 0x51, 0x85,
804913498266Sopenharmony_ci  0x79, 0x30, 0x5b, 0xae, 0x24, 0xba, 0x8b, 0x5b, 0x10, 0x7e, 0x84, 0x3e,
805013498266Sopenharmony_ci  0x7d, 0x94, 0x6b, 0x78, 0x81, 0x7d, 0xbd, 0x9e, 0xfa, 0x91, 0x08, 0x8a,
805113498266Sopenharmony_ci  0x79, 0x91, 0xa9, 0x9d, 0x03, 0x0d, 0x19, 0x18, 0x44, 0x41, 0x46, 0x0d,
805213498266Sopenharmony_ci  0x69, 0x71, 0x04, 0xb7, 0x51, 0x2a, 0x3a, 0x0b, 0x31, 0x24, 0xf4, 0x69,
805313498266Sopenharmony_ci  0xb4, 0x9a, 0xa3, 0x95, 0x8e, 0x0e, 0x88, 0xc1, 0x24, 0x46, 0xfe, 0x1e,
805413498266Sopenharmony_ci  0x1b, 0xa5, 0x98, 0xf7, 0x8b, 0x5b, 0x82, 0xf1, 0xa3, 0xa3, 0xc5, 0x38,
805513498266Sopenharmony_ci  0x39, 0xb1, 0xe5, 0x56, 0x73, 0x34, 0x2e, 0x62, 0x9f, 0xe2, 0xc4, 0x3f,
805613498266Sopenharmony_ci  0x87, 0x6b, 0x6b, 0x88, 0x97, 0xf3, 0xac, 0x18, 0x53, 0xa8, 0xa8, 0xb7,
805713498266Sopenharmony_ci  0xad, 0x27, 0x26, 0xca, 0xab, 0xd7, 0x8b, 0xcc, 0x2a, 0x46, 0xeb, 0x18,
805813498266Sopenharmony_ci  0x50, 0x07, 0x64, 0x98, 0x9f, 0xd5, 0xe7, 0x1b, 0x36, 0x92, 0x49, 0x2d,
805913498266Sopenharmony_ci  0x8e, 0x30, 0x10, 0xb6, 0xdf, 0xb4, 0xcf, 0x1a, 0x79, 0xb4, 0x89, 0x24,
806013498266Sopenharmony_ci  0x7e, 0x5b, 0x54, 0x35, 0x85, 0xbe, 0x8a, 0xce, 0x21, 0x93, 0x80, 0xa1,
806113498266Sopenharmony_ci  0xa4, 0xb3, 0xa2, 0xbc, 0x0a, 0x11, 0x74, 0xed, 0xec, 0x91, 0x90, 0x61,
806213498266Sopenharmony_ci  0x9b, 0x7c, 0xa9, 0x69, 0xb6, 0x93, 0x38, 0x96, 0x26, 0x34, 0x3e, 0xb6,
806313498266Sopenharmony_ci  0x4d, 0xf7, 0x72, 0xab, 0x73, 0x1c, 0xef, 0x50, 0xfc, 0xdc, 0x48, 0xf9,
806413498266Sopenharmony_ci  0x24, 0x7b, 0x6a, 0xf3, 0x78, 0x73, 0xf0, 0x64, 0xbc, 0x01, 0x59, 0xea,
806513498266Sopenharmony_ci  0x92, 0x80, 0x20, 0x7f, 0x3c, 0x14, 0xb2, 0xdc, 0x30, 0x7e, 0xaf, 0x7a,
806613498266Sopenharmony_ci  0x6a, 0xa4, 0x07, 0xf8, 0x0f, 0xa3, 0xd8, 0x56, 0x3c, 0x25, 0xc0, 0xff,
806713498266Sopenharmony_ci  0x8b, 0xe9, 0x85, 0xb0, 0xdd, 0x58, 0xa2, 0x9f, 0xe3, 0xba, 0x68, 0x1c,
806813498266Sopenharmony_ci  0x99, 0x47, 0x0f, 0x06, 0xdb, 0x8d, 0x23, 0x93, 0x5f, 0x25, 0x8b, 0xfa,
806913498266Sopenharmony_ci  0x3c, 0xcc, 0x72, 0xd1, 0xa8, 0x56, 0x59, 0x93, 0x5a, 0x76, 0x86, 0xfe,
807013498266Sopenharmony_ci  0x65, 0x92, 0x43, 0x17, 0x18, 0x45, 0x5f, 0x67, 0x1c, 0x4b, 0x1c, 0x71,
807113498266Sopenharmony_ci  0x5c, 0x04, 0xaa, 0x25, 0x20, 0xee, 0xa5, 0xd3, 0x49, 0x3f, 0xe0, 0x38,
807213498266Sopenharmony_ci  0x61, 0x35, 0x8c, 0xec, 0xfb, 0x18, 0x0f, 0x5f, 0xa5, 0x23, 0x6a, 0x2c,
807313498266Sopenharmony_ci  0x4f, 0x45, 0xa9, 0x45, 0xef, 0x50, 0x84, 0x51, 0xa5, 0x70, 0xb5, 0x27,
807413498266Sopenharmony_ci  0xd9, 0x8c, 0xd4, 0x2f, 0xb1, 0x4a, 0x0e, 0x3c, 0x4b, 0x6f, 0x46, 0x81,
807513498266Sopenharmony_ci  0xb8, 0x64, 0xe1, 0x34, 0x81, 0x40, 0x12, 0xdd, 0x9d, 0x44, 0x6a, 0x59,
807613498266Sopenharmony_ci  0x90, 0x7e, 0x81, 0xce, 0x46, 0x1f, 0x2c, 0xbb, 0x2f, 0x53, 0x8f, 0x83,
807713498266Sopenharmony_ci  0x93, 0xaa, 0x1e, 0x9f, 0x03, 0x93, 0xe5, 0x50, 0x70, 0x78, 0x10, 0x9d,
807813498266Sopenharmony_ci  0x77, 0x70, 0xa2, 0xab, 0x2a, 0xc3, 0x40, 0x3f, 0xbc, 0x4a, 0x40, 0x81,
807913498266Sopenharmony_ci  0xe3, 0xf6, 0x29, 0xe2, 0x03, 0x4e, 0xa4, 0xb9, 0x39, 0x5a, 0xcd, 0xc1,
808013498266Sopenharmony_ci  0xed, 0x94, 0x8f, 0xe1, 0x06, 0xcc, 0xe6, 0x03, 0x33, 0x52, 0x96, 0x51,
808113498266Sopenharmony_ci  0x45, 0x91, 0x2f, 0x28, 0x10, 0x4d, 0x4c, 0xe0, 0x46, 0x65, 0xd4, 0x25,
808213498266Sopenharmony_ci  0x6d, 0x8f, 0xae, 0xb1, 0xc4, 0x7d, 0xd1, 0x0d, 0x35, 0x34, 0x74, 0x5c,
808313498266Sopenharmony_ci  0xa8, 0x30, 0x39, 0x4c, 0xaa, 0x6c, 0x44, 0x92, 0x7a, 0x06, 0x0a, 0x66,
808413498266Sopenharmony_ci  0x4d, 0x32, 0x40, 0x5e, 0x4f, 0x67, 0xa1, 0xad, 0x40, 0xb9, 0xe5, 0xac,
808513498266Sopenharmony_ci  0xa8, 0x51, 0xac, 0xf0, 0xc8, 0x9c, 0xdd, 0x30, 0x86, 0x2e, 0xd4, 0x17,
808613498266Sopenharmony_ci  0xe0, 0x6a, 0x0e, 0x62, 0xce, 0x82, 0xbe, 0xc5, 0x2e, 0xc9, 0xd6, 0x7e,
808713498266Sopenharmony_ci  0x32, 0x88, 0xb6, 0xbb, 0x83, 0xd6, 0x46, 0x12, 0xe4, 0x81, 0xfa, 0x8d,
808813498266Sopenharmony_ci  0xaa, 0x6f, 0x6a, 0x16, 0xa1, 0x40, 0x2b, 0x0c, 0x67, 0xb9, 0xcc, 0x44,
808913498266Sopenharmony_ci  0x5e, 0xa0, 0xec, 0x0c, 0x62, 0x10, 0xd3, 0xcc, 0xbf, 0x1d, 0x67, 0xc8,
809013498266Sopenharmony_ci  0x45, 0x50, 0x13, 0x93, 0x40, 0xad, 0x32, 0x05, 0x51, 0x6b, 0x3c, 0x60,
809113498266Sopenharmony_ci  0x6e, 0x91, 0xb2, 0xce, 0x20, 0x37, 0x68, 0x52, 0xa2, 0xa9, 0xeb, 0x92,
809213498266Sopenharmony_ci  0xc3, 0x3f, 0xd5, 0x1e, 0xdd, 0x66, 0xdf, 0x76, 0xdc, 0xf4, 0xbe, 0x98,
809313498266Sopenharmony_ci  0x7b, 0xac, 0x99, 0x67, 0x22, 0xc9, 0x30, 0xed, 0x35, 0x22, 0xb6, 0x0b,
809413498266Sopenharmony_ci  0x0c, 0x1c, 0x03, 0xca, 0x78, 0x03, 0x16, 0xb8, 0xf6, 0xb0, 0xcd, 0xfe,
809513498266Sopenharmony_ci  0xd5, 0xcc, 0xe1, 0xd6, 0xcd, 0x55, 0x35, 0xae, 0x74, 0xe6, 0x1b, 0xc8,
809613498266Sopenharmony_ci  0x97, 0xd1, 0x73, 0x4d, 0x64, 0x95, 0x4e, 0x26, 0x70, 0x6e, 0x57, 0xbe,
809713498266Sopenharmony_ci  0x70, 0xa5, 0x65, 0x1e, 0x04, 0x90, 0xcb, 0xde, 0xfc, 0x72, 0xbc, 0x22,
809813498266Sopenharmony_ci  0x03, 0x01, 0x21, 0xe1, 0xe3, 0x95, 0xb6, 0xd4, 0x57, 0xa2, 0x12, 0x92,
809913498266Sopenharmony_ci  0x61, 0xba, 0x72, 0x58, 0x47, 0x82, 0x4f, 0x24, 0x73, 0x74, 0x12, 0xb6,
810013498266Sopenharmony_ci  0xb9, 0x07, 0x9a, 0xce, 0xd0, 0x1b, 0xb1, 0xc1, 0xe2, 0xbf, 0x50, 0x3f,
810113498266Sopenharmony_ci  0x1e, 0x1d, 0x5e, 0xe1, 0x7e, 0x83, 0xb7, 0xe3, 0x25, 0x21, 0x5c, 0x26,
810213498266Sopenharmony_ci  0xd8, 0x9c, 0x9a, 0xcf, 0x40, 0x62, 0x02, 0x21, 0x82, 0x2e, 0x25, 0xe7,
810313498266Sopenharmony_ci  0x28, 0xa1, 0x87, 0x43, 0x23, 0xe6, 0xd1, 0xee, 0xf3, 0x72, 0xe2, 0x32,
810413498266Sopenharmony_ci  0x94, 0xc0, 0xad, 0x68, 0xb4, 0x7f, 0xba, 0xa2, 0x55, 0xd5, 0x1f, 0xb1,
810513498266Sopenharmony_ci  0x5e, 0x3f, 0x20, 0x21, 0x90, 0x2f, 0x68, 0x1a, 0xe3, 0x64, 0x9a, 0x9c,
810613498266Sopenharmony_ci  0xe1, 0xf7, 0xd9, 0x59, 0x5e, 0x70, 0xba, 0x55, 0x9b, 0xc2, 0x0b, 0xb8,
810713498266Sopenharmony_ci  0x1f, 0xc9, 0xf5, 0xc2, 0x46, 0xfe, 0x2a, 0x5a, 0x67, 0xab, 0x11, 0x0e,
810813498266Sopenharmony_ci  0xe8, 0x08, 0xa6, 0x73, 0x72, 0xf2, 0x62, 0x63, 0x09, 0x51, 0x98, 0x45,
810913498266Sopenharmony_ci  0xbc, 0x09, 0x51, 0x44, 0xd1, 0x33, 0x56, 0x0c, 0xdb, 0xae, 0x71, 0x51,
811013498266Sopenharmony_ci  0x93, 0x94, 0x1b, 0x80, 0x7e, 0xc7, 0x8d, 0xae, 0x4a, 0x46, 0xbc, 0x3f,
811113498266Sopenharmony_ci  0x31, 0x2d, 0x32, 0xfb, 0xff, 0xcd, 0xf0, 0x26, 0x5e, 0xd0, 0x75, 0x37,
811213498266Sopenharmony_ci  0x29, 0x91, 0x5a, 0x41, 0x21, 0xe1, 0x4c, 0x3d, 0x4f, 0xfb, 0x7c, 0x23,
811313498266Sopenharmony_ci  0xc1, 0x2e, 0x2d, 0x40, 0xb1, 0xa8, 0x1b, 0x37, 0xd0, 0x65, 0x15, 0x57,
811413498266Sopenharmony_ci  0xd9, 0xd9, 0xc5, 0x03, 0x10, 0x8d, 0x59, 0x4a, 0x2d, 0xb7, 0x7f, 0xde,
811513498266Sopenharmony_ci  0xd3, 0x5f, 0x77, 0x7e, 0xde, 0x2b, 0xd3, 0x33, 0x20, 0x93, 0x9f, 0xf7,
811613498266Sopenharmony_ci  0x70, 0x7d, 0x81, 0x4d, 0xfc, 0xfa, 0xeb, 0xaf, 0x1d, 0x1a, 0x02, 0x9c,
811713498266Sopenharmony_ci  0xcb, 0xe8, 0xe0, 0xc7, 0x93, 0xe8, 0x87, 0x07, 0x94, 0x58, 0x42, 0xe9,
811813498266Sopenharmony_ci  0x6e, 0xed, 0xab, 0x4a, 0x72, 0x53, 0x54, 0xa2, 0xf2, 0xd6, 0x47, 0xfc,
811913498266Sopenharmony_ci  0x13, 0xd4, 0xb7, 0x91, 0xd1, 0xd9, 0x7a, 0x22, 0x31, 0x6d, 0x9a, 0x4a,
812013498266Sopenharmony_ci  0x42, 0x54, 0x0d, 0xb7, 0x0f, 0xdd, 0x2a, 0xc9, 0xf4, 0xac, 0x00, 0x22,
812113498266Sopenharmony_ci  0x3c, 0x9f, 0xf9, 0x7e, 0xa4, 0x9c, 0x69, 0x8b, 0x54, 0xc2, 0x45, 0x7d,
812213498266Sopenharmony_ci  0x46, 0xb7, 0x54, 0x6b, 0x50, 0x72, 0xf5, 0x04, 0x07, 0xc3, 0xb3, 0x5f,
812313498266Sopenharmony_ci  0x32, 0x14, 0x91, 0x3b, 0xc9, 0x24, 0x7e, 0x96, 0x82, 0x1a, 0x98, 0xcc,
812413498266Sopenharmony_ci  0xcf, 0xf1, 0xd4, 0x42, 0xa7, 0x01, 0xcd, 0x07, 0x8d, 0x40, 0x55, 0xb1,
812513498266Sopenharmony_ci  0x28, 0xd1, 0xa0, 0x3a, 0x02, 0x5d, 0x55, 0x12, 0x8d, 0xd6, 0xb9, 0x9b,
812613498266Sopenharmony_ci  0x18, 0x63, 0xc0, 0x36, 0x78, 0xd4, 0xb5, 0xed, 0x5c, 0x02, 0x94, 0xdb,
812713498266Sopenharmony_ci  0xcd, 0xcd, 0xb2, 0xba, 0xd6, 0xb0, 0x79, 0x0e, 0xa7, 0x1d, 0xd3, 0x60,
812813498266Sopenharmony_ci  0x82, 0xf3, 0x90, 0xdd, 0xbb, 0xe1, 0x44, 0x4c, 0xec, 0x1f, 0x6e, 0x46,
812913498266Sopenharmony_ci  0xfb, 0x4a, 0x64, 0x4d, 0x66, 0x88, 0x52, 0xea, 0x68, 0x5a, 0x2c, 0xc6,
813013498266Sopenharmony_ci  0xd1, 0xba, 0x34, 0xde, 0x1e, 0xbe, 0xf6, 0xa9, 0x01, 0xd6, 0x32, 0xe2,
813113498266Sopenharmony_ci  0xd0, 0x2d, 0xb0, 0x74, 0xfc, 0xa2, 0x5d, 0x19, 0x42, 0xe5, 0xfc, 0xc7,
813213498266Sopenharmony_ci  0xa5, 0x0a, 0x55, 0x43, 0x85, 0x0a, 0x89, 0xf9, 0xab, 0xf2, 0x77, 0xd3,
813313498266Sopenharmony_ci  0x79, 0x0f, 0x7e, 0xdd, 0x4b, 0x66, 0xbf, 0xef, 0x2d, 0xaa, 0x38, 0x85,
813413498266Sopenharmony_ci  0x9e, 0xe2, 0x9d, 0xbd, 0xb4, 0xea, 0x29, 0xe3, 0xef, 0x7d, 0x48, 0xaf,
813513498266Sopenharmony_ci  0xf6, 0x38, 0xe0, 0xae, 0xb7, 0x22, 0xfb, 0x77, 0xb8, 0xbd, 0xbd, 0xcd,
813613498266Sopenharmony_ci  0x5c, 0xd9, 0xf1, 0xf1, 0xc3, 0xa6, 0xba, 0x45, 0x2f, 0xdc, 0x44, 0x72,
813713498266Sopenharmony_ci  0x44, 0xd1, 0x8f, 0xfc, 0x3f, 0xdf, 0x72, 0x17, 0x4d, 0xea, 0x37, 0xce,
813813498266Sopenharmony_ci  0x85, 0x80, 0x6c, 0x46, 0x4c, 0x1c, 0x13, 0x28, 0xad, 0x2c, 0x85, 0x4f,
813913498266Sopenharmony_ci  0x6a, 0xe4, 0x35, 0x4b, 0x0c, 0x2d, 0x35, 0x61, 0x41, 0x4e, 0x50, 0xda,
814013498266Sopenharmony_ci  0xc9, 0x76, 0x73, 0x18, 0x01, 0xd6, 0x6f, 0xa5, 0x2f, 0x22, 0xf3, 0x84,
814113498266Sopenharmony_ci  0x31, 0xe2, 0x3d, 0x52, 0x72, 0x28, 0x34, 0x28, 0xf1, 0x17, 0x59, 0xb1,
814213498266Sopenharmony_ci  0xa8, 0xa6, 0x57, 0x1c, 0xb3, 0xcb, 0x6d, 0x23, 0x8d, 0xfa, 0x6a, 0x72,
814313498266Sopenharmony_ci  0x45, 0x12, 0xa7, 0x4d, 0x9c, 0xea, 0x10, 0x8d, 0xd7, 0x31, 0x3b, 0x8c,
814413498266Sopenharmony_ci  0xac, 0x86, 0x2c, 0x95, 0xd1, 0x85, 0xda, 0x1e, 0x1d, 0x0b, 0x6e, 0x14,
814513498266Sopenharmony_ci  0x40, 0x6d, 0x04, 0xb4, 0x8d, 0x3b, 0x94, 0x3e, 0x78, 0x83, 0xef, 0x5c,
814613498266Sopenharmony_ci  0xf6, 0x58, 0xd0, 0xf9, 0xda, 0x9b, 0x27, 0x55, 0x85, 0x01, 0x67, 0xa6,
814713498266Sopenharmony_ci  0xa3, 0xdb, 0x08, 0x1f, 0xf4, 0xa6, 0x4b, 0x63, 0xa3, 0x24, 0xe6, 0x78,
814813498266Sopenharmony_ci  0xaf, 0x36, 0x9d, 0x9d, 0xbe, 0x3a, 0x09, 0x91, 0x19, 0x52, 0xc7, 0xd3,
814913498266Sopenharmony_ci  0x03, 0xe0, 0x2b, 0x18, 0x30, 0x6d, 0x4e, 0xb6, 0xc6, 0x8c, 0xa9, 0x68,
815013498266Sopenharmony_ci  0xe7, 0x49, 0x82, 0xd5, 0x15, 0x08, 0x14, 0x33, 0x92, 0x35, 0x80, 0x0e,
815113498266Sopenharmony_ci  0x50, 0x03, 0x26, 0xc3, 0x4f, 0x8a, 0x27, 0xe0, 0x5b, 0xc7, 0x9b, 0x4b,
815213498266Sopenharmony_ci  0x5d, 0x59, 0x4f, 0x2a, 0xf4, 0x88, 0x5c, 0xec, 0xe9, 0x81, 0x67, 0x14,
815313498266Sopenharmony_ci  0xc2, 0xee, 0x0d, 0x8f, 0x20, 0xbd, 0x50, 0x72, 0x4e, 0xe8, 0x6a, 0xa5,
815413498266Sopenharmony_ci  0xd0, 0x44, 0x8d, 0x2b, 0xea, 0x4b, 0xee, 0xf1, 0xa5, 0x4d, 0x55, 0x6a,
815513498266Sopenharmony_ci  0x4b, 0x40, 0x2e, 0x89, 0xd7, 0x92, 0x2a, 0x44, 0x79, 0x80, 0x6c, 0xe6,
815613498266Sopenharmony_ci  0x94, 0x39, 0xc9, 0x2c, 0xd6, 0xe0, 0xd9, 0xcb, 0x1c, 0x98, 0x0f, 0x8c,
815713498266Sopenharmony_ci  0x38, 0xc0, 0x8a, 0x6d, 0x53, 0x14, 0x34, 0x47, 0x3a, 0x2f, 0x4f, 0x2b,
815813498266Sopenharmony_ci  0x37, 0xc1, 0x77, 0x34, 0x14, 0x8c, 0xf9, 0xd2, 0x48, 0x73, 0x91, 0x64,
815913498266Sopenharmony_ci  0x5e, 0xb5, 0xe5, 0xfb, 0xcb, 0x62, 0x3a, 0x81, 0x8f, 0x23, 0x4d, 0xee,
816013498266Sopenharmony_ci  0xb1, 0xd9, 0x3d, 0x38, 0xc7, 0xef, 0xf2, 0x05, 0xc6, 0x13, 0xb9, 0x89,
816113498266Sopenharmony_ci  0x3f, 0x0f, 0x29, 0xf1, 0x87, 0xc4, 0x42, 0xec, 0xb4, 0x7d, 0xa5, 0xd8,
816213498266Sopenharmony_ci  0x21, 0xa0, 0x9b, 0xcb, 0x1d, 0xc0, 0x09, 0xfa, 0xce, 0x72, 0x34, 0x7a,
816313498266Sopenharmony_ci  0xb2, 0x5c, 0xc6, 0xd9, 0xec, 0x11, 0xe7, 0xcf, 0x4e, 0xb3, 0x66, 0xee,
816413498266Sopenharmony_ci  0x70, 0xc3, 0xc7, 0x8e, 0x7d, 0x91, 0x21, 0x9b, 0x76, 0xcb, 0x89, 0x20,
816513498266Sopenharmony_ci  0x54, 0x3a, 0x59, 0x7a, 0x68, 0x0c, 0x01, 0xde, 0x4c, 0x3e, 0x43, 0x01,
816613498266Sopenharmony_ci  0xad, 0x7d, 0xae, 0x39, 0x7d, 0xc1, 0x17, 0xd1, 0x4c, 0xd3, 0xab, 0x5e,
816713498266Sopenharmony_ci  0x06, 0x76, 0x4c, 0xab, 0x9d, 0xb1, 0x11, 0xd0, 0x4c, 0x49, 0x16, 0xde,
816813498266Sopenharmony_ci  0x51, 0x42, 0x66, 0x38, 0x62, 0xf6, 0x1f, 0xf0, 0x03, 0xcc, 0x15, 0x42,
816913498266Sopenharmony_ci  0x8d, 0xdc, 0x61, 0xf8, 0x4f, 0x06, 0x3b, 0x4d, 0x7e, 0xcf, 0xaf, 0xb3,
817013498266Sopenharmony_ci  0x75, 0xed, 0xeb, 0x15, 0xce, 0xa3, 0xcd, 0x4c, 0xc6, 0xf7, 0x51, 0xdb,
817113498266Sopenharmony_ci  0x4d, 0x44, 0x34, 0xb7, 0xe7, 0xcd, 0xa3, 0x78, 0xb4, 0xa8, 0xd1, 0xf1,
817213498266Sopenharmony_ci  0x63, 0xf8, 0x01, 0xb6, 0xb4, 0xa1, 0x0e, 0x89, 0x62, 0x24, 0xae, 0xa3,
817313498266Sopenharmony_ci  0xd9, 0x0e, 0xd8, 0x46, 0xa7, 0x5d, 0xca, 0xaa, 0x6e, 0x73, 0x0b, 0xe7,
817413498266Sopenharmony_ci  0xfb, 0xf5, 0x6a, 0xc3, 0xa8, 0x91, 0xd0, 0xca, 0xf1, 0xe1, 0xeb, 0x88,
817513498266Sopenharmony_ci  0x7d, 0xba, 0x28, 0xfa, 0x4b, 0x00, 0x8d, 0x46, 0x50, 0x33, 0x01, 0x3a,
817613498266Sopenharmony_ci  0x61, 0x09, 0xf6, 0x02, 0x77, 0xd2, 0x7f, 0x68, 0x68, 0xec, 0x73, 0x40,
817713498266Sopenharmony_ci  0x9f, 0x4c, 0x55, 0xb4, 0xaf, 0xa4, 0xfa, 0x6a, 0x9e, 0x8d, 0xa8, 0xe1,
817813498266Sopenharmony_ci  0x45, 0xd5, 0x88, 0x72, 0x30, 0xc6, 0x29, 0x34, 0xf8, 0x71, 0x60, 0xb8,
817913498266Sopenharmony_ci  0xd3, 0xa6, 0x47, 0x15, 0xec, 0x3b, 0x47, 0x55, 0xfc, 0x2c, 0xcf, 0x7e,
818013498266Sopenharmony_ci  0x17, 0x5a, 0x0e, 0xe6, 0xca, 0x20, 0x43, 0x1e, 0x47, 0x6b, 0x4f, 0xdf,
818113498266Sopenharmony_ci  0xbd, 0x7d, 0xf5, 0xfe, 0xe9, 0xc1, 0xfb, 0x6f, 0xdf, 0xbd, 0x79, 0xf6,
818213498266Sopenharmony_ci  0xea, 0x70, 0xad, 0xad, 0x34, 0x68, 0x62, 0x0f, 0x5e, 0x72, 0x1a, 0xc2,
818313498266Sopenharmony_ci  0x89, 0xe7, 0x15, 0x33, 0xb5, 0x50, 0xe2, 0x17, 0xdd, 0xdf, 0x9e, 0x3c,
818413498266Sopenharmony_ci  0xb5, 0xe3, 0x54, 0x21, 0x5b, 0x28, 0x87, 0x9b, 0xb3, 0xb1, 0x9c, 0xbc,
818513498266Sopenharmony_ci  0xa3, 0xf4, 0x1b, 0x49, 0x73, 0xb2, 0x43, 0xb0, 0x9e, 0x68, 0xff, 0x1b,
818613498266Sopenharmony_ci  0x34, 0x98, 0x90, 0xde, 0xbb, 0x95, 0x47, 0x01, 0x89, 0x9d, 0x50, 0x50,
818713498266Sopenharmony_ci  0xa2, 0xbc, 0x14, 0x4e, 0xe1, 0xf8, 0x9e, 0x58, 0x89, 0x5c, 0xd4, 0x05,
818813498266Sopenharmony_ci  0xfa, 0xe8, 0x79, 0xc9, 0x31, 0x68, 0xb3, 0x92, 0x94, 0x78, 0x1c, 0x08,
818913498266Sopenharmony_ci  0x8d, 0xa4, 0x0a, 0xd9, 0x71, 0x65, 0xd1, 0xb0, 0x0d, 0x3c, 0x61, 0x32,
819013498266Sopenharmony_ci  0xd8, 0x51, 0x59, 0xaf, 0xf5, 0x35, 0x79, 0x4c, 0xf1, 0x10, 0x50, 0x9e,
819113498266Sopenharmony_ci  0xb4, 0x71, 0xa1, 0x49, 0x15, 0xd8, 0xa8, 0x41, 0xfa, 0x11, 0x1d, 0x30,
819213498266Sopenharmony_ci  0x85, 0x79, 0xe9, 0xe9, 0xa2, 0x24, 0x09, 0xe1, 0x47, 0xe0, 0xba, 0xc8,
819313498266Sopenharmony_ci  0x5a, 0x9e, 0x59, 0xfe, 0xcf, 0x0f, 0x11, 0xce, 0x40, 0x31, 0x1d, 0xa7,
819413498266Sopenharmony_ci  0xa5, 0x47, 0x1f, 0xe8, 0x9c, 0xa5, 0x58, 0x8e, 0xe3, 0x83, 0xd3, 0x17,
819513498266Sopenharmony_ci  0xde, 0x62, 0xac, 0x67, 0x47, 0x0c, 0x14, 0x32, 0x4b, 0x46, 0xf0, 0x1b,
819613498266Sopenharmony_ci  0xf2, 0xba, 0x0d, 0x37, 0x11, 0x80, 0xc9, 0x98, 0xb8, 0x0f, 0xd0, 0xfd,
819713498266Sopenharmony_ci  0x09, 0x5b, 0xde, 0x38, 0x0a, 0x1a, 0xcd, 0x6b, 0x7d, 0xff, 0xec, 0xe5,
819813498266Sopenharmony_ci  0x1a, 0x13, 0x21, 0x9b, 0x44, 0x54, 0x62, 0xc2, 0x41, 0x71, 0x31, 0x91,
819913498266Sopenharmony_ci  0x46, 0x2e, 0x93, 0x92, 0x82, 0xe4, 0x61, 0xa3, 0xb3, 0x61, 0x36, 0xcd,
820013498266Sopenharmony_ci  0x6a, 0x0e, 0x14, 0x69, 0xf3, 0x74, 0x5a, 0x39, 0xbc, 0x24, 0xd2, 0xfc,
820113498266Sopenharmony_ci  0x2c, 0xcb, 0x51, 0x48, 0xc6, 0xeb, 0x2e, 0xab, 0x5d, 0x5f, 0x07, 0x67,
820213498266Sopenharmony_ci  0xdc, 0x0d, 0xd4, 0xcc, 0xee, 0x76, 0xdc, 0x36, 0x6a, 0x53, 0xd0, 0x0d,
820313498266Sopenharmony_ci  0xfa, 0x77, 0x6a, 0xbd, 0x44, 0x2c, 0x63, 0x77, 0xf9, 0x80, 0xd9, 0x2c,
820413498266Sopenharmony_ci  0xbe, 0xda, 0x29, 0x8e, 0xae, 0xf2, 0xd6, 0xf6, 0xfb, 0xf4, 0x0a, 0xc8,
820513498266Sopenharmony_ci  0x3b, 0xcb, 0x03, 0x37, 0xbf, 0x1a, 0xdb, 0x44, 0xe6, 0x94, 0x20, 0x1d,
820613498266Sopenharmony_ci  0x34, 0x02, 0xa8, 0x54, 0x07, 0x24, 0xd7, 0x56, 0x4d, 0xa8, 0x09, 0x0d,
820713498266Sopenharmony_ci  0x9c, 0xc0, 0x56, 0xe0, 0x36, 0x76, 0xb9, 0x1e, 0x75, 0xe6, 0xef, 0xa0,
820813498266Sopenharmony_ci  0x9e, 0x31, 0xd9, 0xbc, 0xd3, 0x26, 0x03, 0x69, 0x2e, 0xbd, 0x79, 0x36,
820913498266Sopenharmony_ci  0x33, 0xb7, 0x65, 0xab, 0xb9, 0xc7, 0x94, 0x66, 0x4d, 0xc1, 0x34, 0xf6,
821013498266Sopenharmony_ci  0xee, 0x7d, 0x3c, 0x78, 0xb4, 0x45, 0x97, 0xef, 0xd2, 0xc6, 0x71, 0x5f,
821113498266Sopenharmony_ci  0xdb, 0xf7, 0x17, 0xed, 0x73, 0x60, 0xa3, 0xfd, 0xad, 0xfd, 0xab, 0xb1,
821213498266Sopenharmony_ci  0xcc, 0x30, 0x67, 0x21, 0xb3, 0xa1, 0x27, 0xd3, 0xb3, 0x19, 0x51, 0x2e,
821313498266Sopenharmony_ci  0x08, 0x99, 0xc1, 0x9a, 0xc8, 0x4c, 0x70, 0x88, 0xcb, 0x02, 0xb6, 0xb8,
821413498266Sopenharmony_ci  0xb1, 0x93, 0xd1, 0x3a, 0x6d, 0x80, 0x30, 0xc7, 0xf6, 0xd9, 0x75, 0x96,
821513498266Sopenharmony_ci  0x64, 0xa3, 0x43, 0x75, 0x93, 0x9b, 0xab, 0xe9, 0x0a, 0xfb, 0xa3, 0x54,
821613498266Sopenharmony_ci  0x37, 0xe9, 0xfc, 0xe9, 0x01, 0x99, 0x55, 0x6e, 0x61, 0xd8, 0xef, 0xbe,
821713498266Sopenharmony_ci  0xac, 0x1b, 0x97, 0x33, 0x3d, 0xb4, 0x0f, 0x6c, 0xe9, 0xd3, 0xef, 0x66,
821813498266Sopenharmony_ci  0x87, 0xb9, 0xf9, 0xd7, 0x95, 0x1c, 0x93, 0xc6, 0x1d, 0xfd, 0x5a, 0x2f,
821913498266Sopenharmony_ci  0x63, 0x1c, 0x84, 0xc9, 0x99, 0x36, 0x4b, 0x3d, 0xbc, 0xd2, 0x78, 0x93,
822013498266Sopenharmony_ci  0x90, 0x70, 0x0b, 0xa7, 0x93, 0xc3, 0x12, 0xf6, 0x7a, 0xd1, 0x7a, 0x3a,
822113498266Sopenharmony_ci  0x38, 0x83, 0xf6, 0x7a, 0xd8, 0xce, 0xf6, 0x1e, 0xfe, 0xdc, 0xa1, 0x9f,
822213498266Sopenharmony_ci  0xbb, 0xbd, 0x0d, 0x0e, 0x54, 0x69, 0x10, 0x06, 0x5e, 0xe4, 0xad, 0xe6,
822313498266Sopenharmony_ci  0xda, 0xd7, 0x3a, 0xdf, 0x5a, 0x59, 0x17, 0x37, 0x54, 0xb9, 0x96, 0x67,
822413498266Sopenharmony_ci  0xe3, 0xeb, 0x64, 0xba, 0x0c, 0x33, 0xf6, 0x5f, 0x5d, 0xa4, 0xec, 0x40,
822513498266Sopenharmony_ci  0x83, 0x99, 0x61, 0xce, 0x4b, 0x3a, 0x16, 0x57, 0x32, 0x31, 0x9f, 0xf7,
822613498266Sopenharmony_ci  0x65, 0x7a, 0x8e, 0x19, 0xe5, 0x8b, 0x9a, 0xcf, 0x08, 0x9c, 0xac, 0x76,
822713498266Sopenharmony_ci  0x73, 0x2c, 0xa9, 0x4a, 0x18, 0x83, 0xf4, 0x3d, 0x50, 0xab, 0xbb, 0xdd,
822813498266Sopenharmony_ci  0x45, 0x0e, 0x09, 0x9b, 0x16, 0x97, 0xfa, 0x4c, 0x2c, 0x70, 0x4f, 0x41,
822913498266Sopenharmony_ci  0x01, 0xb7, 0x60, 0x3f, 0x1b, 0x3e, 0xe6, 0x62, 0xde, 0xcc, 0x50, 0xe5,
823013498266Sopenharmony_ci  0xa4, 0xc4, 0x51, 0x14, 0x4f, 0xb3, 0x11, 0xda, 0xd3, 0xa7, 0xb4, 0x6f,
823113498266Sopenharmony_ci  0x49, 0x87, 0x9e, 0x61, 0x68, 0x55, 0xf2, 0xd3, 0xcd, 0xdf, 0x9c, 0x9e,
823213498266Sopenharmony_ci  0xc8, 0x82, 0x57, 0xc5, 0x88, 0x38, 0x6d, 0xa9, 0xeb, 0x7a, 0x07, 0x9e,
823313498266Sopenharmony_ci  0x32, 0x6d, 0x23, 0xe4, 0xc8, 0x64, 0x8d, 0xa3, 0x59, 0x6c, 0xac, 0x9d,
823413498266Sopenharmony_ci  0x67, 0x98, 0x9e, 0xfe, 0x5c, 0x67, 0x98, 0x3a, 0xdf, 0x24, 0x9b, 0xe8,
823513498266Sopenharmony_ci  0xa6, 0x3d, 0x1d, 0xb7, 0x91, 0xbf, 0xaf, 0x3b, 0xc8, 0xf0, 0x48, 0x8c,
823613498266Sopenharmony_ci  0x11, 0x08, 0x8b, 0xea, 0x06, 0xe7, 0xd8, 0xb9, 0xb3, 0xf8, 0x1d, 0x0d,
823713498266Sopenharmony_ci  0x35, 0x93, 0x90, 0x73, 0x77, 0x93, 0xda, 0x27, 0xe5, 0xca, 0x21, 0xde,
823813498266Sopenharmony_ci  0xa7, 0xce, 0xe9, 0x3f, 0xe1, 0x86, 0xde, 0x8a, 0x1b, 0x6d, 0x3d, 0xf9,
823913498266Sopenharmony_ci  0x90, 0x0c, 0xa2, 0xa3, 0xa7, 0x27, 0xc7, 0xd8, 0xc5, 0x1c, 0xc3, 0xec,
824013498266Sopenharmony_ci  0x37, 0x50, 0x4e, 0x6c, 0x35, 0x07, 0x8a, 0x50, 0x4a, 0x79, 0x97, 0xc1,
824113498266Sopenharmony_ci  0xfd, 0x6b, 0xd1, 0x82, 0x86, 0x42, 0xa9, 0xd8, 0xd9, 0x08, 0x90, 0xa7,
824213498266Sopenharmony_ci  0x08, 0x7d, 0xd8, 0xbc, 0x6c, 0xcc, 0xec, 0xc0, 0xeb, 0x68, 0x0e, 0xeb,
824313498266Sopenharmony_ci  0x3f, 0xde, 0x30, 0x51, 0xb6, 0x7d, 0xa5, 0x57, 0x13, 0x76, 0x5b, 0x2d,
824413498266Sopenharmony_ci  0xce, 0xd0, 0x98, 0x52, 0xa9, 0x21, 0xdf, 0x74, 0x30, 0x72, 0xd2, 0x5e,
824513498266Sopenharmony_ci  0x4d, 0x0a, 0x93, 0x4c, 0xdb, 0x78, 0xc7, 0xcb, 0x94, 0xf0, 0x40, 0x48,
824613498266Sopenharmony_ci  0x2e, 0xcb, 0x0b, 0xdb, 0x2a, 0x46, 0xa7, 0x11, 0xb8, 0x5a, 0x46, 0x91,
824713498266Sopenharmony_ci  0x88, 0x9c, 0x0c, 0x1a, 0x90, 0x9e, 0x78, 0x53, 0xd4, 0x02, 0x14, 0xf6,
824813498266Sopenharmony_ci  0x21, 0x71, 0x8c, 0x6c, 0xc6, 0x11, 0xb1, 0xa5, 0x9c, 0x4c, 0x0e, 0xb7,
824913498266Sopenharmony_ci  0x42, 0x7d, 0x36, 0x45, 0x79, 0x3e, 0x35, 0x50, 0x4a, 0xc2, 0x05, 0x68,
825013498266Sopenharmony_ci  0xb9, 0x58, 0xa9, 0x6e, 0xef, 0x25, 0x8b, 0xec, 0xd5, 0x72, 0x55, 0xd6,
825113498266Sopenharmony_ci  0x52, 0x96, 0x0b, 0x82, 0x45, 0xda, 0x2c, 0xcd, 0x1e, 0x67, 0xab, 0xce,
825213498266Sopenharmony_ci  0x4d, 0x35, 0x05, 0xb5, 0x92, 0x7c, 0x24, 0x6c, 0x38, 0xa4, 0xcd, 0xda,
825313498266Sopenharmony_ci  0xd6, 0x57, 0x3e, 0x5d, 0xce, 0xc0, 0x56, 0xb4, 0x1a, 0x65, 0xc0, 0xef,
825413498266Sopenharmony_ci  0xc6, 0xf3, 0xc5, 0xf0, 0x43, 0x7a, 0xe5, 0x1d, 0x22, 0xd0, 0xbb, 0xd2,
825513498266Sopenharmony_ci  0x68, 0x1f, 0x7f, 0x86, 0x6f, 0x44, 0x39, 0x4a, 0xa2, 0x57, 0x51, 0xee,
825613498266Sopenharmony_ci  0x06, 0xbd, 0x52, 0x9f, 0x3b, 0x57, 0x17, 0xfb, 0x21, 0x1b, 0xb7, 0x63,
825713498266Sopenharmony_ci  0x80, 0xa3, 0x60, 0xc4, 0x00, 0x5e, 0x3a, 0xfd, 0xe8, 0x19, 0xc2, 0x09,
825813498266Sopenharmony_ci  0x1e, 0xbe, 0xf9, 0x8e, 0xf6, 0xea, 0x78, 0x7b, 0x87, 0xe2, 0xbf, 0x8c,
825913498266Sopenharmony_ci  0xce, 0x36, 0xa6, 0x1e, 0xc2, 0x96, 0x7e, 0x65, 0x8b, 0x34, 0x06, 0xce,
826013498266Sopenharmony_ci  0xbe, 0xab, 0x34, 0x3b, 0xd7, 0x55, 0xcb, 0x12, 0x56, 0xcd, 0xd4, 0xd0,
826113498266Sopenharmony_ci  0x49, 0xdd, 0xb6, 0x9a, 0x33, 0x21, 0x47, 0x14, 0x63, 0xea, 0x49, 0xfc,
826213498266Sopenharmony_ci  0xe2, 0x19, 0xb7, 0x82, 0x24, 0x09, 0x6b, 0x30, 0x58, 0x12, 0xc0, 0xe3,
826313498266Sopenharmony_ci  0xc3, 0xbe, 0x7f, 0x2f, 0xd0, 0xad, 0x40, 0x5a, 0xdd, 0x87, 0x51, 0xb5,
826413498266Sopenharmony_ci  0xbd, 0xbd, 0x17, 0xbd, 0x7b, 0xfb, 0x92, 0x25, 0x70, 0x9c, 0x6b, 0xcb,
826513498266Sopenharmony_ci  0x2c, 0x8b, 0x33, 0x08, 0x71, 0x01, 0x77, 0x5f, 0x56, 0xb3, 0xa1, 0xdf,
826613498266Sopenharmony_ci  0x11, 0x17, 0x37, 0xbd, 0xa3, 0x7c, 0x20, 0xb3, 0xa2, 0xbb, 0x6d, 0x25,
826713498266Sopenharmony_ci  0xaa, 0x3b, 0xec, 0xcb, 0xbb, 0xf8, 0x2f, 0x10, 0x9e, 0x78, 0x48, 0xe1,
826813498266Sopenharmony_ci  0xb7, 0xb8, 0x39, 0x73, 0xfb, 0x64, 0xb4, 0xef, 0x10, 0xd0, 0xcf, 0xc6,
826913498266Sopenharmony_ci  0x56, 0xfa, 0xeb, 0x4d, 0x08, 0x33, 0x2c, 0xad, 0xf9, 0x64, 0x19, 0xf0,
827013498266Sopenharmony_ci  0x75, 0x92, 0x1d, 0xcf, 0xe6, 0xdb, 0xd1, 0x54, 0xe9, 0xc4, 0x0a, 0xb2,
827113498266Sopenharmony_ci  0x25, 0x82, 0x60, 0x12, 0x38, 0x4c, 0x6e, 0x44, 0xf9, 0x98, 0xb1, 0x0e,
827213498266Sopenharmony_ci  0x29, 0xef, 0xd2, 0x8b, 0x45, 0x28, 0xa6, 0x9e, 0x10, 0xd6, 0x30, 0xa6,
827313498266Sopenharmony_ci  0x7c, 0xff, 0xf4, 0xe4, 0x4f, 0x40, 0xf2, 0x2c, 0x79, 0x11, 0x3a, 0x87,
827413498266Sopenharmony_ci  0x44, 0xda, 0x31, 0x09, 0xb6, 0x89, 0xde, 0x68, 0xa0, 0x9c, 0xd6, 0x6e,
827513498266Sopenharmony_ci  0x85, 0x36, 0x7c, 0x95, 0xdf, 0xa4, 0x28, 0x70, 0x1a, 0x1b, 0xab, 0x18,
827613498266Sopenharmony_ci  0xc6, 0xc1, 0x1b, 0xce, 0x45, 0x05, 0x22, 0x32, 0x76, 0x68, 0x4d, 0x63,
827713498266Sopenharmony_ci  0xd4, 0x35, 0x53, 0x57, 0x2f, 0xdc, 0x6a, 0xa5, 0xc2, 0xe4, 0xc9, 0xf1,
827813498266Sopenharmony_ci  0xc2, 0xdc, 0x0c, 0x4f, 0x4d, 0xa1, 0x5c, 0x8d, 0xa8, 0xed, 0x10, 0xd6,
827913498266Sopenharmony_ci  0xa8, 0x5d, 0xc1, 0x83, 0x4b, 0x02, 0x36, 0x2d, 0x76, 0x10, 0x06, 0xee,
828013498266Sopenharmony_ci  0x85, 0x79, 0x99, 0x5d, 0xe0, 0x63, 0x4a, 0x33, 0x36, 0xce, 0xa1, 0xa9,
828113498266Sopenharmony_ci  0x23, 0x16, 0x39, 0xfe, 0x9b, 0xb3, 0x43, 0x1a, 0xe9, 0xae, 0xf3, 0x48,
828213498266Sopenharmony_ci  0x1a, 0xca, 0xa3, 0x70, 0x19, 0x09, 0xde, 0x22, 0x89, 0x1a, 0xd4, 0x2a,
828313498266Sopenharmony_ci  0x45, 0xe6, 0x9c, 0x06, 0xc2, 0xab, 0x78, 0xde, 0x2e, 0x55, 0x7e, 0x1d,
828413498266Sopenharmony_ci  0x11, 0x90, 0x8e, 0x09, 0xe2, 0x75, 0x10, 0xf0, 0x38, 0x5a, 0x9a, 0x36,
828513498266Sopenharmony_ci  0x5a, 0x70, 0xfc, 0x42, 0xe6, 0x3a, 0x13, 0x9d, 0x18, 0x91, 0x24, 0x8f,
828613498266Sopenharmony_ci  0x46, 0xa0, 0xde, 0x2f, 0xf0, 0x0b, 0x19, 0xc4, 0x38, 0x7f, 0xce, 0x89,
828713498266Sopenharmony_ci  0x26, 0x11, 0x76, 0x48, 0xa9, 0x35, 0xed, 0xe6, 0xcc, 0x16, 0x8e, 0xd3,
828813498266Sopenharmony_ci  0x69, 0x36, 0xcb, 0x30, 0xe0, 0x31, 0x3a, 0x51, 0x38, 0x02, 0x8e, 0x7a,
828913498266Sopenharmony_ci  0xa6, 0xc1, 0xf0, 0x58, 0x98, 0xf5, 0x30, 0xd6, 0x16, 0x03, 0x94, 0xb4,
829013498266Sopenharmony_ci  0xc9, 0xd6, 0x0e, 0x0c, 0xba, 0xfb, 0xe5, 0xfa, 0x11, 0x61, 0xfc, 0x1e,
829113498266Sopenharmony_ci  0x37, 0x8d, 0xaf, 0x7a, 0xe6, 0xdc, 0xae, 0x08, 0xcc, 0xa5, 0x1a, 0x06,
829213498266Sopenharmony_ci  0x22, 0xad, 0x96, 0x09, 0x5a, 0x7b, 0x74, 0xe7, 0x99, 0xa0, 0x23, 0xe1,
829313498266Sopenharmony_ci  0xa8, 0x6d, 0xe3, 0x1c, 0x8c, 0xe2, 0x02, 0x24, 0x07, 0xbc, 0x6d, 0xc5,
829413498266Sopenharmony_ci  0xd4, 0x91, 0xc8, 0xf9, 0xda, 0x26, 0xde, 0xbb, 0x8e, 0x18, 0xaa, 0x8f,
829513498266Sopenharmony_ci  0x1f, 0x6e, 0xef, 0x6c, 0x34, 0x02, 0xd2, 0x84, 0x0c, 0xbc, 0xdc, 0x79,
829613498266Sopenharmony_ci  0x54, 0xd8, 0x92, 0x86, 0x34, 0x48, 0xfe, 0xfd, 0x5a, 0xbd, 0x13, 0xda,
829713498266Sopenharmony_ci  0xf4, 0x38, 0x45, 0x8f, 0xe9, 0x20, 0x3a, 0x30, 0x68, 0x4e, 0x29, 0x8c,
829813498266Sopenharmony_ci  0xb2, 0xdd, 0x5c, 0x6e, 0xc1, 0x4b, 0xe5, 0x3e, 0xe8, 0x91, 0x2c, 0x43,
829913498266Sopenharmony_ci  0x9e, 0x89, 0x79, 0x49, 0x41, 0x8b, 0xb8, 0x90, 0xd8, 0xa5, 0xb6, 0x8c,
830013498266Sopenharmony_ci  0xa3, 0x96, 0x40, 0xca, 0xb6, 0x63, 0xda, 0x7d, 0xa4, 0x29, 0xe0, 0xf7,
830113498266Sopenharmony_ci  0xad, 0x39, 0x0a, 0xd5, 0x11, 0x59, 0xb2, 0x86, 0x4e, 0xe1, 0x9b, 0xdf,
830213498266Sopenharmony_ci  0x64, 0x4c, 0x3d, 0xe4, 0x22, 0x39, 0xc6, 0x88, 0x5d, 0x26, 0xce, 0x65,
830313498266Sopenharmony_ci  0xa3, 0xcb, 0xef, 0x5e, 0x07, 0xb6, 0x41, 0x6c, 0xb1, 0xbd, 0xdf, 0x40,
830413498266Sopenharmony_ci  0xc7, 0x70, 0xc9, 0x85, 0x9b, 0x0b, 0x1b, 0xe3, 0x56, 0xb6, 0xc6, 0x2d,
830513498266Sopenharmony_ci  0x37, 0xc6, 0xb5, 0x4c, 0x5b, 0xba, 0x35, 0xb8, 0xef, 0x62, 0x98, 0x1c,
830613498266Sopenharmony_ci  0xa6, 0xe2, 0xd8, 0x98, 0xa5, 0x0c, 0x28, 0x23, 0x8f, 0x07, 0xa2, 0xc9,
830713498266Sopenharmony_ci  0xd2, 0x4d, 0x97, 0x0d, 0x35, 0x8d, 0x64, 0x98, 0xee, 0x8b, 0x5e, 0xe4,
830813498266Sopenharmony_ci  0x0f, 0x62, 0x15, 0x23, 0x11, 0xd8, 0x84, 0x40, 0x07, 0x2c, 0xd7, 0xba,
830913498266Sopenharmony_ci  0x77, 0x3b, 0x06, 0x3f, 0xa6, 0x69, 0x47, 0xc0, 0x75, 0x70, 0xba, 0x1b,
831013498266Sopenharmony_ci  0x34, 0xf2, 0x04, 0x3b, 0xec, 0xea, 0x6c, 0x4f, 0x57, 0xd7, 0x9d, 0x88,
831113498266Sopenharmony_ci  0xc7, 0xae, 0xbb, 0x0c, 0x2e, 0x68, 0x04, 0xda, 0x42, 0x83, 0xdc, 0x28,
831213498266Sopenharmony_ci  0x75, 0x31, 0x84, 0xda, 0x74, 0x30, 0xd8, 0xec, 0x49, 0x44, 0x36, 0xe5,
831313498266Sopenharmony_ci  0x38, 0x30, 0x94, 0xac, 0x89, 0x5e, 0xc5, 0x80, 0xf6, 0x45, 0x65, 0x3c,
831413498266Sopenharmony_ci  0xd0, 0x09, 0x50, 0xf5, 0xe8, 0x03, 0xae, 0xe0, 0x12, 0xf3, 0x9c, 0x6c,
831513498266Sopenharmony_ci  0xe7, 0x53, 0x8f, 0x69, 0x57, 0xe6, 0x1e, 0xb4, 0x77, 0x34, 0x45, 0x28,
831613498266Sopenharmony_ci  0xe0, 0xca, 0xf9, 0x0a, 0x4c, 0xc9, 0x59, 0xc7, 0x6c, 0x1e, 0x6f, 0x6e,
831713498266Sopenharmony_ci  0x2d, 0x3a, 0xa4, 0xa0, 0xcb, 0x57, 0x9a, 0x41, 0x7d, 0xfc, 0xfc, 0x27,
831813498266Sopenharmony_ci  0x3e, 0x13, 0x0a, 0xba, 0xe1, 0xd9, 0x14, 0xc8, 0x7a, 0xf7, 0x57, 0x13,
831913498266Sopenharmony_ci  0x14, 0xc8, 0x58, 0x62, 0xe2, 0xd6, 0x4e, 0xd4, 0x15, 0x8a, 0x31, 0x92,
832013498266Sopenharmony_ci  0x1b, 0x36, 0x09, 0x10, 0x97, 0xba, 0xb7, 0x4f, 0xdf, 0xb5, 0x7d, 0xe4,
832113498266Sopenharmony_ci  0x82, 0x10, 0xfb, 0xf5, 0x2f, 0xfc, 0x35, 0xc7, 0x11, 0xc3, 0x5f, 0xf5,
832213498266Sopenharmony_ci  0xf9, 0x62, 0x36, 0x84, 0xcd, 0xcc, 0xeb, 0xaf, 0x7b, 0x11, 0x47, 0xdf,
832313498266Sopenharmony_ci  0x4d, 0x64, 0x3d, 0x97, 0x68, 0x99, 0x99, 0xc2, 0x11, 0xab, 0x8b, 0xb5,
832413498266Sopenharmony_ci  0x69, 0xd9, 0xa3, 0x2e, 0xfa, 0x22, 0xa8, 0x3a, 0xd9, 0x50, 0x51, 0x8f,
832513498266Sopenharmony_ci  0xed, 0xe5, 0xde, 0x25, 0xff, 0x0e, 0xe8, 0xf3, 0x97, 0xd7, 0xff, 0xf8,
832613498266Sopenharmony_ci  0xe5, 0xcb, 0xdd, 0x07, 0xc9, 0xe3, 0x64, 0xf4, 0x68, 0xf2, 0x24, 0x79,
832713498266Sopenharmony_ci  0x38, 0x7e, 0xf8, 0xf8, 0xcb, 0x9d, 0x27, 0x0f, 0x93, 0xc7, 0x0f, 0x26,
832813498266Sopenharmony_ci  0xc9, 0xa3, 0xed, 0x74, 0xfb, 0xcb, 0xc9, 0xce, 0xee, 0x78, 0x3c, 0x49,
832913498266Sopenharmony_ci  0x9f, 0x8c, 0x1f, 0x27, 0xbd, 0x01, 0x89, 0xd7, 0x3a, 0x74, 0x9f, 0xcd,
833013498266Sopenharmony_ci  0xaa, 0x1c, 0x9d, 0x44, 0x27, 0x2f, 0x0e, 0xe2, 0xed, 0xe8, 0x3c, 0xfd,
833113498266Sopenharmony_ci  0x68, 0xe0, 0xab, 0x1a, 0xc1, 0x96, 0x55, 0x9a, 0xf2, 0x74, 0xba, 0x27,
833213498266Sopenharmony_ci  0xab, 0xf0, 0xd9, 0x51, 0xf4, 0xdc, 0xe4, 0x81, 0xc8, 0x06, 0xe8, 0xb2,
833313498266Sopenharmony_ci  0x72, 0x42, 0x88, 0x31, 0xba, 0xee, 0xa9, 0x5f, 0x00, 0xe7, 0xd5, 0x3e,
833413498266Sopenharmony_ci  0xfc, 0xaf, 0xd0, 0xda, 0xf0, 0x3a, 0x19, 0x9d, 0x13, 0x26, 0x8f, 0x3c,
833513498266Sopenharmony_ci  0x78, 0xc2, 0x41, 0x2d, 0xfd, 0x48, 0x7e, 0xc1, 0x88, 0x55, 0xa7, 0x8d,
833613498266Sopenharmony_ci  0xef, 0xca, 0x62, 0x31, 0x3f, 0x2e, 0xa6, 0xd9, 0xe8, 0x6a, 0x59, 0x73,
833713498266Sopenharmony_ci  0xce, 0x63, 0x74, 0x48, 0xdd, 0xef, 0x0e, 0x99, 0x8b, 0x67, 0xd5, 0x12,
833813498266Sopenharmony_ci  0x21, 0x7e, 0xe5, 0x18, 0x98, 0x5b, 0x0b, 0xec, 0xb4, 0xdc, 0xc4, 0x13,
833913498266Sopenharmony_ci  0x58, 0xd0, 0x81, 0xff, 0x56, 0x17, 0xd9, 0x2d, 0xaf, 0xbf, 0x56, 0x66,
834013498266Sopenharmony_ci  0x8f, 0x47, 0xd9, 0x1c, 0xb1, 0xbf, 0xa3, 0x7d, 0xca, 0x7b, 0x42, 0xaf,
834113498266Sopenharmony_ci  0x12, 0x7f, 0x10, 0x96, 0xd5, 0x4f, 0xe4, 0xb8, 0x57, 0x42, 0x2d, 0xfa,
834213498266Sopenharmony_ci  0xb6, 0x48, 0xed, 0x99, 0xa2, 0x2b, 0xa9, 0x5d, 0x4e, 0xd2, 0xed, 0x32,
834313498266Sopenharmony_ci  0xcf, 0x70, 0x89, 0xd1, 0x59, 0xfa, 0xb2, 0xc8, 0x5a, 0x2a, 0xd0, 0x45,
834413498266Sopenharmony_ci  0x6c, 0x0c, 0x91, 0x6f, 0x07, 0x8c, 0xd3, 0xb3, 0x98, 0xa3, 0xf4, 0x8a,
834513498266Sopenharmony_ci  0x92, 0x05, 0x7f, 0xde, 0x3e, 0xc6, 0x38, 0x78, 0xa1, 0x47, 0x16, 0x73,
834613498266Sopenharmony_ci  0x61, 0x0f, 0xde, 0xbd, 0x7d, 0xb5, 0xd7, 0x5e, 0xa4, 0x60, 0x02, 0x67,
834713498266Sopenharmony_ci  0x55, 0x4d, 0x75, 0x1d, 0x24, 0x89, 0x33, 0x44, 0x07, 0x32, 0xda, 0x9b,
834813498266Sopenharmony_ci  0x90, 0x02, 0x03, 0x2a, 0xde, 0xa9, 0x32, 0x27, 0xbd, 0x1f, 0x3e, 0x7d,
834913498266Sopenharmony_ci  0xf6, 0xe2, 0x30, 0x86, 0x9f, 0x27, 0x07, 0xf1, 0xc1, 0xe1, 0xc9, 0xce,
835013498266Sopenharmony_ci  0xc3, 0x47, 0xf1, 0xd3, 0xa7, 0xaf, 0x9f, 0xac, 0x48, 0x1f, 0xf5, 0xb4,
835113498266Sopenharmony_ci  0xba, 0xd8, 0x1e, 0xec, 0xf6, 0xf9, 0xd7, 0xed, 0x5d, 0xd3, 0x3c, 0xd3,
835213498266Sopenharmony_ci  0x09, 0x47, 0xa7, 0xe8, 0x8a, 0xb8, 0xc4, 0x52, 0xcc, 0x88, 0x99, 0xa7,
835313498266Sopenharmony_ci  0xe3, 0xb8, 0xaa, 0xbc, 0x30, 0x7a, 0x44, 0xf8, 0xe0, 0x40, 0xd8, 0x43,
835413498266Sopenharmony_ci  0x49, 0x32, 0xa1, 0xdb, 0x3f, 0xce, 0x72, 0x02, 0xe5, 0xd0, 0x97, 0x35,
835513498266Sopenharmony_ci  0xab, 0x2f, 0xab, 0x34, 0x4f, 0x93, 0x2c, 0x6f, 0xfd, 0x80, 0xeb, 0x2b,
835613498266Sopenharmony_ci  0x91, 0x6b, 0xec, 0xaf, 0xae, 0x55, 0x0b, 0xdd, 0xe2, 0x45, 0x69, 0x70,
835713498266Sopenharmony_ci  0xa2, 0xc6, 0x45, 0x03, 0x63, 0x22, 0x14, 0x72, 0xda, 0x1c, 0x76, 0x74,
835813498266Sopenharmony_ci  0xa3, 0xa0, 0xa0, 0x9b, 0x5b, 0x82, 0x1a, 0x8d, 0xaf, 0xbc, 0xaf, 0xcd,
835913498266Sopenharmony_ci  0xa1, 0x55, 0xab, 0xc4, 0x9d, 0x3a, 0x2f, 0x37, 0x13, 0x85, 0x1e, 0xb5,
836013498266Sopenharmony_ci  0x22, 0x19, 0xcc, 0x63, 0xe1, 0xf0, 0x35, 0x35, 0x7d, 0x26, 0x91, 0x7d,
836113498266Sopenharmony_ci  0xd2, 0xda, 0x01, 0x15, 0x50, 0xcb, 0xc0, 0x09, 0x9a, 0xe8, 0xcf, 0x90,
836213498266Sopenharmony_ci  0x23, 0xd8, 0x60, 0xab, 0xb0, 0xe4, 0xdf, 0xf4, 0x4e, 0x23, 0x3e, 0x19,
836313498266Sopenharmony_ci  0x77, 0xe0, 0x42, 0x9e, 0x79, 0x4b, 0xf6, 0x56, 0xbb, 0x96, 0x48, 0x51,
836413498266Sopenharmony_ci  0x03, 0x41, 0xa8, 0x89, 0x3c, 0xac, 0xe9, 0x53, 0x42, 0x10, 0x61, 0xd9,
836513498266Sopenharmony_ci  0x33, 0x34, 0x66, 0xdd, 0x46, 0xfc, 0x57, 0xc1, 0xc8, 0x91, 0xd3, 0x7b,
836613498266Sopenharmony_ci  0x91, 0x01, 0x4c, 0x44, 0x63, 0x12, 0xef, 0x65, 0x52, 0x9b, 0x6c, 0x7c,
836713498266Sopenharmony_ci  0x8a, 0xa3, 0xe3, 0x96, 0x66, 0x84, 0xa3, 0x98, 0xf8, 0x02, 0x48, 0x9a,
836813498266Sopenharmony_ci  0x94, 0x1a, 0xcd, 0x9f, 0x5c, 0x99, 0x78, 0xce, 0x06, 0x86, 0x5b, 0x15,
836913498266Sopenharmony_ci  0xad, 0x57, 0x75, 0x36, 0x9d, 0x6e, 0x38, 0x2b, 0xfa, 0xd7, 0x88, 0xb1,
837013498266Sopenharmony_ci  0x8b, 0x7c, 0x89, 0x61, 0x82, 0x29, 0x75, 0x92, 0xb0, 0xa4, 0x90, 0xa5,
837113498266Sopenharmony_ci  0x64, 0x9a, 0xb5, 0xeb, 0xd5, 0xe1, 0x27, 0x68, 0xb8, 0xad, 0x35, 0x4a,
837213498266Sopenharmony_ci  0xb7, 0xcb, 0xca, 0xbc, 0xc8, 0xad, 0xf3, 0xd3, 0x17, 0x35, 0x14, 0x39,
837313498266Sopenharmony_ci  0x8e, 0x91, 0xef, 0x53, 0x81, 0xf1, 0xcc, 0x05, 0xda, 0x31, 0x70, 0x5c,
837413498266Sopenharmony_ci  0xf5, 0x80, 0xca, 0x09, 0x0d, 0xe8, 0xc8, 0x1d, 0xe7, 0x15, 0xb4, 0x5c,
837513498266Sopenharmony_ci  0xaa, 0x24, 0x80, 0x59, 0x11, 0x4b, 0xe6, 0xd7, 0xb0, 0xe5, 0x5a, 0xba,
837613498266Sopenharmony_ci  0xbc, 0x69, 0xdc, 0xf8, 0x8d, 0xc3, 0x92, 0xba, 0x47, 0x70, 0xe3, 0xa3,
837713498266Sopenharmony_ci  0xbb, 0xea, 0xed, 0xdc, 0xc1, 0x31, 0xe2, 0xef, 0x25, 0x70, 0x7c, 0x92,
837813498266Sopenharmony_ci  0x9d, 0x85, 0xe3, 0x8e, 0x34, 0x61, 0x0d, 0x55, 0x11, 0x4a, 0xee, 0x97,
837913498266Sopenharmony_ci  0x48, 0x21, 0x12, 0x4f, 0x13, 0x81, 0x6c, 0x52, 0x4b, 0x06, 0x67, 0xaa,
838013498266Sopenharmony_ci  0x88, 0x09, 0x8b, 0xd3, 0xb4, 0xbc, 0x5b, 0x33, 0x4f, 0xdd, 0xc7, 0x31,
838113498266Sopenharmony_ci  0x97, 0xc7, 0xc4, 0x8c, 0x63, 0xf3, 0xd4, 0x3a, 0x9e, 0x3e, 0x26, 0xac,
838213498266Sopenharmony_ci  0xca, 0x39, 0x67, 0xe8, 0xa0, 0x6b, 0x9f, 0x8c, 0x25, 0x35, 0x09, 0xbc,
838313498266Sopenharmony_ci  0xc5, 0x55, 0x5c, 0x04, 0x25, 0xd7, 0xac, 0x74, 0x11, 0xa6, 0x7d, 0xf5,
838413498266Sopenharmony_ci  0xa2, 0x70, 0x82, 0x51, 0x28, 0xd9, 0xcc, 0x3b, 0x46, 0xb5, 0xc9, 0x38,
838513498266Sopenharmony_ci  0xb4, 0x98, 0xa8, 0x58, 0x60, 0x00, 0x91, 0x60, 0x29, 0x5b, 0xbf, 0xcf,
838613498266Sopenharmony_ci  0x90, 0xa9, 0x46, 0xcd, 0x13, 0xc8, 0xb0, 0x46, 0x59, 0x06, 0x23, 0x3c,
838713498266Sopenharmony_ci  0x9a, 0x9c, 0x66, 0xa9, 0x0e, 0x30, 0x32, 0xe9, 0xed, 0xc4, 0xca, 0x60,
838813498266Sopenharmony_ci  0x6c, 0x12, 0x02, 0x94, 0xd9, 0x0a, 0x24, 0xb4, 0x71, 0x41, 0xcb, 0xa4,
838913498266Sopenharmony_ci  0x20, 0x1a, 0xd4, 0x94, 0x05, 0x98, 0x51, 0xd1, 0x11, 0xb1, 0xe1, 0x30,
839013498266Sopenharmony_ci  0x02, 0x84, 0xba, 0x6d, 0xab, 0x42, 0xb2, 0x1e, 0x09, 0xdb, 0x15, 0x33,
839113498266Sopenharmony_ci  0xf8, 0x69, 0x8c, 0x5d, 0x26, 0x9e, 0xaa, 0x61, 0x0d, 0xc1, 0xb2, 0x0c,
839213498266Sopenharmony_ci  0x8a, 0x73, 0x50, 0x39, 0xa6, 0x43, 0x63, 0x3e, 0xd0, 0xc5, 0x0c, 0x8c,
839313498266Sopenharmony_ci  0x2e, 0xf2, 0x51, 0x29, 0x68, 0x24, 0x08, 0xc4, 0xcb, 0x5d, 0xc0, 0x29,
839413498266Sopenharmony_ci  0x6b, 0x8d, 0x4a, 0xc6, 0xe1, 0x29, 0x2d, 0xa4, 0xa1, 0x33, 0x2e, 0x82,
839513498266Sopenharmony_ci  0x33, 0x00, 0xc5, 0x47, 0x30, 0xbb, 0x1c, 0x76, 0xa2, 0xa6, 0xf6, 0x01,
839613498266Sopenharmony_ci  0xeb, 0x83, 0xb5, 0x7b, 0x48, 0x98, 0x36, 0x0c, 0x6d, 0x25, 0x7a, 0x2c,
839713498266Sopenharmony_ci  0x0f, 0x2a, 0x5a, 0xdf, 0x6b, 0xe3, 0x72, 0x11, 0xe0, 0x84, 0xdd, 0xe2,
839813498266Sopenharmony_ci  0x68, 0xfd, 0xab, 0x0d, 0x32, 0x8a, 0xfa, 0xb4, 0x05, 0xda, 0xfc, 0xb4,
839913498266Sopenharmony_ci  0x50, 0x04, 0x0a, 0x03, 0x65, 0xdf, 0x6a, 0x4e, 0x80, 0xed, 0xd7, 0xd1,
840013498266Sopenharmony_ci  0x35, 0xff, 0x63, 0x10, 0xf2, 0xbe, 0x91, 0x10, 0x2f, 0x26, 0x35, 0x8b,
840113498266Sopenharmony_ci  0xbe, 0xdf, 0xe6, 0x47, 0x84, 0xeb, 0xa1, 0x46, 0xaf, 0xbd, 0xe8, 0x97,
840213498266Sopenharmony_ci  0x5f, 0xfa, 0xd1, 0x2f, 0x3d, 0xf8, 0x0f, 0x38, 0xeb, 0x2f, 0x40, 0xa3,
840313498266Sopenharmony_ci  0xbf, 0x30, 0x00, 0xd1, 0x2f, 0x17, 0x68, 0x9d, 0x32, 0x68, 0xe2, 0x62,
840413498266Sopenharmony_ci  0x05, 0xf0, 0x9d, 0xd9, 0xd6, 0x72, 0xcc, 0x05, 0x07, 0xae, 0xf1, 0x30,
840513498266Sopenharmony_ci  0xf3, 0x59, 0xc1, 0x44, 0xc2, 0xbc, 0xc8, 0x63, 0x86, 0x4a, 0x87, 0x85,
840613498266Sopenharmony_ci  0x5c, 0xcc, 0x72, 0x31, 0xa8, 0x30, 0x2d, 0x73, 0x19, 0x15, 0xe4, 0xfa,
840713498266Sopenharmony_ci  0x6b, 0x7f, 0x5a, 0x8b, 0xba, 0xf7, 0x5b, 0x92, 0x7c, 0xf5, 0xf1, 0x06,
840813498266Sopenharmony_ci  0x6c, 0x08, 0xa7, 0xd2, 0xf9, 0xb7, 0xfc, 0x11, 0xb9, 0xff, 0x18, 0xed,
840913498266Sopenharmony_ci  0x89, 0x88, 0xcf, 0x00, 0xcd, 0xe3, 0x3d, 0x7c, 0x7e, 0x55, 0xa1, 0xd0,
841013498266Sopenharmony_ci  0xa0, 0x85, 0x5c, 0xf4, 0x7a, 0xc5, 0x41, 0x51, 0x5c, 0x49, 0x74, 0xe0,
841113498266Sopenharmony_ci  0xe7, 0xde, 0x61, 0xc0, 0xb1, 0x0e, 0x41, 0x72, 0xef, 0x14, 0xcc, 0x04,
841213498266Sopenharmony_ci  0x88, 0x97, 0x62, 0x03, 0x28, 0x1a, 0x60, 0x7b, 0x0b, 0xc3, 0x72, 0xce,
841313498266Sopenharmony_ci  0x12, 0x06, 0xdb, 0x82, 0xab, 0x1a, 0xd3, 0xf6, 0x5a, 0xcd, 0x51, 0x38,
841413498266Sopenharmony_ci  0xe8, 0x46, 0x67, 0xc6, 0x30, 0x9f, 0x78, 0x1c, 0x09, 0xa7, 0x43, 0x43,
841513498266Sopenharmony_ci  0x2f, 0x0d, 0xee, 0x0d, 0x33, 0x5f, 0x8b, 0xd7, 0x4c, 0xb0, 0x82, 0x5c,
841613498266Sopenharmony_ci  0xaa, 0x5e, 0x76, 0xbe, 0xb2, 0x2c, 0x27, 0x37, 0xcf, 0xeb, 0xd2, 0xb1,
841713498266Sopenharmony_ci  0xc8, 0x17, 0x6e, 0x36, 0xa0, 0x2d, 0x51, 0x81, 0x70, 0x6f, 0xb2, 0x44,
841813498266Sopenharmony_ci  0x0d, 0x26, 0xc4, 0xa6, 0xec, 0xb6, 0x58, 0x9d, 0x1a, 0x1c, 0x40, 0x9d,
841913498266Sopenharmony_ci  0x0b, 0x1a, 0x94, 0xac, 0x6f, 0x3c, 0x26, 0x80, 0x70, 0xde, 0x0b, 0x16,
842013498266Sopenharmony_ci  0xe2, 0x28, 0x64, 0xed, 0x0a, 0xa1, 0xa4, 0xe6, 0xd3, 0x76, 0xe8, 0xaa,
842113498266Sopenharmony_ci  0x26, 0xa3, 0x69, 0x09, 0x1c, 0x8a, 0xd9, 0xe6, 0x90, 0x6c, 0x2e, 0xc4,
842213498266Sopenharmony_ci  0x74, 0x52, 0x30, 0xe6, 0x36, 0x05, 0xbf, 0x51, 0x7c, 0x62, 0xa4, 0xa0,
842313498266Sopenharmony_ci  0x54, 0x01, 0x13, 0x5b, 0xb3, 0xfc, 0x8a, 0xea, 0x4b, 0x4d, 0xc0, 0xf2,
842413498266Sopenharmony_ci  0x86, 0xea, 0xd6, 0x6b, 0x3f, 0xfc, 0x27, 0x98, 0x40, 0xac, 0x57, 0x77,
842513498266Sopenharmony_ci  0x24, 0x9a, 0x74, 0xec, 0x3d, 0x54, 0x1b, 0x79, 0x46, 0xe8, 0x33, 0xdc,
842613498266Sopenharmony_ci  0xa7, 0x73, 0xa1, 0xf7, 0xda, 0xec, 0x85, 0x31, 0xb6, 0xe0, 0x21, 0x1c,
842713498266Sopenharmony_ci  0x10, 0x72, 0x4a, 0xa9, 0x25, 0xe2, 0x29, 0x7b, 0x65, 0x9c, 0x9c, 0xa1,
842813498266Sopenharmony_ci  0x58, 0xf8, 0x15, 0x62, 0x5c, 0x62, 0xf8, 0x3a, 0xfe, 0xb5, 0xb9, 0x3d,
842913498266Sopenharmony_ci  0xd8, 0x0a, 0x0c, 0x1e, 0xd7, 0x5b, 0xd0, 0xfc, 0xc4, 0x4b, 0x45, 0x00,
843013498266Sopenharmony_ci  0xba, 0x45, 0x71, 0xed, 0xf8, 0x7c, 0x2c, 0xa2, 0xf6, 0x50, 0xe2, 0x23,
843113498266Sopenharmony_ci  0x2f, 0xdc, 0x07, 0xf3, 0x38, 0x4a, 0x5d, 0x5c, 0x58, 0xdb, 0xbc, 0x20,
843213498266Sopenharmony_ci  0x2c, 0x40, 0x10, 0xcd, 0xa6, 0xd3, 0x46, 0x7d, 0x97, 0x5e, 0x78, 0x99,
843313498266Sopenharmony_ci  0x73, 0xca, 0x4a, 0x4c, 0xdb, 0xab, 0xdd, 0x86, 0x34, 0x24, 0xa3, 0x36,
843413498266Sopenharmony_ci  0xfb, 0xf7, 0x70, 0xd9, 0x73, 0x89, 0x38, 0x00, 0xba, 0x58, 0x97, 0xf4,
843513498266Sopenharmony_ci  0x94, 0xf8, 0x9f, 0x9c, 0x25, 0x52, 0x29, 0x7e, 0x3f, 0xde, 0x68, 0x1b,
843613498266Sopenharmony_ci  0x9c, 0xce, 0x5c, 0x05, 0x62, 0xe0, 0x6c, 0x40, 0xb2, 0xc3, 0x15, 0x34,
843713498266Sopenharmony_ci  0xec, 0x91, 0x8a, 0x14, 0xc1, 0x6d, 0x4a, 0x02, 0x0d, 0x82, 0xf1, 0xd1,
843813498266Sopenharmony_ci  0x45, 0xcd, 0x19, 0x07, 0x70, 0x4c, 0x7d, 0xe7, 0x92, 0x1c, 0x1a, 0xb5,
843913498266Sopenharmony_ci  0xdb, 0x34, 0x1c, 0xd4, 0x6e, 0xfb, 0x98, 0x3a, 0x89, 0x23, 0x12, 0x7f,
844013498266Sopenharmony_ci  0x5a, 0xb3, 0x20, 0x84, 0x19, 0x9d, 0x5e, 0x01, 0xf3, 0x29, 0x65, 0x2d,
844113498266Sopenharmony_ci  0x28, 0xde, 0x0c, 0xc9, 0xc9, 0x1e, 0x71, 0x6f, 0x6f, 0x44, 0xbd, 0xff,
844213498266Sopenharmony_ci  0x45, 0xa1, 0xcb, 0x0c, 0x84, 0x8e, 0xab, 0x54, 0x8e, 0x3c, 0xca, 0xd8,
844313498266Sopenharmony_ci  0xc1, 0xc7, 0x7e, 0x7a, 0xf6, 0xdd, 0xfb, 0xa7, 0x47, 0x6f, 0x9e, 0xbf,
844413498266Sopenharmony_ci  0xfc, 0x8e, 0x1f, 0x96, 0x67, 0xa3, 0x75, 0x37, 0x6d, 0x09, 0xd3, 0x11,
844513498266Sopenharmony_ci  0xda, 0x6f, 0xef, 0xe2, 0xdb, 0x4b, 0xdb, 0x7f, 0xb0, 0xa1, 0xb1, 0x89,
844613498266Sopenharmony_ci  0x7b, 0x51, 0x8f, 0x0a, 0x07, 0x1c, 0xbf, 0x3d, 0x42, 0xa0, 0xe4, 0x3f,
844713498266Sopenharmony_ci  0xff, 0xd2, 0xf5, 0xca, 0xc3, 0xc6, 0x2b, 0x07, 0xc7, 0xc7, 0xcf, 0x0e,
844813498266Sopenharmony_ci  0x4e, 0x0f, 0xba, 0x1f, 0x7f, 0xd4, 0xdd, 0xc3, 0xc1, 0x1c, 0x41, 0xaa,
844913498266Sopenharmony_ci  0x39, 0x80, 0xe4, 0x19, 0xd0, 0x5e, 0x67, 0x1b, 0x8f, 0x37, 0x80, 0x1d,
845013498266Sopenharmony_ci  0xe6, 0xb1, 0x69, 0x07, 0x6d, 0x4e, 0x67, 0x69, 0x3d, 0xbf, 0x5c, 0x64,
845113498266Sopenharmony_ci  0x63, 0x4e, 0xda, 0x17, 0xdd, 0xe7, 0xbc, 0x70, 0x63, 0x96, 0xdb, 0xcd,
845213498266Sopenharmony_ci  0x3c, 0xd9, 0x80, 0xdb, 0x47, 0x47, 0xd3, 0x97, 0xd0, 0x70, 0x7c, 0x97,
845313498266Sopenharmony_ci  0x74, 0x09, 0xe9, 0x5c, 0x73, 0x6f, 0xc5, 0x9e, 0x2b, 0xd7, 0x78, 0xe4,
845413498266Sopenharmony_ci  0x96, 0x8e, 0x68, 0xa0, 0xd4, 0x8e, 0x09, 0x1d, 0xed, 0x02, 0xb9, 0x2e,
845513498266Sopenharmony_ci  0xf2, 0x3b, 0x22, 0x5c, 0xf1, 0xba, 0xa6, 0xed, 0x50, 0x6a, 0xb5, 0xf5,
845613498266Sopenharmony_ci  0x4f, 0xe1, 0xe8, 0x78, 0xcd, 0x8d, 0x16, 0xb5, 0x1e, 0x02, 0xa2, 0xa0,
845713498266Sopenharmony_ci  0x71, 0xe0, 0xea, 0x34, 0x89, 0x23, 0x28, 0xae, 0xe9, 0x35, 0xc4, 0x8a,
845813498266Sopenharmony_ci  0xb2, 0x12, 0x28, 0x5e, 0xa3, 0x6a, 0x86, 0xdd, 0x8b, 0xcc, 0xac, 0x02,
845913498266Sopenharmony_ci  0x89, 0x23, 0xef, 0xf9, 0xab, 0xbe, 0x09, 0xfa, 0xb5, 0xf8, 0x01, 0x54,
846013498266Sopenharmony_ci  0x1f, 0x0d, 0x43, 0x1e, 0x8f, 0x30, 0x52, 0xdb, 0xc0, 0x58, 0x09, 0x2a,
846113498266Sopenharmony_ci  0x68, 0x38, 0x1e, 0xd7, 0x3d, 0x21, 0xd2, 0x34, 0x39, 0x12, 0x02, 0x20,
846213498266Sopenharmony_ci  0x13, 0x72, 0xb6, 0xee, 0x0f, 0x63, 0xc2, 0x15, 0x19, 0x56, 0x0e, 0x45,
846313498266Sopenharmony_ci  0x75, 0x59, 0x52, 0xd3, 0x9e, 0x22, 0x60, 0x13, 0x30, 0x44, 0x94, 0xea,
846413498266Sopenharmony_ci  0xf7, 0x27, 0x04, 0xaf, 0x4a, 0xfe, 0x78, 0xc6, 0xeb, 0xf4, 0xac, 0xa7,
846513498266Sopenharmony_ci  0xaf, 0x93, 0x8f, 0xd9, 0x6c, 0x31, 0xa3, 0x59, 0xe1, 0xa4, 0xe4, 0x31,
846613498266Sopenharmony_ci  0x01, 0x01, 0x23, 0x87, 0x33, 0x47, 0x40, 0xd2, 0xc0, 0xd7, 0x18, 0xe0,
846713498266Sopenharmony_ci  0xc3, 0xd4, 0xc5, 0xf3, 0xaf, 0x49, 0x10, 0x2a, 0x34, 0xb4, 0x19, 0xc5,
846813498266Sopenharmony_ci  0x28, 0xf2, 0x1b, 0x57, 0x2d, 0xdb, 0x2b, 0x08, 0x51, 0x09, 0x86, 0x8b,
846913498266Sopenharmony_ci  0x31, 0x26, 0x27, 0x83, 0xae, 0xf2, 0x97, 0x55, 0x40, 0x01, 0x10, 0x0a,
847013498266Sopenharmony_ci  0x65, 0xa5, 0x06, 0x68, 0x27, 0x2b, 0xc6, 0x7c, 0x6f, 0x73, 0x1a, 0x33,
847113498266Sopenharmony_ci  0x70, 0x68, 0xf6, 0x08, 0x92, 0xa5, 0x82, 0x2a, 0xb3, 0x74, 0x44, 0x79,
847213498266Sopenharmony_ci  0x69, 0x2c, 0x3b, 0xe2, 0xa4, 0x63, 0x85, 0xc2, 0x31, 0x48, 0x19, 0x33,
847313498266Sopenharmony_ci  0x03, 0x67, 0xa6, 0xbc, 0xd5, 0xf9, 0x4c, 0x10, 0xf7, 0xbd, 0x49, 0xba,
847413498266Sopenharmony_ci  0x21, 0xb5, 0x12, 0x1e, 0x01, 0x12, 0x37, 0x5c, 0x19, 0x83, 0x0d, 0x94,
847513498266Sopenharmony_ci  0xaf, 0xb4, 0x0d, 0xa3, 0xf2, 0xc0, 0x08, 0xa9, 0xae, 0xc1, 0xb9, 0x24,
847613498266Sopenharmony_ci  0x73, 0xfb, 0x81, 0xbc, 0xe4, 0x84, 0xa2, 0xcb, 0x80, 0x8f, 0x3c, 0x9b,
847713498266Sopenharmony_ci  0x78, 0x86, 0xa9, 0x89, 0xbe, 0xe0, 0x1b, 0xd7, 0x82, 0xc5, 0x85, 0x02,
847813498266Sopenharmony_ci  0x97, 0xda, 0x0b, 0x4c, 0x97, 0x02, 0x1c, 0x09, 0xcc, 0xa1, 0x66, 0x18,
847913498266Sopenharmony_ci  0x7d, 0xc2, 0xb1, 0xb1, 0x79, 0xb9, 0xcf, 0xde, 0x9c, 0x44, 0x82, 0xa6,
848013498266Sopenharmony_ci  0x1d, 0x80, 0xa7, 0x10, 0x73, 0x0a, 0xbc, 0x79, 0x8a, 0x05, 0x53, 0x31,
848113498266Sopenharmony_ci  0xf4, 0x09, 0xa6, 0xf2, 0xf7, 0x77, 0x2f, 0x9f, 0x3a, 0xb5, 0x13, 0xe9,
848213498266Sopenharmony_ci  0x60, 0x23, 0x00, 0x48, 0x57, 0xb4, 0x68, 0x8b, 0x22, 0x6f, 0x1e, 0x36,
848313498266Sopenharmony_ci  0xda, 0x5e, 0xa4, 0x9b, 0xf8, 0x2f, 0xaa, 0x25, 0xa7, 0xad, 0x31, 0x8c,
848413498266Sopenharmony_ci  0x9d, 0xad, 0xe0, 0x81, 0xbb, 0xd9, 0xcb, 0xbb, 0x83, 0xed, 0x07, 0xab,
848513498266Sopenharmony_ci  0x9d, 0x57, 0x4a, 0x34, 0x9d, 0x25, 0x1f, 0xa9, 0x89, 0xe0, 0x81, 0x2d,
848613498266Sopenharmony_ci  0xa2, 0xfd, 0x17, 0x47, 0x27, 0xa7, 0xdb, 0x7b, 0xc7, 0x47, 0x6f, 0xe1,
848713498266Sopenharmony_ci  0x27, 0xfe, 0xbe, 0x43, 0xbf, 0xef, 0xb4, 0x0f, 0xec, 0x73, 0x92, 0x31,
848813498266Sopenharmony_ci  0x0c, 0xb6, 0x0a, 0xca, 0xcb, 0xc4, 0x10, 0x45, 0xe9, 0xef, 0x39, 0xcd,
848913498266Sopenharmony_ci  0xf4, 0x30, 0x84, 0x23, 0x43, 0x20, 0x32, 0xe9, 0x27, 0x70, 0x60, 0x7b,
849013498266Sopenharmony_ci  0x4e, 0x57, 0x16, 0xe5, 0x74, 0xd0, 0x3e, 0x33, 0x94, 0xa0, 0x90, 0xd5,
849113498266Sopenharmony_ci  0x2a, 0xe2, 0x0b, 0xbe, 0xab, 0x9f, 0x28, 0xcc, 0x58, 0xb2, 0x6c, 0xb8,
849213498266Sopenharmony_ci  0x34, 0x98, 0x2a, 0x6c, 0x6e, 0xeb, 0x47, 0x14, 0x53, 0xde, 0xfc, 0x6a,
849313498266Sopenharmony_ci  0x34, 0x05, 0x9d, 0x37, 0xc5, 0xf8, 0x4e, 0x72, 0x20, 0xe7, 0xbe, 0x63,
849413498266Sopenharmony_ci  0x5b, 0x9f, 0x20, 0xb8, 0x96, 0x92, 0x51, 0xff, 0x5b, 0xa9, 0x13, 0x9a,
849513498266Sopenharmony_ci  0x55, 0x48, 0x37, 0x2d, 0xf4, 0x9f, 0x10, 0xd0, 0x7a, 0x40, 0x02, 0x12,
849613498266Sopenharmony_ci  0xa4, 0x98, 0x86, 0x1b, 0x48, 0x4b, 0x56, 0xbc, 0x39, 0x3a, 0x8d, 0x12,
849713498266Sopenharmony_ci  0x32, 0xd3, 0xc9, 0x3d, 0x5d, 0xd5, 0x78, 0x75, 0x6d, 0x4a, 0xa9, 0x87,
849813498266Sopenharmony_ci  0x50, 0x2c, 0x91, 0xc1, 0x2a, 0x82, 0xb3, 0xb1, 0x89, 0x1e, 0x20, 0x8e,
849913498266Sopenharmony_ci  0x9a, 0x3f, 0x79, 0xf3, 0xb2, 0xdf, 0x70, 0x26, 0xbb, 0x71, 0xa8, 0x94,
850013498266Sopenharmony_ci  0x90, 0x29, 0xc8, 0x78, 0xed, 0xc9, 0x3a, 0xc2, 0x86, 0xa9, 0x58, 0x31,
850113498266Sopenharmony_ci  0x90, 0x1d, 0xed, 0x71, 0xac, 0x60, 0x4f, 0x37, 0x56, 0x60, 0x2a, 0x65,
850213498266Sopenharmony_ci  0xf3, 0xb1, 0xe4, 0xea, 0x95, 0x8f, 0x88, 0x46, 0x76, 0x53, 0x45, 0xcd,
850313498266Sopenharmony_ci  0xeb, 0xa1, 0x26, 0x8e, 0xd3, 0xa2, 0x29, 0xf5, 0xa4, 0xe1, 0x1d, 0x6e,
850413498266Sopenharmony_ci  0xb8, 0x27, 0x04, 0x80, 0xcd, 0x12, 0xcd, 0x0e, 0x83, 0xb1, 0x45, 0xdc,
850513498266Sopenharmony_ci  0x91, 0xd3, 0x78, 0x64, 0x9a, 0x87, 0xb1, 0x19, 0x68, 0x21, 0x25, 0x4f,
850613498266Sopenharmony_ci  0xbc, 0x2e, 0x8a, 0x32, 0x3b, 0xc3, 0x10, 0x2e, 0x2f, 0x34, 0xd2, 0x0c,
850713498266Sopenharmony_ci  0xa4, 0x7d, 0x6e, 0x0e, 0xcc, 0xe2, 0x3b, 0x96, 0x90, 0xda, 0x4b, 0xe7,
850813498266Sopenharmony_ci  0xa3, 0x44, 0x98, 0x52, 0x95, 0x79, 0x33, 0xa0, 0xaa, 0xf0, 0x41, 0x39,
850913498266Sopenharmony_ci  0x94, 0x8f, 0xc3, 0xf4, 0x6a, 0x81, 0x74, 0xa5, 0xe6, 0x15, 0x11, 0x45,
851013498266Sopenharmony_ci  0x4f, 0x13, 0x02, 0x89, 0x6a, 0x2d, 0x27, 0xac, 0x35, 0x47, 0x41, 0x1d,
851113498266Sopenharmony_ci  0x6d, 0x1a, 0xe2, 0xd2, 0x99, 0xc8, 0xdf, 0x25, 0x97, 0xbc, 0xb7, 0xbd,
851213498266Sopenharmony_ci  0xf3, 0x78, 0xb0, 0x05, 0xff, 0x07, 0xfb, 0x22, 0x06, 0x3c, 0x2a, 0x41,
851313498266Sopenharmony_ci  0x68, 0x0a, 0x0e, 0xdb, 0x27, 0xd3, 0x8f, 0x9e, 0xf5, 0x97, 0xb8, 0x47,
851413498266Sopenharmony_ci  0x51, 0x9e, 0xf5, 0xc2, 0x52, 0x88, 0xb2, 0x87, 0x7b, 0x95, 0x44, 0xb4,
851513498266Sopenharmony_ci  0x13, 0x87, 0x99, 0xed, 0x3d, 0x78, 0xb0, 0xbb, 0xa7, 0x7f, 0xc3, 0xb9,
851613498266Sopenharmony_ci  0xd9, 0x7b, 0x02, 0x1f, 0x7c, 0x0a, 0x12, 0xd6, 0x0b, 0xe4, 0x81, 0xec,
851713498266Sopenharmony_ci  0x37, 0x71, 0x38, 0x60, 0x1b, 0x91, 0x24, 0xda, 0x2f, 0x26, 0x13, 0xe0,
851813498266Sopenharmony_ci  0xfe, 0x6d, 0xae, 0xf7, 0x54, 0x1e, 0xd9, 0x7c, 0x4b, 0x50, 0xb0, 0x02,
851913498266Sopenharmony_ci  0xd1, 0xcc, 0xf8, 0x00, 0x62, 0x6b, 0xb6, 0xd5, 0xd0, 0x6b, 0x47, 0x60,
852013498266Sopenharmony_ci  0xe0, 0xe6, 0x06, 0x81, 0xeb, 0xd2, 0xfd, 0x5e, 0x23, 0x67, 0x61, 0x5e,
852113498266Sopenharmony_ci  0x70, 0xfe, 0xb9, 0x54, 0x26, 0x72, 0x9c, 0x56, 0xb5, 0xa9, 0xa8, 0xfa,
852213498266Sopenharmony_ci  0x90, 0xcd, 0xe7, 0x7e, 0xb0, 0x39, 0x55, 0xe1, 0x74, 0x0a, 0x2e, 0xd0,
852313498266Sopenharmony_ci  0x19, 0xa0, 0x88, 0x2d, 0x3e, 0x1a, 0x85, 0xa4, 0xd3, 0x31, 0xe2, 0x07,
852413498266Sopenharmony_ci  0x0f, 0x77, 0x98, 0x4e, 0x8a, 0x52, 0xca, 0xd4, 0xb5, 0x8f, 0x9a, 0x03,
852513498266Sopenharmony_ci  0xf5, 0x2e, 0xa8, 0x3b, 0x63, 0x04, 0x75, 0x67, 0xac, 0x5f, 0xb2, 0x9f,
852613498266Sopenharmony_ci  0x5a, 0x58, 0x5a, 0x45, 0x7f, 0xea, 0x4b, 0xb7, 0xcf, 0x4f, 0x8f, 0xc3,
852713498266Sopenharmony_ci  0xa8, 0xf7, 0x4a, 0x22, 0x27, 0x2f, 0xff, 0xeb, 0x50, 0xe3, 0xed, 0x14,
852813498266Sopenharmony_ci  0x3c, 0x85, 0x2c, 0x17, 0x01, 0x84, 0x03, 0x38, 0xd4, 0xf1, 0x53, 0xd8,
852913498266Sopenharmony_ci  0x26, 0x2a, 0x74, 0x51, 0x23, 0xb6, 0xb7, 0x26, 0x3c, 0x34, 0xfd, 0x67,
853013498266Sopenharmony_ci  0xa4, 0xde, 0x30, 0x00, 0x33, 0xc8, 0x1a, 0x9b, 0x84, 0x4b, 0x5a, 0x78,
853113498266Sopenharmony_ci  0x3a, 0x3d, 0xed, 0x5c, 0x03, 0xf6, 0xc5, 0x14, 0x02, 0x37, 0xa9, 0x83,
853213498266Sopenharmony_ci  0x72, 0x8d, 0xb1, 0x0d, 0x63, 0x33, 0xcb, 0xa9, 0xd8, 0x12, 0xc1, 0xc5,
853313498266Sopenharmony_ci  0xf9, 0x70, 0x44, 0x82, 0x84, 0xc6, 0x98, 0xe0, 0x8b, 0xba, 0x5b, 0x04,
853413498266Sopenharmony_ci  0x31, 0xd4, 0xb5, 0x5a, 0xb8, 0x44, 0x28, 0x48, 0x65, 0x75, 0xe1, 0xe3,
853513498266Sopenharmony_ci  0x29, 0x88, 0x7f, 0x37, 0x16, 0x36, 0x9e, 0x46, 0x0f, 0xb6, 0xb6, 0x56,
853613498266Sopenharmony_ci  0x3b, 0x66, 0x16, 0xe4, 0xc7, 0x39, 0x57, 0x23, 0x3e, 0x57, 0xc5, 0x87,
853713498266Sopenharmony_ci  0x2c, 0x8d, 0x7f, 0x4b, 0x4a, 0x76, 0xda, 0x74, 0x22, 0x31, 0x6e, 0x18,
853813498266Sopenharmony_ci  0xf3, 0x21, 0xc2, 0xdc, 0x53, 0xfc, 0x04, 0xd1, 0xa8, 0x09, 0x11, 0xd3,
853913498266Sopenharmony_ci  0x5d, 0x67, 0xa3, 0x28, 0x25, 0x5f, 0x70, 0xe3, 0x9e, 0xf1, 0x78, 0x52,
854013498266Sopenharmony_ci  0x0b, 0x80, 0xba, 0x85, 0x4d, 0xb4, 0x40, 0x5e, 0x03, 0x8c, 0x90, 0x31,
854113498266Sopenharmony_ci  0xb5, 0xbc, 0xb0, 0x19, 0x69, 0x45, 0x6a, 0xaf, 0x7a, 0xf2, 0x7f, 0x96,
854213498266Sopenharmony_ci  0xc7, 0x0c, 0x4c, 0x28, 0x0f, 0x52, 0x10, 0x0f, 0x22, 0x64, 0xcb, 0xb1,
854313498266Sopenharmony_ci  0x60, 0x6a, 0x61, 0x0b, 0x4b, 0xad, 0xe0, 0x31, 0x74, 0xdc, 0xa8, 0xcf,
854413498266Sopenharmony_ci  0x60, 0x99, 0x1c, 0x0e, 0x7e, 0x24, 0xa7, 0x01, 0xf7, 0x8d, 0x27, 0xfb,
854513498266Sopenharmony_ci  0x43, 0x5e, 0x5c, 0xe6, 0xe8, 0x39, 0x94, 0x9a, 0x60, 0x15, 0x0d, 0xb2,
854613498266Sopenharmony_ci  0x4e, 0x25, 0x4e, 0x44, 0x6c, 0x2c, 0xed, 0x63, 0x2f, 0xd6, 0x64, 0x6b,
854713498266Sopenharmony_ci  0xa2, 0x7c, 0x93, 0xd6, 0x12, 0xb0, 0xca, 0xc3, 0xd5, 0x9c, 0x74, 0xca,
854813498266Sopenharmony_ci  0x6b, 0x37, 0x48, 0xe8, 0x55, 0x5a, 0x77, 0xa2, 0x58, 0xd2, 0x7d, 0xd1,
854913498266Sopenharmony_ci  0x2e, 0x8e, 0xda, 0x87, 0x63, 0xd8, 0x53, 0xff, 0x8b, 0x1d, 0xb4, 0x0c,
855013498266Sopenharmony_ci  0x51, 0x4a, 0xa0, 0xc5, 0xbe, 0x19, 0x30, 0xa8, 0x26, 0x88, 0x67, 0xce,
855113498266Sopenharmony_ci  0x5e, 0xad, 0xec, 0x72, 0x6c, 0x53, 0x4c, 0x43, 0xae, 0x22, 0x6b, 0xc1,
855213498266Sopenharmony_ci  0xc2, 0xc3, 0x71, 0xa1, 0x9a, 0x5f, 0x6f, 0x9a, 0x2b, 0x49, 0xee, 0x3e,
855313498266Sopenharmony_ci  0x13, 0x36, 0xc8, 0x26, 0xf1, 0x53, 0xf5, 0x02, 0xf2, 0x73, 0x7d, 0x0d,
855413498266Sopenharmony_ci  0xa4, 0x6f, 0x5f, 0x78, 0x43, 0x3b, 0x06, 0x45, 0xb5, 0x8f, 0xbe, 0x2d,
855513498266Sopenharmony_ci  0x30, 0xc3, 0x55, 0x7c, 0x72, 0x6e, 0x05, 0x64, 0x63, 0xb6, 0x08, 0x26,
855613498266Sopenharmony_ci  0xe9, 0x93, 0x88, 0x18, 0x28, 0x80, 0x14, 0x51, 0xbd, 0x91, 0x44, 0xdd,
855713498266Sopenharmony_ci  0x22, 0xd2, 0x99, 0x04, 0xb4, 0xb2, 0xd2, 0x4b, 0x40, 0x68, 0x9d, 0x39,
855813498266Sopenharmony_ci  0xff, 0xe5, 0x58, 0x8d, 0x79, 0x3a, 0x1d, 0x26, 0x91, 0xc0, 0xe0, 0xf9,
855913498266Sopenharmony_ci  0x80, 0x62, 0x87, 0x1e, 0x74, 0x12, 0x67, 0x46, 0xd7, 0x5d, 0x1e, 0x10,
856013498266Sopenharmony_ci  0x69, 0x06, 0xf7, 0xc1, 0x56, 0x85, 0x57, 0x72, 0x43, 0xf7, 0x91, 0x6e,
856113498266Sopenharmony_ci  0x3d, 0xec, 0xbd, 0x32, 0xfe, 0xcb, 0xf3, 0xc2, 0x73, 0x0d, 0xf1, 0xb0,
856213498266Sopenharmony_ci  0x2d, 0x90, 0x9e, 0x53, 0x37, 0x8c, 0x2a, 0x77, 0xa2, 0xc7, 0xec, 0x82,
856313498266Sopenharmony_ci  0x52, 0xad, 0x48, 0xcc, 0x55, 0xaf, 0x3a, 0xc1, 0x3a, 0x97, 0x68, 0x18,
856413498266Sopenharmony_ci  0x09, 0xa2, 0x12, 0xba, 0x58, 0xc2, 0x5c, 0x13, 0x2e, 0xc1, 0xe4, 0x64,
856513498266Sopenharmony_ci  0xba, 0xeb, 0xa4, 0x30, 0x87, 0x16, 0xcf, 0x96, 0x25, 0xcd, 0x82, 0x50,
856613498266Sopenharmony_ci  0x05, 0x9c, 0x67, 0x75, 0x91, 0x21, 0xba, 0x23, 0x6c, 0x23, 0x08, 0x69,
856713498266Sopenharmony_ci  0xe8, 0x4e, 0xa2, 0x33, 0x82, 0x10, 0x73, 0x52, 0x78, 0x03, 0x37, 0xd2,
856813498266Sopenharmony_ci  0x40, 0x40, 0x02, 0x47, 0x39, 0x47, 0xd1, 0x2b, 0xab, 0x17, 0xc1, 0xd3,
856913498266Sopenharmony_ci  0xdd, 0x11, 0x29, 0xd7, 0x20, 0xeb, 0xfb, 0xc2, 0x8c, 0xea, 0xba, 0x00,
857013498266Sopenharmony_ci  0x46, 0x1c, 0x7a, 0x18, 0x93, 0x25, 0xbe, 0xcb, 0xd6, 0x73, 0xb3, 0x37,
857113498266Sopenharmony_ci  0xe3, 0x21, 0x1d, 0xa4, 0x18, 0x86, 0x5a, 0xad, 0x18, 0x7a, 0xe7, 0x90,
857213498266Sopenharmony_ci  0xa7, 0x73, 0x4f, 0xb8, 0x44, 0xbb, 0x8f, 0xac, 0xef, 0xff, 0x5e, 0x73,
857313498266Sopenharmony_ci  0x51, 0x1c, 0x27, 0x12, 0x23, 0xe3, 0x96, 0xd4, 0x20, 0x50, 0x29, 0x11,
857413498266Sopenharmony_ci  0x33, 0x14, 0x66, 0x81, 0xdb, 0x14, 0x81, 0x0f, 0xee, 0x79, 0xff, 0x32,
857513498266Sopenharmony_ci  0xa5, 0xa0, 0x0f, 0x58, 0xcf, 0xe9, 0x95, 0x6d, 0xd0, 0xc1, 0x7c, 0x32,
857613498266Sopenharmony_ci  0x65, 0x1e, 0x0d, 0x33, 0xb1, 0x3d, 0x78, 0xa1, 0xeb, 0xbd, 0x93, 0xb4,
857713498266Sopenharmony_ci  0x8e, 0xb9, 0x4f, 0xcc, 0x79, 0x10, 0x17, 0x8f, 0x30, 0x3c, 0x6e, 0xda,
857813498266Sopenharmony_ci  0x80, 0x3a, 0x93, 0xda, 0x64, 0x9c, 0xe3, 0xcc, 0x9d, 0xdb, 0xcd, 0xbd,
857913498266Sopenharmony_ci  0x39, 0x78, 0x7d, 0xb8, 0xfd, 0xd5, 0x0f, 0x07, 0xaf, 0xde, 0x1d, 0x6e,
858013498266Sopenharmony_ci  0xff, 0x35, 0xc2, 0xbf, 0x76, 0xf8, 0xaf, 0x9d, 0x9e, 0xa8, 0x9f, 0x0c,
858113498266Sopenharmony_ci  0x97, 0x28, 0x27, 0xcc, 0x6a, 0x3e, 0xbc, 0x96, 0x6d, 0x65, 0x87, 0x56,
858213498266Sopenharmony_ci  0x41, 0xab, 0xbd, 0x32, 0x67, 0xe2, 0x80, 0x1c, 0x5b, 0x05, 0x91, 0xe4,
858313498266Sopenharmony_ci  0x78, 0xb8, 0x11, 0x0d, 0x38, 0x9d, 0x28, 0x25, 0xeb, 0xd5, 0xc6, 0xc0,
858413498266Sopenharmony_ci  0xa7, 0x69, 0x13, 0x6c, 0xa2, 0xe5, 0x5b, 0x8c, 0x21, 0x26, 0x1a, 0x2f,
858513498266Sopenharmony_ci  0x52, 0xa9, 0xf2, 0xd4, 0x80, 0xc0, 0xea, 0xab, 0x03, 0xc0, 0xf3, 0xb2,
858613498266Sopenharmony_ci  0x6b, 0xb9, 0x96, 0xca, 0x29, 0xcb, 0xd2, 0xe7, 0x60, 0x0a, 0x1c, 0xd0,
858713498266Sopenharmony_ci  0x59, 0x5a, 0xeb, 0x98, 0x69, 0x4b, 0x31, 0x2b, 0x84, 0xc2, 0x1e, 0x82,
858813498266Sopenharmony_ci  0xf2, 0x16, 0xdc, 0xa0, 0x6b, 0x5f, 0xad, 0x45, 0xd5, 0xd5, 0x6c, 0x58,
858913498266Sopenharmony_ci  0x4c, 0x1d, 0xcc, 0xd5, 0x56, 0x2a, 0x0b, 0xa7, 0x7c, 0x28, 0x4a, 0x81,
859013498266Sopenharmony_ci  0xb8, 0x65, 0xfd, 0x80, 0xff, 0xc4, 0x7a, 0x32, 0x35, 0x92, 0xc4, 0x45,
859113498266Sopenharmony_ci  0x05, 0xab, 0x0b, 0x36, 0x6c, 0xf1, 0x5d, 0x2b, 0x31, 0x25, 0x46, 0x49,
859213498266Sopenharmony_ci  0xf4, 0xe0, 0x3b, 0x84, 0x19, 0x77, 0x71, 0x7f, 0x16, 0x7c, 0x1c, 0x18,
859313498266Sopenharmony_ci  0x4c, 0x61, 0xf7, 0x58, 0x71, 0xc3, 0x87, 0x4f, 0x90, 0xb2, 0x5a, 0x72,
859413498266Sopenharmony_ci  0xa1, 0xe9, 0xbb, 0x14, 0x7f, 0x81, 0xe6, 0xb1, 0x2b, 0xc5, 0x67, 0xe5,
859513498266Sopenharmony_ci  0x20, 0x15, 0x16, 0x10, 0x68, 0xca, 0x78, 0x2b, 0x0d, 0xbd, 0x1b, 0x21,
859613498266Sopenharmony_ci  0x6f, 0x81, 0xb0, 0xc5, 0xaf, 0xf0, 0x64, 0xaa, 0x99, 0xdc, 0xa0, 0xb4,
859713498266Sopenharmony_ci  0x94, 0x18, 0x55, 0x68, 0x36, 0x1f, 0x3d, 0x70, 0x2c, 0x4c, 0xb7, 0x9b,
859813498266Sopenharmony_ci  0xc3, 0x3a, 0x65, 0x8d, 0xc8, 0x14, 0x76, 0x6d, 0x75, 0xc4, 0x6a, 0xa5,
859913498266Sopenharmony_ci  0x0d, 0x08, 0x6d, 0xcc, 0x0b, 0x46, 0x3d, 0x88, 0x82, 0xb1, 0x67, 0x20,
860013498266Sopenharmony_ci  0x3a, 0x63, 0x6c, 0x41, 0xdc, 0xdb, 0x90, 0x10, 0x2c, 0xdd, 0x34, 0x2a,
860113498266Sopenharmony_ci  0xc2, 0x15, 0x30, 0x12, 0x18, 0x00, 0x68, 0xc7, 0x75, 0x6c, 0x3d, 0xfb,
860213498266Sopenharmony_ci  0x2a, 0xe2, 0xd0, 0x95, 0x40, 0x20, 0xbe, 0x6c, 0x51, 0x60, 0xfd, 0xbd,
860313498266Sopenharmony_ci  0xcd, 0x73, 0x7a, 0xbd, 0x0d, 0xcd, 0xb3, 0xac, 0xb9, 0x6e, 0x8a, 0x91,
860413498266Sopenharmony_ci  0x04, 0x49, 0x35, 0xd0, 0xe2, 0xb0, 0x19, 0xd0, 0xa9, 0x6e, 0xad, 0xb3,
860513498266Sopenharmony_ci  0xb3, 0xed, 0x80, 0x7f, 0xd9, 0x67, 0xad, 0xe2, 0x91, 0x5f, 0x99, 0x2b,
860613498266Sopenharmony_ci  0x3c, 0x24, 0x28, 0x39, 0xc2, 0x9b, 0x46, 0x18, 0x2a, 0x58, 0x92, 0x2b,
860713498266Sopenharmony_ci  0xcd, 0xc8, 0x3c, 0x99, 0xb7, 0xa0, 0x69, 0xd8, 0xad, 0x30, 0x2e, 0xff,
860813498266Sopenharmony_ci  0x23, 0x06, 0x69, 0xa2, 0x06, 0xa3, 0x75, 0xcb, 0xad, 0x22, 0x42, 0xfd,
860913498266Sopenharmony_ci  0xdf, 0x50, 0xc3, 0x81, 0x0a, 0x90, 0x9b, 0xaf, 0x8b, 0xdf, 0x61, 0x52,
861013498266Sopenharmony_ci  0x49, 0x78, 0x22, 0xae, 0x58, 0xd9, 0x39, 0xf2, 0xb6, 0x80, 0xe7, 0xb2,
861113498266Sopenharmony_ci  0xfa, 0x86, 0x70, 0x97, 0x50, 0xc6, 0x10, 0xc9, 0x72, 0x20, 0xcc, 0x79,
861213498266Sopenharmony_ci  0xaa, 0x2d, 0x4f, 0x92, 0xf5, 0x5f, 0x47, 0xe2, 0x6c, 0x48, 0x77, 0x1c,
861313498266Sopenharmony_ci  0x5b, 0xdf, 0x16, 0xef, 0x50, 0xa8, 0x0c, 0xd8, 0x34, 0xcc, 0x5d, 0x6c,
861413498266Sopenharmony_ci  0x0a, 0x17, 0x79, 0x34, 0xe9, 0x16, 0xd4, 0x70, 0xd6, 0xca, 0xdd, 0x11,
861513498266Sopenharmony_ci  0x2e, 0x84, 0xe7, 0xa4, 0x16, 0x72, 0xf0, 0xd9, 0xd8, 0xcb, 0x96, 0x9c,
861613498266Sopenharmony_ci  0x49, 0x2d, 0x89, 0xdc, 0x3d, 0xf2, 0xa6, 0x42, 0x79, 0x5e, 0x0b, 0x38,
861713498266Sopenharmony_ci  0x32, 0x67, 0xaf, 0xd1, 0xc3, 0x79, 0xca, 0xd1, 0x81, 0xf5, 0x08, 0x4b,
861813498266Sopenharmony_ci  0xe0, 0xb4, 0xd7, 0xb7, 0xc0, 0x52, 0x28, 0x12, 0x2a, 0x4a, 0x40, 0x53,
861913498266Sopenharmony_ci  0x28, 0xaa, 0xe8, 0xab, 0x18, 0x51, 0x6c, 0xc7, 0x4b, 0x72, 0xe7, 0x3a,
862013498266Sopenharmony_ci  0x23, 0x62, 0x4b, 0x0d, 0x22, 0xcf, 0xa7, 0x86, 0x85, 0x8d, 0xf0, 0x2e,
862113498266Sopenharmony_ci  0x1c, 0x72, 0x0b, 0x15, 0x91, 0x02, 0xbb, 0xbb, 0x12, 0x90, 0x78, 0xf6,
862213498266Sopenharmony_ci  0xcc, 0x3a, 0x18, 0xdd, 0xa2, 0x63, 0xe3, 0x31, 0xeb, 0x00, 0xed, 0x6d,
862313498266Sopenharmony_ci  0x13, 0xdc, 0x20, 0x49, 0xec, 0x89, 0x86, 0x28, 0x3d, 0xfb, 0xd4, 0x9a,
862413498266Sopenharmony_ci  0x58, 0xaf, 0x34, 0xab, 0x74, 0x7e, 0x3a, 0xcb, 0x58, 0x6a, 0xef, 0xf2,
862513498266Sopenharmony_ci  0x5b, 0x24, 0x98, 0x39, 0xe5, 0xbe, 0xaa, 0x42, 0x98, 0x1a, 0x75, 0xd0,
862613498266Sopenharmony_ci  0xa0, 0x2d, 0xb2, 0xf6, 0x2c, 0xdf, 0x78, 0xd7, 0xe9, 0xd8, 0x90, 0xd1,
862713498266Sopenharmony_ci  0x45, 0x66, 0x0f, 0x13, 0x45, 0x33, 0x73, 0x8b, 0x88, 0xfa, 0x18, 0x8d,
862813498266Sopenharmony_ci  0xae, 0xc7, 0x58, 0x58, 0x73, 0x14, 0x9d, 0x50, 0x11, 0xba, 0xe8, 0x55,
862913498266Sopenharmony_ci  0x56, 0xd5, 0x1b, 0x1a, 0xec, 0xcb, 0x2e, 0xcf, 0x80, 0x67, 0xb4, 0xa6,
863013498266Sopenharmony_ci  0xfb, 0x8e, 0x6d, 0xaa, 0x20, 0xb2, 0x8e, 0x92, 0x92, 0xb1, 0xeb, 0x79,
863113498266Sopenharmony_ci  0xb6, 0xc6, 0xe0, 0x63, 0xcf, 0x10, 0x41, 0xd2, 0xa3, 0x19, 0x8f, 0x6b,
863213498266Sopenharmony_ci  0xdd, 0x79, 0x60, 0xc6, 0xb4, 0x77, 0xfc, 0x62, 0x13, 0x4f, 0x29, 0xe1,
863313498266Sopenharmony_ci  0x3b, 0x17, 0x17, 0x8f, 0x70, 0x4b, 0x8c, 0xd2, 0x80, 0xac, 0x57, 0x23,
863413498266Sopenharmony_ci  0x0f, 0x42, 0xe0, 0x4a, 0x82, 0x7a, 0xc6, 0x46, 0x1e, 0x9c, 0x68, 0x73,
863513498266Sopenharmony_ci  0x52, 0x12, 0x5f, 0x9a, 0x08, 0x10, 0x10, 0xe9, 0x80, 0xc5, 0x3c, 0xa2,
863613498266Sopenharmony_ci  0x38, 0x8e, 0xf0, 0x19, 0x0e, 0x1a, 0x18, 0x69, 0xcb, 0x3e, 0xdd, 0xb8,
863713498266Sopenharmony_ci  0xd8, 0x25, 0xfb, 0x0e, 0xb1, 0x80, 0xc1, 0x8d, 0xe5, 0xdd, 0xa1, 0x0c,
863813498266Sopenharmony_ci  0xb5, 0x33, 0xb1, 0xe4, 0xfa, 0xb7, 0x40, 0x66, 0xbe, 0xa6, 0x8d, 0x4e,
863913498266Sopenharmony_ci  0x09, 0xb9, 0xad, 0x01, 0x13, 0x21, 0xff, 0x86, 0x1f, 0xfe, 0xb6, 0xc8,
864013498266Sopenharmony_ci  0x3f, 0xc4, 0x52, 0xa1, 0x32, 0xf6, 0x56, 0x13, 0x5e, 0x22, 0xf9, 0x25,
864113498266Sopenharmony_ci  0x06, 0x31, 0xaa, 0x0a, 0x05, 0x98, 0xa8, 0x08, 0x04, 0x37, 0xe3, 0x6f,
864213498266Sopenharmony_ci  0x0a, 0xa8, 0x6b, 0x2f, 0xfa, 0xa2, 0xef, 0xd4, 0xc5, 0x93, 0xe0, 0x26,
864313498266Sopenharmony_ci  0xf6, 0x89, 0xfa, 0xee, 0x15, 0x23, 0xb9, 0xe4, 0x29, 0xe2, 0xde, 0x24,
864413498266Sopenharmony_ci  0x54, 0x0d, 0x17, 0x6d, 0xd1, 0x0e, 0x14, 0x4a, 0x06, 0xdb, 0x57, 0x8e,
864513498266Sopenharmony_ci  0xce, 0x11, 0x0f, 0x8d, 0x0c, 0xdf, 0x1c, 0x36, 0x42, 0x52, 0x51, 0x48,
864613498266Sopenharmony_ci  0x63, 0x12, 0xb5, 0x52, 0x84, 0x7a, 0x69, 0x06, 0x0f, 0x01, 0x0a, 0x6a,
864713498266Sopenharmony_ci  0xf0, 0xbd, 0xde, 0x1f, 0x81, 0xb1, 0x86, 0x9b, 0x43, 0xe9, 0xa6, 0xf1,
864813498266Sopenharmony_ci  0x16, 0x25, 0x2d, 0x1a, 0x0d, 0x0e, 0xd9, 0xa5, 0x16, 0x53, 0xe2, 0x96,
864913498266Sopenharmony_ci  0x70, 0xdd, 0xc8, 0x28, 0x13, 0xcc, 0x66, 0xd6, 0xe6, 0x34, 0xac, 0xc9,
865013498266Sopenharmony_ci  0x8a, 0x10, 0x64, 0x33, 0xcc, 0x0b, 0x37, 0x25, 0x11, 0x43, 0x5f, 0x26,
865113498266Sopenharmony_ci  0x32, 0x93, 0x30, 0x84, 0x50, 0xc6, 0x31, 0x38, 0x32, 0x39, 0x1b, 0xd6,
865213498266Sopenharmony_ci  0x2e, 0x28, 0xe4, 0x4e, 0x73, 0x6a, 0xd0, 0x50, 0x48, 0xf2, 0xb6, 0x45,
865313498266Sopenharmony_ci  0x5a, 0xb4, 0xf1, 0xf6, 0xe3, 0x33, 0xb8, 0xe3, 0x79, 0x82, 0x33, 0xf4,
865413498266Sopenharmony_ci  0x69, 0x6d, 0x3d, 0x7e, 0xb8, 0x85, 0x82, 0x18, 0xd6, 0x4e, 0x89, 0xf8,
865513498266Sopenharmony_ci  0xb2, 0x0f, 0x06, 0xe2, 0x72, 0x5a, 0x5e, 0x40, 0x10, 0x29, 0xd4, 0xce,
865613498266Sopenharmony_ci  0x14, 0x29, 0x98, 0x7a, 0xa3, 0x4b, 0x17, 0xae, 0x94, 0x8c, 0xbf, 0x1c,
865713498266Sopenharmony_ci  0x5e, 0x8a, 0xd9, 0x2e, 0x20, 0xc3, 0x97, 0x57, 0xde, 0x91, 0x9f, 0xd4,
865813498266Sopenharmony_ci  0x73, 0x97, 0x5e, 0x97, 0x47, 0xb7, 0xdb, 0xe7, 0xee, 0x03, 0xa9, 0x64,
865913498266Sopenharmony_ci  0xc9, 0x28, 0xae, 0xf3, 0x59, 0x38, 0x03, 0x33, 0x04, 0x69, 0x40, 0x81,
866013498266Sopenharmony_ci  0x36, 0x6f, 0x91, 0x98, 0xd6, 0x5a, 0x16, 0xc9, 0x37, 0x72, 0x08, 0xd4,
866113498266Sopenharmony_ci  0x3f, 0xee, 0xd8, 0x4b, 0x4c, 0x9b, 0xbc, 0x8f, 0x3f, 0x3d, 0x85, 0x99,
866213498266Sopenharmony_ci  0xd0, 0xe8, 0x31, 0xf5, 0x08, 0x63, 0x89, 0x36, 0x2c, 0xd8, 0xaa, 0xd1,
866313498266Sopenharmony_ci  0x8a, 0xd0, 0xad, 0xc3, 0x5b, 0xcb, 0xf5, 0x50, 0xb4, 0x36, 0x7b, 0x10,
866413498266Sopenharmony_ci  0x14, 0x8a, 0x03, 0x51, 0xd5, 0x91, 0x60, 0xf2, 0x25, 0x9c, 0xd2, 0xf6,
866513498266Sopenharmony_ci  0x0d, 0x5c, 0x04, 0xbc, 0x75, 0xf8, 0x4c, 0x53, 0x26, 0xb1, 0x67, 0x8d,
866613498266Sopenharmony_ci  0xa7, 0x63, 0x48, 0x4a, 0xcb, 0x1a, 0x0e, 0x9e, 0x22, 0x42, 0x09, 0x65,
866713498266Sopenharmony_ci  0xd9, 0x86, 0xab, 0xa3, 0x49, 0x95, 0x31, 0xd3, 0xf1, 0x43, 0x2a, 0x29,
866813498266Sopenharmony_ci  0x65, 0x01, 0xff, 0x03, 0x67, 0x55, 0xe3, 0xd2, 0xb6, 0x1e, 0x3d, 0x78,
866913498266Sopenharmony_ci  0xb0, 0x14, 0xf0, 0xb6, 0xe6, 0xc8, 0x01, 0x50, 0x67, 0x46, 0x35, 0xf0,
867013498266Sopenharmony_ci  0x2e, 0x71, 0xb7, 0xa0, 0xba, 0x27, 0xfa, 0x61, 0x87, 0x15, 0xa7, 0xbd,
867113498266Sopenharmony_ci  0xec, 0x4b, 0x6c, 0x39, 0xcc, 0x3c, 0x4c, 0xca, 0xdb, 0x6d, 0x82, 0x09,
867213498266Sopenharmony_ci  0xae, 0xa1, 0x3d, 0x3b, 0x8c, 0xad, 0xc7, 0x8f, 0x1f, 0x47, 0xf1, 0x29,
867313498266Sopenharmony_ci  0xd3, 0x1f, 0x8b, 0xde, 0x7e, 0xb2, 0x54, 0x9e, 0x5e, 0xde, 0x9c, 0xfa,
867413498266Sopenharmony_ci  0x96, 0xc2, 0x7d, 0x8f, 0xca, 0xe9, 0x44, 0x6a, 0x3b, 0xbc, 0x96, 0x82,
867513498266Sopenharmony_ci  0x5c, 0x17, 0x98, 0x9f, 0x49, 0x02, 0xd4, 0x44, 0x3d, 0x9d, 0x20, 0xd1,
867613498266Sopenharmony_ci  0x94, 0x19, 0x5a, 0xca, 0xcb, 0xb4, 0x5e, 0x94, 0x39, 0x68, 0x25, 0x8b,
867713498266Sopenharmony_ci  0xca, 0x79, 0xc4, 0x4f, 0x52, 0x60, 0x37, 0xd2, 0x00, 0xc5, 0xc8, 0xc9,
867813498266Sopenharmony_ci  0x62, 0x4a, 0xf2, 0xce, 0xeb, 0x1f, 0x4e, 0xa2, 0xf5, 0xa3, 0x93, 0xcd,
867913498266Sopenharmony_ci  0xdd, 0x2f, 0x03, 0x01, 0xc7, 0xeb, 0x54, 0x40, 0xda, 0x81, 0x35, 0x7c,
868013498266Sopenharmony_ci  0xb0, 0x15, 0x88, 0xef, 0x6b, 0x72, 0x93, 0xe9, 0x64, 0xa5, 0xea, 0x0a,
868113498266Sopenharmony_ci  0xc0, 0x34, 0xda, 0xf7, 0x9f, 0xc7, 0x42, 0xa6, 0x93, 0xd5, 0xf7, 0x0f,
868213498266Sopenharmony_ci  0x86, 0x01, 0xdb, 0xc5, 0xca, 0xc4, 0x0a, 0x59, 0x6d, 0xdf, 0x0a, 0xba,
868313498266Sopenharmony_ci  0x37, 0x57, 0x64, 0x6b, 0x6f, 0x09, 0xb6, 0xb6, 0x04, 0x92, 0x97, 0x17,
868413498266Sopenharmony_ci  0xc2, 0xe4, 0xd5, 0x33, 0xbf, 0x76, 0x90, 0x56, 0x24, 0x67, 0xc0, 0xc5,
868513498266Sopenharmony_ci  0xff, 0x7a, 0x9b, 0x5e, 0x00, 0x45, 0x05, 0x2f, 0x59, 0x14, 0x72, 0x59,
868613498266Sopenharmony_ci  0xd8, 0x44, 0x93, 0x83, 0xea, 0x3f, 0x08, 0x02, 0xd8, 0xcc, 0xeb, 0x36,
868713498266Sopenharmony_ci  0x82, 0x2c, 0x47, 0x68, 0x83, 0x00, 0xe2, 0x85, 0x08, 0x4a, 0x74, 0x90,
868813498266Sopenharmony_ci  0x80, 0x6d, 0x75, 0xf9, 0xd0, 0x64, 0x82, 0x37, 0x2a, 0x62, 0x76, 0xe7,
868913498266Sopenharmony_ci  0xa0, 0x6f, 0xd2, 0x79, 0x99, 0xfe, 0x86, 0x52, 0xfb, 0xad, 0x90, 0x1b,
869013498266Sopenharmony_ci  0x1d, 0x94, 0x16, 0xc6, 0x90, 0x6b, 0x6c, 0xdf, 0xa2, 0xbc, 0x80, 0xc5,
869113498266Sopenharmony_ci  0xda, 0x37, 0xf9, 0x83, 0x94, 0xb5, 0x7b, 0x13, 0xf8, 0x46, 0x0d, 0x1c,
869213498266Sopenharmony_ci  0xb0, 0xf1, 0x2c, 0xdc, 0x14, 0x9a, 0xdf, 0xc8, 0x26, 0x28, 0x85, 0xbe,
869313498266Sopenharmony_ci  0x31, 0x3f, 0xd8, 0x63, 0xc0, 0x0c, 0x3d, 0x60, 0xe2, 0x55, 0x08, 0x3a,
869413498266Sopenharmony_ci  0x38, 0x19, 0xa1, 0xc9, 0x89, 0xf4, 0xc5, 0x22, 0x42, 0x68, 0x91, 0x27,
869513498266Sopenharmony_ci  0x0f, 0x76, 0x76, 0xfa, 0xd1, 0xc3, 0xc1, 0xf6, 0xc0, 0x82, 0x3b, 0xe2,
869613498266Sopenharmony_ci  0x38, 0x3d, 0xe9, 0x86, 0xf2, 0x1e, 0xa5, 0x96, 0xe6, 0x30, 0x75, 0x83,
869713498266Sopenharmony_ci  0xac, 0x86, 0x57, 0x91, 0x03, 0xfb, 0x28, 0x48, 0x8f, 0x22, 0x83, 0x19,
869813498266Sopenharmony_ci  0xac, 0xc7, 0xb6, 0x01, 0xf4, 0xa7, 0x9d, 0x87, 0x0f, 0xb7, 0xbf, 0xdc,
869913498266Sopenharmony_ci  0x3b, 0x8e, 0x1f, 0xee, 0x6c, 0x2b, 0xe6, 0xa3, 0xcd, 0x7f, 0x71, 0x61,
870013498266Sopenharmony_ci  0x51, 0xa2, 0x6c, 0xcc, 0x56, 0x46, 0x42, 0xc1, 0x12, 0xbb, 0xaa, 0x97,
870113498266Sopenharmony_ci  0x53, 0xc5, 0xe0, 0x2b, 0xbd, 0xea, 0x3d, 0x03, 0xed, 0x48, 0xd4, 0x49,
870213498266Sopenharmony_ci  0xf5, 0x9e, 0x6d, 0xba, 0x3d, 0x01, 0x6b, 0xec, 0xd0, 0x52, 0x78, 0x51,
870313498266Sopenharmony_ci  0xf5, 0x52, 0x83, 0x63, 0xa2, 0xed, 0x09, 0x1c, 0xe3, 0x52, 0x00, 0xc6,
870413498266Sopenharmony_ci  0x50, 0x4e, 0x91, 0xda, 0xb7, 0x90, 0x64, 0xd7, 0x0f, 0x9f, 0x6e, 0xf0,
870513498266Sopenharmony_ci  0xbe, 0x39, 0x21, 0x6f, 0x43, 0xcd, 0xa4, 0xe0, 0xe1, 0xf6, 0x23, 0x06,
870613498266Sopenharmony_ci  0xab, 0xf0, 0xaf, 0xe5, 0xbc, 0xc8, 0xc9, 0x00, 0x87, 0xa1, 0x28, 0xe8,
870713498266Sopenharmony_ci  0x28, 0xa5, 0xc7, 0x37, 0xc5, 0x52, 0xad, 0xe5, 0x03, 0xc8, 0xed, 0x78,
870813498266Sopenharmony_ci  0x6d, 0x9a, 0xa4, 0xe2, 0x9e, 0xe8, 0xed, 0xa5, 0xf7, 0xa9, 0x12, 0x15,
870913498266Sopenharmony_ci  0xa5, 0x92, 0xb3, 0x56, 0x98, 0xe5, 0xde, 0x85, 0x6e, 0xb0, 0xe9, 0x30,
871013498266Sopenharmony_ci  0xa8, 0xa0, 0x3b, 0xbf, 0xc6, 0xac, 0xe6, 0x35, 0x8e, 0x90, 0x7b, 0x4b,
871113498266Sopenharmony_ci  0x17, 0xe7, 0xde, 0x99, 0xbc, 0x56, 0x3d, 0xc6, 0x9a, 0x78, 0xdf, 0x8a,
871213498266Sopenharmony_ci  0x2a, 0x77, 0xcf, 0x32, 0x9a, 0xfa, 0x99, 0x41, 0xb3, 0x3f, 0xa3, 0xc3,
871313498266Sopenharmony_ci  0x8d, 0xa1, 0x59, 0xa3, 0x54, 0x0f, 0x8f, 0x50, 0x3e, 0xb3, 0x84, 0x83,
871413498266Sopenharmony_ci  0xa2, 0x6d, 0xa1, 0xdd, 0x00, 0x25, 0x3a, 0xad, 0xdf, 0x5f, 0x40, 0x8e,
871513498266Sopenharmony_ci  0xd3, 0xc9, 0x37, 0xb7, 0x90, 0x64, 0xe9, 0x75, 0xd0, 0x99, 0x08, 0xe4,
871613498266Sopenharmony_ci  0x48, 0xfe, 0x2c, 0x93, 0x4b, 0xad, 0x1f, 0x85, 0x7f, 0x42, 0x3f, 0x8c,
871713498266Sopenharmony_ci  0x13, 0xe3, 0xad, 0x1c, 0xbf, 0xb7, 0x74, 0xe9, 0x24, 0x32, 0x10, 0x14,
871813498266Sopenharmony_ci  0x3a, 0x8c, 0xa1, 0x45, 0xcf, 0x8a, 0xb1, 0x16, 0x57, 0x6d, 0xa3, 0xa3,
871913498266Sopenharmony_ci  0xb9, 0xda, 0x03, 0xe5, 0x63, 0x50, 0x81, 0x65, 0x74, 0x8f, 0xa4, 0xae,
872013498266Sopenharmony_ci  0x0a, 0x5c, 0xc1, 0x2e, 0x4b, 0x20, 0x17, 0xa0, 0x35, 0x3e, 0x22, 0xa3,
872113498266Sopenharmony_ci  0x58, 0x4a, 0x42, 0xd9, 0x37, 0x7d, 0x45, 0x9d, 0xac, 0x9b, 0x3e, 0x9e,
872213498266Sopenharmony_ci  0x24, 0x60, 0x36, 0x25, 0x60, 0x19, 0x8a, 0xe5, 0x8f, 0xd8, 0xaf, 0x58,
872313498266Sopenharmony_ci  0xdb, 0xc2, 0x10, 0x9c, 0xfb, 0x33, 0x43, 0x88, 0x19, 0x12, 0x47, 0x9d,
872413498266Sopenharmony_ci  0x9a, 0xcb, 0xe8, 0x37, 0xed, 0x7b, 0xf8, 0x31, 0x54, 0xe6, 0x96, 0xee,
872513498266Sopenharmony_ci  0x58, 0x10, 0xef, 0x70, 0xa7, 0x59, 0x6f, 0x68, 0xc9, 0x5e, 0xac, 0x17,
872613498266Sopenharmony_ci  0x62, 0x62, 0x2d, 0x72, 0x05, 0x76, 0x1f, 0x07, 0x6e, 0x62, 0x13, 0xc1,
872713498266Sopenharmony_ci  0x4e, 0x49, 0xe5, 0x64, 0x82, 0x0c, 0x06, 0xd6, 0xbe, 0xc2, 0x1a, 0xca,
872813498266Sopenharmony_ci  0x34, 0x36, 0x1d, 0x5c, 0xdd, 0x4c, 0x0a, 0x41, 0xeb, 0x3b, 0xe3, 0x29,
872913498266Sopenharmony_ci  0x71, 0x51, 0xb7, 0xa2, 0xe1, 0x3c, 0xab, 0xba, 0xa3, 0x0e, 0x37, 0x3f,
873013498266Sopenharmony_ci  0xc6, 0x97, 0x97, 0x97, 0x31, 0x4a, 0x24, 0x96, 0x44, 0xc6, 0x2d, 0xb0,
873113498266Sopenharmony_ci  0x20, 0xe2, 0x4c, 0xe4, 0x4f, 0xc3, 0x4b, 0xce, 0x0f, 0x13, 0x74, 0x32,
873213498266Sopenharmony_ci  0xec, 0xca, 0x61, 0x56, 0x23, 0xd6, 0x56, 0x24, 0x54, 0x45, 0xaf, 0x49,
873313498266Sopenharmony_ci  0xa9, 0x26, 0x19, 0x0e, 0xd9, 0x65, 0xab, 0xd4, 0x64, 0xa9, 0xfb, 0x76,
873413498266Sopenharmony_ci  0x3a, 0x9d, 0x0b, 0x87, 0xfc, 0x44, 0xa8, 0x33, 0xa4, 0x88, 0x52, 0x09,
873513498266Sopenharmony_ci  0xfd, 0xcc, 0xf6, 0x90, 0x70, 0x5f, 0x10, 0x4a, 0x8d, 0x4c, 0xfb, 0x14,
873613498266Sopenharmony_ci  0x1e, 0xdd, 0xb3, 0xb3, 0x0a, 0x09, 0x4f, 0x9b, 0x6e, 0x0b, 0xbd, 0x5b,
873713498266Sopenharmony_ci  0x56, 0xbc, 0x14, 0x74, 0x74, 0xdc, 0x71, 0x27, 0xaf, 0x26, 0x18, 0xd4,
873813498266Sopenharmony_ci  0x81, 0xb9, 0x8c, 0x52, 0xbb, 0x8b, 0x16, 0x80, 0x22, 0xc4, 0x35, 0x33,
873913498266Sopenharmony_ci  0x03, 0x28, 0xef, 0x7a, 0x86, 0x23, 0xcb, 0x77, 0xcf, 0x1c, 0x47, 0x7a,
874013498266Sopenharmony_ci  0xf9, 0xc6, 0x78, 0xdc, 0x6e, 0xc1, 0x76, 0x3c, 0xc9, 0xd8, 0x70, 0x9f,
874113498266Sopenharmony_ci  0xd5, 0x38, 0x4a, 0xa5, 0x28, 0x73, 0x94, 0xbf, 0x68, 0x8f, 0x21, 0x86,
874213498266Sopenharmony_ci  0x14, 0x38, 0x29, 0xcb, 0x5e, 0x05, 0x49, 0x60, 0x3e, 0xc9, 0xd4, 0xc2,
874313498266Sopenharmony_ci  0x9f, 0x25, 0x2e, 0x8e, 0xde, 0x37, 0x4b, 0xea, 0xf6, 0x3a, 0x03, 0xbd,
874413498266Sopenharmony_ci  0x3f, 0x5b, 0xa8, 0xed, 0xa3, 0x77, 0x0e, 0x52, 0x64, 0xb1, 0x82, 0x61,
874513498266Sopenharmony_ci  0xd4, 0x79, 0xf5, 0x9b, 0xa4, 0xc6, 0xff, 0x5f, 0xb1, 0xaa, 0x54, 0x80,
874613498266Sopenharmony_ci  0xc6, 0xda, 0x77, 0xc1, 0xf5, 0xf7, 0xa5, 0xdd, 0xa0, 0xbe, 0xe1, 0x96,
874713498266Sopenharmony_ci  0xc2, 0x5d, 0x38, 0x3f, 0xc1, 0xd9, 0x29, 0x0d, 0xd9, 0x09, 0x49, 0x5f,
874813498266Sopenharmony_ci  0x1c, 0x69, 0x89, 0xcc, 0x53, 0x0b, 0x3a, 0x49, 0x94, 0x47, 0x5a, 0x22,
874913498266Sopenharmony_ci  0xef, 0x21, 0x7c, 0x1c, 0x06, 0x32, 0x0b, 0x55, 0x80, 0x3d, 0x2d, 0x98,
875013498266Sopenharmony_ci  0xbb, 0x3f, 0xfd, 0xee, 0x25, 0x01, 0x16, 0xc0, 0xcd, 0x9d, 0xab, 0xcc,
875113498266Sopenharmony_ci  0xc4, 0x53, 0x40, 0x41, 0xb5, 0xb6, 0x1e, 0xb9, 0xb3, 0xcc, 0x42, 0x8b,
875213498266Sopenharmony_ci  0x01, 0x5d, 0x07, 0xb3, 0xe2, 0x14, 0x26, 0xcc, 0xe6, 0x6c, 0x10, 0x48,
875313498266Sopenharmony_ci  0x88, 0xf1, 0xd3, 0xab, 0x80, 0x9f, 0x58, 0xec, 0xa0, 0xf0, 0x7a, 0x51,
875413498266Sopenharmony_ci  0xd7, 0x8a, 0xbb, 0xce, 0x9e, 0x72, 0xd4, 0xc6, 0xb9, 0x3c, 0x42, 0x0b,
875513498266Sopenharmony_ci  0xaf, 0xc4, 0x32, 0x8e, 0xea, 0x2a, 0xaf, 0x93, 0x8f, 0xa9, 0x9f, 0x61,
875613498266Sopenharmony_ci  0x2a, 0xfd, 0xb7, 0xa9, 0xc2, 0x4d, 0x6b, 0x71, 0x1c, 0xd6, 0x66, 0xdd,
875713498266Sopenharmony_ci  0xd2, 0x06, 0xea, 0x07, 0xa1, 0xbf, 0x71, 0xdc, 0x06, 0xba, 0x32, 0x3d,
875813498266Sopenharmony_ci  0x4c, 0x01, 0xf9, 0xdf, 0xdf, 0x24, 0xfd, 0x1c, 0xae, 0x2f, 0x32, 0x01,
875913498266Sopenharmony_ci  0x28, 0x3c, 0xa3, 0xdb, 0x94, 0xa9, 0xda, 0xa8, 0xe5, 0x5f, 0xd0, 0x8b,
876013498266Sopenharmony_ci  0x1a, 0x6e, 0xee, 0x2b, 0x34, 0x44, 0x7e, 0x23, 0x91, 0x00, 0x88, 0xba,
876113498266Sopenharmony_ci  0x52, 0xa9, 0xc6, 0xfa, 0x41, 0xac, 0xcd, 0x3c, 0x6b, 0x09, 0xca, 0xb6,
876213498266Sopenharmony_ci  0xeb, 0x12, 0x6e, 0x8e, 0x29, 0x6c, 0x94, 0xa0, 0xd1, 0x77, 0x98, 0xc2,
876313498266Sopenharmony_ci  0xba, 0xfd, 0x47, 0x7b, 0xad, 0xbe, 0xfa, 0x23, 0x17, 0x8b, 0x0b, 0x14,
876413498266Sopenharmony_ci  0x4a, 0xca, 0x3b, 0xcc, 0xd5, 0x06, 0x3c, 0x50, 0x26, 0x12, 0x95, 0x9e,
876513498266Sopenharmony_ci  0xb4, 0x81, 0x0f, 0x41, 0xee, 0x8e, 0xc4, 0x78, 0x83, 0x31, 0x5f, 0x3f,
876613498266Sopenharmony_ci  0x64, 0xa2, 0xb9, 0xc6, 0xb8, 0x3b, 0x96, 0x30, 0x6f, 0xd6, 0xd5, 0x14,
876713498266Sopenharmony_ci  0x3b, 0x3a, 0xbd, 0x4e, 0x4e, 0x7f, 0x20, 0xf2, 0xda, 0x64, 0xa6, 0xdb,
876813498266Sopenharmony_ci  0xce, 0xc6, 0xe1, 0xe6, 0xc4, 0x74, 0xee, 0xcd, 0xcb, 0xdc, 0x20, 0x37,
876913498266Sopenharmony_ci  0x9b, 0x14, 0xd5, 0x7a, 0x25, 0x9e, 0x61, 0x02, 0x7d, 0x9c, 0xb0, 0x4e,
877013498266Sopenharmony_ci  0xa7, 0x8c, 0x67, 0xc7, 0x28, 0xf2, 0x2b, 0x23, 0x7d, 0x6d, 0xf4, 0x9b,
877113498266Sopenharmony_ci  0x4b, 0x84, 0x95, 0x7c, 0xe8, 0xca, 0xd5, 0xb5, 0xc9, 0xc8, 0xc0, 0x19,
877213498266Sopenharmony_ci  0xcc, 0x8e, 0x55, 0x83, 0xd5, 0xd1, 0xc9, 0x69, 0x70, 0xa7, 0x6e, 0x32,
877313498266Sopenharmony_ci  0xab, 0x9b, 0x4f, 0xeb, 0x73, 0xcc, 0x8a, 0x68, 0xd6, 0xee, 0x38, 0x07,
877413498266Sopenharmony_ci  0xee, 0xe5, 0x8c, 0x44, 0xc1, 0x40, 0x14, 0x2c, 0xa6, 0x10, 0x76, 0x11,
877513498266Sopenharmony_ci  0x46, 0x6b, 0x4f, 0xbd, 0x80, 0x4f, 0x37, 0xf6, 0x05, 0x0f, 0x3f, 0x91,
877613498266Sopenharmony_ci  0xb0, 0x15, 0x15, 0xd9, 0x28, 0xaa, 0xe8, 0x49, 0x01, 0x5a, 0xeb, 0x68,
877713498266Sopenharmony_ci  0x6e, 0x19, 0xed, 0x75, 0x92, 0x99, 0x77, 0x7f, 0xdd, 0xf7, 0xcd, 0x6d,
877813498266Sopenharmony_ci  0x7b, 0xa2, 0x69, 0x83, 0x56, 0xbc, 0xea, 0x05, 0x6e, 0x5b, 0xf8, 0x8a,
877913498266Sopenharmony_ci  0xff, 0xa5, 0x6b, 0xef, 0xd6, 0x8d, 0x18, 0xb2, 0xbc, 0x7d, 0x13, 0xf4,
878013498266Sopenharmony_ci  0x3a, 0x85, 0x82, 0xdc, 0x4e, 0x9c, 0x70, 0xb5, 0x4a, 0x10, 0x4f, 0x1c,
878113498266Sopenharmony_ci  0xe9, 0xc2, 0x3e, 0xd2, 0x2d, 0x57, 0x44, 0xaf, 0xff, 0x7e, 0x7a, 0xba,
878213498266Sopenharmony_ci  0x01, 0xed, 0x72, 0xc6, 0xa9, 0xeb, 0x6f, 0xe7, 0x30, 0x6c, 0x82, 0xc4,
878313498266Sopenharmony_ci  0x05, 0xda, 0x8d, 0xbc, 0x84, 0xb7, 0x50, 0x80, 0x8d, 0xe6, 0x99, 0xb9,
878413498266Sopenharmony_ci  0xe1, 0x05, 0x97, 0xc9, 0x95, 0x58, 0x41, 0xa3, 0x61, 0x59, 0x5c, 0x56,
878513498266Sopenharmony_ci  0xa4, 0x55, 0xa5, 0x52, 0x5a, 0x2f, 0x61, 0xe7, 0xc8, 0x79, 0x12, 0x28,
878613498266Sopenharmony_ci  0x44, 0x35, 0x35, 0xc5, 0x92, 0x5f, 0x9c, 0xbe, 0x7e, 0x45, 0x66, 0x5a,
878713498266Sopenharmony_ci  0x81, 0x51, 0x45, 0x80, 0x24, 0x19, 0xee, 0x62, 0x38, 0xcb, 0xd0, 0x26,
878813498266Sopenharmony_ci  0x53, 0xd7, 0x2c, 0x15, 0x28, 0x67, 0x0b, 0x85, 0xe1, 0xce, 0x43, 0x91,
878913498266Sopenharmony_ci  0x93, 0xa2, 0x06, 0x39, 0xd5, 0x4b, 0x5c, 0xfd, 0x6d, 0x99, 0x16, 0xd3,
879013498266Sopenharmony_ci  0xa1, 0xab, 0x3d, 0xe5, 0xac, 0x28, 0x92, 0x9b, 0x9f, 0xe3, 0x16, 0xe0,
879113498266Sopenharmony_ci  0x13, 0xcb, 0xe4, 0x5d, 0x34, 0xe5, 0x4d, 0xa9, 0x16, 0xbc, 0x59, 0x33,
879213498266Sopenharmony_ci  0x94, 0xb2, 0xcd, 0x45, 0x4f, 0x41, 0x0b, 0x49, 0x53, 0xb6, 0xf6, 0xe2,
879313498266Sopenharmony_ci  0xc0, 0x8d, 0xac, 0x6d, 0x3c, 0x54, 0x0d, 0x71, 0x1b, 0x65, 0x36, 0x14,
879413498266Sopenharmony_ci  0x1e, 0x25, 0xc6, 0x73, 0x51, 0xa2, 0x93, 0x4b, 0x4d, 0x14, 0x3e, 0x12,
879513498266Sopenharmony_ci  0x88, 0x48, 0x6e, 0xea, 0x6c, 0x32, 0xd1, 0x44, 0x0d, 0x3d, 0x45, 0xe3,
879613498266Sopenharmony_ci  0xc3, 0x51, 0x1c, 0x74, 0xd8, 0x63, 0x80, 0x36, 0xd8, 0x7c, 0x45, 0xe8,
879713498266Sopenharmony_ci  0x31, 0xb4, 0x8b, 0x40, 0x5f, 0xd0, 0x3a, 0xa1, 0x57, 0x27, 0x14, 0x02,
879813498266Sopenharmony_ci  0xb5, 0xc4, 0x2c, 0xe2, 0xd8, 0xea, 0x08, 0xc8, 0x86, 0x04, 0x94, 0x2a,
879913498266Sopenharmony_ci  0x35, 0x01, 0xe9, 0xaa, 0x1e, 0x5a, 0x0c, 0x97, 0x02, 0x83, 0x89, 0x8a,
880013498266Sopenharmony_ci  0x66, 0x80, 0x8b, 0x1f, 0x92, 0x24, 0x7c, 0xa8, 0xef, 0x44, 0xbe, 0x66,
880113498266Sopenharmony_ci  0xe8, 0xd2, 0x77, 0x4e, 0x00, 0x39, 0x93, 0xd3, 0xf2, 0x4c, 0x6d, 0x29,
880213498266Sopenharmony_ci  0x89, 0xb1, 0xe2, 0x06, 0x43, 0x11, 0xff, 0x77, 0xcc, 0x22, 0x08, 0x92,
880313498266Sopenharmony_ci  0xe1, 0x82, 0x62, 0xb0, 0xf0, 0xe3, 0xb5, 0x78, 0xcc, 0xdc, 0x6a, 0x9c,
880413498266Sopenharmony_ci  0xe4, 0x30, 0x6d, 0x38, 0x96, 0x98, 0xc3, 0x34, 0x9d, 0x7e, 0x35, 0x2d,
880513498266Sopenharmony_ci  0x16, 0xd5, 0xd5, 0x5a, 0x74, 0x89, 0x2b, 0xed, 0xd5, 0x3f, 0xcd, 0x31,
880613498266Sopenharmony_ci  0x5e, 0x9c, 0x4a, 0xb0, 0xe2, 0xa6, 0x8d, 0xce, 0x17, 0xf9, 0x07, 0xc1,
880713498266Sopenharmony_ci  0xd1, 0xa1, 0x2a, 0x6e, 0x53, 0xb4, 0x40, 0xac, 0x39, 0xcd, 0xfe, 0x6f,
880813498266Sopenharmony_ci  0xb7, 0xcd, 0xc1, 0xfd, 0x1b, 0x71, 0x24, 0x50, 0xd1, 0x44, 0xe2, 0x99,
880913498266Sopenharmony_ci  0x56, 0xf1, 0xaa, 0xe5, 0xd2, 0xad, 0x1a, 0x7e, 0xd9, 0x48, 0x5f, 0xe9,
881013498266Sopenharmony_ci  0x00, 0xba, 0xb1, 0xb7, 0xb4, 0x44, 0x2b, 0x1e, 0x17, 0x15, 0x99, 0xca,
881113498266Sopenharmony_ci  0xed, 0x17, 0xb8, 0xfa, 0xb6, 0x67, 0x18, 0xda, 0xda, 0xa4, 0x28, 0x86,
881213498266Sopenharmony_ci  0x49, 0xb9, 0xe6, 0x15, 0xe2, 0xa4, 0x81, 0xd7, 0xe7, 0x98, 0x96, 0x36,
881313498266Sopenharmony_ci  0x94, 0x88, 0x5c, 0xf6, 0x57, 0x59, 0x86, 0xf8, 0x0d, 0xbf, 0x2b, 0xf5,
881413498266Sopenharmony_ci  0x37, 0x9d, 0x2f, 0xfc, 0x4c, 0xb0, 0x62, 0x3a, 0x36, 0xb3, 0x74, 0x23,
881513498266Sopenharmony_ci  0xb7, 0x68, 0x0b, 0x70, 0x4b, 0xfa, 0xd6, 0xda, 0x64, 0xcc, 0x4d, 0x1c,
881613498266Sopenharmony_ci  0xd6, 0x04, 0xe2, 0x43, 0x1c, 0x80, 0x55, 0xd3, 0x50, 0x3e, 0x0c, 0xb8,
881713498266Sopenharmony_ci  0xc4, 0x5c, 0x36, 0x4e, 0x14, 0xd1, 0x5d, 0x92, 0x88, 0x3a, 0x63, 0xea,
881813498266Sopenharmony_ci  0x71, 0x4e, 0xb1, 0xef, 0x43, 0x0e, 0xb1, 0x06, 0xcb, 0x0a, 0x9c, 0x83,
881913498266Sopenharmony_ci  0x45, 0x7c, 0x46, 0x32, 0x8b, 0x83, 0x25, 0x37, 0x68, 0x9d, 0xa5, 0x74,
882013498266Sopenharmony_ci  0xa3, 0x63, 0x79, 0x31, 0xa1, 0xc6, 0x2d, 0x76, 0x69, 0x2c, 0x8e, 0x3e,
882113498266Sopenharmony_ci  0xe8, 0xb8, 0x75, 0x7b, 0x14, 0x79, 0xe4, 0x83, 0xbd, 0x31, 0x29, 0xb8,
882213498266Sopenharmony_ci  0x5a, 0xcc, 0x05, 0x15, 0x90, 0x40, 0x60, 0xe9, 0x33, 0xc4, 0xf0, 0x6a,
882313498266Sopenharmony_ci  0x1f, 0xad, 0x19, 0x36, 0x98, 0x72, 0x49, 0x7b, 0xae, 0x37, 0x3e, 0xd7,
882413498266Sopenharmony_ci  0xc1, 0x88, 0x63, 0x5d, 0xbb, 0xb4, 0xa4, 0x64, 0x50, 0xa1, 0xca, 0x50,
882513498266Sopenharmony_ci  0x0c, 0x4a, 0xb4, 0x84, 0x23, 0xdf, 0xa3, 0x0c, 0x33, 0x8e, 0x7a, 0xac,
882613498266Sopenharmony_ci  0x70, 0xc0, 0x5f, 0x2b, 0x58, 0x1e, 0x9a, 0xaf, 0xe1, 0x9f, 0x75, 0x51,
882713498266Sopenharmony_ci  0x4c, 0xbf, 0x1a, 0xcd, 0xc6, 0x38, 0x86, 0x95, 0x1a, 0xfa, 0x24, 0xcb,
882813498266Sopenharmony_ci  0x52, 0xcb, 0xa0, 0x6d, 0x25, 0x18, 0x26, 0x76, 0x47, 0x04, 0x61, 0x59,
882913498266Sopenharmony_ci  0xbc, 0x1d, 0x3d, 0xe1, 0xb8, 0x58, 0x66, 0x8b, 0x5a, 0x4a, 0xb6, 0xa4,
883013498266Sopenharmony_ci  0x1f, 0x31, 0xbb, 0x1c, 0x0b, 0xb8, 0x36, 0xae, 0x4b, 0x16, 0x6a, 0x5e,
883113498266Sopenharmony_ci  0x6a, 0xc2, 0x6a, 0x00, 0x98, 0x24, 0x3e, 0x25, 0x5f, 0x30, 0xb9, 0xcc,
883213498266Sopenharmony_ci  0xe3, 0x66, 0xfe, 0x11, 0x8c, 0x24, 0x9d, 0xa6, 0x67, 0x7c, 0x06, 0xf6,
883313498266Sopenharmony_ci  0x5f, 0x1d, 0xfe, 0x70, 0xf8, 0xca, 0x93, 0x7d, 0xbe, 0x3b, 0x39, 0xd9,
883413498266Sopenharmony_ci  0xfc, 0x90, 0x96, 0xc3, 0xb4, 0x2c, 0x2a, 0x14, 0x7f, 0xea, 0x88, 0x9e,
883513498266Sopenharmony_ci  0x33, 0x49, 0x96, 0x0e, 0xa9, 0x5f, 0x4a, 0x81, 0x04, 0x8e, 0x97, 0x0e,
883613498266Sopenharmony_ci  0xc6, 0xef, 0x63, 0x3e, 0x3e, 0x77, 0x29, 0xd8, 0x0e, 0x84, 0x8e, 0x31,
883713498266Sopenharmony_ci  0x4b, 0x15, 0xfc, 0xb8, 0xc4, 0x28, 0x0e, 0xf2, 0xd1, 0x25, 0x81, 0x0a,
883813498266Sopenharmony_ci  0x48, 0x04, 0xa5, 0x1f, 0x45, 0xcf, 0xf8, 0xe0, 0x33, 0xd6, 0x07, 0x5e,
883913498266Sopenharmony_ci  0x75, 0x76, 0x16, 0xde, 0x2b, 0x73, 0xc6, 0xab, 0x7e, 0x26, 0x9d, 0x56,
884013498266Sopenharmony_ci  0x8c, 0x72, 0x8a, 0x8b, 0x46, 0x92, 0xa4, 0x44, 0x60, 0x1d, 0x7d, 0x1f,
884113498266Sopenharmony_ci  0x1f, 0x9c, 0xc4, 0xcf, 0x0e, 0x5f, 0x1d, 0x7e, 0x77, 0x70, 0x7a, 0x18,
884213498266Sopenharmony_ci  0x4d, 0xa6, 0xc9, 0x99, 0x94, 0x0a, 0xe8, 0x52, 0x2a, 0xe8, 0xb5, 0xef,
884313498266Sopenharmony_ci  0x65, 0x5d, 0x4c, 0xd5, 0xf8, 0x3a, 0x1b, 0x7d, 0x20, 0xa7, 0x18, 0x87,
884413498266Sopenharmony_ci  0xab, 0xf0, 0x42, 0xe0, 0x1d, 0x4a, 0xf7, 0x86, 0x1f, 0x8a, 0x62, 0x8e,
884513498266Sopenharmony_ci  0x1a, 0x88, 0x35, 0x32, 0x54, 0x6f, 0x06, 0xc9, 0x14, 0xe4, 0xc2, 0x2a,
884613498266Sopenharmony_ci  0x7a, 0x97, 0x23, 0xd8, 0x49, 0x66, 0xb0, 0x13, 0x79, 0xf6, 0xae, 0x79,
884713498266Sopenharmony_ci  0xda, 0x2e, 0x6d, 0xd8, 0x99, 0xe6, 0xec, 0xf5, 0x67, 0xa8, 0x46, 0xef,
884813498266Sopenharmony_ci  0xf4, 0xde, 0xc3, 0x7d, 0x5c, 0xd1, 0x28, 0xd8, 0xa8, 0x7d, 0x26, 0x92,
884913498266Sopenharmony_ci  0x7c, 0x55, 0x4d, 0x1b, 0xb4, 0x9c, 0x61, 0x01, 0xaf, 0x0e, 0xb3, 0xad,
885013498266Sopenharmony_ci  0x82, 0x29, 0x93, 0xf0, 0xfd, 0x8c, 0x9e, 0x6c, 0x25, 0x9d, 0x38, 0xf0,
885113498266Sopenharmony_ci  0xac, 0xb9, 0xf9, 0x2a, 0x50, 0x0c, 0x01, 0x67, 0x50, 0x8d, 0xce, 0xd3,
885213498266Sopenharmony_ci  0x99, 0xe8, 0x8b, 0x98, 0xe4, 0x41, 0x39, 0x04, 0x1c, 0x3f, 0x28, 0x65,
885313498266Sopenharmony_ci  0x48, 0xf8, 0x26, 0x1e, 0xa6, 0x0c, 0xe7, 0x4e, 0x65, 0xde, 0xb1, 0x6c,
885413498266Sopenharmony_ci  0x6d, 0x28, 0x6c, 0xf0, 0x32, 0x2b, 0x09, 0xce, 0x86, 0x12, 0xd9, 0x08,
885513498266Sopenharmony_ci  0x32, 0x94, 0x22, 0x5b, 0x9a, 0x39, 0x18, 0xed, 0x9c, 0x8b, 0x9c, 0x0a,
885613498266Sopenharmony_ci  0x0f, 0xb7, 0x8f, 0xba, 0x29, 0xea, 0x6e, 0xc2, 0x97, 0x38, 0x52, 0x8a,
885713498266Sopenharmony_ci  0x3e, 0x22, 0x76, 0xa6, 0x8a, 0x38, 0x0e, 0x72, 0x69, 0x3c, 0x1d, 0xaf,
885813498266Sopenharmony_ci  0xe6, 0xcd, 0x2b, 0x58, 0x27, 0x3e, 0xd8, 0x63, 0x20, 0x8e, 0x8e, 0x5b,
885913498266Sopenharmony_ci  0xfd, 0xe4, 0x6a, 0xf1, 0x32, 0xb8, 0x1b, 0x52, 0x10, 0x93, 0x90, 0xb3,
886013498266Sopenharmony_ci  0x3a, 0x7d, 0x03, 0xcf, 0x2d, 0x0d, 0x31, 0x3d, 0x01, 0x2b, 0xc1, 0x7d,
886113498266Sopenharmony_ci  0x5f, 0x96, 0x98, 0x83, 0x4a, 0x93, 0xb2, 0xe4, 0x26, 0x47, 0x96, 0x0a,
886213498266Sopenharmony_ci  0xf6, 0xdc, 0x52, 0x5e, 0x4f, 0x67, 0xfa, 0xab, 0xf8, 0xd5, 0x9b, 0x6c,
886313498266Sopenharmony_ci  0x97, 0xd7, 0x2b, 0x4e, 0xe7, 0xa5, 0x47, 0xb0, 0x84, 0xfd, 0x7d, 0xea,
886413498266Sopenharmony_ci  0xe6, 0xaf, 0x2b, 0xa0, 0x9b, 0x5c, 0xe4, 0x6a, 0x92, 0x3d, 0x3c, 0x7e,
886513498266Sopenharmony_ci  0x7b, 0xca, 0x40, 0xfc, 0xf8, 0x8b, 0x5c, 0xb7, 0x55, 0xa8, 0x9c, 0x13,
886613498266Sopenharmony_ci  0x47, 0xf5, 0x53, 0xd2, 0x49, 0x4a, 0x71, 0x97, 0x9a, 0xd4, 0x5e, 0x49,
886713498266Sopenharmony_ci  0x96, 0x73, 0xae, 0x65, 0xac, 0xc5, 0x05, 0x04, 0xec, 0x6a, 0x86, 0xb0,
886813498266Sopenharmony_ci  0x43, 0xc1, 0x72, 0x1b, 0xd4, 0xaf, 0x40, 0x02, 0x48, 0x6c, 0xd0, 0xd1,
886913498266Sopenharmony_ci  0xdb, 0xd3, 0xbe, 0x71, 0x78, 0xb8, 0x92, 0x51, 0x5f, 0x70, 0x11, 0x91,
887013498266Sopenharmony_ci  0xf1, 0xe2, 0x53, 0x5e, 0x24, 0x08, 0x62, 0x07, 0x45, 0x09, 0x70, 0x38,
887113498266Sopenharmony_ci  0x20, 0x23, 0x6a, 0x98, 0xcf, 0x9f, 0xa9, 0x0c, 0x68, 0x8c, 0xf6, 0x02,
887213498266Sopenharmony_ci  0xcd, 0x41, 0xc3, 0xd7, 0x40, 0xc2, 0x7e, 0x00, 0x0a, 0xc8, 0xc8, 0x4b,
887313498266Sopenharmony_ci  0x84, 0x9e, 0xc2, 0xe1, 0x85, 0x8a, 0xc6, 0xc2, 0x63, 0x4c, 0x85, 0x15,
887413498266Sopenharmony_ci  0x90, 0x1e, 0x34, 0x91, 0x20, 0xe7, 0x04, 0x23, 0xd3, 0xfd, 0x48, 0xb3,
887513498266Sopenharmony_ci  0x04, 0x41, 0x58, 0x91, 0x77, 0x8b, 0x6e, 0x9e, 0x2b, 0x26, 0x80, 0x72,
887613498266Sopenharmony_ci  0x62, 0x9a, 0x95, 0x2e, 0x7e, 0x40, 0x52, 0xc2, 0x1d, 0x6e, 0x57, 0xdb,
887713498266Sopenharmony_ci  0x71, 0x12, 0xe9, 0x78, 0x2c, 0xb2, 0x95, 0x8c, 0xa3, 0xcd, 0x54, 0x53,
887813498266Sopenharmony_ci  0x84, 0x68, 0x43, 0x78, 0x93, 0xf5, 0xff, 0x37, 0x08, 0xa9, 0x2b, 0x41,
887913498266Sopenharmony_ci  0xd7, 0x78, 0x53, 0x09, 0x4d, 0xca, 0xa9, 0x40, 0xfa, 0xf2, 0xf8, 0xe2,
888013498266Sopenharmony_ci  0x51, 0x33, 0x14, 0x53, 0x8e, 0xb7, 0x9c, 0x6c, 0x3f, 0xc7, 0x4d, 0x77,
888113498266Sopenharmony_ci  0xc8, 0x86, 0x74, 0x23, 0x9b, 0xf4, 0x3a, 0x66, 0x76, 0x40, 0xac, 0x8f,
888213498266Sopenharmony_ci  0xde, 0xe0, 0x5c, 0x28, 0x12, 0x5b, 0x99, 0x4d, 0x0a, 0x29, 0x0e, 0x53,
888313498266Sopenharmony_ci  0x10, 0xcb, 0x33, 0x44, 0xc6, 0x5e, 0x5a, 0xe3, 0xa5, 0x02, 0xaa, 0x1a,
888413498266Sopenharmony_ci  0x51, 0x5d, 0x70, 0x64, 0x01, 0xf8, 0x22, 0xc5, 0x32, 0xe2, 0x0b, 0x04,
888513498266Sopenharmony_ci  0xc4, 0x59, 0xb3, 0x3c, 0xc0, 0x51, 0x4c, 0xf1, 0x71, 0x5f, 0x43, 0x87,
888613498266Sopenharmony_ci  0xb9, 0x6e, 0x9d, 0x27, 0x27, 0xc3, 0xca, 0x8d, 0x28, 0xc8, 0x57, 0xd8,
888713498266Sopenharmony_ci  0x12, 0x3d, 0x9a, 0x54, 0x17, 0xcb, 0xe1, 0xef, 0xdd, 0x95, 0x8e, 0xc2,
888813498266Sopenharmony_ci  0x11, 0xc6, 0xb7, 0x87, 0xbf, 0x5f, 0xba, 0x8d, 0xd7, 0x5d, 0xac, 0xee,
888913498266Sopenharmony_ci  0xc0, 0x56, 0x42, 0xbe, 0xb7, 0x6f, 0x56, 0x17, 0x4c, 0x77, 0xc7, 0x7d,
889013498266Sopenharmony_ci  0x67, 0xe9, 0xc2, 0x0c, 0xab, 0xba, 0xf8, 0x04, 0x86, 0x75, 0xf2, 0x83,
889113498266Sopenharmony_ci  0x51, 0x0b, 0x38, 0x16, 0xdc, 0x4f, 0x81, 0xa2, 0xe5, 0xd6, 0x7d, 0x5e,
889213498266Sopenharmony_ci  0x91, 0x59, 0x61, 0x67, 0xed, 0xc5, 0xc3, 0x3e, 0x85, 0x59, 0x1d, 0x1f,
889313498266Sopenharmony_ci  0x9c, 0xfc, 0xb0, 0x84, 0x4d, 0x19, 0xce, 0x51, 0x03, 0x5d, 0xe3, 0x7b,
889413498266Sopenharmony_ci  0xc1, 0xe3, 0x0c, 0x4b, 0x75, 0x83, 0xe3, 0x0c, 0x9d, 0x7a, 0xc7, 0xd9,
889513498266Sopenharmony_ci  0x5b, 0xb9, 0x65, 0xc7, 0x39, 0x40, 0x8e, 0xfe, 0x71, 0xce, 0xe9, 0x08,
889613498266Sopenharmony_ci  0x13, 0x78, 0x4f, 0xf0, 0x1c, 0x33, 0x1d, 0xf2, 0xc1, 0x3d, 0xf9, 0xc1,
889713498266Sopenharmony_ci  0xef, 0xfd, 0xc6, 0xc7, 0x98, 0x26, 0xe4, 0x9d, 0x62, 0xdd, 0xa5, 0x95,
889813498266Sopenharmony_ci  0x8f, 0xb1, 0x1c, 0x7f, 0xef, 0x14, 0x93, 0x1a, 0xde, 0x41, 0x83, 0x41,
889913498266Sopenharmony_ci  0x11, 0xc5, 0xa1, 0xdf, 0x96, 0xa0, 0xf2, 0xe9, 0x21, 0xff, 0x4b, 0xf7,
890013498266Sopenharmony_ci  0xe2, 0xc6, 0x67, 0x12, 0x46, 0x76, 0xcb, 0x33, 0xa9, 0x41, 0xa0, 0x5d,
890113498266Sopenharmony_ci  0x67, 0xd2, 0x05, 0x56, 0x0c, 0x98, 0x00, 0x89, 0x3a, 0xa5, 0x56, 0x9e,
890213498266Sopenharmony_ci  0x9c, 0x14, 0x1b, 0x13, 0x19, 0xc0, 0x96, 0xef, 0x1b, 0x38, 0xcd, 0x72,
890313498266Sopenharmony_ci  0xe4, 0x3b, 0x76, 0x5d, 0xf0, 0x56, 0x2e, 0x7e, 0x97, 0x8c, 0xa5, 0xf4,
890413498266Sopenharmony_ci  0x97, 0xd4, 0x1b, 0x24, 0xab, 0xe7, 0xf7, 0x7d, 0x17, 0x09, 0x96, 0x0a,
890513498266Sopenharmony_ci  0x34, 0x05, 0xf2, 0xd9, 0x6c, 0x7d, 0x99, 0x30, 0x40, 0x6c, 0x95, 0x62,
890613498266Sopenharmony_ci  0x52, 0x50, 0xd4, 0x0c, 0x7d, 0x35, 0xfb, 0x9f, 0x15, 0x25, 0x5b, 0xd6,
890713498266Sopenharmony_ci  0x1f, 0x0f, 0x1e, 0x6e, 0x0d, 0xb6, 0x1a, 0x05, 0x33, 0x52, 0x29, 0xda,
890813498266Sopenharmony_ci  0x70, 0x8e, 0x9c, 0xdf, 0x41, 0x9e, 0x8f, 0xfe, 0x49, 0xc7, 0x1e, 0x46,
890913498266Sopenharmony_ci  0x1e, 0x10, 0xc0, 0xa7, 0x2d, 0x98, 0xfa, 0xc8, 0x43, 0xab, 0xec, 0xa6,
891013498266Sopenharmony_ci  0xbd, 0x95, 0x62, 0xc4, 0x6f, 0x22, 0x1e, 0x87, 0x7b, 0x5e, 0x4e, 0x6e,
891113498266Sopenharmony_ci  0xff, 0x5c, 0x4d, 0x95, 0x72, 0x20, 0xb6, 0xdb, 0x2c, 0x1e, 0x75, 0x4a,
891213498266Sopenharmony_ci  0x92, 0x90, 0x71, 0x1d, 0x40, 0xdd, 0x42, 0xdb, 0x45, 0x28, 0x39, 0xa2,
891313498266Sopenharmony_ci  0x6e, 0x44, 0x16, 0x23, 0x90, 0x25, 0x6a, 0xd2, 0x62, 0x02, 0x63, 0x2c,
891413498266Sopenharmony_ci  0x6d, 0x71, 0xba, 0x13, 0x3b, 0x4f, 0x18, 0xc1, 0x99, 0x0b, 0xa5, 0x85,
891513498266Sopenharmony_ci  0x7c, 0x91, 0x12, 0xaa, 0x3d, 0xc4, 0x2c, 0xd2, 0x88, 0x0c, 0xfc, 0x0b,
891613498266Sopenharmony_ci  0x0e, 0xed, 0x37, 0xf8, 0x8f, 0x04, 0xcf, 0x5d, 0x89, 0x42, 0x65, 0x0b,
891713498266Sopenharmony_ci  0xf3, 0xb5, 0xf7, 0xb3, 0x44, 0x70, 0xab, 0x59, 0xea, 0xa0, 0x03, 0x5c,
891813498266Sopenharmony_ci  0xbb, 0x8b, 0xa1, 0x39, 0x2f, 0xdb, 0xd6, 0x76, 0x64, 0x9d, 0x9f, 0x08,
891913498266Sopenharmony_ci  0x10, 0xdc, 0xd6, 0x50, 0x37, 0xb7, 0x61, 0x2b, 0xc1, 0xe1, 0xae, 0x58,
892013498266Sopenharmony_ci  0x01, 0x19, 0xc5, 0xe7, 0x46, 0x64, 0xea, 0xa3, 0xed, 0x56, 0x64, 0x6a,
892113498266Sopenharmony_ci  0x5e, 0xc5, 0x64, 0x22, 0x9d, 0x60, 0xb5, 0x80, 0x7d, 0xf3, 0xab, 0x67,
892213498266Sopenharmony_ci  0x1d, 0x7a, 0xf6, 0xe6, 0xa4, 0x75, 0xf7, 0x57, 0x29, 0xc3, 0x6b, 0x31,
892313498266Sopenharmony_ci  0x30, 0x04, 0xc1, 0x76, 0x1a, 0xdc, 0x07, 0xd8, 0xc9, 0xb2, 0x58, 0x9c,
892413498266Sopenharmony_ci  0x9d, 0x47, 0xd2, 0xa4, 0x87, 0x04, 0x80, 0x5d, 0xb4, 0xf1, 0x1c, 0x05,
892513498266Sopenharmony_ci  0x5f, 0x7c, 0x41, 0x16, 0x5b, 0xb2, 0xcb, 0x17, 0x64, 0x0a, 0xd0, 0xd1,
892613498266Sopenharmony_ci  0xad, 0xb3, 0xad, 0x05, 0x6f, 0xef, 0x50, 0xf1, 0x23, 0xbe, 0x02, 0x71,
892713498266Sopenharmony_ci  0x9c, 0xec, 0x54, 0x46, 0x4e, 0x31, 0x45, 0x9f, 0x85, 0x14, 0x6c, 0xd3,
892813498266Sopenharmony_ci  0x42, 0x06, 0x49, 0x2e, 0xb5, 0x28, 0xa9, 0xd1, 0x90, 0x07, 0x78, 0x5d,
892913498266Sopenharmony_ci  0x6a, 0xb5, 0x48, 0x4a, 0xf5, 0x46, 0x87, 0x95, 0xa5, 0xb1, 0x74, 0x77,
893013498266Sopenharmony_ci  0x82, 0xe1, 0xb5, 0x1a, 0x8d, 0x34, 0xfa, 0x4f, 0xeb, 0xf3, 0xad, 0x55,
893113498266Sopenharmony_ci  0xd5, 0x64, 0x6e, 0x62, 0x7e, 0xf1, 0x20, 0xc6, 0x99, 0x46, 0xea, 0x36,
893213498266Sopenharmony_ci  0xe5, 0x0f, 0x1f, 0xd1, 0x87, 0x83, 0x76, 0x47, 0x9e, 0xed, 0x98, 0x0a,
893313498266Sopenharmony_ci  0x07, 0x38, 0xc5, 0xd4, 0x17, 0xf9, 0x38, 0x2d, 0xa7, 0x54, 0xe9, 0x67,
893413498266Sopenharmony_ci  0x9a, 0x0d, 0x19, 0x09, 0x01, 0x6f, 0x68, 0xc9, 0x1c, 0x26, 0x28, 0x7d,
893513498266Sopenharmony_ci  0xe6, 0xe1, 0x30, 0x93, 0xd8, 0x2f, 0xf3, 0x50, 0x79, 0xe4, 0x69, 0x06,
893613498266Sopenharmony_ci  0xb8, 0x2f, 0x1b, 0x12, 0x26, 0x4e, 0xa6, 0x4e, 0x5b, 0x17, 0x19, 0x7d,
893713498266Sopenharmony_ci  0x79, 0x63, 0x41, 0xad, 0xd2, 0x4c, 0x88, 0x97, 0xc7, 0x26, 0x4f, 0x9e,
893813498266Sopenharmony_ci  0x18, 0xce, 0x2c, 0xf9, 0xe0, 0x47, 0x3b, 0x80, 0xa8, 0xf5, 0x80, 0xe8,
893913498266Sopenharmony_ci  0x59, 0xc9, 0xb9, 0xdf, 0x88, 0x3a, 0x72, 0xbf, 0x51, 0x6d, 0xb5, 0x4e,
894013498266Sopenharmony_ci  0x0d, 0xc8, 0x9e, 0x1f, 0xcb, 0xca, 0x1d, 0x32, 0x51, 0x6a, 0x32, 0x99,
894113498266Sopenharmony_ci  0x03, 0xcd, 0x60, 0x40, 0xb5, 0xa8, 0x5f, 0x7d, 0xba, 0x9b, 0xe4, 0xcc,
894213498266Sopenharmony_ci  0x72, 0x7c, 0x26, 0x92, 0x33, 0xfd, 0x6f, 0x6f, 0x0d, 0xb6, 0x07, 0x3b,
894313498266Sopenharmony_ci  0x83, 0xdd, 0xdb, 0x91, 0x9d, 0x3d, 0x81, 0xcb, 0xc8, 0x4e, 0x3b, 0xfb,
894413498266Sopenharmony_ci  0x2c, 0x64, 0xf7, 0xe8, 0x8f, 0x26, 0xbb, 0x47, 0x9f, 0x89, 0xec, 0x1e,
894513498266Sopenharmony_ci  0xdd, 0x88, 0xec, 0x1e, 0x7d, 0x66, 0xb2, 0x93, 0xfe, 0x77, 0x92, 0xad,
894613498266Sopenharmony_ci  0x07, 0x7b, 0x0f, 0xd2, 0x07, 0x3b, 0x7b, 0x7b, 0x0f, 0x1f, 0x6d, 0xdf,
894713498266Sopenharmony_ci  0x29, 0xf1, 0x3d, 0x68, 0x13, 0xdf, 0xa3, 0xcf, 0x44, 0x7c, 0x62, 0xc6,
894813498266Sopenharmony_ci  0x32, 0xa4, 0x97, 0x76, 0x10, 0xdf, 0x89, 0x04, 0xa9, 0x6b, 0x35, 0x4a,
894913498266Sopenharmony_ci  0x24, 0x12, 0x7d, 0x97, 0x83, 0x96, 0x24, 0xcd, 0x5f, 0x33, 0x64, 0xb5,
895013498266Sopenharmony_ci  0xa0, 0xaf, 0x1f, 0xd2, 0x3e, 0x33, 0xb9, 0x3d, 0x83, 0xc8, 0x94, 0xa1,
895113498266Sopenharmony_ci  0xc4, 0x37, 0x2c, 0xf1, 0x62, 0x24, 0x80, 0xa1, 0x1f, 0x5b, 0x35, 0x2a,
895213498266Sopenharmony_ci  0x50, 0x5d, 0x97, 0xf4, 0x8d, 0x0a, 0x7d, 0xd6, 0xa5, 0x22, 0x97, 0x56,
895313498266Sopenharmony_ci  0x16, 0xc6, 0x37, 0x54, 0x18, 0x0a, 0x96, 0x6b, 0x6f, 0x1f, 0x57, 0x28,
895413498266Sopenharmony_ci  0x86, 0xc7, 0x63, 0x0f, 0xdb, 0xbc, 0xfc, 0x5a, 0x50, 0x1c, 0xd3, 0x04,
895513498266Sopenharmony_ci  0x44, 0x00, 0x3b, 0xa4, 0x6e, 0x82, 0xd5, 0x65, 0x58, 0xb1, 0x00, 0xe5,
895613498266Sopenharmony_ci  0x9d, 0x11, 0xac, 0xf6, 0xbf, 0xfd, 0xe5, 0xce, 0x60, 0xfb, 0xd1, 0x13,
895713498266Sopenharmony_ci  0x44, 0xe2, 0xed, 0xdb, 0xdf, 0x77, 0x56, 0xa3, 0xdb, 0x36, 0xd9, 0x2e,
895813498266Sopenharmony_ci  0xa1, 0x5a, 0xed, 0x37, 0x04, 0x83, 0x7d, 0x23, 0xaa, 0x65, 0xa2, 0x45,
895913498266Sopenharmony_ci  0x01, 0x4f, 0x48, 0x76, 0x14, 0x7b, 0x24, 0x5a, 0x9c, 0x73, 0xd1, 0xd4,
896013498266Sopenharmony_ci  0xaa, 0x4e, 0xea, 0x45, 0x9b, 0xf3, 0x9c, 0x90, 0xfb, 0xa1, 0xd2, 0xc2,
896113498266Sopenharmony_ci  0xaa, 0xfc, 0x0c, 0xa9, 0x65, 0x06, 0xb6, 0xf1, 0x59, 0xf1, 0x82, 0x28,
896213498266Sopenharmony_ci  0x38, 0x46, 0x57, 0x49, 0x8c, 0xae, 0x9a, 0x93, 0x8d, 0xe5, 0xf2, 0x7b,
896313498266Sopenharmony_ci  0xb3, 0xc7, 0xa5, 0xda, 0xd8, 0x2d, 0x2c, 0x00, 0xcd, 0xd6, 0x57, 0x96,
896413498266Sopenharmony_ci  0xd6, 0x5b, 0x83, 0xe3, 0x4f, 0x5c, 0x71, 0x1d, 0xfe, 0xd6, 0xfa, 0x30,
896513498266Sopenharmony_ci  0xab, 0xfa, 0x99, 0xa1, 0x25, 0xf5, 0x86, 0x35, 0x73, 0xcc, 0x5a, 0x65,
896613498266Sopenharmony_ci  0x2b, 0xdd, 0x07, 0xbb, 0x36, 0xa4, 0xe9, 0x5b, 0xfb, 0x94, 0x1d, 0x69,
896713498266Sopenharmony_ci  0x75, 0x78, 0xf7, 0x76, 0x52, 0x77, 0xda, 0xb7, 0xd8, 0x0e, 0x33, 0xb0,
896813498266Sopenharmony_ci  0xbb, 0xde, 0x0b, 0x54, 0xe6, 0xae, 0xdb, 0x06, 0xec, 0x6d, 0x1f, 0xf4,
896913498266Sopenharmony_ci  0xd8, 0x70, 0x3d, 0x42, 0x5b, 0x0e, 0xb8, 0xb9, 0xdc, 0xb0, 0xfc, 0xc5,
897013498266Sopenharmony_ci  0x8b, 0x0d, 0xc7, 0xc9, 0x2b, 0x00, 0x7e, 0x05, 0xc5, 0xbd, 0x22, 0x66,
897113498266Sopenharmony_ci  0x75, 0x00, 0xad, 0x9c, 0x0a, 0x99, 0xb8, 0x10, 0x08, 0x4e, 0xd4, 0x9e,
897213498266Sopenharmony_ci  0x5a, 0x5c, 0xc8, 0xd4, 0x21, 0x4d, 0x94, 0xd1, 0x2c, 0x45, 0xcb, 0x5e,
897313498266Sopenharmony_ci  0x56, 0xcd, 0x42, 0xf0, 0xd3, 0xa8, 0x7c, 0xab, 0x9e, 0x44, 0x83, 0xf2,
897413498266Sopenharmony_ci  0x4b, 0x7a, 0x61, 0xa9, 0x18, 0xaa, 0x2c, 0xac, 0xd1, 0x66, 0xc4, 0x4f,
897513498266Sopenharmony_ci  0x28, 0x98, 0x2a, 0xa5, 0x30, 0x12, 0xfc, 0xbd, 0x74, 0x80, 0xaf, 0x09,
897613498266Sopenharmony_ci  0xe1, 0x8e, 0x54, 0xb1, 0x80, 0x9b, 0x09, 0xc9, 0xce, 0x42, 0x5d, 0xd1,
897713498266Sopenharmony_ci  0x48, 0xb9, 0xf6, 0x43, 0x45, 0x80, 0x0c, 0x5c, 0xd2, 0x85, 0x3d, 0xaa,
897813498266Sopenharmony_ci  0xd4, 0x2b, 0xdc, 0x4d, 0x2f, 0x8a, 0xcb, 0x94, 0x22, 0x2a, 0x03, 0x51,
897913498266Sopenharmony_ci  0x75, 0x5d, 0x00, 0xf7, 0x38, 0x36, 0x0c, 0x9e, 0xb2, 0xc5, 0x51, 0xb3,
898013498266Sopenharmony_ci  0xfc, 0x3c, 0x45, 0x90, 0xa9, 0x31, 0x1d, 0x03, 0x82, 0x54, 0x09, 0x24,
898113498266Sopenharmony_ci  0x7a, 0x95, 0x05, 0x85, 0x5c, 0x3a, 0x45, 0x50, 0x2f, 0xb2, 0xa4, 0x4d,
898213498266Sopenharmony_ci  0x62, 0xc2, 0x8c, 0xaf, 0xe1, 0x21, 0x5e, 0xe9, 0x82, 0x45, 0x4e, 0x18,
898313498266Sopenharmony_ci  0xdf, 0x13, 0xf2, 0x82, 0x11, 0xde, 0x9c, 0x28, 0xaa, 0xbd, 0x9e, 0x2d,
898413498266Sopenharmony_ci  0x4e, 0x5a, 0xa9, 0x4d, 0xa4, 0xbd, 0x5b, 0x6e, 0x11, 0xa3, 0x27, 0x0f,
898513498266Sopenharmony_ci  0x03, 0x20, 0x07, 0x7c, 0x11, 0x0a, 0x35, 0x7e, 0x9e, 0x2a, 0xcc, 0x7f,
898613498266Sopenharmony_ci  0x00, 0x17, 0x7c, 0xb4, 0xd3, 0x38, 0x7e, 0xcf, 0xc8, 0x54, 0xba, 0x98,
898713498266Sopenharmony_ci  0xcd, 0x05, 0xd4, 0xfd, 0x1a, 0x88, 0x69, 0x72, 0x3b, 0x6c, 0x44, 0x3f,
898813498266Sopenharmony_ci  0x12, 0xda, 0x18, 0x47, 0xfa, 0x09, 0xbc, 0xa7, 0x3a, 0x1e, 0x0d, 0x3c,
898913498266Sopenharmony_ci  0x9e, 0xc6, 0x7a, 0x75, 0x14, 0x85, 0x64, 0xd0, 0x39, 0x86, 0x70, 0x76,
899013498266Sopenharmony_ci  0xeb, 0xf0, 0x6a, 0x83, 0xfd, 0xa6, 0x8b, 0xc4, 0x1a, 0xf0, 0x05, 0xe8,
899113498266Sopenharmony_ci  0xc8, 0xf3, 0x6f, 0x0a, 0x49, 0x04, 0x61, 0x84, 0x1b, 0xf8, 0x4d, 0x8c,
899213498266Sopenharmony_ci  0xa9, 0x73, 0xce, 0xee, 0x5e, 0x61, 0x1e, 0xa6, 0x1a, 0xb1, 0x1b, 0x5b,
899313498266Sopenharmony_ci  0x67, 0xab, 0xae, 0x78, 0xd2, 0x15, 0x51, 0x9d, 0x0c, 0xbb, 0x27, 0x25,
899413498266Sopenharmony_ci  0x46, 0x17, 0x52, 0x8c, 0x1e, 0xcb, 0x06, 0x73, 0x69, 0x4b, 0x6f, 0x1c,
899513498266Sopenharmony_ci  0x2f, 0x92, 0x0b, 0xba, 0x0b, 0x1c, 0xde, 0xaf, 0x1e, 0x1c, 0x8e, 0xc4,
899613498266Sopenharmony_ci  0xc7, 0x28, 0x1e, 0xc2, 0x6f, 0x99, 0x58, 0xb8, 0xdf, 0x2a, 0x5a, 0xcf,
899713498266Sopenharmony_ci  0x06, 0xb0, 0x56, 0xfe, 0xe1, 0x05, 0x2a, 0xa7, 0x30, 0x08, 0x7c, 0x2b,
899813498266Sopenharmony_ci  0xde, 0xeb, 0x93, 0x4b, 0xfd, 0x23, 0x66, 0xaf, 0x27, 0x30, 0xd7, 0x8d,
899913498266Sopenharmony_ci  0xbe, 0x24, 0x02, 0x54, 0x0c, 0x15, 0x20, 0xfb, 0xc1, 0xd1, 0xac, 0x8c,
900013498266Sopenharmony_ci  0xff, 0xe6, 0x61, 0x19, 0x38, 0x65, 0x4d, 0x93, 0x88, 0xab, 0x36, 0x06,
900113498266Sopenharmony_ci  0x8b, 0xab, 0x32, 0x9c, 0x84, 0x4b, 0x36, 0x9f, 0x43, 0xc9, 0x71, 0xba,
900213498266Sopenharmony_ci  0x27, 0xe4, 0xc2, 0xd5, 0x21, 0x25, 0x1c, 0x20, 0x2c, 0xf7, 0x4a, 0x4a,
900313498266Sopenharmony_ci  0xcf, 0x38, 0x1c, 0x6c, 0x19, 0x12, 0xc8, 0xb3, 0x14, 0xf3, 0x86, 0x18,
900413498266Sopenharmony_ci  0xc9, 0x99, 0x09, 0x73, 0xdd, 0x41, 0x51, 0x79, 0xf2, 0x00, 0xab, 0x3b,
900513498266Sopenharmony_ci  0x8a, 0x49, 0xbe, 0x16, 0xa5, 0x94, 0x12, 0x3c, 0xbc, 0x0a, 0x87, 0xe7,
900613498266Sopenharmony_ci  0x14, 0x9a, 0xa6, 0x0e, 0xa9, 0x42, 0xc1, 0x85, 0x26, 0x56, 0xac, 0xa4,
900713498266Sopenharmony_ci  0x43, 0x00, 0x3a, 0x84, 0x49, 0x2d, 0x06, 0xea, 0x10, 0x9c, 0x80, 0xce,
900813498266Sopenharmony_ci  0x02, 0x92, 0x06, 0xb1, 0x4b, 0x51, 0x57, 0xc9, 0xcb, 0x98, 0x03, 0x7f,
900913498266Sopenharmony_ci  0x9e, 0x5f, 0x45, 0xd1, 0x77, 0x09, 0xd2, 0x27, 0x91, 0xe2, 0xb3, 0x24,
901013498266Sopenharmony_ci  0x9d, 0x21, 0x7f, 0xad, 0x0a, 0x8c, 0xcf, 0x0a, 0x5d, 0x71, 0xf2, 0x15,
901113498266Sopenharmony_ci  0x9b, 0xa2, 0xd9, 0x77, 0x42, 0xc6, 0x4c, 0xf1, 0x28, 0x00, 0x01, 0x8f,
901213498266Sopenharmony_ci  0x41, 0xa3, 0x16, 0x54, 0x4e, 0xbc, 0xce, 0xf0, 0xae, 0x63, 0xe4, 0x86,
901313498266Sopenharmony_ci  0x30, 0x72, 0x7b, 0x90, 0xf1, 0x9a, 0x35, 0xbf, 0x29, 0x21, 0xdd, 0x29,
901413498266Sopenharmony_ci  0xe3, 0x35, 0xbd, 0x6f, 0xf2, 0x74, 0x36, 0xa9, 0x32, 0xed, 0x8a, 0x75,
901513498266Sopenharmony_ci  0x32, 0xe8, 0x4d, 0x2f, 0x8e, 0x50, 0x16, 0x66, 0x3f, 0xc8, 0x53, 0x89,
901613498266Sopenharmony_ci  0x94, 0xa0, 0x91, 0xa9, 0x16, 0xac, 0x51, 0xfc, 0x87, 0x51, 0x79, 0x35,
901713498266Sopenharmony_ci  0x47, 0xff, 0x81, 0x20, 0x9a, 0x33, 0x11, 0xe0, 0xe2, 0x32, 0x7a, 0xc2,
901813498266Sopenharmony_ci  0x52, 0x60, 0xfc, 0x77, 0x14, 0xb2, 0x2b, 0xaf, 0x92, 0x52, 0x4a, 0xe1,
901913498266Sopenharmony_ci  0xad, 0x58, 0x79, 0x3c, 0x31, 0x4a, 0x2a, 0x52, 0xd7, 0x98, 0x2a, 0x19,
902013498266Sopenharmony_ci  0x59, 0x0f, 0x51, 0x10, 0x68, 0xb5, 0x72, 0x33, 0x80, 0x24, 0xb8, 0x10,
902113498266Sopenharmony_ci  0x68, 0x1d, 0x83, 0xa5, 0x14, 0x0c, 0x0e, 0x83, 0xd6, 0x36, 0x9c, 0xa4,
902213498266Sopenharmony_ci  0x01, 0x79, 0xd1, 0x0b, 0x97, 0x27, 0xed, 0xd5, 0x22, 0x8e, 0x40, 0x7b,
902313498266Sopenharmony_ci  0xe2, 0x94, 0xe8, 0x60, 0x30, 0x32, 0x85, 0x9b, 0x57, 0x9b, 0xba, 0xcb,
902413498266Sopenharmony_ci  0xa8, 0x3c, 0x25, 0xe8, 0x69, 0x72, 0x01, 0xcb, 0x7e, 0x2b, 0x88, 0x0b,
902513498266Sopenharmony_ci  0x85, 0xaa, 0x21, 0xb0, 0x8c, 0x06, 0x4d, 0xd4, 0xc9, 0x59, 0x2c, 0x95,
902613498266Sopenharmony_ci  0x6f, 0x3a, 0x98, 0x8c, 0x93, 0xb0, 0x2b, 0xfc, 0x85, 0xb3, 0xd2, 0x28,
902713498266Sopenharmony_ci  0x99, 0xd5, 0x84, 0xd8, 0xd0, 0x9d, 0xac, 0x49, 0x35, 0x52, 0x8f, 0x08,
902813498266Sopenharmony_ci  0xaf, 0x5c, 0x2f, 0x38, 0x8f, 0xac, 0x6a, 0x87, 0xa7, 0xc9, 0x59, 0xc4,
902913498266Sopenharmony_ci  0x0e, 0x4a, 0xb7, 0xc4, 0x89, 0x14, 0xeb, 0xe0, 0xc0, 0x78, 0x86, 0x99,
903013498266Sopenharmony_ci  0xc9, 0xc7, 0xea, 0x9d, 0x1a, 0x81, 0x70, 0xeb, 0x05, 0x03, 0xbf, 0x9c,
903113498266Sopenharmony_ci  0xc4, 0x6f, 0x60, 0xcf, 0xe3, 0xd7, 0x94, 0xf3, 0x29, 0x3c, 0xd8, 0xca,
903213498266Sopenharmony_ci  0xd1, 0x82, 0xe8, 0x8c, 0xdd, 0x79, 0xab, 0x8e, 0x85, 0xaf, 0x30, 0xa6,
903313498266Sopenharmony_ci  0x5a, 0x2a, 0x4f, 0x61, 0x7a, 0x1a, 0x6c, 0x22, 0x21, 0xbe, 0x54, 0xa6,
903413498266Sopenharmony_ci  0x0c, 0x48, 0x33, 0x89, 0x88, 0x06, 0xa6, 0xb5, 0x9a, 0x43, 0xe0, 0xf3,
903513498266Sopenharmony_ci  0x49, 0xa3, 0x3a, 0xaf, 0x09, 0x04, 0xc4, 0x04, 0x7d, 0xaa, 0xd1, 0xcb,
903613498266Sopenharmony_ci  0x23, 0x89, 0xa2, 0x03, 0x0b, 0x54, 0xac, 0x38, 0x48, 0x7e, 0xde, 0xaf,
903713498266Sopenharmony_ci  0x48, 0x91, 0x46, 0xa0, 0x08, 0xce, 0xe2, 0x9d, 0x41, 0x0a, 0x57, 0xf9,
903813498266Sopenharmony_ci  0x54, 0x36, 0x15, 0x6f, 0x7f, 0xa9, 0x6a, 0x82, 0x7e, 0x65, 0xfa, 0x93,
903913498266Sopenharmony_ci  0x58, 0x2f, 0x2e, 0xbd, 0x84, 0xfe, 0xfb, 0x86, 0x06, 0x16, 0x3e, 0xfa,
904013498266Sopenharmony_ci  0x5a, 0xab, 0x3c, 0x97, 0x64, 0x19, 0x07, 0x6b, 0xad, 0xd0, 0x42, 0x49,
904113498266Sopenharmony_ci  0x82, 0x9e, 0x55, 0xd5, 0x91, 0x5e, 0xe7, 0x17, 0xde, 0xc1, 0xa5, 0xce,
904213498266Sopenharmony_ci  0x18, 0x0d, 0x63, 0x31, 0xe4, 0xca, 0x92, 0xb5, 0x52, 0x49, 0xd7, 0x51,
904313498266Sopenharmony_ci  0x73, 0x29, 0xf2, 0x8f, 0xbf, 0xcb, 0x1b, 0xdd, 0xe3, 0x1f, 0xb7, 0x80,
904413498266Sopenharmony_ci  0x87, 0xb2, 0xeb, 0x4f, 0xc7, 0xee, 0x77, 0xbc, 0xdb, 0x71, 0xd4, 0xe8,
904513498266Sopenharmony_ci  0xd0, 0x1d, 0x37, 0x65, 0xe0, 0x27, 0x4d, 0x15, 0xd4, 0xbe, 0x79, 0xd3,
904613498266Sopenharmony_ci  0xb3, 0x88, 0x0f, 0x57, 0x9c, 0x55, 0x06, 0x07, 0x90, 0xd6, 0xbb, 0x2d,
904713498266Sopenharmony_ci  0xef, 0x8a, 0x84, 0x0b, 0x44, 0x17, 0xda, 0x1d, 0x8d, 0x7f, 0x1e, 0x25,
904813498266Sopenharmony_ci  0xa3, 0x73, 0x3a, 0x6a, 0x65, 0x3a, 0x25, 0x61, 0x42, 0x4e, 0x13, 0x66,
904913498266Sopenharmony_ci  0xfe, 0x70, 0x2c, 0x25, 0xa7, 0x83, 0x28, 0xbc, 0x49, 0x17, 0xed, 0x84,
905013498266Sopenharmony_ci  0xb6, 0x15, 0x24, 0x6b, 0xa6, 0x84, 0x8a, 0xc3, 0x6c, 0x1b, 0x98, 0x1d,
905113498266Sopenharmony_ci  0xfd, 0xa6, 0xc8, 0x4c, 0x98, 0xbd, 0x0a, 0x91, 0x19, 0xbc, 0x9f, 0xcd,
905213498266Sopenharmony_ci  0x1a, 0xad, 0x16, 0x21, 0x7d, 0x47, 0xcc, 0xd8, 0xf4, 0x4e, 0xbc, 0xe5,
905313498266Sopenharmony_ci  0x13, 0x08, 0x44, 0x88, 0x6c, 0x39, 0x3d, 0x50, 0x1a, 0xeb, 0xf6, 0xd6,
905413498266Sopenharmony_ci  0x96, 0x2d, 0xc1, 0xd9, 0x51, 0x77, 0x53, 0x48, 0x63, 0x69, 0xf9, 0x4d,
905513498266Sopenharmony_ci  0x82, 0x8f, 0xa7, 0x90, 0x74, 0x53, 0x7f, 0x27, 0xc9, 0x98, 0x5b, 0xb7,
905613498266Sopenharmony_ci  0x3d, 0xe6, 0xd8, 0xa5, 0x16, 0x3a, 0x8a, 0xac, 0x52, 0xc2, 0x3e, 0x10,
905713498266Sopenharmony_ci  0xae, 0xe7, 0x4a, 0x85, 0x38, 0x61, 0xeb, 0x0e, 0x69, 0x8c, 0xd5, 0x5e,
905813498266Sopenharmony_ci  0xe3, 0x9d, 0x70, 0xc1, 0x82, 0x8c, 0x6b, 0x66, 0x2b, 0x03, 0x88, 0xbe,
905913498266Sopenharmony_ci  0xbd, 0xb2, 0xb1, 0x25, 0x6c, 0xc3, 0xc4, 0xaf, 0x19, 0x9a, 0x92, 0x47,
906013498266Sopenharmony_ci  0xbe, 0x3c, 0xfb, 0x22, 0x5c, 0x79, 0xf3, 0x3f, 0x1c, 0x68, 0x4c, 0xc4,
906113498266Sopenharmony_ci  0x30, 0xae, 0xa8, 0x5d, 0xaa, 0xe6, 0xc6, 0x75, 0x3e, 0x7d, 0x69, 0x85,
906213498266Sopenharmony_ci  0xea, 0x7e, 0x02, 0xaf, 0x95, 0x54, 0x03, 0x33, 0x5f, 0xb4, 0x84, 0x0d,
906313498266Sopenharmony_ci  0x53, 0x2a, 0x68, 0xc2, 0xca, 0x60, 0x38, 0xdd, 0x28, 0x58, 0xe4, 0xb3,
906413498266Sopenharmony_ci  0xbb, 0xa6, 0x27, 0x21, 0xa4, 0xcb, 0x4b, 0x61, 0xcd, 0x07, 0xaf, 0xa6,
906513498266Sopenharmony_ci  0x56, 0x91, 0xcf, 0x1b, 0x95, 0xf5, 0xf4, 0x6a, 0xf6, 0x5c, 0x53, 0xe6,
906613498266Sopenharmony_ci  0x93, 0x0f, 0x94, 0x47, 0x64, 0x37, 0xc6, 0xf2, 0xba, 0x4b, 0x1c, 0x4c,
906713498266Sopenharmony_ci  0x7f, 0x18, 0x3b, 0x83, 0x87, 0x06, 0x58, 0x71, 0x45, 0xb1, 0xa7, 0x59,
906813498266Sopenharmony_ci  0x62, 0xd3, 0x3d, 0x52, 0x58, 0xa7, 0x26, 0xa6, 0x6a, 0x34, 0x6d, 0x79,
906913498266Sopenharmony_ci  0x00, 0x0b, 0xd8, 0x20, 0xc3, 0xa6, 0x50, 0x19, 0x83, 0x5b, 0x8a, 0x97,
907013498266Sopenharmony_ci  0xe7, 0x38, 0xad, 0x25, 0x9b, 0x5c, 0x4d, 0x63, 0x54, 0xd6, 0x66, 0xb0,
907113498266Sopenharmony_ci  0xa4, 0xfc, 0xb7, 0x83, 0xc9, 0xea, 0x56, 0x58, 0xb0, 0x5a, 0x76, 0x28,
907213498266Sopenharmony_ci  0xbc, 0x2b, 0x10, 0x7c, 0xe4, 0x04, 0x4e, 0xb2, 0x1e, 0x4e, 0xc9, 0xa0,
907313498266Sopenharmony_ci  0xe4, 0x4a, 0x61, 0x69, 0x09, 0x54, 0xef, 0x3e, 0x9f, 0x18, 0x14, 0x98,
907413498266Sopenharmony_ci  0x0a, 0x2a, 0x53, 0x02, 0xe7, 0x2a, 0x10, 0xd3, 0x45, 0x07, 0x4d, 0x10,
907513498266Sopenharmony_ci  0xcc, 0x19, 0xd1, 0x0d, 0xc8, 0x90, 0x26, 0xa2, 0x84, 0x8f, 0x16, 0x31,
907613498266Sopenharmony_ci  0xcc, 0x12, 0xc5, 0x40, 0x4c, 0x52, 0xe9, 0xc5, 0xc1, 0xc3, 0xc2, 0x40,
907713498266Sopenharmony_ci  0x3b, 0xf9, 0x2f, 0xe1, 0x0a, 0x87, 0x6b, 0x88, 0x36, 0x4f, 0x41, 0xcb,
907813498266Sopenharmony_ci  0xb4, 0x4e, 0xe5, 0x8c, 0x0c, 0x17, 0x84, 0xc9, 0xc2, 0xb5, 0x7f, 0x28,
907913498266Sopenharmony_ci  0xab, 0x4a, 0x0b, 0x1e, 0x51, 0x46, 0xe1, 0x00, 0x8d, 0x91, 0x6d, 0x19,
908013498266Sopenharmony_ci  0x9f, 0xe0, 0x79, 0x70, 0x77, 0x16, 0xa5, 0x40, 0x1f, 0xf7, 0xce, 0x33,
908113498266Sopenharmony_ci  0x60, 0x8d, 0x79, 0x0f, 0x67, 0xe6, 0xc8, 0x0f, 0xd2, 0x1b, 0x86, 0x1e,
908213498266Sopenharmony_ci  0xd9, 0xb0, 0xd3, 0x2f, 0x82, 0xa5, 0x85, 0x1a, 0x80, 0x78, 0xfd, 0xa8,
908313498266Sopenharmony_ci  0x5d, 0x70, 0x42, 0xd0, 0xb4, 0xb4, 0x4a, 0x91, 0xbb, 0xe7, 0x1d, 0x25,
908413498266Sopenharmony_ci  0xf4, 0x98, 0x91, 0xe2, 0x28, 0xc9, 0x74, 0x3b, 0x4e, 0x09, 0xe0, 0x20,
908513498266Sopenharmony_ci  0x37, 0x05, 0x1d, 0x92, 0x19, 0x06, 0xc1, 0xe0, 0x5f, 0xb4, 0x7e, 0x5c,
908613498266Sopenharmony_ci  0xad, 0x28, 0xf1, 0xcc, 0xfa, 0x52, 0x2b, 0x30, 0x0f, 0x24, 0x14, 0xd2,
908713498266Sopenharmony_ci  0xe5, 0x7e, 0x99, 0x5c, 0x11, 0x76, 0xb4, 0xe9, 0xd6, 0xac, 0xcb, 0x19,
908813498266Sopenharmony_ci  0x28, 0x60, 0xde, 0x31, 0x37, 0xf4, 0x89, 0x0b, 0x35, 0x2a, 0xb3, 0x79,
908913498266Sopenharmony_ci  0xcd, 0x12, 0x7f, 0x57, 0x78, 0x95, 0x2b, 0x40, 0x98, 0x88, 0xda, 0x0c,
909013498266Sopenharmony_ci  0xce, 0xd5, 0x55, 0x14, 0x4f, 0xfa, 0x72, 0x48, 0xb4, 0x08, 0xc9, 0x28,
909113498266Sopenharmony_ci  0xe1, 0x62, 0x7a, 0x86, 0x72, 0x3d, 0x4b, 0x30, 0x95, 0x7e, 0x32, 0x75,
909213498266Sopenharmony_ci  0x62, 0xec, 0xcd, 0xbe, 0x26, 0xa9, 0x3c, 0xe2, 0x5b, 0xa1, 0x4c, 0xe8,
909313498266Sopenharmony_ci  0xe8, 0x1f, 0x70, 0x09, 0x61, 0x70, 0xae, 0x00, 0x71, 0x07, 0x08, 0x0b,
909413498266Sopenharmony_ci  0x2b, 0x7d, 0x8b, 0x85, 0xba, 0x1f, 0x9d, 0xb3, 0xc9, 0x18, 0x47, 0x98,
909513498266Sopenharmony_ci  0x3a, 0x83, 0xd3, 0x18, 0xc7, 0xb3, 0x69, 0x31, 0x4c, 0xa6, 0x4e, 0x4d,
909613498266Sopenharmony_ci  0x0f, 0x5f, 0x2c, 0x99, 0x70, 0x29, 0x09, 0x12, 0xda, 0x79, 0x89, 0xac,
909713498266Sopenharmony_ci  0x85, 0x6a, 0xe9, 0xca, 0xc0, 0x6f, 0x4e, 0xf3, 0x66, 0x9d, 0x34, 0x10,
909813498266Sopenharmony_ci  0x76, 0xd8, 0x86, 0xf3, 0xc7, 0x43, 0x19, 0x48, 0xc5, 0x28, 0x26, 0x5d,
909913498266Sopenharmony_ci  0x9d, 0xb9, 0x5e, 0x32, 0xcb, 0x96, 0x6e, 0x1c, 0xae, 0xe8, 0x79, 0xa3,
910013498266Sopenharmony_ci  0x3b, 0x1c, 0x32, 0xb6, 0xe9, 0x55, 0x59, 0xb2, 0x33, 0xa8, 0x00, 0xff,
910113498266Sopenharmony_ci  0x35, 0x9f, 0xc1, 0x86, 0xa9, 0x71, 0xb8, 0x9b, 0x27, 0xdb, 0xad, 0x63,
910213498266Sopenharmony_ci  0x5d, 0x94, 0xda, 0xc6, 0x41, 0xc6, 0xc3, 0x62, 0x7c, 0xd5, 0x90, 0x82,
910313498266Sopenharmony_ci  0x1e, 0x36, 0x2d, 0xc3, 0xad, 0x47, 0xc3, 0x82, 0xcf, 0x5b, 0x86, 0x25,
910413498266Sopenharmony_ci  0x76, 0xcf, 0xb2, 0x58, 0x54, 0x85, 0xc3, 0x51, 0x25, 0x49, 0x5b, 0x5d,
910513498266Sopenharmony_ci  0xca, 0xdc, 0xf1, 0x9e, 0xfb, 0x7b, 0x2c, 0x7a, 0x3e, 0x16, 0x4e, 0x24,
910613498266Sopenharmony_ci  0xec, 0xf3, 0x33, 0x92, 0x46, 0xcb, 0x8d, 0x41, 0xf4, 0x32, 0x97, 0xc0,
910713498266Sopenharmony_ci  0x76, 0xc1, 0x0d, 0x62, 0xd0, 0x87, 0xdc, 0x45, 0x8b, 0x08, 0x1c, 0x8d,
910813498266Sopenharmony_ci  0x4a, 0xd2, 0xfe, 0x32, 0x1c, 0x0d, 0x4a, 0x01, 0x23, 0x5b, 0xb4, 0xc8,
910913498266Sopenharmony_ci  0xe1, 0x41, 0x04, 0x0b, 0xa1, 0x5f, 0xd2, 0x99, 0xf1, 0x03, 0x4d, 0x60,
911013498266Sopenharmony_ci  0x21, 0x25, 0x94, 0x8e, 0xcb, 0x72, 0xd0, 0xd2, 0x2a, 0xfa, 0x1b, 0x8e,
911113498266Sopenharmony_ci  0xe7, 0x8a, 0x56, 0x17, 0x19, 0xf8, 0x86, 0xb0, 0x12, 0x4e, 0x94, 0x14,
911213498266Sopenharmony_ci  0xac, 0xd3, 0x60, 0x39, 0x37, 0x74, 0x53, 0x09, 0xe4, 0x39, 0x73, 0x0d,
911313498266Sopenharmony_ci  0x56, 0x15, 0x13, 0x03, 0xfe, 0xc7, 0x7e, 0x16, 0xec, 0x8a, 0x52, 0xc7,
911413498266Sopenharmony_ci  0x69, 0xa1, 0x69, 0x55, 0x5b, 0xcd, 0xed, 0xec, 0x84, 0xcf, 0x93, 0xc6,
911513498266Sopenharmony_ci  0xd0, 0xd7, 0x18, 0x10, 0x49, 0x51, 0xe5, 0x56, 0x99, 0x44, 0xba, 0x50,
911613498266Sopenharmony_ci  0xc2, 0xd0, 0x8c, 0x4c, 0xa7, 0x14, 0x56, 0x88, 0xd3, 0x18, 0xeb, 0x02,
911713498266Sopenharmony_ci  0xa1, 0x21, 0x64, 0x25, 0xac, 0x18, 0xac, 0x56, 0x8e, 0x68, 0x07, 0x2e,
911813498266Sopenharmony_ci  0x9e, 0x5b, 0xc5, 0x26, 0x6e, 0x07, 0x04, 0x63, 0xb9, 0x53, 0xb4, 0x49,
911913498266Sopenharmony_ci  0x65, 0xd1, 0x4d, 0x8e, 0xe1, 0xcd, 0x9d, 0xa2, 0x2d, 0x6a, 0xbf, 0xcd,
912013498266Sopenharmony_ci  0x39, 0xb4, 0x43, 0x5b, 0x49, 0x16, 0x0a, 0x9e, 0x3b, 0xe6, 0x06, 0xbe,
912113498266Sopenharmony_ci  0x63, 0xcb, 0x24, 0xce, 0xf9, 0xd0, 0x94, 0x4e, 0x1a, 0x9d, 0x69, 0x72,
912213498266Sopenharmony_ci  0x99, 0x3b, 0xd5, 0x3c, 0x14, 0x3e, 0xaf, 0x24, 0x6d, 0x4d, 0x50, 0x84,
912313498266Sopenharmony_ci  0x50, 0x60, 0x4f, 0x21, 0xc1, 0x84, 0xed, 0x7a, 0xed, 0xf3, 0x6b, 0x32,
912413498266Sopenharmony_ci  0x3f, 0x7d, 0x0e, 0x8b, 0x82, 0x00, 0x11, 0xb1, 0x64, 0x76, 0x34, 0xae,
912513498266Sopenharmony_ci  0xc0, 0x45, 0x65, 0x02, 0x6a, 0x28, 0x47, 0x6c, 0x9c, 0x26, 0x53, 0xee,
912613498266Sopenharmony_ci  0x12, 0xc7, 0xe6, 0xd7, 0x08, 0x13, 0x79, 0xeb, 0x46, 0x67, 0x3d, 0x70,
912713498266Sopenharmony_ci  0xba, 0xbd, 0x3a, 0x2e, 0x2b, 0x9c, 0x75, 0x3a, 0xde, 0x7a, 0xbe, 0xf9,
912813498266Sopenharmony_ci  0x80, 0x87, 0x4a, 0x8e, 0x5d, 0x73, 0xde, 0xe9, 0xb8, 0x9b, 0x7c, 0x57,
912913498266Sopenharmony_ci  0x22, 0x20, 0xb2, 0xf6, 0x84, 0xcb, 0x6d, 0xd6, 0xa6, 0x94, 0x10, 0xb6,
913013498266Sopenharmony_ci  0xe3, 0x9e, 0xed, 0xce, 0xd3, 0x3c, 0x4b, 0xe1, 0x7c, 0x8d, 0xf5, 0x02,
913113498266Sopenharmony_ci  0xa6, 0x35, 0x00, 0x85, 0x78, 0xa2, 0x99, 0xf3, 0x2c, 0x46, 0xb2, 0xdf,
913213498266Sopenharmony_ci  0xaa, 0x18, 0xc1, 0xda, 0x91, 0xa3, 0x80, 0xd9, 0xaf, 0x9f, 0x2a, 0x1e,
913313498266Sopenharmony_ci  0x3b, 0xc2, 0x9c, 0x55, 0xbb, 0x90, 0x09, 0x83, 0x54, 0x39, 0xcd, 0xe6,
913413498266Sopenharmony_ci  0x1a, 0x8d, 0xdc, 0x8f, 0x52, 0x81, 0x85, 0x80, 0xbb, 0x88, 0xb7, 0x62,
913513498266Sopenharmony_ci  0x11, 0xfb, 0x79, 0x02, 0x26, 0x51, 0x98, 0xab, 0xc1, 0x5d, 0xa0, 0xdf,
913613498266Sopenharmony_ci  0x7c, 0x1c, 0xad, 0xb7, 0x1a, 0x7e, 0xb0, 0xb5, 0x4d, 0x63, 0x7d, 0xb0,
913713498266Sopenharmony_ci  0xf5, 0x78, 0xe3, 0xda, 0x4b, 0xf9, 0x8e, 0x11, 0xe6, 0xe9, 0xd8, 0xdc,
913813498266Sopenharmony_ci  0xe2, 0xf8, 0xaf, 0x5a, 0x7e, 0xa2, 0xc9, 0x31, 0x3a, 0x8e, 0xbe, 0x15,
913913498266Sopenharmony_ci  0x74, 0xf0, 0xdc, 0x7b, 0xf2, 0x44, 0x20, 0x81, 0xb6, 0x8b, 0x8f, 0xe1,
914013498266Sopenharmony_ci  0x37, 0xd3, 0x2a, 0x8d, 0x09, 0x95, 0xe5, 0x06, 0x40, 0xe7, 0xe4, 0x44,
914113498266Sopenharmony_ci  0xc0, 0x37, 0x04, 0xc7, 0x45, 0x71, 0xcd, 0x49, 0xbd, 0x84, 0xe7, 0x23,
914213498266Sopenharmony_ci  0x2a, 0x7a, 0x57, 0x9d, 0x27, 0x1f, 0xbc, 0x6c, 0x84, 0xe7, 0xce, 0x6b,
914313498266Sopenharmony_ci  0x14, 0x77, 0x4e, 0x29, 0x4a, 0x7c, 0xbd, 0x27, 0xf4, 0x2e, 0x83, 0x66,
914413498266Sopenharmony_ci  0xf3, 0x23, 0x95, 0xb1, 0x21, 0x2f, 0x01, 0x3f, 0x52, 0x04, 0x5a, 0xc9,
914513498266Sopenharmony_ci  0x41, 0xa3, 0xf0, 0x83, 0x2b, 0x63, 0x43, 0x56, 0x59, 0xf6, 0x79, 0x96,
914613498266Sopenharmony_ci  0x67, 0xd5, 0x39, 0x82, 0xf3, 0x60, 0x42, 0xd6, 0x19, 0x65, 0xe3, 0x78,
914713498266Sopenharmony_ci  0x11, 0x54, 0x72, 0xeb, 0x24, 0x11, 0x90, 0x2d, 0xaa, 0x4d, 0xc0, 0x89,
914813498266Sopenharmony_ci  0x98, 0x5e, 0x05, 0x8c, 0x92, 0xbf, 0xe4, 0x7a, 0xee, 0x76, 0x86, 0x1d,
914913498266Sopenharmony_ci  0xb7, 0x26, 0xac, 0x16, 0xa2, 0x80, 0xc3, 0x36, 0x30, 0x10, 0x02, 0x6e,
915013498266Sopenharmony_ci  0x3c, 0x72, 0x0c, 0x0b, 0x04, 0x78, 0x22, 0x31, 0x3c, 0xa7, 0x84, 0x19,
915113498266Sopenharmony_ci  0x4e, 0x51, 0x8a, 0xeb, 0x7e, 0x42, 0xf4, 0xd1, 0x09, 0xf0, 0xe7, 0x2d,
915213498266Sopenharmony_ci  0x14, 0x66, 0xd0, 0xb4, 0x57, 0x12, 0xa2, 0x0d, 0x7c, 0xf6, 0x13, 0xc6,
915313498266Sopenharmony_ci  0x01, 0x7f, 0x69, 0x3e, 0xde, 0xa0, 0xaa, 0x5c, 0x69, 0x3e, 0xbe, 0xee,
915413498266Sopenharmony_ci  0x9e, 0x34, 0x1b, 0x1d, 0x75, 0x57, 0x71, 0xb9, 0xf5, 0x3d, 0x69, 0x1a,
915513498266Sopenharmony_ci  0x5f, 0xfd, 0x94, 0xd8, 0x71, 0xad, 0x76, 0x58, 0xea, 0xd1, 0x3c, 0xc6,
915613498266Sopenharmony_ci  0xab, 0x08, 0x14, 0xec, 0xbc, 0x41, 0xd2, 0x08, 0x86, 0x95, 0x52, 0x91,
915713498266Sopenharmony_ci  0xb4, 0x0e, 0x43, 0x6c, 0x83, 0xa6, 0x09, 0x90, 0x4b, 0xf2, 0x93, 0xc8,
915813498266Sopenharmony_ci  0x35, 0xca, 0x8b, 0x83, 0xe3, 0xb1, 0x38, 0x51, 0x8c, 0xa6, 0x13, 0x08,
915913498266Sopenharmony_ci  0x41, 0xa8, 0xb4, 0x00, 0x1a, 0xec, 0x41, 0x05, 0xba, 0xf5, 0x39, 0xf7,
916013498266Sopenharmony_ci  0x8c, 0x1f, 0x39, 0x21, 0x42, 0x40, 0x45, 0x23, 0x84, 0xf3, 0xea, 0x44,
916113498266Sopenharmony_ci  0x33, 0x65, 0x23, 0xba, 0x33, 0xf2, 0xcf, 0xe1, 0x10, 0x77, 0xbb, 0x8f,
916213498266Sopenharmony_ci  0x9f, 0x47, 0x6b, 0x34, 0xf3, 0x5f, 0x0c, 0xee, 0xcb, 0x9a, 0x7c, 0x38,
916313498266Sopenharmony_ci  0x4d, 0xbf, 0xfa, 0x06, 0x11, 0x4f, 0x7a, 0xa8, 0xa5, 0xaf, 0xad, 0xb6,
916413498266Sopenharmony_ci  0x69, 0x16, 0x8b, 0xcc, 0x95, 0x41, 0x9e, 0xb4, 0x72, 0x64, 0x68, 0x20,
916513498266Sopenharmony_ci  0x12, 0x9b, 0x43, 0x7e, 0xcf, 0xaf, 0xf8, 0x8f, 0x70, 0x48, 0x09, 0x55,
916613498266Sopenharmony_ci  0x20, 0x79, 0xf9, 0xfa, 0x00, 0xeb, 0x97, 0x5b, 0x38, 0x5a, 0x07, 0xc7,
916713498266Sopenharmony_ci  0x45, 0x21, 0xba, 0x45, 0xaf, 0x27, 0x66, 0x15, 0x5a, 0x35, 0xe9, 0x91,
916813498266Sopenharmony_ci  0x93, 0xeb, 0xe8, 0x29, 0x46, 0x79, 0x6a, 0x14, 0x3c, 0x20, 0xf3, 0xd0,
916913498266Sopenharmony_ci  0x34, 0xab, 0x71, 0x3f, 0x90, 0x23, 0xbf, 0x82, 0x2d, 0x26, 0x88, 0xad,
917013498266Sopenharmony_ci  0x6f, 0xd6, 0x02, 0x29, 0xf3, 0x6b, 0xfb, 0x6b, 0x16, 0x3a, 0xa9, 0x32,
917113498266Sopenharmony_ci  0x0e, 0x9a, 0x68, 0xed, 0xaf, 0x88, 0xec, 0x86, 0x15, 0x52, 0xb9, 0x4f,
917213498266Sopenharmony_ci  0xe1, 0x0b, 0x6c, 0x89, 0x23, 0x40, 0xa5, 0xbc, 0xe8, 0x80, 0x35, 0x9e,
917313498266Sopenharmony_ci  0xa5, 0x09, 0xa6, 0x7e, 0x35, 0x81, 0x2c, 0xb8, 0x52, 0x60, 0x4a, 0x61,
917413498266Sopenharmony_ci  0x5d, 0xcd, 0xb9, 0x67, 0x13, 0xb9, 0xdc, 0x7d, 0x12, 0x21, 0x80, 0x17,
917513498266Sopenharmony_ci  0x76, 0xc2, 0x4a, 0xf5, 0x38, 0xe3, 0x3b, 0xe3, 0x51, 0xf1, 0x70, 0x28,
917613498266Sopenharmony_ci  0x8a, 0x78, 0x34, 0xa2, 0xfa, 0x0e, 0x74, 0xb9, 0xc0, 0x97, 0x67, 0xb1,
917713498266Sopenharmony_ci  0x87, 0x16, 0xc6, 0xd2, 0x3d, 0x2c, 0x03, 0x72, 0x26, 0x9c, 0xf7, 0x04,
917813498266Sopenharmony_ci  0xf4, 0x2f, 0x32, 0x7e, 0xa0, 0x2a, 0xbd, 0x0c, 0x84, 0xce, 0xdd, 0xee,
917913498266Sopenharmony_ci  0xfb, 0x43, 0xb7, 0x76, 0x7b, 0xe9, 0xe1, 0xc5, 0xd1, 0xbb, 0x2d, 0xe9,
918013498266Sopenharmony_ci  0x5a, 0x4a, 0xb5, 0xeb, 0xbc, 0xef, 0xc2, 0xb8, 0x5e, 0x4b, 0xa7, 0xe8,
918113498266Sopenharmony_ci  0xc4, 0xa4, 0xcf, 0x4c, 0xd4, 0xd3, 0x24, 0x01, 0xca, 0xbd, 0x92, 0x54,
918213498266Sopenharmony_ci  0xe3, 0x29, 0x62, 0x72, 0x8a, 0x9a, 0x97, 0xce, 0xbc, 0x1b, 0x7e, 0x4a,
918313498266Sopenharmony_ci  0x65, 0xc0, 0x12, 0xc5, 0x27, 0x8c, 0x31, 0xf0, 0x47, 0x36, 0x3b, 0x17,
918413498266Sopenharmony_ci  0x65, 0xcc, 0x42, 0x1a, 0x0a, 0x52, 0xe1, 0xd8, 0x41, 0x2a, 0x6c, 0x47,
918513498266Sopenharmony_ci  0x23, 0xb9, 0xb8, 0x85, 0x62, 0x36, 0x52, 0xe6, 0xc8, 0xa8, 0x8b, 0x7c,
918613498266Sopenharmony_ci  0xcd, 0x2e, 0x2a, 0x7b, 0xd7, 0xbb, 0x40, 0xeb, 0x6d, 0x37, 0xbd, 0xb2,
918713498266Sopenharmony_ci  0xcf, 0x4d, 0x5a, 0x71, 0x86, 0x87, 0x6c, 0xd7, 0x33, 0xd9, 0xd9, 0x7d,
918813498266Sopenharmony_ci  0xf2, 0x24, 0xe8, 0xda, 0xe5, 0x72, 0x42, 0xb0, 0xc3, 0xb8, 0x50, 0x5e,
918913498266Sopenharmony_ci  0x59, 0x2b, 0x29, 0x00, 0x8b, 0x47, 0xa0, 0x52, 0x9f, 0x26, 0x56, 0x1f,
919013498266Sopenharmony_ci  0x4f, 0xb0, 0x57, 0x5f, 0x44, 0x20, 0x26, 0x3e, 0x23, 0x69, 0x90, 0xef,
919113498266Sopenharmony_ci  0x7e, 0x32, 0x74, 0xe1, 0x9d, 0x3b, 0xcb, 0x3a, 0x8c, 0x48, 0x06, 0xc2,
919213498266Sopenharmony_ci  0x42, 0x2a, 0x21, 0x11, 0x56, 0xf3, 0x44, 0xa1, 0xeb, 0x99, 0xe3, 0xa7,
919313498266Sopenharmony_ci  0xf5, 0x88, 0x00, 0x07, 0x19, 0xed, 0x80, 0xa8, 0xbe, 0x03, 0xb3, 0x7e,
919413498266Sopenharmony_ci  0x2d, 0xd2, 0xb4, 0xba, 0x61, 0x6a, 0x8a, 0x66, 0xe2, 0x59, 0xcd, 0x3e,
919513498266Sopenharmony_ci  0xb6, 0x0a, 0xe1, 0x32, 0xb6, 0x5f, 0x8e, 0x48, 0xc9, 0xd9, 0x19, 0xe1,
919613498266Sopenharmony_ci  0x19, 0xb6, 0x9a, 0xa3, 0x12, 0x15, 0x67, 0x69, 0xed, 0x43, 0xfe, 0x3a,
919713498266Sopenharmony_ci  0x80, 0x70, 0x4b, 0x1a, 0x0f, 0x64, 0xe7, 0x0a, 0x58, 0xf1, 0x3e, 0x67,
919813498266Sopenharmony_ci  0xac, 0x8c, 0xb3, 0x89, 0xb2, 0x10, 0x50, 0xba, 0x2e, 0xd1, 0x7d, 0xf2,
919913498266Sopenharmony_ci  0x0d, 0xeb, 0x06, 0xfb, 0xa6, 0x72, 0x7b, 0xae, 0x3c, 0xf4, 0x1b, 0x2f,
920013498266Sopenharmony_ci  0x36, 0x83, 0x74, 0x7f, 0x03, 0x8f, 0x47, 0x85, 0xdb, 0xeb, 0x3a, 0x19,
920113498266Sopenharmony_ci  0x9d, 0x5b, 0xa1, 0x87, 0x50, 0x04, 0x4d, 0x35, 0x67, 0x59, 0x5f, 0x32,
920213498266Sopenharmony_ci  0x57, 0x7a, 0xf9, 0xbb, 0x04, 0xe2, 0x6d, 0x02, 0x16, 0x10, 0xb7, 0x47,
920313498266Sopenharmony_ci  0xe0, 0x1a, 0x71, 0x3c, 0xa1, 0x95, 0xa8, 0xc4, 0xbc, 0x80, 0xfc, 0x0b,
920413498266Sopenharmony_ci  0x9e, 0xf6, 0x2e, 0x6a, 0x7c, 0xd7, 0x59, 0x27, 0x7f, 0xef, 0xdd, 0x3c,
920513498266Sopenharmony_ci  0x4b, 0x29, 0x94, 0xca, 0x4b, 0x6c, 0x01, 0x01, 0xdd, 0x0b, 0x5d, 0xe6,
920613498266Sopenharmony_ci  0x80, 0xb6, 0xfb, 0x50, 0x95, 0xb6, 0x18, 0xe7, 0x69, 0xeb, 0x4c, 0x10,
920713498266Sopenharmony_ci  0x65, 0x9d, 0xa1, 0x25, 0x12, 0x47, 0x49, 0xb5, 0x52, 0x79, 0x69, 0xf7,
920813498266Sopenharmony_ci  0x29, 0x46, 0xb0, 0x2e, 0x17, 0x58, 0xd0, 0x88, 0xfd, 0x10, 0xd4, 0x55,
920913498266Sopenharmony_ci  0xf8, 0x3a, 0xef, 0x37, 0x67, 0x4c, 0x35, 0x50, 0x69, 0xcf, 0x68, 0x89,
921013498266Sopenharmony_ci  0x67, 0xe9, 0xac, 0x28, 0x15, 0xb9, 0x01, 0x06, 0x66, 0x10, 0x23, 0x02,
921113498266Sopenharmony_ci  0x55, 0x4f, 0xc9, 0xda, 0x1f, 0x91, 0x57, 0xaf, 0xca, 0x7e, 0x67, 0x87,
921213498266Sopenharmony_ci  0xb7, 0x60, 0x7e, 0x69, 0x54, 0x0e, 0xb9, 0xd3, 0x50, 0xaa, 0x8c, 0x9e,
921313498266Sopenharmony_ci  0x01, 0x45, 0xe5, 0x2c, 0x00, 0x23, 0xbd, 0xad, 0x55, 0x7e, 0x89, 0xd8,
921413498266Sopenharmony_ci  0x44, 0x17, 0x97, 0x2f, 0x4c, 0xd4, 0x10, 0xcb, 0xf4, 0x6c, 0x81, 0x57,
921513498266Sopenharmony_ci  0x31, 0xe3, 0x1c, 0x53, 0xcd, 0x54, 0xda, 0x7b, 0xb9, 0x52, 0xb3, 0xb9,
921613498266Sopenharmony_ci  0x66, 0x12, 0x7b, 0x28, 0x15, 0xf0, 0xd6, 0x86, 0xa9, 0xcc, 0xbb, 0x18,
921713498266Sopenharmony_ci  0xfe, 0x46, 0xa1, 0x4d, 0x85, 0xcc, 0x95, 0x1d, 0x66, 0x63, 0xb7, 0x6c,
921813498266Sopenharmony_ci  0x38, 0x6d, 0x17, 0x5d, 0xec, 0xa1, 0x12, 0xd8, 0xb3, 0x8c, 0x0b, 0x2c,
921913498266Sopenharmony_ci  0xe1, 0x25, 0xf2, 0x57, 0x27, 0xf2, 0x99, 0x64, 0x79, 0x9a, 0x3c, 0x45,
922013498266Sopenharmony_ci  0x06, 0x7f, 0xc8, 0x8b, 0xcb, 0x5c, 0x35, 0x09, 0x01, 0xa2, 0x21, 0xc3,
922113498266Sopenharmony_ci  0xb9, 0x27, 0x23, 0xa0, 0x76, 0xd2, 0x8f, 0xb8, 0x0a, 0xac, 0x70, 0x46,
922213498266Sopenharmony_ci  0xae, 0xd8, 0x83, 0x40, 0x54, 0x30, 0x45, 0xc2, 0xc9, 0xac, 0x70, 0x07,
922313498266Sopenharmony_ci  0x88, 0xc3, 0xb3, 0x82, 0xfe, 0x9b, 0x1a, 0xfa, 0xdb, 0x72, 0x1f, 0x70,
922413498266Sopenharmony_ci  0xb9, 0x4e, 0x89, 0x99, 0x13, 0x7e, 0x81, 0x29, 0x64, 0x33, 0xe1, 0x5d,
922513498266Sopenharmony_ci  0x4d, 0x43, 0x46, 0x5f, 0xd4, 0xa7, 0x35, 0x60, 0x93, 0xb8, 0xcc, 0x6b,
922613498266Sopenharmony_ci  0xc2, 0x1f, 0x03, 0xb0, 0xd5, 0x16, 0x6b, 0xbe, 0xc4, 0x08, 0xb3, 0x94,
922713498266Sopenharmony_ci  0xf1, 0x24, 0xf9, 0xae, 0x30, 0xbc, 0x02, 0x15, 0x91, 0x32, 0x01, 0xce,
922813498266Sopenharmony_ci  0xf8, 0xdb, 0xfc, 0x4c, 0x59, 0xad, 0x5f, 0xaa, 0x78, 0xbe, 0xa8, 0x7d,
922913498266Sopenharmony_ci  0x7c, 0x7a, 0xba, 0x62, 0x9f, 0x47, 0x32, 0x90, 0xaf, 0xbe, 0x69, 0x34,
923013498266Sopenharmony_ci  0x15, 0xb8, 0x66, 0x37, 0xa5, 0xce, 0xdc, 0xe8, 0x2c, 0x5b, 0x3e, 0x7b,
923113498266Sopenharmony_ci  0x0a, 0x6d, 0x37, 0xf0, 0x5a, 0xd5, 0x79, 0x91, 0xca, 0xa6, 0xe5, 0xe4,
923213498266Sopenharmony_ci  0x70, 0xb0, 0xac, 0xa1, 0xea, 0x80, 0x04, 0xe6, 0xa5, 0xea, 0x1c, 0x31,
923313498266Sopenharmony_ci  0x5d, 0xdb, 0x7f, 0x2b, 0xce, 0x73, 0xfc, 0x03, 0x9b, 0xc7, 0xd6, 0xbf,
923413498266Sopenharmony_ci  0xda, 0x0e, 0x66, 0xb9, 0x6d, 0x76, 0x0e, 0xd5, 0x19, 0x2b, 0x5e, 0x34,
923513498266Sopenharmony_ci  0x57, 0x2c, 0xac, 0x38, 0x7c, 0xab, 0xe1, 0x60, 0x19, 0x10, 0xd4, 0x71,
923613498266Sopenharmony_ci  0xc0, 0xe8, 0x80, 0xe7, 0x83, 0xea, 0x86, 0x3b, 0xaf, 0x32, 0xaa, 0x4a,
923713498266Sopenharmony_ci  0x90, 0xdd, 0x65, 0x86, 0xf7, 0xb3, 0xaf, 0x39, 0xa0, 0x9e, 0x74, 0xce,
923813498266Sopenharmony_ci  0xbb, 0x87, 0x71, 0x10, 0x57, 0x5f, 0xed, 0x9f, 0x2f, 0xce, 0xa8, 0x46,
923913498266Sopenharmony_ci  0x2e, 0x86, 0x43, 0xf4, 0x6e, 0x34, 0x69, 0xf4, 0x04, 0x71, 0x7d, 0x31,
924013498266Sopenharmony_ci  0xb6, 0x6b, 0xd5, 0x4e, 0x36, 0x26, 0xc1, 0x14, 0x36, 0x84, 0x83, 0xc8,
924113498266Sopenharmony_ci  0xe4, 0x55, 0x0c, 0xc3, 0x05, 0x2d, 0xd7, 0x58, 0x10, 0xee, 0xf3, 0x92,
924213498266Sopenharmony_ci  0x49, 0xd5, 0x1d, 0x5b, 0x56, 0xa2, 0x7b, 0x02, 0x97, 0xe9, 0xf0, 0xab,
924313498266Sopenharmony_ci  0x6f, 0xd0, 0x97, 0xf7, 0x71, 0x70, 0x5e, 0xcf, 0xa6, 0x2c, 0x50, 0xe3,
924413498266Sopenharmony_ci  0xba, 0x6d, 0xe2, 0x9f, 0xbd, 0x68, 0x89, 0x50, 0x57, 0x94, 0x9d, 0xad,
924513498266Sopenharmony_ci  0x3a, 0x70, 0xb6, 0x4e, 0x8b, 0x93, 0xa2, 0x58, 0xda, 0xa0, 0x7a, 0xc7,
924613498266Sopenharmony_ci  0x68, 0x45, 0x1c, 0xd0, 0x1a, 0xc1, 0x13, 0x35, 0x99, 0x16, 0x4c, 0x0c,
924713498266Sopenharmony_ci  0x74, 0x7f, 0xc8, 0x45, 0xc9, 0xe7, 0x20, 0x54, 0x3d, 0x62, 0x78, 0xa5,
924813498266Sopenharmony_ci  0x39, 0x14, 0xe6, 0x26, 0xf9, 0xaa, 0xaf, 0x88, 0xaf, 0x59, 0xd5, 0xbd,
924913498266Sopenharmony_ci  0x30, 0xaa, 0xa1, 0x49, 0x19, 0xca, 0xbf, 0x9a, 0xb7, 0xf1, 0x47, 0x96,
925013498266Sopenharmony_ci  0xe3, 0x35, 0xbc, 0x74, 0x32, 0xa8, 0x8b, 0xea, 0x3b, 0x9b, 0x14, 0x03,
925113498266Sopenharmony_ci  0xac, 0xb1, 0x73, 0xd1, 0x5a, 0x9f, 0xa5, 0xfb, 0xbf, 0xae, 0x91, 0x69,
925213498266Sopenharmony_ci  0x54, 0x13, 0x57, 0xfe, 0xb9, 0x28, 0xc4, 0x8d, 0x39, 0x2e, 0x3c, 0x69,
925313498266Sopenharmony_ci  0x15, 0x21, 0x57, 0xe8, 0x01, 0x46, 0x0c, 0xbe, 0x6e, 0xdc, 0xbf, 0xf4,
925413498266Sopenharmony_ci  0x68, 0xe4, 0x7d, 0xfc, 0xeb, 0x97, 0x9e, 0x1d, 0xfc, 0x2f, 0xb4, 0x35,
925513498266Sopenharmony_ci  0x7f, 0xcd, 0xf2, 0xbf, 0xe2, 0x04, 0x7e, 0xe9, 0xdd, 0x72, 0x83, 0x45,
925613498266Sopenharmony_ci  0x7f, 0x75, 0x3a, 0x71, 0xfa, 0x68, 0x74, 0xd1, 0x5b, 0x8b, 0xba, 0xd1,
925713498266Sopenharmony_ci  0x4c, 0x6d, 0x44, 0x6b, 0xa6, 0xc2, 0x80, 0x5d, 0x2e, 0xbc, 0x0e, 0x64,
925813498266Sopenharmony_ci  0x49, 0x48, 0x42, 0x80, 0x45, 0xb1, 0x8b, 0xd0, 0x0f, 0xd5, 0xca, 0x70,
925913498266Sopenharmony_ci  0x9f, 0xc0, 0x05, 0x36, 0xd6, 0x04, 0x12, 0xdd, 0x32, 0x5b, 0x8c, 0x95,
926013498266Sopenharmony_ci  0xa8, 0x48, 0x97, 0x9d, 0x55, 0xf5, 0xc0, 0xad, 0x62, 0x5e, 0xf7, 0xae,
926113498266Sopenharmony_ci  0x96, 0xbf, 0x43, 0x0f, 0x92, 0x41, 0x80, 0xb1, 0x20, 0x7c, 0x82, 0x09,
926213498266Sopenharmony_ci  0x5f, 0x59, 0xa0, 0x1b, 0x08, 0xf0, 0x2b, 0xe7, 0x58, 0x66, 0x46, 0xb1,
926313498266Sopenharmony_ci  0x9d, 0x48, 0xf8, 0x4d, 0x28, 0x7a, 0xb2, 0x4a, 0x67, 0x19, 0x88, 0xe7,
926413498266Sopenharmony_ci  0xe4, 0xf2, 0x9d, 0xb2, 0x22, 0xbc, 0x89, 0x7c, 0x9f, 0x90, 0x8d, 0xaa,
926513498266Sopenharmony_ci  0x79, 0x82, 0xce, 0x1d, 0xb4, 0x53, 0x89, 0x8e, 0xcc, 0xd3, 0xe4, 0xb5,
926613498266Sopenharmony_ci  0xe9, 0x26, 0xe0, 0x35, 0x6c, 0xb1, 0xac, 0xbe, 0xea, 0x81, 0x60, 0xf3,
926713498266Sopenharmony_ci  0x57, 0x74, 0xe3, 0xa5, 0xf9, 0x5f, 0x81, 0x8a, 0x16, 0xb0, 0x53, 0xf6,
926813498266Sopenharmony_ci  0x44, 0x7e, 0x8c, 0x67, 0x57, 0x30, 0xe6, 0xb5, 0x1b, 0x9d, 0xca, 0xf1,
926913498266Sopenharmony_ci  0x58, 0xc2, 0x50, 0xdb, 0xc9, 0x25, 0x72, 0x20, 0x25, 0x68, 0x95, 0x0f,
927013498266Sopenharmony_ci  0x9b, 0x3e, 0xf3, 0x55, 0xdf, 0x83, 0x4d, 0xfe, 0x90, 0x76, 0xb3, 0x53,
927113498266Sopenharmony_ci  0xd2, 0xac, 0xbe, 0x3a, 0xfa, 0xfe, 0xaf, 0xfa, 0xfa, 0x2f, 0xbd, 0x9f,
927213498266Sopenharmony_ci  0x62, 0xfe, 0x94, 0x50, 0xdc, 0xf7, 0xa2, 0xa3, 0xef, 0x6f, 0x4d, 0xb5,
927313498266Sopenharmony_ci  0x81, 0xe6, 0xbf, 0xe1, 0x5f, 0x88, 0x82, 0x97, 0x35, 0x4a, 0x11, 0xf8,
927413498266Sopenharmony_ci  0xfa, 0x52, 0x14, 0x7d, 0x48, 0xaf, 0x08, 0xe8, 0x91, 0x94, 0xfa, 0xf9,
927513498266Sopenharmony_ci  0x1c, 0x61, 0x31, 0x15, 0xb4, 0xbc, 0x66, 0xd0, 0x72, 0x92, 0x05, 0x87,
927613498266Sopenharmony_ci  0x05, 0x99, 0x20, 0x02, 0x79, 0x32, 0x43, 0x74, 0xd2, 0xfd, 0x53, 0xc8,
927713498266Sopenharmony_ci  0x08, 0xa9, 0xe6, 0x4a, 0x04, 0xd7, 0x66, 0x12, 0x8e, 0x02, 0x55, 0x2b,
927813498266Sopenharmony_ci  0xa7, 0x03, 0xb2, 0x3f, 0xc4, 0x60, 0xc1, 0x20, 0x14, 0xb5, 0x6a, 0xf4,
927913498266Sopenharmony_ci  0x15, 0x8b, 0x57, 0x54, 0x0e, 0x0e, 0xf5, 0xa1, 0xb5, 0x3f, 0xad, 0x49,
928013498266Sopenharmony_ci  0xa2, 0xd8, 0x6c, 0x46, 0xb7, 0x1e, 0x49, 0x7e, 0x5c, 0xd5, 0xf0, 0xaf,
928113498266Sopenharmony_ci  0x21, 0xc7, 0xbd, 0x04, 0xac, 0x89, 0x11, 0x61, 0x52, 0x4c, 0xc7, 0x12,
928213498266Sopenharmony_ci  0x5d, 0x01, 0xc4, 0xcd, 0xbb, 0xab, 0xaa, 0x0d, 0x0a, 0x0f, 0xb8, 0x10,
928313498266Sopenharmony_ci  0x12, 0x71, 0x21, 0xdd, 0x86, 0x4b, 0x8f, 0x53, 0x6c, 0x9c, 0x00, 0xdb,
928413498266Sopenharmony_ci  0x53, 0x84, 0xb0, 0x22, 0xb1, 0x13, 0x85, 0xc3, 0x40, 0x66, 0xc3, 0x94,
928513498266Sopenharmony_ci  0x8c, 0x59, 0x8a, 0xc1, 0x1d, 0x8b, 0xcf, 0x28, 0x60, 0x10, 0x6a, 0x9f,
928613498266Sopenharmony_ci  0x0e, 0xca, 0xf8, 0x11, 0x0c, 0x6e, 0x84, 0xfb, 0x7c, 0x41, 0x6e, 0x18,
928713498266Sopenharmony_ci  0x36, 0xce, 0x44, 0xba, 0xaf, 0x1c, 0x1a, 0x9f, 0x84, 0x27, 0x6b, 0xa2,
928813498266Sopenharmony_ci  0x9b, 0x71, 0x85, 0xbc, 0x43, 0xf5, 0x27, 0x71, 0x2f, 0x39, 0x21, 0xd0,
928913498266Sopenharmony_ci  0x34, 0x77, 0xd9, 0xad, 0xb6, 0x85, 0xf0, 0x27, 0x49, 0x88, 0x89, 0xb7,
929013498266Sopenharmony_ci  0xf7, 0x8c, 0xc6, 0x9d, 0xc8, 0xc3, 0xa1, 0xa6, 0xdd, 0xea, 0x45, 0x1a,
929113498266Sopenharmony_ci  0x2d, 0x58, 0xc9, 0xc2, 0x77, 0xb6, 0xbd, 0x63, 0xda, 0x6e, 0x9b, 0x6a,
929213498266Sopenharmony_ci  0x92, 0x9c, 0x43, 0xdf, 0xc2, 0x1d, 0x9e, 0xba, 0x59, 0xfd, 0x26, 0xc6,
929313498266Sopenharmony_ci  0xdc, 0x9a, 0x6b, 0x5d, 0x4d, 0x5f, 0xac, 0xa4, 0x52, 0x5b, 0x88, 0x4a,
929413498266Sopenharmony_ci  0x8b, 0x04, 0x14, 0xf4, 0x31, 0xc7, 0x6a, 0xf3, 0x1c, 0xfc, 0xc5, 0x8b,
929513498266Sopenharmony_ci  0xf9, 0xd6, 0x16, 0x72, 0x2a, 0xe0, 0x04, 0x02, 0x4f, 0xdf, 0xe3, 0x20,
929613498266Sopenharmony_ci  0x29, 0x5b, 0x2e, 0x25, 0x73, 0x81, 0xc0, 0x2c, 0x4e, 0x7a, 0xb8, 0x3a,
929713498266Sopenharmony_ci  0xb6, 0xe2, 0x42, 0xf4, 0xfd, 0xbe, 0xc8, 0x54, 0xc7, 0x0a, 0x85, 0xf8,
929813498266Sopenharmony_ci  0x40, 0xf8, 0x10, 0xac, 0xaf, 0x89, 0xf5, 0x03, 0x7b, 0x4b, 0xd8, 0x73,
929913498266Sopenharmony_ci  0xc9, 0xf6, 0xf2, 0x04, 0xd1, 0xdd, 0x79, 0x01, 0xe2, 0x80, 0x08, 0xb1,
930013498266Sopenharmony_ci  0x47, 0x9c, 0xdb, 0x9c, 0x05, 0xa7, 0xbe, 0x95, 0x2a, 0xb7, 0x5c, 0x1e,
930113498266Sopenharmony_ci  0xb0, 0x51, 0xd4, 0xca, 0x1f, 0x57, 0xe2, 0x2c, 0xb1, 0xb4, 0xc6, 0x1a,
930213498266Sopenharmony_ci  0xa4, 0xc1, 0x22, 0x80, 0x47, 0xd6, 0xbe, 0xda, 0x58, 0xeb, 0x2e, 0xdc,
930313498266Sopenharmony_ci  0x6d, 0x04, 0xe5, 0x66, 0xbd, 0x2b, 0xb5, 0xe6, 0x55, 0x94, 0x65, 0x06,
930413498266Sopenharmony_ci  0x4d, 0x93, 0xf5, 0x67, 0x86, 0x41, 0xb0, 0x29, 0x6d, 0x26, 0x65, 0xd0,
930513498266Sopenharmony_ci  0x55, 0xc1, 0x4a, 0x07, 0x5c, 0x94, 0x23, 0xcb, 0xe9, 0x40, 0x72, 0xed,
930613498266Sopenharmony_ci  0x22, 0xa6, 0x6c, 0x37, 0x60, 0x81, 0xab, 0x2a, 0x57, 0x7b, 0xae, 0x54,
930713498266Sopenharmony_ci  0xed, 0xdb, 0xf1, 0xd1, 0xad, 0x4b, 0xb8, 0xee, 0x62, 0xb1, 0x70, 0x6c,
930813498266Sopenharmony_ci  0x0e, 0x4b, 0x24, 0xe8, 0xb5, 0xaf, 0xd6, 0xf9, 0x3e, 0xb2, 0x06, 0x2f,
930913498266Sopenharmony_ci  0xa7, 0xeb, 0xb5, 0xe8, 0x97, 0x10, 0x20, 0x35, 0xbd, 0xe7, 0x0c, 0x46,
931013498266Sopenharmony_ci  0xa8, 0x75, 0xd9, 0xd3, 0xd1, 0x3e, 0xfa, 0xec, 0xbe, 0x26, 0xdf, 0xb3,
931113498266Sopenharmony_ci  0x3c, 0xbe, 0xbf, 0x49, 0x1f, 0xb5, 0x44, 0xde, 0x65, 0x8d, 0x6c, 0xb0,
931213498266Sopenharmony_ci  0xf1, 0xfe, 0xab, 0x6f, 0xf0, 0x69, 0x95, 0xf7, 0xd7, 0xa2, 0xc1, 0x00,
931313498266Sopenharmony_ci  0x78, 0x4e, 0x35, 0x6b, 0xa3, 0xe8, 0x79, 0x68, 0x85, 0x0e, 0x26, 0xbd,
931413498266Sopenharmony_ci  0xd6, 0xe3, 0x21, 0x7b, 0x8b, 0xc6, 0xb9, 0xb1, 0x69, 0x90, 0xbf, 0x2a,
931513498266Sopenharmony_ci  0xbf, 0xc2, 0xa0, 0x75, 0x93, 0xa4, 0x03, 0x9f, 0xc6, 0x7e, 0xb0, 0x8e,
931613498266Sopenharmony_ci  0xc9, 0x0c, 0x16, 0xc3, 0x1a, 0x52, 0xc1, 0x93, 0x61, 0x26, 0x65, 0x34,
931713498266Sopenharmony_ci  0xb9, 0xfc, 0x00, 0xc5, 0xb5, 0xa7, 0xd3, 0x4a, 0x2a, 0x6a, 0xc0, 0x2d,
931813498266Sopenharmony_ci  0x2e, 0xbe, 0x3d, 0xaf, 0xb9, 0x92, 0x3d, 0xc5, 0xcc, 0x0f, 0x8c, 0xf6,
931913498266Sopenharmony_ci  0x21, 0x83, 0x8b, 0x0f, 0xc5, 0xe9, 0x62, 0x43, 0xe3, 0x1f, 0x9b, 0x9e,
932013498266Sopenharmony_ci  0x02, 0xf9, 0x74, 0x52, 0x5f, 0x3a, 0x7a, 0x12, 0xe3, 0x53, 0xd6, 0x78,
932113498266Sopenharmony_ci  0xaf, 0x94, 0xde, 0x0c, 0x26, 0xed, 0x8b, 0xa4, 0x17, 0x53, 0x7e, 0x54,
932213498266Sopenharmony_ci  0x00, 0x8a, 0x0e, 0x67, 0x36, 0x4c, 0xaa, 0xf4, 0xd1, 0x03, 0xee, 0x91,
932313498266Sopenharmony_ci  0x17, 0xa9, 0xd2, 0x93, 0x6e, 0x2d, 0xa3, 0xaa, 0xbf, 0xb6, 0x26, 0xd4,
932413498266Sopenharmony_ci  0x96, 0xb8, 0x08, 0x1e, 0x1b, 0xc5, 0x2d, 0x50, 0x91, 0x6a, 0x46, 0x92,
932513498266Sopenharmony_ci  0xc0, 0x8b, 0x13, 0x44, 0xc3, 0xb3, 0x9a, 0x10, 0x20, 0x1f, 0x3f, 0x72,
932613498266Sopenharmony_ci  0x06, 0x3d, 0xb8, 0x46, 0x65, 0x6d, 0x73, 0x4f, 0x99, 0x63, 0x7b, 0x4e,
932713498266Sopenharmony_ci  0x86, 0x58, 0xbd, 0xe4, 0x01, 0x34, 0x4c, 0x70, 0x8d, 0x3c, 0x99, 0xa4,
932813498266Sopenharmony_ci  0xb1, 0xfa, 0x5d, 0x73, 0x78, 0x5c, 0xf2, 0xff, 0xab, 0x52, 0x4e, 0xbb,
932913498266Sopenharmony_ci  0xdf, 0x65, 0x24, 0xed, 0x68, 0x38, 0xfa, 0x3a, 0x0f, 0x81, 0xc9, 0xfa,
933013498266Sopenharmony_ci  0x7a, 0xaa, 0x46, 0xd3, 0xfe, 0x64, 0x51, 0xd2, 0x85, 0x23, 0x8f, 0xb1,
933113498266Sopenharmony_ci  0x34, 0x30, 0x4e, 0x19, 0x47, 0x51, 0xe4, 0xee, 0xd7, 0x07, 0x6f, 0xde,
933213498266Sopenharmony_ci  0x1d, 0xbc, 0xea, 0xf0, 0x5b, 0xdc, 0xb3, 0xc3, 0xa2, 0x59, 0x76, 0x41,
933313498266Sopenharmony_ci  0x3e, 0xb2, 0x2e, 0x38, 0xbc, 0x16, 0x6e, 0x5b, 0x02, 0xb2, 0xdf, 0xf2,
933413498266Sopenharmony_ci  0x89, 0x48, 0xb0, 0x81, 0xf5, 0x01, 0x3a, 0x68, 0x71, 0x61, 0xef, 0x7b,
933513498266Sopenharmony_ci  0x37, 0x62, 0x77, 0xab, 0x30, 0x54, 0xa3, 0x86, 0x02, 0x56, 0x4d, 0xf0,
933613498266Sopenharmony_ci  0x96, 0xb2, 0xa3, 0x86, 0x02, 0x62, 0x73, 0xe2, 0x09, 0xc1, 0xe0, 0xdc,
933713498266Sopenharmony_ci  0x70, 0xfd, 0x28, 0x4e, 0x27, 0x97, 0x20, 0x1f, 0x27, 0x21, 0x3b, 0xa9,
933813498266Sopenharmony_ci  0x3e, 0xb0, 0x91, 0xa4, 0xa7, 0xef, 0xb3, 0xcb, 0x87, 0x31, 0x6d, 0x0c,
933913498266Sopenharmony_ci  0x68, 0x7b, 0xe0, 0xb0, 0x1a, 0x2c, 0x74, 0x93, 0x45, 0xa0, 0x6e, 0x58,
934013498266Sopenharmony_ci  0xb9, 0x86, 0xa5, 0x46, 0x0b, 0x5b, 0xfc, 0x8a, 0xc9, 0xc4, 0x71, 0x8c,
934113498266Sopenharmony_ci  0xb4, 0x9a, 0x3b, 0x78, 0xfa, 0xb4, 0x1b, 0xc0, 0x5a, 0x5c, 0xbe, 0xce,
934213498266Sopenharmony_ci  0x0c, 0x3f, 0x87, 0xcb, 0xd7, 0xe9, 0xbe, 0x37, 0x2b, 0x07, 0x65, 0x31,
934313498266Sopenharmony_ci  0x2c, 0xea, 0xde, 0x4a, 0xb8, 0xaa, 0x06, 0xfa, 0xdd, 0xdb, 0x38, 0x7b,
934413498266Sopenharmony_ci  0x1b, 0xc6, 0x75, 0xc1, 0xd8, 0xf9, 0xfb, 0xb2, 0x1a, 0xe1, 0x7d, 0x84,
934513498266Sopenharmony_ci  0x25, 0x71, 0x0b, 0x07, 0xa8, 0x1a, 0x40, 0x80, 0x0c, 0x27, 0x87, 0x6f,
934613498266Sopenharmony_ci  0x69, 0x7b, 0x8e, 0x0f, 0x4e, 0x4e, 0x22, 0x03, 0xc9, 0x2e, 0xa1, 0x9a,
934713498266Sopenharmony_ci  0x7e, 0x26, 0x3a, 0xc7, 0x34, 0x21, 0xf5, 0xea, 0xfa, 0xdb, 0x40, 0x7f,
934813498266Sopenharmony_ci  0x29, 0x0a, 0xaf, 0x3c, 0xf7, 0x74, 0x31, 0x03, 0x56, 0x03, 0x5a, 0xc1,
934913498266Sopenharmony_ci  0x78, 0xad, 0x92, 0xc8, 0x8c, 0xb6, 0xe0, 0x69, 0xc2, 0x34, 0x84, 0xba,
935013498266Sopenharmony_ci  0x08, 0x1d, 0xe3, 0x39, 0x42, 0x88, 0xc8, 0xde, 0x27, 0x5a, 0x22, 0xbe,
935113498266Sopenharmony_ci  0x81, 0x88, 0xd1, 0x0f, 0x7b, 0x07, 0x7a, 0x27, 0x2f, 0x4f, 0x0f, 0x81,
935213498266Sopenharmony_ci  0x3a, 0xde, 0x9d, 0xbe, 0xe8, 0x45, 0x02, 0xf8, 0xd9, 0xac, 0x36, 0x01,
935313498266Sopenharmony_ci  0xfa, 0x43, 0x99, 0xa5, 0x17, 0x06, 0xe6, 0xb9, 0x64, 0xeb, 0x91, 0x54,
935413498266Sopenharmony_ci  0x10, 0xec, 0x86, 0xe0, 0x08, 0x67, 0x8a, 0x74, 0x6d, 0xc6, 0x0d, 0xc8,
935513498266Sopenharmony_ci  0xcd, 0x5b, 0xd7, 0xfa, 0xd3, 0xb2, 0x45, 0xba, 0x86, 0xd2, 0x7b, 0xf7,
935613498266Sopenharmony_ci  0x70, 0xb7, 0x0c, 0xd0, 0xdd, 0xb2, 0x58, 0x29, 0x87, 0x74, 0x89, 0xad,
935713498266Sopenharmony_ci  0x74, 0x12, 0x22, 0xe7, 0xa5, 0xc5, 0x63, 0x10, 0xd0, 0x03, 0x64, 0x17,
935813498266Sopenharmony_ci  0x9d, 0x78, 0x3c, 0x04, 0xfd, 0x90, 0xf8, 0xef, 0xbb, 0xb7, 0xaf, 0x36,
935913498266Sopenharmony_ci  0x0d, 0x8c, 0x82, 0x40, 0xed, 0x27, 0x11, 0xe7, 0xc5, 0x87, 0x0a, 0x6c,
936013498266Sopenharmony_ci  0xda, 0x82, 0x42, 0x26, 0x02, 0x28, 0xfd, 0x48, 0xf9, 0xd2, 0x79, 0x23,
936113498266Sopenharmony_ci  0x73, 0x8e, 0x5d, 0xec, 0x30, 0xe8, 0xa4, 0x1c, 0x1b, 0x88, 0x67, 0x5f,
936213498266Sopenharmony_ci  0x5f, 0x60, 0x9b, 0x2a, 0xb9, 0xde, 0x0a, 0x26, 0xf4, 0x81, 0x66, 0x48,
936313498266Sopenharmony_ci  0x34, 0x00, 0xb6, 0x1b, 0xe9, 0x11, 0xdd, 0x05, 0x06, 0x78, 0x19, 0xd8,
936413498266Sopenharmony_ci  0x21, 0x82, 0xc6, 0x98, 0x0c, 0x53, 0x68, 0x0b, 0xa0, 0xb3, 0x6a, 0x79,
936513498266Sopenharmony_ci  0x34, 0x5d, 0x73, 0x05, 0xef, 0x18, 0x08, 0xaa, 0xd5, 0xfa, 0x6d, 0xe8,
936613498266Sopenharmony_ci  0xc9, 0x1d, 0x9c, 0xe6, 0x1d, 0xf9, 0x0c, 0xac, 0x4c, 0x67, 0x20, 0x5b,
936713498266Sopenharmony_ci  0x90, 0x81, 0x6e, 0x13, 0x1f, 0x59, 0x96, 0x86, 0x14, 0x1a, 0x0f, 0xf7,
936813498266Sopenharmony_ci  0x25, 0x51, 0x94, 0xfb, 0xfc, 0x6f, 0x98, 0x8b, 0x91, 0x04, 0x5a, 0x16,
936913498266Sopenharmony_ci  0x53, 0xb6, 0x86, 0xcb, 0x1b, 0x9c, 0xd6, 0xc6, 0x58, 0x6e, 0x94, 0x9c,
937013498266Sopenharmony_ci  0x4b, 0x6e, 0x46, 0xf2, 0xd4, 0xd3, 0x80, 0xb1, 0x9a, 0x42, 0xdb, 0xed,
937113498266Sopenharmony_ci  0x07, 0xad, 0xad, 0x9f, 0x6c, 0x18, 0xa7, 0xc1, 0x29, 0x79, 0xbe, 0xa9,
937213498266Sopenharmony_ci  0xb5, 0x00, 0xba, 0xa0, 0x53, 0x50, 0x58, 0x34, 0xac, 0x90, 0xd6, 0xe4,
937313498266Sopenharmony_ci  0x9c, 0x3d, 0x5f, 0xdd, 0xa5, 0x9d, 0x1d, 0x5d, 0x76, 0xd4, 0x79, 0x65,
937413498266Sopenharmony_ci  0x6a, 0x24, 0x12, 0xa7, 0x22, 0x74, 0x9c, 0x31, 0xfd, 0xf4, 0xc7, 0x67,
937513498266Sopenharmony_ci  0x16, 0x69, 0xc4, 0xe4, 0x53, 0xf0, 0x11, 0x11, 0xad, 0x2c, 0xdc, 0x9c,
937613498266Sopenharmony_ci  0xad, 0x84, 0x8a, 0x58, 0x3b, 0xe4, 0xfb, 0x1f, 0xa7, 0xe9, 0x3c, 0x3a,
937713498266Sopenharmony_ci  0xcf, 0xa0, 0xb1, 0x72, 0x74, 0x4e, 0xe0, 0x45, 0x1c, 0xb8, 0x8a, 0xce,
937813498266Sopenharmony_ci  0xfe, 0x19, 0xc6, 0xaa, 0x84, 0x8a, 0xe8, 0x19, 0x07, 0x34, 0xdc, 0x06,
937913498266Sopenharmony_ci  0x03, 0x1b, 0x83, 0x77, 0x5e, 0x5c, 0x52, 0xa0, 0xc1, 0xf6, 0xe3, 0xdd,
938013498266Sopenharmony_ci  0x27, 0x20, 0xa5, 0x5e, 0x51, 0x79, 0x54, 0xbb, 0x5a, 0xe3, 0x42, 0x93,
938113498266Sopenharmony_ci  0x76, 0x3a, 0x6b, 0x91, 0xba, 0x80, 0x4e, 0xc3, 0x85, 0xc4, 0xc5, 0xa0,
938213498266Sopenharmony_ci  0x0e, 0x4d, 0xc6, 0x57, 0x81, 0x65, 0xf7, 0xcb, 0x28, 0xc1, 0xfa, 0x45,
938313498266Sopenharmony_ci  0x8d, 0xf2, 0x62, 0xb4, 0x44, 0x1c, 0x1e, 0xed, 0xd6, 0x1d, 0x3b, 0x79,
938413498266Sopenharmony_ci  0xf9, 0x5f, 0x87, 0xfd, 0xe8, 0xed, 0xe1, 0xe9, 0x5b, 0xb8, 0x25, 0x4e,
938513498266Sopenharmony_ci  0x4e, 0x8f, 0xde, 0x46, 0x18, 0x57, 0xd0, 0x55, 0x06, 0x76, 0xcc, 0xc9,
938613498266Sopenharmony_ci  0x47, 0x6c, 0x4e, 0x43, 0xcf, 0x25, 0xaf, 0x70, 0xb3, 0x1e, 0x1a, 0x65,
938713498266Sopenharmony_ci  0x84, 0x72, 0xdd, 0xa8, 0x2a, 0xbd, 0x7e, 0xad, 0x4e, 0x9d, 0x88, 0x0a,
938813498266Sopenharmony_ci  0x8c, 0xa3, 0x5b, 0x3a, 0x31, 0xde, 0xee, 0xe5, 0xc4, 0x41, 0xf3, 0x42,
938913498266Sopenharmony_ci  0x3a, 0xc4, 0x19, 0x9b, 0x9b, 0x9b, 0x86, 0x5b, 0x03, 0xc5, 0xc2, 0xdd,
939013498266Sopenharmony_ci  0xa1, 0x3c, 0xe7, 0xca, 0x64, 0xaa, 0x77, 0x94, 0x28, 0xe6, 0x9c, 0xb9,
939113498266Sopenharmony_ci  0xca, 0xe6, 0x76, 0x01, 0xa9, 0xf5, 0xb4, 0x3a, 0x01, 0x5c, 0x9a, 0xeb,
939213498266Sopenharmony_ci  0xe4, 0x07, 0x21, 0xc8, 0x1b, 0xa2, 0xf8, 0x6b, 0x48, 0x17, 0xf4, 0x82,
939313498266Sopenharmony_ci  0x8d, 0x81, 0x8b, 0x88, 0x5d, 0x15, 0xb3, 0x94, 0x9d, 0x55, 0x64, 0xfd,
939413498266Sopenharmony_ci  0x54, 0x66, 0x5c, 0x45, 0xa6, 0x94, 0x38, 0x29, 0x9d, 0xe1, 0xe6, 0xd6,
939513498266Sopenharmony_ci  0x68, 0x97, 0xd7, 0xda, 0x65, 0xe8, 0x79, 0xa6, 0xf3, 0x34, 0x87, 0x43,
939613498266Sopenharmony_ci  0x46, 0x35, 0x22, 0xd7, 0x74, 0x54, 0x6b, 0xdd, 0xf7, 0xb2, 0x0d, 0xcb,
939713498266Sopenharmony_ci  0xbe, 0xaf, 0xaa, 0x51, 0xd5, 0x32, 0xde, 0x29, 0xdd, 0xeb, 0x40, 0x03,
939813498266Sopenharmony_ci  0x7c, 0x13, 0xb6, 0x6c, 0x1b, 0x7f, 0xec, 0x30, 0xd7, 0xbc, 0xb6, 0x29,
939913498266Sopenharmony_ci  0x3e, 0x01, 0x9f, 0xde, 0x8e, 0x21, 0xb8, 0xeb, 0xdb, 0xea, 0xe4, 0xe4,
940013498266Sopenharmony_ci  0x53, 0x94, 0x08, 0x10, 0xb0, 0x24, 0x46, 0x3d, 0xbf, 0xcd, 0xcb, 0xb1,
940113498266Sopenharmony_ci  0x30, 0x49, 0x90, 0x81, 0x63, 0x60, 0x5d, 0xa3, 0x1c, 0x8a, 0xa6, 0xae,
940213498266Sopenharmony_ci  0x70, 0x6d, 0x3e, 0x11, 0x1f, 0x31, 0x64, 0xea, 0x58, 0x8b, 0x69, 0x48,
940313498266Sopenharmony_ci  0x7c, 0x8c, 0xc7, 0x71, 0x89, 0xdb, 0x4e, 0x23, 0xcb, 0x48, 0xe4, 0x7c,
940413498266Sopenharmony_ci  0xf5, 0x05, 0x0b, 0xb0, 0x75, 0x97, 0xb7, 0xea, 0x5f, 0xb4, 0xfd, 0x03,
940513498266Sopenharmony_ci  0x40, 0x17, 0x25, 0x96, 0x18, 0x4c, 0x28, 0x53, 0x20, 0x2b, 0x10, 0xf9,
940613498266Sopenharmony_ci  0xb0, 0x51, 0xc3, 0x40, 0xcb, 0xa1, 0xb6, 0x97, 0xe4, 0x6d, 0x4a, 0x69,
940713498266Sopenharmony_ci  0xc8, 0xa4, 0xe5, 0x45, 0x69, 0x4e, 0x81, 0x4b, 0x63, 0x33, 0x47, 0xac,
940813498266Sopenharmony_ci  0x91, 0x86, 0x71, 0xca, 0x2c, 0xbb, 0x8c, 0x0b, 0xba, 0xab, 0x71, 0x7c,
940913498266Sopenharmony_ci  0x98, 0x79, 0x4e, 0x9e, 0xa2, 0x40, 0xc8, 0xbe, 0x11, 0x38, 0xa4, 0x39,
941013498266Sopenharmony_ci  0xad, 0x75, 0x48, 0xb8, 0x1c, 0xad, 0x51, 0xd1, 0xa5, 0xef, 0x0b, 0x19,
941113498266Sopenharmony_ci  0xba, 0x78, 0xb4, 0xc6, 0xc2, 0xe7, 0x25, 0x83, 0x89, 0x62, 0x57, 0xca,
941213498266Sopenharmony_ci  0x4c, 0x32, 0x52, 0x1b, 0xd5, 0x4d, 0xa4, 0x34, 0x49, 0x3e, 0x0e, 0x0d,
941313498266Sopenharmony_ci  0x8a, 0xeb, 0x90, 0x2c, 0xf2, 0x29, 0xe6, 0xb5, 0xb6, 0x8a, 0x45, 0x74,
941413498266Sopenharmony_ci  0x89, 0xac, 0x6d, 0x61, 0x07, 0xe9, 0xe2, 0x46, 0x52, 0x4e, 0xb4, 0x5a,
941513498266Sopenharmony_ci  0x3e, 0x5f, 0x57, 0x2d, 0x9c, 0x1b, 0x88, 0x38, 0x34, 0xa4, 0x5b, 0x17,
941613498266Sopenharmony_ci  0xa0, 0x31, 0xe2, 0x58, 0x6b, 0x5b, 0x3a, 0x61, 0x96, 0x59, 0x8c, 0x61,
941713498266Sopenharmony_ci  0xa2, 0x49, 0xab, 0x48, 0xc1, 0x50, 0x98, 0x84, 0xb3, 0x3c, 0xc3, 0xa2,
941813498266Sopenharmony_ci  0x5b, 0x45, 0xb9, 0x89, 0x27, 0x0b, 0x8b, 0xc4, 0x46, 0x20, 0xec, 0x68,
941913498266Sopenharmony_ci  0xaa, 0x4d, 0x20, 0x10, 0x4e, 0x95, 0x2d, 0x5a, 0x0a, 0x68, 0x7a, 0x10,
942013498266Sopenharmony_ci  0x40, 0xa5, 0xa1, 0xb9, 0xa2, 0x5c, 0x24, 0xf5, 0x4b, 0x88, 0x26, 0x06,
942113498266Sopenharmony_ci  0xc1, 0x64, 0x32, 0x09, 0x43, 0x0b, 0x68, 0x4d, 0x72, 0x32, 0xc9, 0xfd,
942213498266Sopenharmony_ci  0xa9, 0x57, 0x23, 0x6b, 0x65, 0x6b, 0x55, 0x27, 0x8e, 0x9c, 0xc2, 0x44,
942313498266Sopenharmony_ci  0x33, 0x20, 0x11, 0x16, 0x01, 0xa5, 0x80, 0xb4, 0x26, 0x03, 0x20, 0x6b,
942413498266Sopenharmony_ci  0x42, 0xb3, 0x33, 0xe0, 0xc6, 0x8b, 0xb9, 0x2f, 0xb3, 0x39, 0xc0, 0xd3,
942513498266Sopenharmony_ci  0xda, 0xa2, 0xc6, 0x6a, 0x38, 0x23, 0xc4, 0x1a, 0x01, 0x76, 0xf9, 0xdd,
942613498266Sopenharmony_ci  0x4a, 0xb7, 0x1e, 0x3c, 0x0d, 0x4a, 0x75, 0x9e, 0xa4, 0xd6, 0x05, 0x0e,
942713498266Sopenharmony_ci  0xaf, 0x79, 0x5f, 0x03, 0x44, 0xab, 0x21, 0x80, 0x7a, 0x86, 0x42, 0x16,
942813498266Sopenharmony_ci  0x50, 0x2f, 0x09, 0xf8, 0x31, 0x6f, 0xc3, 0xb2, 0x38, 0xe3, 0xf5, 0x2b,
942913498266Sopenharmony_ci  0x30, 0xcb, 0xff, 0xa4, 0xe6, 0x0c, 0xed, 0xcf, 0xfa, 0xbb, 0x3c, 0xfb,
943013498266Sopenharmony_ci  0x48, 0x66, 0x53, 0x1f, 0xff, 0xd0, 0x34, 0xb5, 0x64, 0x54, 0x0a, 0xc8,
943113498266Sopenharmony_ci  0x8b, 0x50, 0xe6, 0xb4, 0x8c, 0x0e, 0xde, 0x18, 0x95, 0x73, 0x75, 0x9b,
943213498266Sopenharmony_ci  0x09, 0xc0, 0x6f, 0x2e, 0xa9, 0x1f, 0x4f, 0xed, 0xcf, 0xae, 0x06, 0xf8,
943313498266Sopenharmony_ci  0xd8, 0x60, 0x5c, 0xcc, 0xc8, 0xc8, 0xde, 0xec, 0x61, 0x46, 0x68, 0x29,
943413498266Sopenharmony_ci  0x69, 0xc0, 0xf7, 0xa2, 0x41, 0x8c, 0x52, 0xa4, 0x3b, 0x43, 0x0a, 0xd2,
943513498266Sopenharmony_ci  0x64, 0x45, 0x67, 0x8d, 0xd8, 0xe5, 0x4f, 0x35, 0x38, 0xa9, 0x1c, 0x3d,
943613498266Sopenharmony_ci  0x5f, 0xbd, 0xe1, 0xf1, 0xd8, 0x30, 0xf2, 0x91, 0x28, 0x04, 0x8d, 0xbb,
943713498266Sopenharmony_ci  0xc3, 0x91, 0x46, 0x04, 0x08, 0x91, 0xbc, 0x9c, 0xe3, 0xae, 0xe6, 0x46,
943813498266Sopenharmony_ci  0xe7, 0x45, 0x36, 0x4a, 0x3b, 0x2a, 0x09, 0x35, 0x0a, 0x42, 0x51, 0xdd,
943913498266Sopenharmony_ci  0xb4, 0x76, 0x05, 0xae, 0xc6, 0x83, 0xa2, 0x24, 0x46, 0xe1, 0x2a, 0x74,
944013498266Sopenharmony_ci  0x3c, 0x68, 0x2a, 0x2f, 0x66, 0xb8, 0xae, 0x13, 0xfb, 0x48, 0xcd, 0x6b,
944113498266Sopenharmony_ci  0x34, 0x8f, 0x57, 0x28, 0xad, 0xc5, 0xdb, 0xa4, 0xaa, 0x99, 0x5c, 0x31,
944213498266Sopenharmony_ci  0xf8, 0xea, 0x5f, 0xfe, 0x32, 0x58, 0x1a, 0x3e, 0xc3, 0xa0, 0x83, 0x51,
944313498266Sopenharmony_ci  0x6f, 0xef, 0x67, 0x72, 0x72, 0xfd, 0x1a, 0xff, 0x0c, 0x7f, 0xfe, 0xda,
944413498266Sopenharmony_ci  0x33, 0x2e, 0x7b, 0x29, 0x6c, 0x67, 0xc0, 0xc2, 0x92, 0xb1, 0x97, 0x57,
944513498266Sopenharmony_ci  0x8f, 0x5b, 0xd5, 0x17, 0x83, 0xba, 0x09, 0xec, 0x24, 0x71, 0xef, 0xf4,
944613498266Sopenharmony_ci  0xe9, 0x31, 0x9f, 0xc9, 0x92, 0x03, 0x73, 0x88, 0xa8, 0x91, 0x21, 0x91,
944713498266Sopenharmony_ci  0xa6, 0x86, 0x17, 0x50, 0xa0, 0x0e, 0xb9, 0x10, 0x50, 0xe2, 0xbc, 0xd9,
944813498266Sopenharmony_ci  0xd7, 0xc8, 0x2b, 0x54, 0x08, 0x4a, 0x06, 0x9f, 0x3f, 0x87, 0x81, 0xa1,
944913498266Sopenharmony_ci  0x59, 0x91, 0xc0, 0xb7, 0x07, 0xd1, 0x81, 0x0a, 0xcd, 0x6d, 0x76, 0x48,
945013498266Sopenharmony_ci  0xdf, 0x47, 0x54, 0x44, 0x8f, 0xd0, 0x4b, 0x2e, 0x61, 0x88, 0x7d, 0xa9,
945113498266Sopenharmony_ci  0xb6, 0xce, 0x09, 0xf3, 0x8a, 0xf6, 0x97, 0xe5, 0xa8, 0x8a, 0x6a, 0x99,
945213498266Sopenharmony_ci  0xf9, 0x32, 0xab, 0x3e, 0xf8, 0x46, 0x02, 0x81, 0x18, 0x70, 0x22, 0x1b,
945313498266Sopenharmony_ci  0x69, 0x94, 0xe8, 0xdf, 0xc7, 0xdb, 0xdc, 0x05, 0x4c, 0xeb, 0x96, 0x42,
945413498266Sopenharmony_ci  0xe9, 0x95, 0x7b, 0x05, 0xce, 0xeb, 0x92, 0x42, 0x8f, 0xe1, 0xf0, 0xd1,
945513498266Sopenharmony_ci  0xc5, 0x76, 0x6d, 0xe5, 0xe0, 0x63, 0x66, 0x68, 0x37, 0x7d, 0xd8, 0x45,
945613498266Sopenharmony_ci  0xfe, 0xf6, 0xde, 0x59, 0x6e, 0x55, 0xa2, 0xdb, 0x56, 0x30, 0x66, 0x83,
945713498266Sopenharmony_ci  0xd5, 0xe3, 0xe4, 0xb1, 0x32, 0x0d, 0x57, 0x98, 0x74, 0x0b, 0x14, 0x68,
945813498266Sopenharmony_ci  0xd9, 0x96, 0x24, 0x3a, 0x06, 0x5d, 0xcf, 0x1c, 0x27, 0xa7, 0x6c, 0x1a,
945913498266Sopenharmony_ci  0x63, 0xe1, 0xa1, 0x88, 0xb3, 0xd1, 0x3e, 0x3d, 0x4f, 0xd3, 0x92, 0x1c,
946013498266Sopenharmony_ci  0xf6, 0xd6, 0xae, 0x4d, 0x50, 0x67, 0x19, 0x66, 0x95, 0x8d, 0x4b, 0x18,
946113498266Sopenharmony_ci  0xc3, 0xb8, 0x6f, 0xc0, 0xf1, 0xd5, 0xdc, 0x49, 0xd9, 0x99, 0xa2, 0xce,
946213498266Sopenharmony_ci  0x84, 0x30, 0xe2, 0x51, 0x95, 0xe4, 0xea, 0x51, 0x46, 0x17, 0x23, 0x4c,
946313498266Sopenharmony_ci  0x3f, 0xf6, 0xc8, 0x31, 0x35, 0xe2, 0xbf, 0x74, 0xb9, 0x21, 0x7e, 0xc2,
946413498266Sopenharmony_ci  0x65, 0x8e, 0xa6, 0xf9, 0xca, 0x57, 0xe4, 0x69, 0xf0, 0x74, 0x4f, 0x5f,
946513498266Sopenharmony_ci  0x2b, 0x51, 0xc1, 0x4a, 0xdd, 0x97, 0x44, 0x55, 0xa6, 0xf5, 0xad, 0x24,
946613498266Sopenharmony_ci  0x2a, 0x1c, 0xd2, 0x2a, 0x12, 0x55, 0x4b, 0xa2, 0x65, 0x67, 0x89, 0x27,
946713498266Sopenharmony_ci  0xd2, 0xf1, 0x67, 0xd5, 0x87, 0x8c, 0xbf, 0x88, 0xb3, 0xf9, 0xf5, 0x25,
946813498266Sopenharmony_ci  0xfd, 0xf0, 0x98, 0x32, 0x5e, 0x5b, 0xeb, 0xaa, 0x31, 0xe2, 0x46, 0xb5,
946913498266Sopenharmony_ci  0x38, 0x3b, 0xa3, 0x2a, 0x14, 0x7e, 0x64, 0x38, 0x26, 0x8a, 0x98, 0x3c,
947013498266Sopenharmony_ci  0x59, 0x94, 0x30, 0x30, 0x51, 0xab, 0xe2, 0xbd, 0x69, 0xd4, 0x03, 0xa4,
947113498266Sopenharmony_ci  0xde, 0xe4, 0xfe, 0xa9, 0x8c, 0x36, 0xe3, 0x97, 0x23, 0x33, 0xf7, 0xd3,
947213498266Sopenharmony_ci  0x4b, 0xe1, 0xf8, 0xf4, 0x62, 0x99, 0x2e, 0x94, 0x0d, 0xb5, 0xaf, 0x44,
947313498266Sopenharmony_ci  0x02, 0xa6, 0x91, 0xeb, 0xd0, 0x67, 0x08, 0x95, 0x51, 0x9e, 0xf4, 0x12,
947413498266Sopenharmony_ci  0x74, 0xfa, 0xb8, 0x06, 0xc6, 0x83, 0x53, 0x31, 0x38, 0xae, 0x50, 0x84,
947513498266Sopenharmony_ci  0x4f, 0x17, 0x23, 0xf5, 0x31, 0x61, 0xa4, 0x2e, 0x45, 0x7d, 0x6e, 0x16,
947613498266Sopenharmony_ci  0xeb, 0xcb, 0x26, 0x52, 0x4e, 0x95, 0x2b, 0x67, 0x96, 0xac, 0x57, 0x68,
947713498266Sopenharmony_ci  0x4e, 0x97, 0xdc, 0x70, 0x6d, 0x01, 0x6c, 0x42, 0x6b, 0x79, 0x2d, 0x89,
947813498266Sopenharmony_ci  0xbb, 0x5b, 0x7e, 0xc7, 0x18, 0x04, 0xad, 0xd6, 0x6f, 0x43, 0xed, 0x8d,
947913498266Sopenharmony_ci  0xd1, 0xad, 0xa4, 0x47, 0x74, 0x92, 0x78, 0x35, 0x8d, 0x47, 0xa3, 0x51,
948013498266Sopenharmony_ci  0x4c, 0xe2, 0xf1, 0x3e, 0x4b, 0xed, 0x9b, 0x22, 0x33, 0x87, 0xf5, 0x89,
948113498266Sopenharmony_ci  0x93, 0x54, 0xe8, 0xee, 0xe9, 0xd3, 0xa7, 0x22, 0xde, 0x9f, 0x9e, 0xb7,
948213498266Sopenharmony_ci  0xe4, 0x6c, 0x8b, 0x6a, 0xc3, 0x4a, 0x46, 0x1a, 0x8c, 0xe8, 0x3e, 0x5f,
948313498266Sopenharmony_ci  0xd4, 0xc8, 0x96, 0xfa, 0x94, 0xba, 0x14, 0x19, 0xd1, 0x44, 0x70, 0xc8,
948413498266Sopenharmony_ci  0x0c, 0xce, 0x84, 0xad, 0xdd, 0x5d, 0xc0, 0xba, 0xf6, 0x0d, 0x1c, 0x4c,
948513498266Sopenharmony_ci  0xa0, 0x94, 0x55, 0x99, 0x22, 0x88, 0x8e, 0x5a, 0xd3, 0xa4, 0x7d, 0xe3,
948613498266Sopenharmony_ci  0x6f, 0x69, 0x58, 0x60, 0xdd, 0x02, 0x8b, 0x38, 0x4c, 0xdf, 0x35, 0x4a,
948713498266Sopenharmony_ci  0x86, 0xab, 0x46, 0x43, 0x74, 0x08, 0xcd, 0xe0, 0x12, 0xe9, 0xae, 0xdd,
948813498266Sopenharmony_ci  0xfc, 0xb5, 0x24, 0xe6, 0x2e, 0xf9, 0xdd, 0x93, 0x98, 0xd3, 0xfa, 0xad,
948913498266Sopenharmony_ci  0x48, 0xcc, 0x1d, 0x9d, 0x2c, 0x52, 0xe3, 0x1b, 0xa4, 0xbb, 0x6a, 0x35,
949013498266Sopenharmony_ci  0xc2, 0x93, 0x37, 0x3b, 0x68, 0x2f, 0x7c, 0xf7, 0x12, 0xb2, 0x26, 0x92,
949113498266Sopenharmony_ci  0x58, 0xb4, 0xfe, 0x94, 0xaa, 0x7e, 0x47, 0x4f, 0x85, 0x0d, 0x3e, 0x3d,
949213498266Sopenharmony_ci  0xc7, 0xe0, 0xf2, 0x29, 0x50, 0x22, 0xec, 0x4b, 0x45, 0x37, 0x1b, 0x27,
949313498266Sopenharmony_ci  0x63, 0x9f, 0xbc, 0xda, 0x3c, 0x7d, 0x75, 0xe2, 0x25, 0xd9, 0x5d, 0xa1,
949413498266Sopenharmony_ci  0x1b, 0x99, 0xdc, 0xc5, 0x4d, 0xa7, 0x24, 0xd3, 0x41, 0x99, 0x56, 0x06,
949513498266Sopenharmony_ci  0x3e, 0xca, 0xb0, 0x36, 0xee, 0x21, 0x64, 0x7a, 0x9d, 0x2d, 0x72, 0x07,
949613498266Sopenharmony_ci  0xe3, 0x00, 0x4d, 0x3c, 0x79, 0x9a, 0x13, 0x48, 0x2f, 0xc6, 0xfd, 0x11,
949713498266Sopenharmony_ci  0xd3, 0x62, 0xac, 0x97, 0xe8, 0xcd, 0xc1, 0x29, 0x66, 0xa1, 0xd7, 0x12,
949813498266Sopenharmony_ci  0xa6, 0x2a, 0xc6, 0xfc, 0x40, 0x28, 0x99, 0x29, 0xe0, 0x9a, 0x8c, 0xb4,
949913498266Sopenharmony_ci  0xc8, 0xba, 0xb5, 0x58, 0xd3, 0x36, 0xa0, 0x44, 0xc7, 0xc7, 0xeb, 0x9a,
950013498266Sopenharmony_ci  0xdc, 0x70, 0x67, 0x97, 0xee, 0x3e, 0x37, 0x3c, 0xb4, 0x91, 0x2b, 0xd3,
950113498266Sopenharmony_ci  0x55, 0x90, 0x7a, 0x3a, 0x89, 0x07, 0x5e, 0x72, 0xae, 0xe8, 0x30, 0x69,
950213498266Sopenharmony_ci  0x3b, 0xdf, 0xf1, 0xf6, 0x05, 0xe9, 0xe9, 0xad, 0x48, 0x57, 0x42, 0x24,
950313498266Sopenharmony_ci  0x86, 0xbb, 0xe0, 0xe2, 0x4f, 0x8b, 0xb3, 0x0c, 0xdd, 0x6f, 0x44, 0x66,
950413498266Sopenharmony_ci  0x6e, 0x3c, 0x14, 0x08, 0xff, 0x5e, 0x36, 0x22, 0xed, 0xad, 0xd6, 0x2f,
950513498266Sopenharmony_ci  0x58, 0xb8, 0xa0, 0x17, 0x7d, 0x29, 0xa0, 0x99, 0xc7, 0x86, 0x22, 0xd8,
950613498266Sopenharmony_ci  0xd2, 0x68, 0xb1, 0xbb, 0x26, 0x1e, 0x68, 0x0f, 0x6c, 0x43, 0x36, 0xca,
950713498266Sopenharmony_ci  0xe0, 0x85, 0xab, 0x01, 0x81, 0xb2, 0x54, 0x8d, 0xa4, 0x25, 0x45, 0x44,
950813498266Sopenharmony_ci  0x14, 0x1e, 0x28, 0x5e, 0x1b, 0x02, 0xfe, 0x90, 0x00, 0xca, 0xf6, 0xda,
950913498266Sopenharmony_ci  0xf1, 0xf4, 0x6e, 0x48, 0x26, 0x42, 0xee, 0xf7, 0xc3, 0x83, 0xb8, 0xf1,
951013498266Sopenharmony_ci  0x5b, 0x93, 0x8a, 0x8c, 0x6d, 0x15, 0x4f, 0x32, 0xbc, 0xe7, 0x90, 0xc5,
951113498266Sopenharmony_ci  0x77, 0x28, 0xe8, 0x9d, 0xf9, 0xa2, 0x3d, 0x63, 0x07, 0x98, 0x4a, 0x00,
951213498266Sopenharmony_ci  0xcd, 0xaa, 0xc0, 0x92, 0xaa, 0x08, 0x52, 0x1d, 0xed, 0x9c, 0x45, 0x18,
951313498266Sopenharmony_ci  0xa3, 0x09, 0x62, 0x40, 0x8c, 0x17, 0xf2, 0xc2, 0x31, 0x38, 0xf2, 0x4b,
951413498266Sopenharmony_ci  0x2c, 0x71, 0x70, 0x5c, 0xaa, 0x18, 0x3f, 0x80, 0x69, 0x71, 0x58, 0x53,
951513498266Sopenharmony_ci  0xb3, 0xac, 0x94, 0xa6, 0x80, 0xb5, 0x9a, 0xfb, 0x0e, 0x74, 0x0b, 0x85,
951613498266Sopenharmony_ci  0x71, 0x6e, 0xd5, 0x9e, 0xa2, 0x14, 0x5e, 0xfd, 0x8e, 0x83, 0xde, 0x30,
951713498266Sopenharmony_ci  0xe4, 0xe9, 0x32, 0x03, 0x46, 0x79, 0xd9, 0x61, 0x76, 0xe2, 0xda, 0xb3,
951813498266Sopenharmony_ci  0xa7, 0x6a, 0xf2, 0x46, 0xe6, 0x44, 0x5a, 0x79, 0x6a, 0x32, 0x99, 0xb0,
951913498266Sopenharmony_ci  0x6e, 0x89, 0x86, 0x7e, 0xfe, 0x3f, 0x6b, 0xcb, 0xb1, 0x2a, 0x75, 0xe8,
952013498266Sopenharmony_ci  0x8c, 0x1d, 0xc7, 0x4c, 0x90, 0x37, 0xde, 0x04, 0x06, 0xf5, 0xed, 0x50,
952113498266Sopenharmony_ci  0xb5, 0xc7, 0xb0, 0x3c, 0xb6, 0x64, 0x1c, 0x2f, 0x0e, 0x0f, 0x9e, 0x75,
952213498266Sopenharmony_ci  0xa2, 0x14, 0x37, 0x08, 0xf9, 0xec, 0x1a, 0x75, 0x64, 0x75, 0x7c, 0x98,
952313498266Sopenharmony_ci  0xb3, 0x6e, 0x2d, 0xa4, 0xd3, 0xff, 0x82, 0xa3, 0x08, 0x85, 0x6e, 0x75,
952413498266Sopenharmony_ci  0x3f, 0x1d, 0x8f, 0xa3, 0x5e, 0x5d, 0x14, 0x53, 0x8d, 0x07, 0x83, 0x3f,
952513498266Sopenharmony_ci  0x93, 0xb3, 0xf4, 0xab, 0x62, 0x3a, 0xee, 0xad, 0xda, 0xd2, 0xcb, 0x76,
952613498266Sopenharmony_ci  0x63, 0xb7, 0x0b, 0x22, 0x63, 0x2e, 0xfb, 0x13, 0xfe, 0xe9, 0xad, 0x7c,
952713498266Sopenharmony_ci  0x7c, 0x46, 0x27, 0x69, 0x5a, 0x0c, 0x8b, 0xc9, 0x64, 0x89, 0xa4, 0xcf,
952813498266Sopenharmony_ci  0xc5, 0xab, 0x09, 0x27, 0x80, 0x29, 0xb6, 0x87, 0x9b, 0x8a, 0xef, 0x0d,
952913498266Sopenharmony_ci  0xa9, 0x22, 0x2d, 0x42, 0x6a, 0x97, 0x3d, 0xc9, 0x32, 0x90, 0xb2, 0x37,
953013498266Sopenharmony_ci  0xde, 0x75, 0xe8, 0x84, 0x43, 0x5c, 0x89, 0x35, 0x49, 0xed, 0x36, 0x16,
953113498266Sopenharmony_ci  0xd2, 0xd1, 0x04, 0xc0, 0xa3, 0x39, 0x83, 0x80, 0xa5, 0x80, 0x2b, 0xfe,
953213498266Sopenharmony_ci  0xeb, 0xdf, 0x3f, 0xff, 0xda, 0x6a, 0x4e, 0x9d, 0x7a, 0x88, 0xc4, 0x40,
953313498266Sopenharmony_ci  0x71, 0xca, 0x14, 0x60, 0x51, 0x57, 0xe9, 0x74, 0xc2, 0xc6, 0x53, 0xd2,
953413498266Sopenharmony_ci  0x1e, 0xb1, 0x2a, 0x86, 0x8b, 0x6d, 0xcf, 0x6e, 0x57, 0x68, 0x37, 0x90,
953513498266Sopenharmony_ci  0x6f, 0x6b, 0xcb, 0xe0, 0x08, 0x3a, 0xd5, 0x34, 0x3d, 0x83, 0x9f, 0x5a,
953613498266Sopenharmony_ci  0xcd, 0x97, 0x92, 0x1b, 0xc4, 0xc9, 0x7c, 0xe5, 0x9a, 0x83, 0x3b, 0xc2,
953713498266Sopenharmony_ci  0x67, 0x31, 0x6c, 0xdd, 0x4d, 0xa9, 0xe7, 0x93, 0xf0, 0xd2, 0xf8, 0x31,
953813498266Sopenharmony_ci  0x97, 0xca, 0x92, 0xb2, 0x23, 0x77, 0x5c, 0x5f, 0x59, 0x5a, 0x5d, 0x91,
953913498266Sopenharmony_ci  0x6f, 0x63, 0x15, 0x94, 0x40, 0xce, 0xe1, 0xbf, 0x7e, 0xfe, 0xf5, 0xdf,
954013498266Sopenharmony_ci  0xf0, 0xbf, 0xde, 0x8d, 0x2a, 0x2d, 0x33, 0x0d, 0xba, 0x35, 0xbb, 0xdd,
954113498266Sopenharmony_ci  0x4b, 0xfe, 0x1c, 0x38, 0xc6, 0x55, 0x9c, 0x5e, 0xa5, 0x43, 0xe0, 0xce,
954213498266Sopenharmony_ci  0x95, 0x42, 0xcb, 0xc6, 0xb3, 0x2a, 0xda, 0x9f, 0x65, 0xd3, 0x69, 0xd6,
954313498266Sopenharmony_ci  0x01, 0xcc, 0xfc, 0x02, 0x5f, 0x83, 0xd1, 0xcb, 0x7b, 0x06, 0x0c, 0xef,
954413498266Sopenharmony_ci  0xac, 0x28, 0x61, 0xca, 0x33, 0x01, 0xdf, 0x72, 0x60, 0x5e, 0xad, 0x69,
954513498266Sopenharmony_ci  0x9f, 0x12, 0xbc, 0x43, 0x15, 0x4e, 0x09, 0xd6, 0xc0, 0xa9, 0xfd, 0x28,
954613498266Sopenharmony_ci  0xca, 0x71, 0x34, 0x5e, 0x24, 0x53, 0xb4, 0xd9, 0x8c, 0x3e, 0xb0, 0x8d,
954713498266Sopenharmony_ci  0x1b, 0x6d, 0x97, 0x67, 0x19, 0x57, 0x7a, 0xa1, 0xe7, 0x83, 0xa9, 0x1f,
954813498266Sopenharmony_ci  0x8a, 0xe5, 0xa3, 0x25, 0x06, 0xcd, 0x95, 0x23, 0x06, 0x46, 0x44, 0xb2,
954913498266Sopenharmony_ci  0x71, 0x26, 0x38, 0xd0, 0x22, 0xf7, 0xd8, 0x62, 0x87, 0x0f, 0x04, 0x4e,
955013498266Sopenharmony_ci  0x8d, 0xd8, 0x0c, 0x65, 0x36, 0xcc, 0x67, 0x4d, 0x0e, 0x1a, 0x12, 0x39,
955113498266Sopenharmony_ci  0xac, 0x5f, 0x9f, 0x7d, 0x30, 0x49, 0xb4, 0xa4, 0x4a, 0x87, 0xc1, 0x64,
955213498266Sopenharmony_ci  0xa3, 0x28, 0xd1, 0x64, 0x6c, 0x6a, 0x88, 0xb8, 0x35, 0x57, 0x09, 0xb9,
955313498266Sopenharmony_ci  0x24, 0x41, 0x20, 0x95, 0x74, 0xca, 0xd7, 0x4d, 0x08, 0xc4, 0xd5, 0x1a,
955413498266Sopenharmony_ci  0x0c, 0xe4, 0x2a, 0x04, 0x2e, 0x03, 0xbb, 0xcc, 0xa0, 0x4e, 0x12, 0xbf,
955513498266Sopenharmony_ci  0x50, 0xe4, 0xa9, 0xb1, 0xcd, 0x07, 0xcd, 0x90, 0xa7, 0x5c, 0x69, 0xe4,
955613498266Sopenharmony_ci  0x8c, 0x0c, 0xe4, 0x62, 0x4f, 0x21, 0x8c, 0x67, 0xc2, 0xa1, 0x63, 0x04,
955713498266Sopenharmony_ci  0x6a, 0x7c, 0x99, 0xc2, 0xaa, 0xf1, 0xf2, 0x6b, 0x11, 0x40, 0xdb, 0xa1,
955813498266Sopenharmony_ci  0xfa, 0x1c, 0x14, 0x8c, 0x47, 0x0f, 0x1f, 0x3e, 0x8c, 0x38, 0xb8, 0x24,
955913498266Sopenharmony_ci  0xea, 0xbd, 0xe4, 0xf8, 0xcd, 0xb7, 0x87, 0x4f, 0x8f, 0x5e, 0xbf, 0x3e,
956013498266Sopenharmony_ci  0x7c, 0xf3, 0xec, 0xf0, 0x99, 0xe1, 0x39, 0x3a, 0x7a, 0x43, 0x2e, 0xde,
956113498266Sopenharmony_ci  0x7d, 0x8b, 0xb9, 0x40, 0xe3, 0x68, 0xfb, 0xe1, 0x56, 0xbc, 0xf3, 0x70,
956213498266Sopenharmony_ci  0x2b, 0x9a, 0xe1, 0x75, 0xab, 0xb8, 0x11, 0xc9, 0x14, 0x31, 0x12, 0xa3,
956313498266Sopenharmony_ci  0xf3, 0x05, 0xe8, 0x30, 0x58, 0xc5, 0xb9, 0x46, 0x54, 0x4c, 0x03, 0xe1,
956413498266Sopenharmony_ci  0x9f, 0xa7, 0x35, 0xda, 0x91, 0x3d, 0x59, 0x33, 0x19, 0x0f, 0x7a, 0x91,
956513498266Sopenharmony_ci  0x29, 0x32, 0x68, 0xc3, 0xd1, 0x44, 0x3d, 0x20, 0x8a, 0xdd, 0xd9, 0xc2,
956613498266Sopenharmony_ci  0xae, 0x40, 0x7c, 0x04, 0xf9, 0x76, 0x52, 0x7c, 0x8c, 0x58, 0x47, 0x02,
956713498266Sopenharmony_ci  0xa5, 0x34, 0xf5, 0xe3, 0xd0, 0x9a, 0xaf, 0xe3, 0xdb, 0xbb, 0xfc, 0x76,
956813498266Sopenharmony_ci  0xd0, 0xa4, 0xdc, 0x7d, 0xe6, 0x5c, 0x1b, 0xb3, 0x31, 0x32, 0xab, 0x95,
956913498266Sopenharmony_ci  0xb9, 0x0b, 0xad, 0xf8, 0x93, 0xa3, 0x0e, 0xbb, 0xc7, 0xf3, 0x70, 0x6b,
957013498266Sopenharmony_ci  0x6b, 0xb5, 0x9b, 0x6f, 0x86, 0x6c, 0x66, 0x96, 0x7c, 0xe4, 0xca, 0x27,
957113498266Sopenharmony_ci  0x52, 0x9f, 0xa3, 0x05, 0x5b, 0xdd, 0x00, 0x45, 0xfd, 0xb2, 0x09, 0x6d,
957213498266Sopenharmony_ci  0x04, 0x43, 0x29, 0x8b, 0x8f, 0x57, 0x31, 0xfb, 0x25, 0xb3, 0x79, 0xb4,
957313498266Sopenharmony_ci  0x6f, 0x4d, 0x69, 0x1d, 0xe0, 0xf0, 0x6c, 0x39, 0xc1, 0x58, 0x72, 0x8e,
957413498266Sopenharmony_ci  0x30, 0x85, 0x17, 0xa0, 0xe9, 0x17, 0x07, 0xc7, 0xd8, 0x50, 0x74, 0xfc,
957513498266Sopenharmony_ci  0xf6, 0xe8, 0xa7, 0x7f, 0x58, 0x1c, 0x99, 0x8b, 0x6d, 0xcd, 0xc3, 0x4a,
957613498266Sopenharmony_ci  0x02, 0x5e, 0x7b, 0xa0, 0x3c, 0x50, 0x59, 0x72, 0x01, 0x35, 0x11, 0xd5,
957713498266Sopenharmony_ci  0xb5, 0xcb, 0x1a, 0x87, 0x21, 0x59, 0xb0, 0xec, 0xd9, 0xd8, 0xa9, 0x8f,
957813498266Sopenharmony_ci  0xeb, 0x9e, 0xde, 0xb4, 0x32, 0x99, 0xa8, 0x59, 0x3e, 0xce, 0xb8, 0x96,
957913498266Sopenharmony_ci  0x11, 0xe5, 0xb0, 0xc3, 0x7d, 0x9d, 0x79, 0x76, 0x16, 0xe8, 0x90, 0x1c,
958013498266Sopenharmony_ci  0x7c, 0x40, 0x46, 0x0f, 0xe8, 0x16, 0x3d, 0xa3, 0x62, 0xa1, 0xb9, 0x16,
958113498266Sopenharmony_ci  0x01, 0x82, 0xa3, 0xf9, 0xf3, 0xd6, 0x60, 0xb0, 0xf3, 0xf0, 0xe1, 0xaf,
958213498266Sopenharmony_ci  0xe8, 0xf8, 0x90, 0x68, 0xf2, 0xcb, 0x12, 0x93, 0xae, 0x72, 0xdf, 0xf2,
958313498266Sopenharmony_ci  0xa9, 0xe8, 0xed, 0x25, 0xd6, 0x51, 0xc2, 0x50, 0x6c, 0x2d, 0x3b, 0xe7,
958413498266Sopenharmony_ci  0xd4, 0xa0, 0xd2, 0xfe, 0x90, 0x3b, 0x8c, 0x89, 0xb1, 0x71, 0xf2, 0x5f,
958513498266Sopenharmony_ci  0x20, 0x73, 0x90, 0x64, 0x62, 0x38, 0xf5, 0x92, 0xa9, 0xfa, 0x7b, 0x5a,
958613498266Sopenharmony_ci  0x16, 0xa9, 0xbd, 0xb4, 0xe7, 0x98, 0xef, 0x54, 0x0b, 0x80, 0xdb, 0xa4,
958713498266Sopenharmony_ci  0x2c, 0x18, 0x2b, 0xda, 0xd4, 0x59, 0xf5, 0x47, 0x07, 0x57, 0x33, 0xea,
958813498266Sopenharmony_ci  0x5d, 0xa8, 0xbf, 0x27, 0x17, 0x45, 0x36, 0x76, 0xa0, 0x96, 0x38, 0x11,
958913498266Sopenharmony_ci  0x6f, 0xb2, 0xa8, 0x8c, 0x18, 0x5c, 0x8c, 0x6a, 0x98, 0x88, 0x34, 0x36,
959013498266Sopenharmony_ci  0x58, 0xc2, 0xa0, 0xbb, 0x56, 0x9c, 0xd7, 0x9b, 0x86, 0xf4, 0x00, 0x2f,
959113498266Sopenharmony_ci  0x87, 0x8f, 0x89, 0xae, 0x4e, 0x34, 0xce, 0xce, 0x40, 0x70, 0x69, 0x13,
959213498266Sopenharmony_ci  0x16, 0xe8, 0x80, 0x94, 0xa1, 0x56, 0x46, 0xe2, 0xc0, 0xe2, 0x10, 0x29,
959313498266Sopenharmony_ci  0x02, 0xc4, 0x9c, 0x65, 0xb2, 0x7a, 0x9c, 0xd8, 0xdb, 0x58, 0x34, 0x5e,
959413498266Sopenharmony_ci  0xa6, 0x7e, 0x40, 0x5c, 0x62, 0xb7, 0x22, 0x01, 0xfb, 0x13, 0xbf, 0xc2,
959513498266Sopenharmony_ci  0x02, 0x64, 0xb4, 0xea, 0x0b, 0x9e, 0xf0, 0x94, 0xf6, 0x06, 0x91, 0xc0,
959613498266Sopenharmony_ci  0x47, 0x12, 0xfc, 0x28, 0x85, 0x06, 0x43, 0x67, 0xbe, 0x44, 0xee, 0xac,
959713498266Sopenharmony_ci  0xad, 0x11, 0x14, 0x89, 0x72, 0x6e, 0x4c, 0x08, 0x03, 0x1d, 0x9a, 0xac,
959813498266Sopenharmony_ci  0x4b, 0xbc, 0x47, 0x7c, 0x6f, 0xd4, 0x85, 0x5d, 0x42, 0x9f, 0xee, 0x60,
959913498266Sopenharmony_ci  0x35, 0x48, 0x66, 0x1a, 0xa2, 0x09, 0x8e, 0x56, 0x50, 0x29, 0x03, 0x56,
960013498266Sopenharmony_ci  0x72, 0x7b, 0xc7, 0x47, 0x22, 0x3a, 0x52, 0x0d, 0x89, 0xb3, 0xb5, 0xa3,
960113498266Sopenharmony_ci  0x26, 0x38, 0x15, 0x0f, 0x4c, 0x73, 0xa0, 0x4c, 0x90, 0x01, 0x19, 0xc5,
960213498266Sopenharmony_ci  0x81, 0x21, 0xf8, 0xba, 0x63, 0x15, 0xca, 0x89, 0x7b, 0x59, 0xeb, 0x22,
960313498266Sopenharmony_ci  0x54, 0x0e, 0x5f, 0x30, 0x07, 0x39, 0x9b, 0x88, 0x9a, 0x99, 0xd5, 0x06,
960413498266Sopenharmony_ci  0xb4, 0x13, 0x4e, 0x2a, 0x26, 0xcc, 0xa0, 0xcb, 0xa6, 0x2e, 0x3a, 0xbc,
960513498266Sopenharmony_ci  0x94, 0x84, 0x2e, 0x83, 0x68, 0xa2, 0x55, 0x47, 0xc6, 0x81, 0xc7, 0x81,
960613498266Sopenharmony_ci  0x9a, 0xe5, 0x91, 0x96, 0x78, 0xfe, 0xee, 0xb2, 0x6c, 0x80, 0x37, 0x8a,
960713498266Sopenharmony_ci  0xff, 0xf5, 0xf2, 0xb8, 0x9b, 0xeb, 0x7e, 0x44, 0xae, 0x4b, 0x2f, 0x38,
960813498266Sopenharmony_ci  0xcc, 0xf5, 0xc9, 0x60, 0x27, 0xcc, 0x5b, 0x75, 0x0d, 0xc3, 0xec, 0xf4,
960913498266Sopenharmony_ci  0x84, 0xdd, 0x71, 0x37, 0xe0, 0x9f, 0xec, 0x5f, 0x36, 0x2c, 0xd3, 0xa7,
961013498266Sopenharmony_ci  0x2b, 0xe3, 0xdd, 0x37, 0x4e, 0x13, 0x8d, 0xa9, 0x24, 0x95, 0x17, 0x13,
961113498266Sopenharmony_ci  0x8f, 0x0b, 0xaa, 0xaf, 0x99, 0x8c, 0xf5, 0x22, 0x97, 0xa2, 0x4e, 0x3e,
961213498266Sopenharmony_ci  0xde, 0x39, 0xc5, 0xda, 0xe0, 0x38, 0x3e, 0x72, 0xd9, 0x4e, 0x73, 0xc2,
961313498266Sopenharmony_ci  0x9b, 0x61, 0x2c, 0x75, 0xb9, 0x48, 0x43, 0x41, 0x26, 0x83, 0xe5, 0xae,
961413498266Sopenharmony_ci  0x94, 0x79, 0x09, 0xec, 0xa0, 0xcc, 0xa6, 0x57, 0x2a, 0xf1, 0x90, 0x4f,
961513498266Sopenharmony_ci  0x48, 0x73, 0x68, 0x29, 0xf4, 0xd3, 0x94, 0x3a, 0x27, 0xa6, 0x15, 0x40,
961613498266Sopenharmony_ci  0x51, 0xc9, 0x46, 0x22, 0x63, 0x71, 0xc9, 0x07, 0x09, 0xcf, 0xe5, 0xd5,
961713498266Sopenharmony_ci  0x5a, 0xaa, 0x70, 0x78, 0xb4, 0x7d, 0xa7, 0x86, 0xa3, 0x76, 0xeb, 0xb7,
961813498266Sopenharmony_ci  0xa5, 0x44, 0x5b, 0x80, 0x72, 0x15, 0x79, 0x20, 0x48, 0x99, 0x8f, 0x07,
961913498266Sopenharmony_ci  0x8f, 0xb6, 0x1a, 0xa4, 0x69, 0xec, 0x1c, 0x41, 0x60, 0x38, 0xb4, 0x25,
962013498266Sopenharmony_ci  0x3e, 0x7f, 0xf9, 0xea, 0x70, 0x23, 0x7a, 0x9e, 0xd6, 0x02, 0xc8, 0xa3,
962113498266Sopenharmony_ci  0xd9, 0xf4, 0x18, 0x69, 0xf3, 0x1f, 0x64, 0xf1, 0x31, 0x75, 0xa6, 0x05,
962213498266Sopenharmony_ci  0x57, 0x2f, 0x98, 0x09, 0x29, 0x0e, 0x5e, 0x32, 0x85, 0x28, 0xba, 0x0f,
962313498266Sopenharmony_ci  0x93, 0x23, 0xed, 0x2b, 0xaa, 0xfe, 0x9a, 0x59, 0xa9, 0x31, 0xcd, 0x42,
962413498266Sopenharmony_ci  0xee, 0x08, 0x4a, 0xd2, 0x01, 0x83, 0x3c, 0x70, 0xea, 0x5f, 0x16, 0x6e,
962513498266Sopenharmony_ci  0x92, 0x04, 0x0e, 0x5a, 0xb3, 0xfb, 0x25, 0x3c, 0x3c, 0xab, 0x80, 0xa5,
962613498266Sopenharmony_ci  0x5d, 0x05, 0xa3, 0x21, 0x29, 0x88, 0xd7, 0xc0, 0x4d, 0x11, 0x53, 0x99,
962713498266Sopenharmony_ci  0x15, 0x63, 0x5b, 0x31, 0x96, 0x24, 0xaa, 0x66, 0xa0, 0x66, 0x88, 0x98,
962813498266Sopenharmony_ci  0xd0, 0xb4, 0x75, 0xb7, 0xc6, 0x1b, 0x6c, 0x72, 0x45, 0xaa, 0x79, 0xb9,
962913498266Sopenharmony_ci  0x1a, 0x95, 0xa8, 0x4d, 0x11, 0xfe, 0xb9, 0xc0, 0x5f, 0x61, 0x1f, 0x87,
963013498266Sopenharmony_ci  0x84, 0x5b, 0x47, 0xf2, 0x23, 0x8c, 0x7a, 0x94, 0xc6, 0x49, 0x35, 0xca,
963113498266Sopenharmony_ci  0x32, 0x87, 0x66, 0x5e, 0x28, 0xcd, 0x60, 0xda, 0x14, 0xff, 0xbb, 0xf9,
963213498266Sopenharmony_ci  0x4d, 0x67, 0x79, 0x29, 0x86, 0x92, 0x8a, 0x28, 0x83, 0x7a, 0x03, 0x47,
963313498266Sopenharmony_ci  0x8f, 0x4b, 0x21, 0x6f, 0x13, 0x33, 0x01, 0x81, 0x6a, 0x4c, 0xb0, 0x49,
963413498266Sopenharmony_ci  0x59, 0xce, 0x59, 0xd1, 0x2c, 0x2d, 0xe5, 0xde, 0x51, 0xb3, 0x7b, 0x2d,
963513498266Sopenharmony_ci  0x7a, 0x9f, 0x82, 0x4e, 0x09, 0x83, 0xd0, 0x1b, 0x89, 0x3d, 0xb1, 0xa2,
963613498266Sopenharmony_ci  0xd5, 0x29, 0xda, 0x57, 0xa8, 0x06, 0x3a, 0x32, 0x17, 0x03, 0x37, 0x10,
963713498266Sopenharmony_ci  0x90, 0x31, 0xa1, 0x7d, 0x1a, 0xbb, 0xa2, 0xff, 0xbd, 0x7e, 0xf9, 0xfa,
963813498266Sopenharmony_ci  0x50, 0x70, 0x71, 0x10, 0xb5, 0x17, 0xd3, 0x52, 0xb9, 0x94, 0x25, 0xef,
963913498266Sopenharmony_ci  0x98, 0xc5, 0x5c, 0x0c, 0xe7, 0x25, 0x56, 0x3a, 0x40, 0x90, 0x0b, 0x9b,
964013498266Sopenharmony_ci  0xb6, 0x42, 0xae, 0x16, 0x47, 0x6a, 0x35, 0xf5, 0xe1, 0xe0, 0x7c, 0x33,
964113498266Sopenharmony_ci  0xd5, 0xf8, 0xcd, 0x5d, 0x60, 0x05, 0x62, 0x5e, 0x3c, 0x4a, 0x3a, 0xaf,
964213498266Sopenharmony_ci  0xf5, 0x5a, 0xa0, 0x61, 0x49, 0x9d, 0x89, 0x29, 0x5c, 0x99, 0x53, 0x4a,
964313498266Sopenharmony_ci  0x20, 0x37, 0xfe, 0xcb, 0x84, 0x88, 0xb0, 0x9d, 0x59, 0x9c, 0x5c, 0x36,
964413498266Sopenharmony_ci  0xe7, 0x55, 0x35, 0x8a, 0x0a, 0x3f, 0x7c, 0x14, 0xf2, 0x67, 0x13, 0xdc,
964513498266Sopenharmony_ci  0x12, 0x46, 0xf3, 0xd8, 0x28, 0x3e, 0x94, 0x48, 0xac, 0x92, 0x9f, 0x3a,
964613498266Sopenharmony_ci  0x5b, 0xdd, 0xa8, 0xb5, 0x08, 0x12, 0x44, 0x20, 0x98, 0x89, 0x4d, 0x4b,
964713498266Sopenharmony_ci  0x08, 0x89, 0x92, 0x34, 0x41, 0x51, 0xf8, 0xa5, 0xf3, 0xc4, 0xf1, 0xf2,
964813498266Sopenharmony_ci  0xe7, 0x52, 0xc6, 0x5c, 0x72, 0x4b, 0x96, 0x45, 0x38, 0x17, 0xb9, 0x46,
964913498266Sopenharmony_ci  0x71, 0x5e, 0x6a, 0x8e, 0x4b, 0x5f, 0x00, 0xb1, 0x3e, 0xf2, 0x23, 0x53,
965013498266Sopenharmony_ci  0xc2, 0x33, 0x72, 0x50, 0x22, 0x02, 0x91, 0x73, 0x2d, 0xd3, 0xb5, 0xdb,
965113498266Sopenharmony_ci  0x7a, 0xd3, 0x49, 0x86, 0x36, 0x3e, 0xd8, 0x55, 0x8a, 0xd8, 0xa3, 0xca,
965213498266Sopenharmony_ci  0x4a, 0x20, 0xa0, 0x8d, 0x3e, 0x78, 0x19, 0x2f, 0x28, 0xd9, 0x56, 0xf5,
965313498266Sopenharmony_ci  0x62, 0x42, 0x63, 0x4f, 0xb4, 0xc8, 0x0f, 0x8f, 0x50, 0xb3, 0x09, 0x60,
965413498266Sopenharmony_ci  0xd3, 0xb8, 0xbc, 0x89, 0x2c, 0x8d, 0xfa, 0x83, 0xfd, 0xe8, 0x4a, 0x1d,
965513498266Sopenharmony_ci  0x4e, 0x63, 0x26, 0x95, 0xb1, 0x16, 0x22, 0x84, 0x1c, 0x19, 0x2c, 0xd3,
965613498266Sopenharmony_ci  0x12, 0x37, 0x1f, 0x11, 0xcf, 0x29, 0x0e, 0x88, 0xf3, 0x0c, 0xfc, 0xad,
965713498266Sopenharmony_ci  0x20, 0xac, 0xf5, 0x71, 0x41, 0x1e, 0xc5, 0xe8, 0x6d, 0x3a, 0x2b, 0x28,
965813498266Sopenharmony_ci  0xbf, 0x23, 0x77, 0x16, 0x55, 0xd6, 0x0a, 0xe4, 0x08, 0x31, 0x07, 0x25,
965913498266Sopenharmony_ci  0x3a, 0x32, 0xa4, 0xda, 0x0e, 0xa3, 0xa5, 0x62, 0x3b, 0x48, 0xea, 0x84,
966013498266Sopenharmony_ci  0x84, 0xcb, 0x61, 0x21, 0xe2, 0x86, 0xcc, 0x32, 0xa5, 0xca, 0x3a, 0x09,
966113498266Sopenharmony_ci  0x29, 0x2f, 0x7b, 0xc8, 0x6e, 0xda, 0x49, 0x8a, 0x2f, 0x8a, 0xaa, 0xde,
966213498266Sopenharmony_ci  0xeb, 0x0d, 0x58, 0x6c, 0xa4, 0x48, 0x70, 0x0a, 0x64, 0x22, 0x69, 0xa4,
966313498266Sopenharmony_ci  0x41, 0x37, 0x52, 0x09, 0x20, 0x66, 0x79, 0x90, 0x63, 0xc3, 0x3d, 0x95,
966413498266Sopenharmony_ci  0x43, 0x9e, 0x55, 0xf5, 0xc5, 0x07, 0x90, 0x30, 0x50, 0x42, 0xfd, 0x48,
966513498266Sopenharmony_ci  0xc1, 0x02, 0x7f, 0x89, 0x5f, 0xc0, 0x38, 0x7e, 0x8a, 0x9f, 0x2e, 0xbc,
966613498266Sopenharmony_ci  0x90, 0x20, 0xe8, 0x3e, 0x7e, 0x41, 0x4d, 0xfe, 0xb5, 0x67, 0x62, 0xac,
966713498266Sopenharmony_ci  0xf8, 0x51, 0xfb, 0x15, 0x8c, 0x3e, 0x98, 0x7f, 0xae, 0x68, 0x95, 0x54,
966813498266Sopenharmony_ci  0x2f, 0x52, 0x44, 0x9a, 0xc4, 0xd6, 0xa1, 0xa4, 0x7a, 0x6b, 0xe3, 0xf1,
966913498266Sopenharmony_ci  0xa6, 0xaa, 0x28, 0x9a, 0xea, 0xdb, 0x81, 0xa2, 0x09, 0x97, 0x3f, 0x2a,
967013498266Sopenharmony_ci  0x53, 0x30, 0x80, 0xb8, 0x98, 0xc4, 0x04, 0x47, 0x01, 0xa2, 0xd6, 0x07,
967113498266Sopenharmony_ci  0xcc, 0xf3, 0xbb, 0xb2, 0x54, 0x45, 0xe5, 0x9d, 0x89, 0x33, 0x8c, 0xc7,
967213498266Sopenharmony_ci  0x62, 0x3c, 0xac, 0xbc, 0x0b, 0x97, 0x8c, 0x3e, 0x42, 0xfb, 0x0a, 0x65,
967313498266Sopenharmony_ci  0xc3, 0xbb, 0xb9, 0x27, 0xb1, 0x81, 0xf4, 0x7a, 0x9e, 0x5e, 0x72, 0xd2,
967413498266Sopenharmony_ci  0x3f, 0x96, 0x69, 0x12, 0xc8, 0x99, 0x28, 0xc0, 0x7a, 0x09, 0x83, 0xa6,
967513498266Sopenharmony_ci  0xcf, 0x36, 0x65, 0x42, 0x22, 0x9f, 0x71, 0x5c, 0x11, 0x85, 0x7a, 0x2d,
967613498266Sopenharmony_ci  0xe6, 0x5a, 0x3a, 0x5e, 0xb2, 0x92, 0xd0, 0x53, 0x6c, 0x33, 0x6e, 0xe0,
967713498266Sopenharmony_ci  0x86, 0xf2, 0x80, 0xbc, 0xe0, 0xce, 0x98, 0x59, 0x94, 0x64, 0x22, 0x09,
967813498266Sopenharmony_ci  0x4e, 0x4a, 0xc2, 0x08, 0x20, 0x63, 0x33, 0xa7, 0x44, 0x2d, 0xb8, 0xa7,
967913498266Sopenharmony_ci  0xd0, 0x71, 0x8e, 0x59, 0x8d, 0x5c, 0xcb, 0x2c, 0x99, 0x78, 0xc5, 0x94,
968013498266Sopenharmony_ci  0x16, 0x98, 0x70, 0x23, 0xb1, 0x97, 0x72, 0x3f, 0x61, 0x10, 0x39, 0x56,
968113498266Sopenharmony_ci  0x06, 0x27, 0x70, 0x1c, 0xba, 0x1d, 0x1d, 0xd7, 0x7a, 0x17, 0xa4, 0xc1,
968213498266Sopenharmony_ci  0x69, 0x2b, 0x7f, 0x82, 0xca, 0xd8, 0xa3, 0xb1, 0x56, 0x93, 0xe4, 0x80,
968313498266Sopenharmony_ci  0xbb, 0x7e, 0x63, 0xc0, 0xb3, 0xaa, 0xfa, 0x0a, 0xe5, 0x15, 0x29, 0xd7,
968413498266Sopenharmony_ci  0x10, 0x48, 0x41, 0x82, 0x15, 0xe6, 0x0c, 0x37, 0xad, 0x4c, 0x6d, 0x92,
968513498266Sopenharmony_ci  0xda, 0x68, 0x6f, 0xc5, 0x60, 0x91, 0xe5, 0x58, 0xf5, 0x82, 0x4b, 0x34,
968613498266Sopenharmony_ci  0x72, 0x4a, 0xe6, 0x37, 0x31, 0xd3, 0x55, 0x88, 0xe2, 0x08, 0x0f, 0xc9,
968713498266Sopenharmony_ci  0xd9, 0x55, 0xce, 0x51, 0x34, 0xc8, 0xa2, 0x4d, 0x8b, 0xd1, 0x43, 0x57,
968813498266Sopenharmony_ci  0x74, 0x54, 0x09, 0x68, 0x8a, 0x71, 0xa0, 0x4e, 0x74, 0xe8, 0x8c, 0xc0,
968913498266Sopenharmony_ci  0x54, 0x41, 0x73, 0x8a, 0x61, 0xad, 0x66, 0x11, 0x68, 0xc4, 0xd3, 0xac,
969013498266Sopenharmony_ci  0x46, 0xcd, 0x61, 0x74, 0x9e, 0x4a, 0xec, 0x32, 0xdb, 0x45, 0x78, 0x1d,
969113498266Sopenharmony_ci  0x83, 0xaa, 0x1b, 0x5a, 0x42, 0x45, 0xdb, 0xa3, 0xfb, 0x90, 0xee, 0x34,
969213498266Sopenharmony_ci  0xe1, 0x6a, 0x7b, 0xe2, 0xce, 0x60, 0x2e, 0xd5, 0x7b, 0x0e, 0x63, 0xdd,
969313498266Sopenharmony_ci  0xeb, 0x01, 0xc3, 0xe8, 0x9d, 0x16, 0xf0, 0x6f, 0x9b, 0x57, 0x3c, 0x83,
969413498266Sopenharmony_ci  0x93, 0xbc, 0xd7, 0x93, 0x44, 0xb5, 0xde, 0x09, 0x83, 0x76, 0xd2, 0x07,
969513498266Sopenharmony_ci  0xb3, 0x02, 0x69, 0x85, 0x88, 0xa0, 0x52, 0x08, 0x47, 0xc9, 0xc1, 0x63,
969613498266Sopenharmony_ci  0x01, 0x22, 0x78, 0xaa, 0xcc, 0x86, 0x06, 0xaf, 0x43, 0x2a, 0xe5, 0x24,
969713498266Sopenharmony_ci  0x52, 0x77, 0x6c, 0x65, 0x1c, 0xe2, 0x01, 0x2d, 0x9c, 0x2f, 0x64, 0xa5,
969813498266Sopenharmony_ci  0x24, 0x02, 0xb0, 0xa5, 0xdd, 0x0b, 0xd7, 0x57, 0x10, 0xe6, 0x96, 0xf8,
969913498266Sopenharmony_ci  0xbe, 0xfb, 0x38, 0xb4, 0x07, 0x09, 0x27, 0xce, 0x46, 0x64, 0xdd, 0x86,
970013498266Sopenharmony_ci  0x95, 0x68, 0x03, 0x8c, 0xec, 0x31, 0xf6, 0x67, 0x8a, 0xde, 0x38, 0x61,
970113498266Sopenharmony_ci  0x8d, 0xc8, 0x0c, 0x89, 0xc5, 0x77, 0x74, 0xad, 0x7e, 0x59, 0x61, 0x82,
970213498266Sopenharmony_ci  0xfa, 0x27, 0xc2, 0xbb, 0xf4, 0xdd, 0xd4, 0x08, 0xc3, 0x7a, 0xc9, 0xe9,
970313498266Sopenharmony_ci  0x16, 0x4a, 0x2a, 0x97, 0xae, 0xa3, 0x4e, 0x88, 0xf9, 0x1f, 0x0f, 0xde,
970413498266Sopenharmony_ci  0xbe, 0x79, 0xf9, 0xe6, 0xbb, 0x3d, 0xb3, 0x36, 0x78, 0x87, 0x89, 0xe9,
970513498266Sopenharmony_ci  0xc6, 0x1e, 0x20, 0xc2, 0xa3, 0x4a, 0xe9, 0xcc, 0x90, 0x3b, 0xdb, 0x94,
970613498266Sopenharmony_ci  0x5d, 0x0a, 0xca, 0x75, 0x15, 0xc6, 0xce, 0xd3, 0xfd, 0xcb, 0x81, 0x32,
970713498266Sopenharmony_ci  0x65, 0xca, 0x51, 0xa5, 0x6c, 0x39, 0x53, 0xcc, 0x21, 0x41, 0x2d, 0xa4,
970813498266Sopenharmony_ci  0xc5, 0xa8, 0xb1, 0x10, 0x79, 0x60, 0xcf, 0xe3, 0x57, 0x94, 0xab, 0x55,
970913498266Sopenharmony_ci  0x08, 0x0a, 0x91, 0x82, 0x51, 0xe7, 0x84, 0x1d, 0xa7, 0x02, 0x9c, 0xde,
971013498266Sopenharmony_ci  0x87, 0x29, 0x01, 0x68, 0xa5, 0x9c, 0x95, 0xc0, 0xc4, 0x15, 0x48, 0x15,
971113498266Sopenharmony_ci  0xa8, 0xf4, 0xd2, 0xe7, 0x3a, 0xbb, 0x70, 0x11, 0x66, 0x94, 0x8b, 0x85,
971213498266Sopenharmony_ci  0xdf, 0xf5, 0xb1, 0x68, 0x0b, 0xb4, 0x50, 0x65, 0x64, 0x4a, 0x32, 0x4b,
971313498266Sopenharmony_ci  0xa2, 0xc4, 0x19, 0xf0, 0x87, 0xf3, 0x5a, 0x8d, 0x92, 0x05, 0x33, 0x1a,
971413498266Sopenharmony_ci  0xae, 0x83, 0x26, 0x9f, 0x5a, 0x48, 0x23, 0xb3, 0x02, 0x03, 0xcf, 0xe1,
971513498266Sopenharmony_ci  0xdf, 0x04, 0x27, 0xfb, 0x04, 0xc0, 0x90, 0x2e, 0x8f, 0xf2, 0x0b, 0xbc,
971613498266Sopenharmony_ci  0x01, 0x9f, 0xa3, 0x07, 0x25, 0x7e, 0x03, 0xac, 0x6e, 0x2f, 0xfa, 0x5b,
971713498266Sopenharmony_ci  0x91, 0xae, 0xe0, 0x18, 0x86, 0xd7, 0xdf, 0x81, 0x8e, 0x19, 0x1f, 0x9c,
971813498266Sopenharmony_ci  0xd1, 0x85, 0x73, 0x95, 0x56, 0xf1, 0x9c, 0xd8, 0xce, 0xe6, 0xce, 0xd6,
971913498266Sopenharmony_ci  0xd6, 0xd6, 0x6a, 0x0d, 0xb1, 0xf0, 0xb0, 0xca, 0x2b, 0xdf, 0xa8, 0x04,
972013498266Sopenharmony_ci  0xbb, 0x72, 0x5d, 0xd6, 0x03, 0xcd, 0xfb, 0x8f, 0x13, 0x1c, 0x39, 0x2b,
972113498266Sopenharmony_ci  0x55, 0x29, 0xbb, 0xa4, 0x11, 0x1d, 0xd9, 0xc5, 0x03, 0x38, 0x67, 0xa5,
972213498266Sopenharmony_ci  0x6a, 0x3a, 0x8f, 0xf6, 0xd1, 0xb6, 0x72, 0x56, 0x94, 0x57, 0x5f, 0x7b,
972313498266Sopenharmony_ci  0x25, 0x08, 0xf1, 0x3a, 0xc5, 0x67, 0x84, 0x0a, 0x31, 0x3a, 0x9a, 0x63,
972413498266Sopenharmony_ci  0x3b, 0x24, 0x86, 0xd6, 0x6e, 0x90, 0x16, 0xbc, 0x53, 0x55, 0x29, 0x20,
972513498266Sopenharmony_ci  0x21, 0x73, 0x8e, 0xb3, 0x76, 0x16, 0xb4, 0xc9, 0xe5, 0x68, 0x70, 0x31,
972613498266Sopenharmony_ci  0x97, 0x55, 0xe5, 0xe0, 0x8d, 0x70, 0x5a, 0xad, 0xea, 0xd4, 0x74, 0x87,
972713498266Sopenharmony_ci  0x93, 0xf2, 0x81, 0xcc, 0x3f, 0x9b, 0xcd, 0x0b, 0xef, 0x8e, 0xae, 0x31,
972813498266Sopenharmony_ci  0x55, 0xa7, 0x31, 0x42, 0x6d, 0x38, 0xac, 0x7b, 0xe9, 0xb8, 0x70, 0x7a,
972913498266Sopenharmony_ci  0xed, 0xee, 0x68, 0x99, 0x34, 0xa7, 0x58, 0x26, 0x1a, 0x1a, 0xbf, 0x69,
973013498266Sopenharmony_ci  0x23, 0x73, 0xb2, 0xac, 0xda, 0x8d, 0x61, 0x1b, 0xb6, 0x72, 0x3b, 0x35,
973113498266Sopenharmony_ci  0x8d, 0xef, 0x79, 0x65, 0x04, 0xc2, 0x78, 0x04, 0xd7, 0x99, 0x70, 0xb0,
973213498266Sopenharmony_ci  0x39, 0xe8, 0xa1, 0x9b, 0x46, 0x5c, 0xad, 0xbb, 0x61, 0x32, 0x84, 0x95,
973313498266Sopenharmony_ci  0x9c, 0x2f, 0x86, 0xb3, 0xf1, 0xc3, 0x68, 0x1f, 0x7e, 0x78, 0xaa, 0x35,
973413498266Sopenharmony_ci  0xc1, 0x40, 0x9c, 0x3c, 0x05, 0x95, 0x1a, 0xb9, 0x3f, 0x8a, 0xa9, 0x62,
973513498266Sopenharmony_ci  0x09, 0xe6, 0x48, 0x02, 0xfc, 0x75, 0x77, 0x27, 0x64, 0x71, 0xa7, 0xfc,
973613498266Sopenharmony_ci  0x9e, 0xae, 0x02, 0x13, 0x8e, 0x7f, 0x1f, 0xb7, 0x73, 0x7b, 0xe7, 0x09,
973713498266Sopenharmony_ci  0x9a, 0xa6, 0xa3, 0xd7, 0xcf, 0x1e, 0xf2, 0xf5, 0x5d, 0x2d, 0x66, 0x2a,
973813498266Sopenharmony_ci  0x06, 0x32, 0x6c, 0x01, 0xf1, 0x2c, 0x0f, 0x78, 0x1b, 0x06, 0x3e, 0xcd,
973913498266Sopenharmony_ci  0x46, 0x08, 0xe9, 0xd8, 0x57, 0x31, 0x63, 0x62, 0xc2, 0xb4, 0x1d, 0xbf,
974013498266Sopenharmony_ci  0xa3, 0xb1, 0xcf, 0x53, 0x02, 0x95, 0x24, 0x47, 0x06, 0xac, 0x47, 0xd2,
974113498266Sopenharmony_ci  0x35, 0xfa, 0x6b, 0xeb, 0xd1, 0x79, 0x87, 0x6b, 0xcf, 0x2e, 0xd8, 0x3d,
974213498266Sopenharmony_ci  0xe6, 0x2c, 0x77, 0x6e, 0xb4, 0xed, 0x3d, 0x7d, 0x38, 0xda, 0x1e, 0x3d,
974313498266Sopenharmony_ci  0xf8, 0x72, 0x6b, 0x67, 0xeb, 0xd1, 0x83, 0xad, 0xe4, 0x61, 0x32, 0xdc,
974413498266Sopenharmony_ci  0x9a, 0xec, 0x6c, 0xed, 0x3e, 0x78, 0xf2, 0xf0, 0xc1, 0x68, 0x77, 0x67,
974513498266Sopenharmony_ci  0x3b, 0x79, 0x12, 0x55, 0x2b, 0xc5, 0x39, 0x4b, 0xcb, 0xd5, 0x79, 0xb2,
974613498266Sopenharmony_ci  0x03, 0x7a, 0xb8, 0x4f, 0x21, 0xfc, 0x45, 0xb4, 0xcf, 0xff, 0xde, 0x86,
974713498266Sopenharmony_ci  0x4e, 0x92, 0xe8, 0x5b, 0x82, 0xa7, 0x8a, 0x15, 0x41, 0xed, 0xe4, 0xc5,
974813498266Sopenharmony_ci  0x01, 0x36, 0x09, 0x1a, 0xf7, 0xb9, 0x6f, 0x5a, 0xf6, 0xf6, 0xde, 0xd9,
974913498266Sopenharmony_ci  0x6d, 0xa0, 0xad, 0xa7, 0x52, 0x97, 0x95, 0xf7, 0xbb, 0x6d, 0x87, 0xee,
975013498266Sopenharmony_ci  0xf2, 0xcf, 0xb4, 0xf6, 0x9f, 0xba, 0x4e, 0xbb, 0xb6, 0x5b, 0xca, 0x10,
975113498266Sopenharmony_ci  0x8a, 0xb1, 0x51, 0xb2, 0x4c, 0x2a, 0xe3, 0x53, 0x66, 0x57, 0xbc, 0x63,
975213498266Sopenharmony_ci  0x98, 0x81, 0x2f, 0xaa, 0xea, 0x7c, 0x67, 0x59, 0x98, 0x35, 0xba, 0xaa,
975313498266Sopenharmony_ci  0xc5, 0xe5, 0x45, 0x5a, 0xc1, 0xc9, 0xc9, 0x0b, 0x2d, 0x5e, 0x54, 0x2d,
975413498266Sopenharmony_ci  0x25, 0x37, 0x59, 0xfd, 0x3f, 0x1e, 0x1f, 0xa9, 0xd9, 0xff, 0x9b, 0x67,
975513498266Sopenharmony_ci  0x3f, 0x7c, 0x78, 0x7d, 0xfa, 0xf7, 0x8f, 0xaf, 0xbf, 0xfb, 0xfb, 0xf6,
975613498266Sopenharmony_ci  0xd1, 0xb3, 0xf1, 0xec, 0xf5, 0x6f, 0x7f, 0xdf, 0x7d, 0xfd, 0xdb, 0xe8,
975713498266Sopenharmony_ci  0xf7, 0x7f, 0xfc, 0x76, 0x70, 0x75, 0x74, 0xfa, 0x8f, 0x87, 0xaf, 0x67,
975813498266Sopenharmony_ci  0x6f, 0x3f, 0xbc, 0xfe, 0xed, 0x87, 0xd9, 0x9b, 0x67, 0x7f, 0xff, 0xea,
975913498266Sopenharmony_ci  0x76, 0xf4, 0x07, 0x94, 0xdd, 0xac, 0x8c, 0xb3, 0xd5, 0x72, 0x71, 0xe0,
976013498266Sopenharmony_ci  0x55, 0xb4, 0x6f, 0x2a, 0x3b, 0x04, 0x4d, 0x81, 0x27, 0xcd, 0x52, 0xf3,
976113498266Sopenharmony_ci  0x5a, 0xd0, 0xe2, 0xc5, 0xc9, 0xa9, 0x0d, 0x5f, 0xb5, 0x91, 0xaa, 0x2f,
976213498266Sopenharmony_ci  0xd5, 0x24, 0x10, 0x48, 0xcb, 0x27, 0x85, 0x29, 0x9a, 0x83, 0xfc, 0xca,
976313498266Sopenharmony_ci  0x6e, 0x01, 0x4c, 0x1e, 0xff, 0xc8, 0xb9, 0x42, 0xdc, 0x1c, 0x56, 0x9f,
976413498266Sopenharmony_ci  0x4f, 0xc5, 0x02, 0xdc, 0x08, 0xbf, 0x88, 0x0e, 0x50, 0x1e, 0x6c, 0x6b,
976513498266Sopenharmony_ci  0x56, 0x8c, 0xae, 0x90, 0xba, 0x25, 0x99, 0xa5, 0xa6, 0x01, 0xb5, 0x83,
976613498266Sopenharmony_ci  0xf7, 0x47, 0x72, 0x61, 0xed, 0x75, 0xb6, 0x80, 0x05, 0x9b, 0x6c, 0xdb,
976713498266Sopenharmony_ci  0x3b, 0x4a, 0xc8, 0xc4, 0x06, 0xa5, 0x8b, 0x6d, 0xc9, 0xe1, 0xf2, 0xf3,
976813498266Sopenharmony_ci  0x16, 0x4a, 0x87, 0xe4, 0x4f, 0xc9, 0x65, 0xc5, 0xc5, 0x82, 0x1d, 0x92,
976913498266Sopenharmony_ci  0xa0, 0x7c, 0x1b, 0x3b, 0x4b, 0x05, 0xe8, 0xf8, 0xc8, 0xe2, 0xb6, 0x84,
977013498266Sopenharmony_ci  0x16, 0x45, 0xfc, 0x20, 0x19, 0x27, 0xe5, 0x70, 0x7d, 0x52, 0xb3, 0x20,
977113498266Sopenharmony_ci  0x64, 0x80, 0x5c, 0xcc, 0xcf, 0xca, 0x64, 0x9c, 0xb6, 0xe2, 0x72, 0xc3,
977213498266Sopenharmony_ci  0x09, 0x97, 0xb4, 0x6b, 0x83, 0xe8, 0x10, 0x95, 0x4c, 0x67, 0x5d, 0xe1,
977313498266Sopenharmony_ci  0xd6, 0x86, 0x5b, 0x15, 0x27, 0x48, 0x48, 0x97, 0xe3, 0x0c, 0x28, 0x1f,
977413498266Sopenharmony_ci  0x51, 0x47, 0xa7, 0xd9, 0x84, 0x2d, 0xdf, 0x20, 0x75, 0x07, 0x62, 0xcd,
977513498266Sopenharmony_ci  0x1c, 0x58, 0x7f, 0x19, 0x04, 0x3b, 0x10, 0xa3, 0x29, 0xe8, 0x62, 0xf0,
977613498266Sopenharmony_ci  0xb5, 0x94, 0x34, 0x0b, 0xac, 0xd4, 0x89, 0xc9, 0x74, 0xec, 0xf5, 0x9c,
977713498266Sopenharmony_ci  0xd5, 0x5f, 0x47, 0x4f, 0xab, 0x20, 0x0c, 0x6e, 0x10, 0x1d, 0x90, 0x4b,
977813498266Sopenharmony_ci  0x5b, 0xca, 0xa3, 0x6c, 0x6a, 0xed, 0x34, 0x4f, 0xcb, 0xb4, 0xf9, 0xb4,
977913498266Sopenharmony_ci  0x54, 0xb2, 0x03, 0x0b, 0xa7, 0x4d, 0x65, 0x9d, 0x4c, 0xbd, 0x8a, 0xe0,
978013498266Sopenharmony_ci  0x6e, 0xb9, 0xe5, 0x9f, 0x8d, 0x37, 0xad, 0x75, 0xe0, 0xa9, 0x5d, 0xce,
978113498266Sopenharmony_ci  0x4c, 0xb3, 0xa0, 0xf8, 0xa5, 0x27, 0x5f, 0x0a, 0x1e, 0x8a, 0x54, 0x6e,
978213498266Sopenharmony_ci  0x51, 0x9f, 0x07, 0x71, 0x0a, 0xb4, 0x6a, 0x6a, 0xe3, 0x48, 0x02, 0x3c,
978313498266Sopenharmony_ci  0x8f, 0x80, 0xdc, 0x8e, 0x9b, 0x7c, 0x7f, 0x30, 0x7f, 0xd2, 0x3c, 0x6c,
978413498266Sopenharmony_ci  0xf8, 0xea, 0xa2, 0x2f, 0x3b, 0xad, 0x9a, 0xf5, 0x3c, 0x1f, 0xb4, 0x38,
978513498266Sopenharmony_ci  0x06, 0xb4, 0xb7, 0x35, 0xf8, 0xf2, 0x26, 0x95, 0xd0, 0x10, 0x26, 0x16,
978613498266Sopenharmony_ci  0x45, 0x46, 0xe2, 0xd0, 0xa4, 0xf7, 0x69, 0xf1, 0x7a, 0xac, 0x37, 0xa7,
978713498266Sopenharmony_ci  0x59, 0x66, 0xde, 0x8e, 0xe1, 0x93, 0x9b, 0xf8, 0x04, 0x61, 0x05, 0x9b,
978813498266Sopenharmony_ci  0x64, 0x34, 0x35, 0x08, 0xa9, 0x6e, 0xe5, 0xd4, 0x99, 0xa4, 0xdc, 0x47,
978913498266Sopenharmony_ci  0x36, 0x20, 0x8d, 0x92, 0x70, 0xb5, 0x4c, 0x0d, 0xa7, 0x73, 0x34, 0x54,
979013498266Sopenharmony_ci  0x81, 0x26, 0x77, 0x0a, 0x60, 0x28, 0x78, 0x73, 0x06, 0x9b, 0x4c, 0x15,
979113498266Sopenharmony_ci  0x67, 0x02, 0x7a, 0xaa, 0x8c, 0x86, 0xd3, 0x63, 0x59, 0x97, 0xe6, 0x92,
979213498266Sopenharmony_ci  0xd9, 0x74, 0x26, 0xe7, 0x89, 0x46, 0x36, 0x15, 0x97, 0xb9, 0x1c, 0xd8,
979313498266Sopenharmony_ci  0x98, 0x30, 0xdd, 0x59, 0x75, 0x5d, 0x3a, 0x59, 0x89, 0x36, 0xec, 0x4c,
979413498266Sopenharmony_ci  0x50, 0x7b, 0x84, 0x06, 0xfd, 0xa5, 0xbe, 0x2c, 0xde, 0x9b, 0x3b, 0x8e,
979513498266Sopenharmony_ci  0xc4, 0x94, 0x56, 0x57, 0x96, 0xad, 0x64, 0x30, 0xab, 0x11, 0x20, 0x3e,
979613498266Sopenharmony_ci  0xbd, 0x3d, 0xd8, 0xee, 0xcb, 0xaf, 0x3b, 0xe2, 0xd2, 0xc2, 0xdf, 0x77,
979713498266Sopenharmony_ci  0x9b, 0x1e, 0xd1, 0x26, 0x5d, 0x6e, 0xf5, 0xcd, 0xcb, 0x5b, 0x37, 0xa1,
979813498266Sopenharmony_ci  0x4d, 0x65, 0x93, 0x86, 0x24, 0xe1, 0x3d, 0xd7, 0x5d, 0xa0, 0x40, 0x7c,
979913498266Sopenharmony_ci  0xbe, 0xe5, 0xd9, 0xb1, 0xda, 0x73, 0x95, 0x34, 0xac, 0x97, 0xe3, 0x36,
980013498266Sopenharmony_ci  0x35, 0xb8, 0x6e, 0x8b, 0xb0, 0xab, 0x9b, 0xb8, 0xac, 0x57, 0x5f, 0x6f,
980113498266Sopenharmony_ci  0x6c, 0x79, 0xf5, 0xf5, 0xc6, 0x5d, 0xb2, 0xcb, 0x0c, 0xab, 0x1f, 0xac,
980213498266Sopenharmony_ci  0x0b, 0x6a, 0x61, 0x39, 0xbd, 0x23, 0x41, 0x46, 0x5b, 0x34, 0x9d, 0x98,
980313498266Sopenharmony_ci  0x16, 0x22, 0xa7, 0x41, 0x77, 0x0f, 0x77, 0x10, 0x8b, 0x15, 0xd4, 0x4c,
980413498266Sopenharmony_ci  0xf4, 0x6d, 0x00, 0xa5, 0x9f, 0x85, 0x8c, 0x89, 0xba, 0xdb, 0x2d, 0xa6,
980513498266Sopenharmony_ci  0x03, 0xad, 0xde, 0x72, 0x63, 0xb7, 0x6f, 0xb0, 0x23, 0xdb, 0xf7, 0xb6,
980613498266Sopenharmony_ci  0x23, 0xdb, 0xab, 0xed, 0x88, 0x4b, 0xc8, 0xce, 0xc2, 0xe1, 0x01, 0xbc,
980713498266Sopenharmony_ci  0x4d, 0xa1, 0x66, 0x82, 0x4f, 0xed, 0x68, 0xb3, 0x73, 0x63, 0xda, 0x1b,
980813498266Sopenharmony_ci  0xac, 0x1b, 0xd5, 0xb5, 0x35, 0xde, 0xae, 0xde, 0x64, 0xa3, 0x60, 0xfc,
980913498266Sopenharmony_ci  0xd5, 0x42, 0x8a, 0x46, 0x11, 0x23, 0xa6, 0x7a, 0xaf, 0x6a, 0x1e, 0x54,
981013498266Sopenharmony_ci  0x73, 0x60, 0xc8, 0x34, 0x49, 0x3c, 0x73, 0xc7, 0x71, 0x11, 0xd0, 0x07,
981113498266Sopenharmony_ci  0x44, 0x75, 0xef, 0x58, 0x40, 0x19, 0x48, 0x38, 0x94, 0xe8, 0x18, 0x34,
981213498266Sopenharmony_ci  0xba, 0xa8, 0x6b, 0x74, 0xb6, 0x4a, 0xa1, 0x66, 0x47, 0x53, 0x46, 0x53,
981313498266Sopenharmony_ci  0xa5, 0xfd, 0x54, 0x88, 0xb1, 0x4f, 0x4e, 0xaf, 0xe4, 0x32, 0x41, 0x65,
981413498266Sopenharmony_ci  0x89, 0xc4, 0x2b, 0x3b, 0x48, 0x4f, 0x29, 0xc7, 0xeb, 0x03, 0xfd, 0x2b,
981513498266Sopenharmony_ci  0xda, 0x40, 0x03, 0x9e, 0x11, 0x9a, 0x10, 0x0f, 0x57, 0x7a, 0x56, 0x50,
981613498266Sopenharmony_ci  0x72, 0xe7, 0xd8, 0x89, 0x16, 0xf2, 0xbd, 0x24, 0x44, 0xc3, 0x22, 0x12,
981713498266Sopenharmony_ci  0xe2, 0x0a, 0x75, 0x97, 0x8b, 0x6d, 0x13, 0xb5, 0x7f, 0xd6, 0x5a, 0x24,
981813498266Sopenharmony_ci  0x6e, 0x32, 0xf1, 0x98, 0xca, 0xfd, 0x8c, 0xb0, 0x76, 0xdc, 0x43, 0xf0,
981913498266Sopenharmony_ci  0x6a, 0xf0, 0xba, 0xb9, 0xcd, 0x31, 0xf1, 0xc7, 0x7a, 0xc3, 0x43, 0x23,
982013498266Sopenharmony_ci  0xd7, 0x7b, 0xf0, 0xb6, 0xe8, 0x6a, 0x5a, 0xe9, 0xa2, 0x8b, 0x0e, 0x16,
982113498266Sopenharmony_ci  0x39, 0x08, 0x18, 0xd3, 0x2b, 0x06, 0xc3, 0x66, 0xed, 0xf4, 0x12, 0xb5,
982213498266Sopenharmony_ci  0x02, 0xd2, 0x4d, 0x6b, 0xb7, 0x68, 0x00, 0x6f, 0xb0, 0x60, 0xaf, 0xb4,
982313498266Sopenharmony_ci  0x95, 0xee, 0xf9, 0x75, 0xa8, 0xc6, 0x86, 0x41, 0xd0, 0xa8, 0xdb, 0x87,
982413498266Sopenharmony_ci  0x34, 0xc8, 0x15, 0x77, 0x96, 0x1e, 0xc3, 0x5b, 0xf1, 0xc7, 0x9d, 0xa0,
982513498266Sopenharmony_ci  0x21, 0x8f, 0x68, 0xbc, 0xef, 0x22, 0x26, 0x52, 0x03, 0x86, 0x68, 0xcd,
982613498266Sopenharmony_ci  0xe9, 0x30, 0x90, 0x79, 0xa6, 0x5c, 0xb3, 0x47, 0xc1, 0x44, 0xad, 0x0e,
982713498266Sopenharmony_ci  0xa4, 0x1f, 0x35, 0x6a, 0x65, 0x9c, 0x60, 0xff, 0xd4, 0x7c, 0x5f, 0x45,
982813498266Sopenharmony_ci  0x77, 0xc1, 0xf2, 0xa2, 0x26, 0xdc, 0x24, 0x09, 0xd5, 0x47, 0xd8, 0xba,
982913498266Sopenharmony_ci  0x21, 0x29, 0x69, 0x45, 0x98, 0x5d, 0x28, 0x38, 0x5a, 0xaa, 0x4c, 0x62,
983013498266Sopenharmony_ci  0xcf, 0xbc, 0xd2, 0x11, 0x73, 0xf6, 0xa3, 0xc1, 0x39, 0x20, 0xab, 0x88,
983113498266Sopenharmony_ci  0xb4, 0x43, 0x58, 0xbd, 0xb2, 0x3c, 0x99, 0x13, 0xa2, 0x21, 0xf9, 0x3c,
983213498266Sopenharmony_ci  0x28, 0x44, 0x20, 0x44, 0x6b, 0xe4, 0x99, 0x4d, 0x70, 0x81, 0xb6, 0x07,
983313498266Sopenharmony_ci  0x3b, 0xe8, 0xc4, 0x14, 0x68, 0x17, 0x8e, 0x34, 0x38, 0xc7, 0xca, 0xe6,
983413498266Sopenharmony_ci  0x46, 0xdd, 0x15, 0xe2, 0x24, 0x21, 0xd0, 0xc9, 0xc3, 0x08, 0x57, 0xac,
983513498266Sopenharmony_ci  0x46, 0x54, 0x18, 0xc2, 0xbb, 0xd5, 0xb2, 0x34, 0xb4, 0x5c, 0xba, 0xb3,
983613498266Sopenharmony_ci  0xd2, 0xd4, 0x4c, 0x9d, 0xcd, 0x18, 0x1a, 0x34, 0xad, 0x2e, 0x60, 0x0c,
983713498266Sopenharmony_ci  0xd7, 0xf3, 0x8e, 0x7b, 0xba, 0x0e, 0x77, 0x3e, 0x4d, 0x1c, 0xdc, 0x15,
983813498266Sopenharmony_ci  0xf2, 0x07, 0xd6, 0x93, 0x4c, 0xe7, 0xb9, 0x39, 0xe2, 0x96, 0xd5, 0x07,
983913498266Sopenharmony_ci  0x50, 0x74, 0x89, 0x3a, 0xaf, 0x3b, 0xd3, 0x7a, 0xa4, 0xf5, 0x44, 0x3b,
984013498266Sopenharmony_ci  0x02, 0x50, 0xa0, 0xd0, 0xad, 0x39, 0xd0, 0xad, 0x9b, 0xb6, 0x2d, 0x00,
984113498266Sopenharmony_ci  0xd1, 0xa9, 0x76, 0x8e, 0x75, 0xf7, 0xb9, 0x0e, 0xc9, 0x45, 0x5d, 0xe7,
984213498266Sopenharmony_ci  0x7c, 0x37, 0x0e, 0x94, 0x19, 0x90, 0xc3, 0xfe, 0x52, 0xcb, 0x3f, 0x7a,
984313498266Sopenharmony_ci  0x07, 0x7e, 0x73, 0xd7, 0xb8, 0xbd, 0xc8, 0xdc, 0x9f, 0x6b, 0xbe, 0x63,
984413498266Sopenharmony_ci  0x3f, 0xe4, 0x3f, 0xcb, 0x09, 0x21, 0x78, 0x3a, 0x25, 0xec, 0x33, 0x9a,
984513498266Sopenharmony_ci  0x1a, 0x56, 0x8c, 0xcf, 0x84, 0xf4, 0x95, 0xc4, 0xaa, 0x81, 0x36, 0x8d,
984613498266Sopenharmony_ci  0x04, 0x48, 0xfe, 0x04, 0x51, 0x6a, 0xbf, 0xf0, 0xb1, 0xab, 0xf8, 0xda,
984713498266Sopenharmony_ci  0xc4, 0x79, 0xe1, 0x71, 0xd1, 0x4f, 0x28, 0x9d, 0x6e, 0x60, 0x78, 0x4e,
984813498266Sopenharmony_ci  0x33, 0x0d, 0x96, 0x4a, 0x03, 0x63, 0x5c, 0xbf, 0x87, 0xab, 0xce, 0xd5,
984913498266Sopenharmony_ci  0x12, 0x96, 0xa3, 0x75, 0x68, 0x70, 0x8f, 0x14, 0xaf, 0x35, 0x86, 0x06,
985013498266Sopenharmony_ci  0xcb, 0x09, 0x0e, 0xa6, 0x75, 0x7c, 0x72, 0x31, 0x52, 0x18, 0x5c, 0x0f,
985113498266Sopenharmony_ci  0x0c, 0x89, 0xf9, 0x8b, 0x24, 0xc5, 0xc9, 0x4c, 0x2f, 0x35, 0x6d, 0x10,
985213498266Sopenharmony_ci  0xf7, 0xca, 0x5e, 0x1a, 0x82, 0x48, 0x0a, 0xc7, 0x35, 0xf9, 0x50, 0x09,
985313498266Sopenharmony_ci  0xd3, 0xd9, 0xf5, 0xd0, 0xd7, 0x1c, 0x98, 0xda, 0x73, 0xf6, 0xb8, 0x6b,
985413498266Sopenharmony_ci  0xb8, 0xed, 0xd2, 0x89, 0x38, 0x9e, 0x5b, 0xc4, 0x67, 0xe2, 0x22, 0x61,
985513498266Sopenharmony_ci  0x7f, 0x7f, 0xf7, 0xf2, 0xa9, 0x6b, 0x96, 0xb7, 0xd9, 0x56, 0x7e, 0x5d,
985613498266Sopenharmony_ci  0x05, 0x93, 0xe0, 0xd4, 0xe4, 0x59, 0x9a, 0x53, 0x85, 0x31, 0x16, 0x6c,
985713498266Sopenharmony_ci  0x42, 0x65, 0xf9, 0x4b, 0xb7, 0x97, 0x7d, 0xd3, 0xbe, 0x0e, 0x04, 0xca,
985813498266Sopenharmony_ci  0x2d, 0xd7, 0x8b, 0xd6, 0x63, 0x39, 0x29, 0x6c, 0x91, 0xbd, 0xc9, 0x22,
985913498266Sopenharmony_ci  0xa7, 0x01, 0x25, 0x54, 0x03, 0x5a, 0x3c, 0xd1, 0x4a, 0x4b, 0xd7, 0x72,
986013498266Sopenharmony_ci  0x1e, 0x26, 0xee, 0x7b, 0x62, 0x3f, 0xd2, 0xf8, 0x6d, 0x64, 0x8b, 0x6e,
986113498266Sopenharmony_ci  0xa5, 0xb4, 0xd1, 0xf4, 0x1d, 0xcb, 0x16, 0xbb, 0x7f, 0xa8, 0x6c, 0x21,
986213498266Sopenharmony_ci  0x3c, 0xab, 0x83, 0x23, 0xb9, 0xdf, 0xe2, 0xb8, 0x58, 0x19, 0x0f, 0x24,
986313498266Sopenharmony_ci  0xab, 0x3c, 0x1e, 0x3c, 0x41, 0x9c, 0xac, 0x16, 0xd3, 0xea, 0x48, 0x46,
986413498266Sopenharmony_ci  0x62, 0xe9, 0x44, 0x0c, 0xaa, 0x84, 0xb0, 0x86, 0xe9, 0x08, 0xd7, 0x30,
986513498266Sopenharmony_ci  0xac, 0xe1, 0xc2, 0x2b, 0xc9, 0xab, 0xbc, 0x0a, 0x5e, 0x09, 0x72, 0x2a,
986613498266Sopenharmony_ci  0x85, 0x30, 0x90, 0x96, 0xdd, 0x83, 0xd3, 0x7d, 0x5e, 0xe8, 0xea, 0xe4,
986713498266Sopenharmony_ci  0x92, 0x00, 0x03, 0x33, 0x28, 0x5c, 0x75, 0xda, 0x6b, 0xeb, 0x7f, 0xf4,
986813498266Sopenharmony_ci  0xd8, 0x5b, 0x07, 0xfb, 0x63, 0x66, 0xb7, 0x2c, 0xe0, 0xe8, 0xc6, 0x2c,
986913498266Sopenharmony_ci  0x4b, 0x79, 0xd6, 0x32, 0xa6, 0xb5, 0x2a, 0xd7, 0xfa, 0x54, 0xa6, 0xc5,
987013498266Sopenharmony_ci  0x98, 0xf7, 0xd5, 0x87, 0x74, 0xdc, 0xbc, 0x78, 0x14, 0x52, 0x1e, 0x15,
987113498266Sopenharmony_ci  0x3e, 0xce, 0xe7, 0xe2, 0xa4, 0x2a, 0xc3, 0x7f, 0xa4, 0xa6, 0x67, 0xbb,
987213498266Sopenharmony_ci  0xe7, 0xe9, 0xd8, 0xdb, 0x45, 0x8d, 0xee, 0x9b, 0x92, 0x46, 0x36, 0x4e,
987313498266Sopenharmony_ci  0xa7, 0xc9, 0x15, 0xc5, 0x5e, 0x34, 0x77, 0x37, 0x58, 0xb9, 0x97, 0xec,
987413498266Sopenharmony_ci  0xe5, 0xb4, 0x97, 0x28, 0x82, 0xa1, 0x73, 0x00, 0x96, 0x5a, 0x86, 0xc6,
987513498266Sopenharmony_ci  0x4a, 0x9b, 0x20, 0xc4, 0x16, 0xa8, 0x90, 0x8d, 0x52, 0x13, 0x4b, 0x98,
987613498266Sopenharmony_ci  0xf3, 0x48, 0x42, 0xf1, 0x36, 0x5d, 0x26, 0x1f, 0x87, 0x37, 0x32, 0x5f,
987713498266Sopenharmony_ci  0x58, 0xce, 0x20, 0x51, 0x8b, 0x5d, 0x85, 0x47, 0xde, 0x17, 0x7b, 0xbc,
987813498266Sopenharmony_ci  0x9d, 0x74, 0xe6, 0x9a, 0x11, 0x0c, 0x3b, 0x6c, 0x8a, 0x64, 0x96, 0xf7,
987913498266Sopenharmony_ci  0x79, 0x38, 0x26, 0x37, 0x94, 0xc9, 0x76, 0x3d, 0xa3, 0x14, 0xb1, 0xbe,
988013498266Sopenharmony_ci  0xd8, 0xb7, 0xcf, 0x2f, 0x93, 0xca, 0x82, 0xdc, 0xd0, 0x65, 0xeb, 0xab,
988113498266Sopenharmony_ci  0x4b, 0x67, 0x8c, 0x05, 0xdd, 0x30, 0x4d, 0x3e, 0x6a, 0x9a, 0xcc, 0xb9,
988213498266Sopenharmony_ci  0xc2, 0x60, 0x2c, 0x6e, 0x85, 0x98, 0x1d, 0x1f, 0xa1, 0xca, 0x11, 0xcc,
988313498266Sopenharmony_ci  0x12, 0xad, 0x28, 0xf4, 0x92, 0x5e, 0x64, 0x90, 0x2b, 0x79, 0xf9, 0x15,
988413498266Sopenharmony_ci  0xd7, 0x65, 0x12, 0x8d, 0xc5, 0x82, 0x7e, 0x06, 0x22, 0x3f, 0xb3, 0x11,
988513498266Sopenharmony_ci  0x86, 0xd0, 0x4f, 0x19, 0x53, 0x14, 0x73, 0x74, 0x38, 0x66, 0x4d, 0x4d,
988613498266Sopenharmony_ci  0xdd, 0xe5, 0x82, 0x13, 0x37, 0x0f, 0xe6, 0xe4, 0x1c, 0xda, 0x1e, 0x7c,
988713498266Sopenharmony_ci  0xd4, 0x28, 0x46, 0xdf, 0xe8, 0xcd, 0xf6, 0x90, 0x2c, 0x57, 0x3c, 0xe6,
988813498266Sopenharmony_ci  0xd6, 0x68, 0xb0, 0x5d, 0x76, 0x88, 0x70, 0xb2, 0x5d, 0xa9, 0x91, 0x52,
988913498266Sopenharmony_ci  0x3b, 0x18, 0xaf, 0x72, 0xe6, 0xa9, 0x2e, 0xc3, 0xab, 0x3a, 0x0d, 0xc7,
989013498266Sopenharmony_ci  0x8f, 0x3c, 0x37, 0x12, 0xa0, 0x1b, 0xac, 0xf6, 0x21, 0x9b, 0x33, 0xb2,
989113498266Sopenharmony_ci  0xd2, 0xcb, 0xff, 0x3a, 0x34, 0xae, 0x11, 0xd8, 0xd8, 0x49, 0x76, 0x86,
989213498266Sopenharmony_ci  0xbe, 0x64, 0xc1, 0x4b, 0xf7, 0x0c, 0x27, 0xbf, 0xa7, 0x8a, 0x8b, 0xa8,
989313498266Sopenharmony_ci  0xa8, 0x83, 0xec, 0x84, 0x0b, 0x57, 0x6c, 0x6f, 0x08, 0x5c, 0x46, 0x42,
989413498266Sopenharmony_ci  0x22, 0x17, 0xb3, 0x61, 0xdf, 0xc0, 0x65, 0x82, 0x94, 0xea, 0xf3, 0xae,
989513498266Sopenharmony_ci  0xf3, 0xab, 0xf9, 0x35, 0x59, 0x4c, 0x41, 0xaa, 0xb8, 0x7b, 0x13, 0x4d,
989613498266Sopenharmony_ci  0xb0, 0x9b, 0x55, 0x99, 0x43, 0x78, 0xac, 0xab, 0x31, 0x8b, 0x6e, 0xdc,
989713498266Sopenharmony_ci  0xb9, 0x38, 0xc3, 0x03, 0x29, 0x21, 0xbb, 0x5d, 0x19, 0x4d, 0xa8, 0xda,
989813498266Sopenharmony_ci  0x70, 0xce, 0x89, 0xf1, 0x08, 0xd9, 0xa0, 0x4c, 0xce, 0xd9, 0x5f, 0xd4,
989913498266Sopenharmony_ci  0x73, 0xcc, 0x96, 0x96, 0x40, 0x48, 0x7e, 0x28, 0x18, 0x36, 0x5e, 0x49,
990013498266Sopenharmony_ci  0xc1, 0x69, 0xcd, 0x62, 0xd1, 0x18, 0x66, 0x0a, 0x2b, 0x14, 0x2b, 0x20,
990113498266Sopenharmony_ci  0x7a, 0x2a, 0xe1, 0x72, 0x28, 0x8a, 0x0f, 0x19, 0xba, 0x07, 0xc7, 0x78,
990213498266Sopenharmony_ci  0x5d, 0x05, 0x2b, 0x30, 0xda, 0xa4, 0x8f, 0x86, 0x59, 0x05, 0x49, 0x14,
990313498266Sopenharmony_ci  0x6b, 0x01, 0x60, 0xed, 0xb0, 0x1f, 0x39, 0xa2, 0x5d, 0x7c, 0x4d, 0xc6,
990413498266Sopenharmony_ci  0xdc, 0xe7, 0x95, 0x19, 0x22, 0xb0, 0x12, 0x19, 0x62, 0x8f, 0x42, 0x1e,
990513498266Sopenharmony_ci  0x25, 0xda, 0x99, 0x87, 0x84, 0x94, 0x6f, 0x60, 0xbf, 0x06, 0x81, 0x6a,
990613498266Sopenharmony_ci  0x96, 0x17, 0x59, 0x7a, 0xd9, 0xb0, 0x85, 0x48, 0x5b, 0x7d, 0x2e, 0x7c,
990713498266Sopenharmony_ci  0xc8, 0x49, 0x19, 0x69, 0x2b, 0x67, 0xa8, 0x23, 0x30, 0xf6, 0x98, 0x6c,
990813498266Sopenharmony_ci  0xa6, 0x58, 0xff, 0x6d, 0xf0, 0xf8, 0x21, 0xf0, 0x49, 0x09, 0xbf, 0x62,
990913498266Sopenharmony_ci  0xe5, 0x8d, 0x0a, 0xaa, 0x35, 0xf2, 0xca, 0xe0, 0x64, 0xc4, 0x13, 0xca,
991013498266Sopenharmony_ci  0xa4, 0xa1, 0xb2, 0x6f, 0x49, 0x28, 0x3a, 0x87, 0xeb, 0x2b, 0xb8, 0xa8,
991113498266Sopenharmony_ci  0x3d, 0x02, 0x67, 0xd4, 0x08, 0x18, 0xe5, 0xc0, 0x54, 0x98, 0x3b, 0x9e,
991213498266Sopenharmony_ci  0x30, 0xd2, 0xf2, 0x3a, 0x18, 0x92, 0x64, 0x44, 0x5e, 0x0f, 0x76, 0xa7,
991313498266Sopenharmony_ci  0xdb, 0x7c, 0xb7, 0x6e, 0x31, 0x69, 0x75, 0xc5, 0xa3, 0x94, 0xad, 0x76,
991413498266Sopenharmony_ci  0x6a, 0x3a, 0xe2, 0xcc, 0x3e, 0xf0, 0x81, 0xa9, 0x42, 0xc5, 0xa5, 0xd6,
991513498266Sopenharmony_ci  0xd1, 0xce, 0x64, 0xe3, 0x87, 0xbe, 0x35, 0x76, 0xb6, 0x3e, 0xda, 0x9b,
991613498266Sopenharmony_ci  0xca, 0x2b, 0x05, 0x0d, 0x73, 0x35, 0x47, 0x1c, 0x1a, 0x33, 0x5c, 0xef,
991713498266Sopenharmony_ci  0x26, 0x81, 0x57, 0x18, 0x06, 0x84, 0x1d, 0xba, 0xf2, 0xb2, 0xf0, 0xd5,
991813498266Sopenharmony_ci  0x46, 0x2c, 0x42, 0x4d, 0x0d, 0x50, 0x8e, 0xc3, 0xe0, 0x9a, 0x4a, 0x6f,
991913498266Sopenharmony_ci  0x92, 0x30, 0xd1, 0xe4, 0xee, 0xdc, 0x93, 0x24, 0xef, 0x55, 0x75, 0xca,
992013498266Sopenharmony_ci  0x80, 0xb1, 0xae, 0x28, 0x56, 0x78, 0x62, 0x3f, 0xc5, 0x98, 0x05, 0xa3,
992113498266Sopenharmony_ci  0x93, 0x29, 0x38, 0xb8, 0x29, 0x30, 0x08, 0x30, 0x2a, 0x7b, 0xe7, 0xcd,
992213498266Sopenharmony_ci  0x21, 0x14, 0xd9, 0x1a, 0x56, 0x4d, 0x64, 0x41, 0x1c, 0x87, 0x27, 0x3b,
992313498266Sopenharmony_ci  0x6a, 0xe9, 0x00, 0x26, 0xb7, 0xb5, 0x8a, 0xac, 0x79, 0x4e, 0xa5, 0x2c,
992413498266Sopenharmony_ci  0x5d, 0x11, 0xa9, 0x6d, 0x9d, 0xe5, 0x70, 0xfe, 0xf6, 0x58, 0xf4, 0x59,
992513498266Sopenharmony_ci  0x5e, 0x62, 0x2b, 0xb2, 0xd5, 0xd0, 0x6d, 0x7a, 0x0d, 0x85, 0x49, 0xf0,
992613498266Sopenharmony_ci  0x65, 0x4c, 0xc1, 0x54, 0xd2, 0x79, 0x17, 0x60, 0xb9, 0x02, 0x62, 0x29,
992713498266Sopenharmony_ci  0x80, 0x15, 0x9f, 0x21, 0x91, 0xba, 0xdc, 0xbe, 0x4c, 0x70, 0x0b, 0x96,
992813498266Sopenharmony_ci  0x7e, 0xd5, 0xe2, 0xad, 0x4f, 0x0f, 0x96, 0x8c, 0x4e, 0xc0, 0x10, 0xb4,
992913498266Sopenharmony_ci  0x75, 0xfc, 0x0a, 0xf6, 0x06, 0xf9, 0x1a, 0x93, 0x29, 0x2f, 0x31, 0x57,
993013498266Sopenharmony_ci  0x4d, 0x85, 0x47, 0x8b, 0x45, 0xe9, 0xa5, 0x39, 0x91, 0x74, 0x20, 0x75,
993113498266Sopenharmony_ci  0x11, 0xa5, 0x14, 0xe2, 0x9e, 0x39, 0x05, 0xb8, 0xe2, 0x83, 0x2a, 0xdd,
993213498266Sopenharmony_ci  0x04, 0x2e, 0x5a, 0x6d, 0x56, 0xd5, 0x14, 0x3b, 0xa8, 0x06, 0x58, 0x7e,
993313498266Sopenharmony_ci  0x34, 0x24, 0x1e, 0x10, 0x59, 0xe3, 0xec, 0x80, 0xb4, 0x43, 0x80, 0x69,
993413498266Sopenharmony_ci  0xac, 0x45, 0x12, 0x45, 0xb1, 0xd9, 0x0f, 0x25, 0xb6, 0xfc, 0x3d, 0x45,
993513498266Sopenharmony_ci  0x6f, 0x07, 0xe9, 0x5a, 0xc3, 0xc3, 0x1b, 0x4f, 0x4a, 0xbd, 0x64, 0xc9,
993613498266Sopenharmony_ci  0x30, 0xb5, 0x89, 0x5d, 0x34, 0x6f, 0x5d, 0x68, 0x7f, 0x0b, 0x90, 0x2a,
993713498266Sopenharmony_ci  0xce, 0x31, 0x3f, 0xdb, 0x22, 0x21, 0xcb, 0xaa, 0xf5, 0x06, 0x55, 0x75,
993813498266Sopenharmony_ci  0xde, 0x03, 0x79, 0x76, 0x68, 0xbe, 0x52, 0x59, 0xab, 0xa3, 0x10, 0xba,
993913498266Sopenharmony_ci  0xd9, 0xe9, 0x4a, 0x19, 0x62, 0x56, 0x3a, 0x11, 0x7b, 0x55, 0x77, 0x34,
994013498266Sopenharmony_ci  0xbe, 0x5f, 0x03, 0x84, 0x97, 0xa6, 0x09, 0xe7, 0x27, 0xac, 0xe3, 0x3a,
994113498266Sopenharmony_ci  0x93, 0xb7, 0x9c, 0x76, 0x7b, 0x56, 0xb0, 0xec, 0x40, 0xb9, 0xc0, 0x35,
994213498266Sopenharmony_ci  0xd2, 0x0b, 0x56, 0x03, 0x31, 0x58, 0x71, 0x0d, 0x6c, 0xbd, 0x2d, 0x3a,
994313498266Sopenharmony_ci  0x4d, 0x91, 0x3a, 0xf8, 0xb0, 0xea, 0xb0, 0x6e, 0xea, 0xa8, 0xb0, 0x17,
994413498266Sopenharmony_ci  0x5e, 0x62, 0x7c, 0x28, 0x60, 0x45, 0x84, 0x05, 0x64, 0xcc, 0x87, 0x1a,
994513498266Sopenharmony_ci  0x25, 0x6e, 0x4e, 0x93, 0x69, 0xf2, 0x42, 0xba, 0xd7, 0x6d, 0x9c, 0x10,
994613498266Sopenharmony_ci  0x8d, 0x55, 0x06, 0xe8, 0xcb, 0x68, 0x94, 0x17, 0xe6, 0x8e, 0x81, 0x32,
994713498266Sopenharmony_ci  0x68, 0x60, 0xaf, 0xb3, 0x11, 0xd5, 0x42, 0x11, 0x49, 0x79, 0x39, 0xf6,
994813498266Sopenharmony_ci  0x9b, 0xe9, 0xf9, 0xc6, 0xd7, 0xcb, 0x4d, 0xe1, 0xa8, 0x3b, 0x37, 0xe9,
994913498266Sopenharmony_ci  0x3a, 0x61, 0x4d, 0x47, 0xb4, 0x72, 0xe8, 0xcf, 0xc7, 0x2b, 0xf3, 0x32,
995013498266Sopenharmony_ci  0xc1, 0x61, 0x25, 0x74, 0xdc, 0x05, 0x94, 0x26, 0xc1, 0x0a, 0x51, 0x0d,
995113498266Sopenharmony_ci  0xb5, 0x46, 0xcb, 0x3e, 0x44, 0xfb, 0xa1, 0xd8, 0xc1, 0x63, 0x0e, 0x0b,
995213498266Sopenharmony_ci  0x23, 0xf5, 0xd9, 0xa9, 0x79, 0xc7, 0x22, 0xb8, 0x45, 0x97, 0x32, 0xad,
995313498266Sopenharmony_ci  0x0c, 0x0c, 0x6c, 0x3f, 0x06, 0xaa, 0x79, 0xea, 0xb6, 0xed, 0x4d, 0x44,
995413498266Sopenharmony_ci  0x33, 0x17, 0xb5, 0x00, 0x5d, 0x2a, 0x7a, 0x62, 0x40, 0x15, 0xcb, 0x0d,
995513498266Sopenharmony_ci  0xcd, 0x8d, 0x28, 0x30, 0x7a, 0x0a, 0x52, 0x9c, 0x57, 0x28, 0xfe, 0x43,
995613498266Sopenharmony_ci  0x57, 0x35, 0x59, 0x67, 0x62, 0x88, 0x10, 0xbf, 0x67, 0x1d, 0xf8, 0x97,
995713498266Sopenharmony_ci  0x97, 0x97, 0x83, 0x65, 0xf1, 0x97, 0x47, 0x79, 0xf4, 0x0a, 0x38, 0xff,
995813498266Sopenharmony_ci  0x47, 0xa7, 0x4e, 0xb6, 0x54, 0xde, 0x71, 0x40, 0xff, 0x7f, 0x78, 0xfb,
995913498266Sopenharmony_ci  0xbc, 0x6f, 0x02, 0xc7, 0xb4, 0x5e, 0x31, 0xe5, 0x20, 0x79, 0x46, 0x43,
996013498266Sopenharmony_ci  0x14, 0xfb, 0x33, 0xe2, 0x9b, 0x88, 0x1c, 0x07, 0x4a, 0xe0, 0xc1, 0xf1,
996113498266Sopenharmony_ci  0xfb, 0x37, 0x87, 0xa7, 0xef, 0xdf, 0x1e, 0xfc, 0x18, 0xb1, 0x70, 0x06,
996213498266Sopenharmony_ci  0x3d, 0x80, 0x1e, 0x87, 0xb9, 0x7f, 0x65, 0x51, 0x00, 0x7d, 0xbd, 0xa6,
996313498266Sopenharmony_ci  0x3b, 0x88, 0x49, 0xba, 0x03, 0x46, 0x6b, 0x48, 0x2e, 0x73, 0x1e, 0x27,
996413498266Sopenharmony_ci  0x0e, 0x66, 0x0f, 0xd9, 0x8d, 0x33, 0xc1, 0x0f, 0x69, 0x99, 0xa7, 0xd3,
996513498266Sopenharmony_ci  0x41, 0x51, 0x9e, 0x21, 0x53, 0xde, 0x7c, 0x26, 0xe2, 0x6d, 0xb0, 0xb9,
996613498266Sopenharmony_ci  0x4d, 0xc1, 0x8b, 0xc2, 0xb0, 0xbd, 0x8b, 0x72, 0x82, 0x01, 0x67, 0x61,
996713498266Sopenharmony_ci  0x90, 0x10, 0xbb, 0xa4, 0x9f, 0x21, 0xca, 0xbb, 0xb9, 0x9f, 0x2b, 0x1e,
996813498266Sopenharmony_ci  0x8b, 0x71, 0x5e, 0xd9, 0x06, 0x1a, 0xe4, 0x3f, 0x9f, 0x54, 0xf1, 0x19,
996913498266Sopenharmony_ci  0xdc, 0x91, 0xe8, 0xd1, 0xdf, 0x87, 0x6b, 0xd7, 0x0b, 0x9e, 0x7d, 0x79,
997013498266Sopenharmony_ci  0xfc, 0xfc, 0x64, 0xc3, 0x04, 0x41, 0x32, 0xbf, 0xd7, 0x17, 0xc4, 0x3e,
997113498266Sopenharmony_ci  0x86, 0x0c, 0x12, 0x1f, 0x13, 0x2c, 0xb7, 0x37, 0x27, 0xe2, 0x0e, 0xc1,
997213498266Sopenharmony_ci  0xb4, 0xeb, 0x30, 0x20, 0x8b, 0xe1, 0xee, 0x97, 0x68, 0xb1, 0xd2, 0x88,
997313498266Sopenharmony_ci  0x25, 0xcb, 0xf2, 0x38, 0x5f, 0x2f, 0x53, 0x6c, 0xb6, 0xe7, 0x27, 0xef,
997413498266Sopenharmony_ci  0xbf, 0x3b, 0x38, 0x3d, 0xfc, 0xf1, 0xe0, 0x1f, 0x6d, 0xdd, 0x31, 0xbf,
997513498266Sopenharmony_ci  0xc8, 0xca, 0x22, 0x67, 0x0b, 0xe7, 0x45, 0x52, 0x66, 0x5c, 0x5d, 0x9b,
997613498266Sopenharmony_ci  0x8a, 0x99, 0x21, 0xb0, 0x00, 0x81, 0xf9, 0x90, 0x9f, 0xa1, 0xf7, 0xff,
997713498266Sopenharmony_ci  0xd9, 0x1c, 0xe0, 0x64, 0x37, 0x65, 0xec, 0xbd, 0x50, 0x68, 0xef, 0x79,
997813498266Sopenharmony_ci  0x31, 0xd5, 0x72, 0xda, 0x66, 0x8e, 0x28, 0x8a, 0x70, 0x4c, 0x6b, 0x28,
997913498266Sopenharmony_ci  0x2a, 0x13, 0x8d, 0x91, 0x44, 0xbb, 0x11, 0x15, 0x5e, 0xe6, 0x65, 0xc8,
998013498266Sopenharmony_ci  0x8b, 0x71, 0x2a, 0x17, 0xbb, 0xb6, 0xd2, 0xf0, 0x15, 0x47, 0x6c, 0x74,
998113498266Sopenharmony_ci  0x0d, 0xb2, 0x50, 0xb6, 0x2f, 0x45, 0x8c, 0x00, 0x08, 0xfb, 0x4b, 0xcd,
998213498266Sopenharmony_ci  0x22, 0x5b, 0xd8, 0x7b, 0xb2, 0xf5, 0x64, 0x0b, 0x33, 0x8f, 0x0f, 0xa4,
998313498266Sopenharmony_ci  0xd8, 0x9d, 0x72, 0x07, 0x02, 0xfb, 0x44, 0x0e, 0xe1, 0xe1, 0x9d, 0x15,
998413498266Sopenharmony_ci  0x1f, 0x96, 0x73, 0x08, 0x77, 0xef, 0x83, 0xdd, 0x45, 0xf8, 0x08, 0x7c,
998513498266Sopenharmony_ci  0x3a, 0x4c, 0x26, 0x57, 0xc3, 0x34, 0x3b, 0x4b, 0xce, 0xc6, 0x0f, 0xf3,
998613498266Sopenharmony_ci  0x59, 0x9e, 0xef, 0x64, 0x57, 0xd5, 0xce, 0x64, 0x77, 0x5c, 0x94, 0xc5,
998713498266Sopenharmony_ci  0xe3, 0x2b, 0x60, 0x5e, 0x17, 0x57, 0xe5, 0xce, 0xec, 0xf7, 0xa4, 0xbc,
998813498266Sopenharmony_ci  0xcc, 0xc6, 0x67, 0xc9, 0x38, 0xb9, 0x9c, 0x25, 0x88, 0x97, 0x74, 0x35,
998913498266Sopenharmony_ci  0x1e, 0xfe, 0x9e, 0x05, 0x20, 0xe7, 0x4a, 0x4d, 0xa0, 0xe4, 0xf2, 0x85,
999013498266Sopenharmony_ci  0x22, 0x10, 0xf0, 0xd2, 0xe9, 0x82, 0x21, 0xf5, 0xb0, 0xfb, 0x82, 0xaf,
999113498266Sopenharmony_ci  0x5f, 0x9d, 0x6d, 0xfb, 0x74, 0xe8, 0x31, 0xc0, 0x81, 0x0e, 0xce, 0x80,
999213498266Sopenharmony_ci  0xcd, 0x2c, 0x86, 0x83, 0xac, 0xd8, 0xe4, 0x36, 0x75, 0x72, 0x31, 0x91,
999313498266Sopenharmony_ci  0x53, 0x5a, 0x6e, 0x76, 0xca, 0x1b, 0x36, 0x9d, 0xbb, 0xe0, 0x02, 0x30,
999413498266Sopenharmony_ci  0xd1, 0x59, 0x61, 0x60, 0xc9, 0x29, 0xdf, 0x40, 0xd7, 0xc9, 0xc9, 0x5e,
999513498266Sopenharmony_ci  0xf6, 0x12, 0xe2, 0x92, 0xcb, 0xa4, 0x94, 0x28, 0x68, 0x82, 0xdb, 0x94,
999613498266Sopenharmony_ci  0xb8, 0x6e, 0x0a, 0xab, 0x5c, 0x54, 0xb5, 0x4b, 0x56, 0x16, 0x14, 0x67,
999713498266Sopenharmony_ci  0x22, 0xf9, 0xb3, 0xd3, 0xc2, 0x83, 0xb4, 0x04, 0x7a, 0xd2, 0xe5, 0x40,
999813498266Sopenharmony_ci  0xe6, 0x88, 0x6d, 0xb2, 0x13, 0x81, 0xda, 0x2f, 0xd1, 0x53, 0x2f, 0x6a,
999913498266Sopenharmony_ci  0x79, 0x73, 0x90, 0x15, 0xeb, 0x9e, 0x1e, 0x0e, 0x0a, 0x0e, 0x7a, 0x5e,
1000013498266Sopenharmony_ci  0xa0, 0xf1, 0x23, 0x23, 0x51, 0x10, 0xd3, 0x4d, 0x1d, 0x49, 0x81, 0x60,
1000113498266Sopenharmony_ci  0xf4, 0xb0, 0xca, 0xee, 0xa2, 0x24, 0x9b, 0x1a, 0xad, 0x07, 0x17, 0x64,
1000213498266Sopenharmony_ci  0xef, 0x2a, 0xeb, 0xca, 0x08, 0x4c, 0x24, 0xdd, 0x37, 0x54, 0x76, 0x7c,
1000313498266Sopenharmony_ci  0x15, 0xf1, 0x0d, 0xfb, 0x78, 0xb6, 0x11, 0x17, 0x07, 0x0f, 0x22, 0x05,
1000413498266Sopenharmony_ci  0x0a, 0x30, 0x17, 0xf2, 0x47, 0x67, 0xd2, 0x31, 0x14, 0x31, 0x95, 0x2e,
1000513498266Sopenharmony_ci  0x52, 0x62, 0x0f, 0x0c, 0x10, 0x5a, 0x33, 0xd2, 0x4e, 0x26, 0x25, 0xb5,
1000613498266Sopenharmony_ci  0x34, 0xb4, 0x91, 0x44, 0x6f, 0x38, 0x14, 0xed, 0x28, 0xeb, 0xac, 0x06,
1000713498266Sopenharmony_ci  0x72, 0xe5, 0xcb, 0x62, 0xa4, 0xb9, 0xb5, 0xee, 0xb6, 0xf6, 0x68, 0x4b,
1000813498266Sopenharmony_ci  0x30, 0xe9, 0xa3, 0xd7, 0xda, 0x13, 0x0a, 0xd3, 0x68, 0x35, 0x87, 0xf3,
1000913498266Sopenharmony_ci  0xa1, 0xa3, 0x01, 0xab, 0x46, 0x32, 0xf7, 0x95, 0x55, 0x4d, 0x68, 0x89,
1001013498266Sopenharmony_ci  0x06, 0x54, 0xe0, 0xb4, 0xa2, 0xc3, 0xcd, 0x1f, 0x82, 0x2a, 0x80, 0x16,
1001113498266Sopenharmony_ci  0x4c, 0x74, 0x39, 0x79, 0xde, 0x77, 0xea, 0x9b, 0xdc, 0x4e, 0x28, 0xc3,
1001213498266Sopenharmony_ci  0x57, 0xf6, 0x33, 0x1c, 0xcf, 0x5e, 0x83, 0xb0, 0xb1, 0x1d, 0x62, 0x5c,
1001313498266Sopenharmony_ci  0x83, 0x3a, 0x1d, 0x9d, 0x6f, 0x52, 0xac, 0xa6, 0x17, 0xd9, 0x96, 0x8f,
1001413498266Sopenharmony_ci  0xd2, 0x4d, 0x7c, 0x41, 0x99, 0xdb, 0xe6, 0x9f, 0xa4, 0x87, 0xf8, 0xa2,
1001513498266Sopenharmony_ci  0x8a, 0x4d, 0xc3, 0xc1, 0x5c, 0x92, 0x06, 0x13, 0x58, 0xad, 0xd8, 0xcd,
1001613498266Sopenharmony_ci  0x9d, 0xe4, 0x92, 0x78, 0x4c, 0xa8, 0x75, 0xa9, 0x29, 0x0b, 0xea, 0xbe,
1001713498266Sopenharmony_ci  0xdc, 0x6c, 0xf6, 0x22, 0xc9, 0x78, 0xaf, 0x19, 0x8b, 0x30, 0x5f, 0x24,
1001813498266Sopenharmony_ci  0xd3, 0x06, 0x2c, 0x56, 0x33, 0xd2, 0xf6, 0x01, 0xc9, 0xdb, 0xf3, 0x8b,
1001913498266Sopenharmony_ci  0x07, 0x4b, 0xbc, 0x58, 0xb5, 0x17, 0x72, 0xd4, 0x02, 0xfa, 0x23, 0x9f,
1002013498266Sopenharmony_ci  0x08, 0x51, 0x23, 0x2a, 0x8d, 0x94, 0x1d, 0xd1, 0xa9, 0x01, 0xf5, 0x1b,
1002113498266Sopenharmony_ci  0x31, 0x03, 0xca, 0xbb, 0xd1, 0x4d, 0x88, 0xc8, 0x76, 0xcb, 0x2d, 0x3f,
1002213498266Sopenharmony_ci  0x30, 0xcc, 0x7b, 0xf0, 0x95, 0x50, 0xb3, 0xb7, 0x74, 0x22, 0x37, 0x9d,
1002313498266Sopenharmony_ci  0x25, 0xab, 0xc7, 0xd9, 0xa2, 0x73, 0xf7, 0x91, 0x6c, 0x81, 0x9b, 0x58,
1002413498266Sopenharmony_ci  0x66, 0x3e, 0x5b, 0x75, 0x5b, 0x1e, 0xdd, 0xc7, 0xb6, 0x3c, 0xb8, 0x6e,
1002513498266Sopenharmony_ci  0x5b, 0x1e, 0xdd, 0xcf, 0xb6, 0x3c, 0xba, 0x0b, 0x0f, 0x56, 0xc8, 0xcf,
1002613498266Sopenharmony_ci  0xe4, 0xf8, 0x95, 0x3a, 0xb7, 0xc5, 0x9c, 0x0c, 0x57, 0x4c, 0xfc, 0xad,
1002713498266Sopenharmony_ci  0x82, 0x56, 0xf6, 0x91, 0xd1, 0x75, 0xc3, 0x71, 0x52, 0xe1, 0x79, 0xe2,
1002813498266Sopenharmony_ci  0x7d, 0x56, 0x2f, 0xfa, 0xdb, 0xc9, 0xd1, 0x1b, 0xc1, 0x2e, 0x47, 0x19,
1002913498266Sopenharmony_ci  0xa9, 0x89, 0xba, 0x5e, 0x04, 0x2c, 0x10, 0x4e, 0x1e, 0xc3, 0x40, 0xfb,
1003013498266Sopenharmony_ci  0x35, 0x35, 0xc1, 0x12, 0xbc, 0x79, 0xcb, 0x7a, 0x84, 0xa2, 0x3f, 0x49,
1003113498266Sopenharmony_ci  0x05, 0x73, 0x17, 0x7c, 0x80, 0xa0, 0x19, 0x3c, 0x5b, 0x74, 0x99, 0x9a,
1003213498266Sopenharmony_ci  0x7c, 0x64, 0x4f, 0x0e, 0x12, 0xb4, 0xee, 0x9f, 0x93, 0xf2, 0xec, 0xd7,
1003313498266Sopenharmony_ci  0xae, 0xc4, 0xf4, 0x9e, 0x7a, 0x89, 0x4e, 0xaf, 0xe6, 0xe9, 0x1e, 0x22,
1003413498266Sopenharmony_ci  0xad, 0x4f, 0xc5, 0xde, 0xb2, 0x89, 0x83, 0xeb, 0x75, 0xbe, 0x77, 0x40,
1003513498266Sopenharmony_ci  0x78, 0x88, 0xa1, 0x37, 0xc2, 0x12, 0x11, 0x67, 0x23, 0x35, 0xcc, 0x87,
1003613498266Sopenharmony_ci  0xe6, 0x8a, 0x21, 0x14, 0x12, 0xe2, 0x63, 0x06, 0x79, 0x7e, 0x84, 0xbb,
1003713498266Sopenharmony_ci  0x49, 0xeb, 0xeb, 0x81, 0x6c, 0x3a, 0xb1, 0xc0, 0x57, 0xa0, 0xf2, 0x7c,
1003813498266Sopenharmony_ci  0xc4, 0xe7, 0xc5, 0xe7, 0xd5, 0x25, 0xc2, 0x32, 0x6a, 0xb2, 0x81, 0x52,
1003913498266Sopenharmony_ci  0x30, 0x97, 0x31, 0xe3, 0x81, 0x47, 0xdf, 0xf4, 0x15, 0x2a, 0xaa, 0x6e,
1004013498266Sopenharmony_ci  0xe2, 0x70, 0x27, 0x21, 0x34, 0x33, 0xc9, 0x4e, 0x43, 0xc5, 0x8f, 0x20,
1004113498266Sopenharmony_ci  0x3e, 0x6c, 0xbb, 0x68, 0x9a, 0xe8, 0x47, 0x74, 0xff, 0x4a, 0xa5, 0xec,
1004213498266Sopenharmony_ci  0x71, 0x52, 0x9d, 0x47, 0xeb, 0xf1, 0x46, 0x18, 0x97, 0x89, 0x6a, 0x2c,
1004313498266Sopenharmony_ci  0xea, 0x49, 0x37, 0x70, 0x21, 0xa6, 0x29, 0xc5, 0x09, 0x39, 0x2e, 0x38,
1004413498266Sopenharmony_ci  0xfb, 0xce, 0x7e, 0x91, 0x74, 0x66, 0xee, 0x8d, 0xa3, 0xb5, 0x49, 0x51,
1004513498266Sopenharmony_ci  0x0c, 0x93, 0x72, 0x4d, 0x10, 0x8f, 0x08, 0x83, 0x46, 0x8a, 0x5f, 0xab,
1004613498266Sopenharmony_ci  0xdd, 0x82, 0xc8, 0xee, 0x1b, 0x7e, 0x2e, 0x12, 0x37, 0x5d, 0xe6, 0x41,
1004713498266Sopenharmony_ci  0x8e, 0xb3, 0xd2, 0xd2, 0x35, 0xac, 0x3e, 0xb1, 0x26, 0x6d, 0x2b, 0xee,
1004813498266Sopenharmony_ci  0x4e, 0xe9, 0x6a, 0x65, 0x74, 0xcd, 0xd8, 0x24, 0x4d, 0x91, 0x68, 0xa3,
1004913498266Sopenharmony_ci  0x54, 0x03, 0x17, 0x08, 0x79, 0xca, 0xcd, 0xa7, 0x0a, 0x79, 0x5d, 0x80,
1005013498266Sopenharmony_ci  0x05, 0x66, 0xec, 0x92, 0xe7, 0xc1, 0xcc, 0x33, 0x84, 0xc6, 0x24, 0x59,
1005113498266Sopenharmony_ci  0x7b, 0x04, 0x8d, 0xc1, 0x25, 0xcb, 0xe0, 0x42, 0x12, 0x90, 0x62, 0xca,
1005213498266Sopenharmony_ci  0xe5, 0xc2, 0xf4, 0x63, 0xdf, 0xe6, 0x95, 0x2a, 0x12, 0x62, 0x10, 0x36,
1005313498266Sopenharmony_ci  0x5a, 0x5d, 0x26, 0xee, 0x14, 0xaa, 0xd4, 0xe6, 0x84, 0x49, 0x59, 0xde,
1005413498266Sopenharmony_ci  0x71, 0xaa, 0xc6, 0x20, 0x07, 0xb9, 0xad, 0x2d, 0x36, 0xe3, 0xcc, 0xf1,
1005513498266Sopenharmony_ci  0xba, 0xf6, 0xcf, 0x27, 0x2d, 0xde, 0xfd, 0x61, 0x43, 0x70, 0xfb, 0x6b,
1005613498266Sopenharmony_ci  0xff, 0x8a, 0x7a, 0xe3, 0x32, 0xcb, 0x3f, 0xf4, 0xf6, 0xa2, 0xde, 0xa8,
1005713498266Sopenharmony_ci  0x00, 0xae, 0xdd, 0x8b, 0xfe, 0xbd, 0xb6, 0x42, 0xed, 0x80, 0x76, 0x2b,
1005813498266Sopenharmony_ci  0x6b, 0xe6, 0xb3, 0x4f, 0x68, 0xef, 0x1b, 0x44, 0x6a, 0x4b, 0xd0, 0x8e,
1005913498266Sopenharmony_ci  0xb8, 0xea, 0x8b, 0x71, 0x50, 0x8e, 0xda, 0x8f, 0xf0, 0xdb, 0x90, 0x71,
1006013498266Sopenharmony_ci  0xa3, 0x71, 0xc1, 0xbb, 0x75, 0x37, 0xa4, 0xda, 0x1f, 0x7e, 0x52, 0x26,
1006113498266Sopenharmony_ci  0x97, 0x9d, 0xf7, 0x7c, 0x67, 0xda, 0x06, 0x5e, 0x27, 0x16, 0x98, 0x8e,
1006213498266Sopenharmony_ci  0x5a, 0x33, 0x98, 0x8f, 0x1a, 0x88, 0x75, 0x4a, 0xa1, 0xa5, 0x0c, 0x00,
1006313498266Sopenharmony_ci  0x17, 0xb3, 0x4f, 0xbb, 0xd9, 0x9c, 0x9b, 0xf7, 0xdb, 0x84, 0x36, 0xfd,
1006413498266Sopenharmony_ci  0x0d, 0xdb, 0xfa, 0x6d, 0x91, 0x7f, 0x88, 0xe1, 0xd6, 0x47, 0x77, 0x65,
1006513498266Sopenharmony_ci  0x2c, 0x8e, 0xce, 0x25, 0x45, 0x4a, 0x24, 0x84, 0xc7, 0x64, 0xbc, 0xd2,
1006613498266Sopenharmony_ci  0xe9, 0x95, 0xd7, 0x94, 0x75, 0x70, 0x90, 0x90, 0xe6, 0xef, 0x76, 0x85,
1006713498266Sopenharmony_ci  0xad, 0x89, 0xa7, 0x09, 0xcb, 0xb7, 0x57, 0x23, 0xcc, 0x89, 0xc0, 0xa4,
1006813498266Sopenharmony_ci  0xca, 0x9e, 0x8c, 0x44, 0x9b, 0xec, 0xc9, 0xa2, 0xb9, 0x00, 0x72, 0x41,
1006913498266Sopenharmony_ci  0xf7, 0x37, 0x9d, 0x02, 0x32, 0x54, 0xe4, 0xe9, 0x65, 0xa4, 0xad, 0x60,
1007013498266Sopenharmony_ci  0x78, 0x0f, 0x72, 0x66, 0xaa, 0x3b, 0x72, 0x35, 0xcf, 0x50, 0x23, 0x1c,
1007113498266Sopenharmony_ci  0x96, 0xc5, 0x65, 0x85, 0x27, 0x4f, 0xfa, 0xf5, 0x30, 0x49, 0x1b, 0x03,
1007213498266Sopenharmony_ci  0x10, 0x7c, 0x19, 0x04, 0xbb, 0x22, 0x36, 0x30, 0x2d, 0xf0, 0x14, 0x61,
1007313498266Sopenharmony_ci  0x24, 0xc1, 0x52, 0xd9, 0x26, 0xb4, 0xaa, 0xd7, 0xc8, 0x3a, 0x7e, 0xa0,
1007413498266Sopenharmony_ci  0xd2, 0x75, 0x4e, 0xfd, 0x50, 0x27, 0xab, 0x4a, 0x4b, 0xc1, 0x81, 0xc6,
1007513498266Sopenharmony_ci  0x43, 0x9d, 0xfe, 0xea, 0xc9, 0xa3, 0x43, 0x2e, 0xa1, 0x80, 0x6f, 0x33,
1007613498266Sopenharmony_ci  0xc5, 0x8e, 0xec, 0x07, 0xf1, 0x6f, 0x89, 0x0b, 0x9b, 0x12, 0x7f, 0x48,
1007713498266Sopenharmony_ci  0xe1, 0x84, 0x4e, 0x81, 0x5a, 0x18, 0xf7, 0x7c, 0xbf, 0xa3, 0x6a, 0xc2,
1007813498266Sopenharmony_ci  0x69, 0x9b, 0x45, 0x92, 0x17, 0x83, 0x32, 0x95, 0x5d, 0xff, 0x25, 0x19,
1007913498266Sopenharmony_ci  0x4f, 0x99, 0x26, 0xa9, 0x4a, 0x6f, 0x86, 0x79, 0xc1, 0x5d, 0xac, 0xd9,
1008013498266Sopenharmony_ci  0xa0, 0xd4, 0x46, 0x66, 0x10, 0xe4, 0x92, 0x1f, 0x5a, 0x5f, 0x0b, 0x77,
1008113498266Sopenharmony_ci  0xa1, 0x40, 0xd5, 0x36, 0x53, 0xba, 0xd5, 0x9c, 0x7d, 0x9f, 0x5f, 0x27,
1008213498266Sopenharmony_ci  0xc8, 0xc6, 0xac, 0x72, 0xf0, 0xed, 0x99, 0x42, 0xf1, 0x89, 0xc2, 0x58,
1008313498266Sopenharmony_ci  0xc1, 0x11, 0x6a, 0xe8, 0x0a, 0x2e, 0xc0, 0x99, 0x0f, 0x68, 0x0e, 0x0a,
1008413498266Sopenharmony_ci  0xaa, 0xda, 0xd0, 0x7a, 0xa7, 0x4f, 0x8f, 0xdf, 0x7f, 0x7f, 0x78, 0x78,
1008513498266Sopenharmony_ci  0xfc, 0xf2, 0xd9, 0xab, 0xc3, 0x1e, 0x0d, 0xcc, 0x7e, 0xf4, 0xe6, 0xf4,
1008613498266Sopenharmony_ci  0x87, 0x57, 0x3d, 0x98, 0x48, 0x31, 0xfa, 0x80, 0x2a, 0xa5, 0x08, 0x69,
1008713498266Sopenharmony_ci  0xed, 0xb3, 0x8b, 0xda, 0x38, 0xcd, 0x93, 0x6c, 0xbd, 0x7d, 0xac, 0x08,
1008813498266Sopenharmony_ci  0x8c, 0xc6, 0xbe, 0x83, 0x97, 0x3f, 0xf5, 0xa3, 0x17, 0xc7, 0xf1, 0xbb,
1008913498266Sopenharmony_ci  0x9f, 0x4c, 0x8c, 0xc2, 0x06, 0x50, 0xdb, 0xf7, 0x66, 0x32, 0x61, 0x28,
1009013498266Sopenharmony_ci  0x45, 0x49, 0x47, 0xc0, 0x82, 0xb7, 0x5c, 0x5a, 0x02, 0x0b, 0xe1, 0xa5,
1009113498266Sopenharmony_ci  0x35, 0xd5, 0xc7, 0x2e, 0x8b, 0x0f, 0x69, 0xae, 0xb5, 0x03, 0x08, 0xf2,
1009213498266Sopenharmony_ci  0x8d, 0x77, 0xc0, 0x6e, 0x51, 0x35, 0x08, 0x5c, 0x84, 0x8d, 0xca, 0x12,
1009313498266Sopenharmony_ci  0x24, 0xa6, 0xb5, 0x57, 0xd4, 0xc4, 0xef, 0xa4, 0xa3, 0x69, 0x62, 0xd6,
1009413498266Sopenharmony_ci  0xa6, 0xab, 0x26, 0x78, 0x91, 0x73, 0x11, 0x36, 0x98, 0xc0, 0xd1, 0x09,
1009513498266Sopenharmony_ci  0xbc, 0x43, 0x68, 0x9d, 0x02, 0xe0, 0x43, 0x82, 0xdc, 0x6c, 0x46, 0x0a,
1009613498266Sopenharmony_ci  0xce, 0x97, 0x28, 0x47, 0x6d, 0x6f, 0x0d, 0xa2, 0xe5, 0x5e, 0x6a, 0xaf,
1009713498266Sopenharmony_ci  0xd8, 0x23, 0x1d, 0xbd, 0x0f, 0xed, 0x75, 0x0a, 0x56, 0x28, 0xca, 0x1d,
1009813498266Sopenharmony_ci  0xe0, 0x1a, 0x8a, 0x4d, 0x61, 0x1a, 0x76, 0xcb, 0x25, 0x3c, 0xda, 0x8a,
1009913498266Sopenharmony_ci  0xb4, 0x94, 0x46, 0xd8, 0x66, 0xde, 0x3a, 0x23, 0x4d, 0x58, 0x6d, 0xaf,
1010013498266Sopenharmony_ci  0xd8, 0xc1, 0x7d, 0x01, 0x6b, 0xb7, 0x46, 0xb1, 0xb3, 0xaa, 0xfd, 0xbc,
1010113498266Sopenharmony_ci  0xb1, 0x64, 0xc4, 0x16, 0x1a, 0x25, 0x0f, 0x9a, 0x4c, 0xe1, 0x2a, 0xae,
1010213498266Sopenharmony_ci  0x41, 0x57, 0x88, 0xf6, 0xf1, 0xe7, 0xd7, 0x81, 0xb8, 0x86, 0x0d, 0x0c,
1010313498266Sopenharmony_ci  0x4b, 0xb9, 0x40, 0xbf, 0x34, 0x3c, 0xcb, 0x22, 0x33, 0x3e, 0x3a, 0x68,
1010413498266Sopenharmony_ci  0x19, 0xd9, 0xa9, 0x11, 0x02, 0x0b, 0xa5, 0x46, 0x69, 0xd9, 0x3c, 0x7c,
1010513498266Sopenharmony_ci  0x6c, 0x5e, 0xc6, 0xb9, 0xb4, 0x47, 0x0d, 0xc2, 0x1a, 0x0d, 0xa2, 0x67,
1010613498266Sopenharmony_ci  0x87, 0x6f, 0xfb, 0xd1, 0xf1, 0xe1, 0x6b, 0xd6, 0x6f, 0x0f, 0xdf, 0x7c,
1010713498266Sopenharmony_ci  0xc7, 0x18, 0x66, 0x1c, 0x8b, 0x88, 0xd7, 0x09, 0xec, 0x4e, 0xde, 0x61,
1010813498266Sopenharmony_ci  0x9d, 0xa7, 0xfd, 0x86, 0x77, 0x49, 0xcf, 0xa8, 0xaa, 0xc5, 0x2c, 0x4c,
1010913498266Sopenharmony_ci  0x1e, 0xce, 0x54, 0xef, 0xb5, 0x48, 0x72, 0xf7, 0x9e, 0x4a, 0xef, 0x30,
1011013498266Sopenharmony_ci  0x57, 0x59, 0x22, 0xd2, 0xa4, 0x56, 0xdb, 0x59, 0x44, 0x8e, 0x69, 0xee,
1011113498266Sopenharmony_ci  0x5e, 0xb4, 0x0f, 0x3f, 0xbe, 0x0e, 0xc6, 0xa3, 0x9c, 0xbc, 0x08, 0xec,
1011213498266Sopenharmony_ci  0x9d, 0xb8, 0xeb, 0x1a, 0x10, 0xac, 0xb2, 0x1a, 0xbc, 0x7d, 0x73, 0x3f,
1011313498266Sopenharmony_ci  0x12, 0xc3, 0xee, 0x56, 0x26, 0x01, 0x1e, 0x26, 0x9a, 0x98, 0xd1, 0x13,
1011413498266Sopenharmony_ci  0x29, 0x4e, 0xe0, 0x04, 0x64, 0xe6, 0x8c, 0xf6, 0xa9, 0x0d, 0x21, 0xe5,
1011513498266Sopenharmony_ci  0xd9, 0x13, 0x33, 0x03, 0x78, 0x63, 0x51, 0xd7, 0x50, 0x70, 0x1e, 0x67,
1011613498266Sopenharmony_ci  0x63, 0xca, 0x73, 0xa3, 0xa0, 0x25, 0xaa, 0xbf, 0x80, 0xe6, 0x45, 0x74,
1011713498266Sopenharmony_ci  0x86, 0x54, 0xd5, 0xf9, 0x66, 0x36, 0x7e, 0x5f, 0x56, 0x89, 0x8f, 0x5c,
1011813498266Sopenharmony_ci  0x68, 0xbf, 0x1e, 0xe3, 0xd7, 0x51, 0x6f, 0x60, 0x1e, 0x95, 0xdf, 0xf1,
1011913498266Sopenharmony_ci  0xf3, 0x6e, 0x4c, 0x91, 0x4c, 0xa3, 0x0a, 0xb5, 0x24, 0xcb, 0x11, 0x70,
1012013498266Sopenharmony_ci  0xb1, 0x93, 0x93, 0x57, 0x18, 0x77, 0x58, 0x26, 0x18, 0x37, 0xa0, 0x77,
1012113498266Sopenharmony_ci  0x54, 0x9a, 0x9f, 0xa1, 0xfd, 0x7b, 0xfe, 0x61, 0x54, 0x6d, 0x6f, 0xfb,
1012213498266Sopenharmony_ci  0x06, 0x45, 0x13, 0x9c, 0x6e, 0xaa, 0xeb, 0x1c, 0x7f, 0xff, 0xf4, 0xe4,
1012313498266Sopenharmony_ci  0x4f, 0xdb, 0xdb, 0x54, 0xd8, 0x69, 0x1d, 0x0b, 0xce, 0x3c, 0x7e, 0xb8,
1012413498266Sopenharmony_ci  0xbd, 0xb3, 0x11, 0x72, 0x54, 0x7a, 0xb8, 0xb7, 0x5c, 0xad, 0xdc, 0xd9,
1012513498266Sopenharmony_ci  0x3e, 0x02, 0xd6, 0x93, 0x02, 0x72, 0xa6, 0xe1, 0x71, 0x8a, 0x98, 0xee,
1012613498266Sopenharmony_ci  0x5c, 0xa9, 0x5c, 0x90, 0xa9, 0x08, 0xec, 0xde, 0x63, 0xd6, 0xf4, 0x15,
1012713498266Sopenharmony_ci  0x87, 0x7e, 0xf5, 0x78, 0xfc, 0x88, 0xed, 0x48, 0x81, 0xac, 0x5a, 0x0d,
1012813498266Sopenharmony_ci  0x0b, 0xcf, 0x66, 0xc2, 0x51, 0x18, 0xce, 0xb8, 0xe9, 0xf0, 0xb5, 0x35,
1012913498266Sopenharmony_ci  0x67, 0x77, 0x5e, 0x0d, 0xb4, 0xb3, 0x5a, 0x04, 0x38, 0xa4, 0x4e, 0x59,
1013013498266Sopenharmony_ci  0xad, 0x46, 0xf2, 0x34, 0x9d, 0x2b, 0x2f, 0x52, 0x4d, 0x46, 0xd4, 0x23,
1013113498266Sopenharmony_ci  0xef, 0x17, 0x46, 0xed, 0x71, 0x24, 0x9a, 0x39, 0xa5, 0xba, 0xfe, 0xce,
1013213498266Sopenharmony_ci  0x31, 0xb2, 0x82, 0xbd, 0xcf, 0x7c, 0xe1, 0xd5, 0x1e, 0x30, 0x91, 0x1e,
1013313498266Sopenharmony_ci  0x93, 0x63, 0xab, 0xb1, 0x20, 0xfc, 0x59, 0x90, 0x0c, 0x4e, 0xd8, 0xa5,
1013413498266Sopenharmony_ci  0x4f, 0x18, 0x91, 0x14, 0x14, 0x8d, 0x54, 0xae, 0xf5, 0x41, 0x69, 0xa2,
1013513498266Sopenharmony_ci  0x4b, 0x04, 0x6e, 0x74, 0x97, 0x50, 0x04, 0x27, 0x87, 0x3e, 0xe1, 0x81,
1013613498266Sopenharmony_ci  0xb4, 0x21, 0x1d, 0xeb, 0x92, 0xcb, 0x98, 0xd6, 0xa3, 0x0d, 0x94, 0xb9,
1013713498266Sopenharmony_ci  0x31, 0x26, 0x50, 0x41, 0x94, 0x3c, 0xfd, 0x84, 0x1c, 0x12, 0xa2, 0x02,
1013813498266Sopenharmony_ci  0x5b, 0x6a, 0x60, 0x47, 0xb4, 0xd4, 0x6c, 0x6e, 0x87, 0x0c, 0xc1, 0x03,
1013913498266Sopenharmony_ci  0x30, 0x4e, 0xf8, 0xc3, 0xab, 0x39, 0xc9, 0x1b, 0xb7, 0xc3, 0xbc, 0xc0,
1014013498266Sopenharmony_ci  0x41, 0xb6, 0x6a, 0x45, 0x2d, 0x75, 0x72, 0xd0, 0x95, 0x7d, 0xc9, 0xb7,
1014113498266Sopenharmony_ci  0x62, 0x96, 0x14, 0x03, 0xe1, 0x86, 0x44, 0x7d, 0x0a, 0xc3, 0x64, 0x7a,
1014213498266Sopenharmony_ci  0xa1, 0x6b, 0xf0, 0xb0, 0x2f, 0x8d, 0x37, 0x98, 0x68, 0x39, 0x8c, 0xf6,
1014313498266Sopenharmony_ci  0x09, 0xff, 0x3b, 0x5c, 0xf4, 0xf8, 0x90, 0xc0, 0x97, 0x40, 0x58, 0x2b,
1014413498266Sopenharmony_ci  0x41, 0x70, 0x2a, 0xaa, 0x56, 0xe5, 0x4f, 0x8d, 0x9b, 0xe1, 0x1a, 0x26,
1014513498266Sopenharmony_ci  0xd4, 0x0c, 0x23, 0x24, 0xfb, 0x0e, 0x37, 0x0a, 0xb1, 0x10, 0x6a, 0xb6,
1014613498266Sopenharmony_ci  0x10, 0xaa, 0x02, 0xcc, 0xbd, 0x46, 0x25, 0x48, 0xd7, 0xfa, 0xd1, 0x1a,
1014713498266Sopenharmony_ci  0xe2, 0xec, 0xe2, 0xbf, 0x54, 0x19, 0x6d, 0xcc, 0xee, 0xaf, 0xb5, 0xbe,
1014813498266Sopenharmony_ci  0xbf, 0x95, 0x6b, 0x42, 0x0e, 0x6b, 0x18, 0x16, 0x26, 0x56, 0x2e, 0x72,
1014913498266Sopenharmony_ci  0x82, 0x2d, 0x08, 0xf3, 0x35, 0x92, 0xc1, 0x68, 0x92, 0x2b, 0xf2, 0x65,
1015013498266Sopenharmony_ci  0xe9, 0x8b, 0x6c, 0x8f, 0xfd, 0xae, 0xe6, 0x96, 0x09, 0x59, 0xbc, 0x5a,
1015113498266Sopenharmony_ci  0x7f, 0x08, 0x0d, 0x60, 0x47, 0x52, 0x96, 0x75, 0x15, 0x10, 0xae, 0x71,
1015213498266Sopenharmony_ci  0x8a, 0x65, 0xf9, 0xcc, 0xce, 0x70, 0x65, 0x50, 0x69, 0xce, 0x4f, 0x8f,
1015313498266Sopenharmony_ci  0xb8, 0x75, 0x7e, 0x84, 0x52, 0x83, 0x4b, 0x48, 0xfa, 0xc2, 0x7e, 0x08,
1015413498266Sopenharmony_ci  0xe1, 0xff, 0x80, 0x8a, 0x5e, 0xb6, 0x70, 0x91, 0x18, 0x90, 0x0b, 0x4b,
1015513498266Sopenharmony_ci  0x86, 0x8e, 0xd9, 0x86, 0xe1, 0xa1, 0x53, 0xf2, 0xdd, 0xe3, 0xdb, 0x1a,
1015613498266Sopenharmony_ci  0x31, 0x83, 0x48, 0xfa, 0x8b, 0xd9, 0xb7, 0xf8, 0x34, 0xe2, 0x48, 0x40,
1015713498266Sopenharmony_ci  0xaa, 0x2d, 0x68, 0x6a, 0x2e, 0x89, 0xf1, 0x4c, 0x4c, 0x9d, 0x1c, 0x1b,
1015813498266Sopenharmony_ci  0x19, 0x40, 0x76, 0xa3, 0xcb, 0x0d, 0x16, 0x07, 0x76, 0x2c, 0xe5, 0xc2,
1015913498266Sopenharmony_ci  0x48, 0x97, 0xe2, 0x17, 0x2e, 0x75, 0x38, 0xb1, 0x80, 0x65, 0x6a, 0x58,
1016013498266Sopenharmony_ci  0x11, 0xb6, 0xf2, 0x1f, 0xd7, 0x54, 0x7f, 0x17, 0x70, 0x7d, 0x85, 0x93,
1016113498266Sopenharmony_ci  0x63, 0xdf, 0x68, 0x6a, 0x03, 0x5b, 0x8d, 0xe5, 0x5d, 0xf1, 0x99, 0x03,
1016213498266Sopenharmony_ci  0xc0, 0x5a, 0x05, 0x29, 0x01, 0xa0, 0xb7, 0x77, 0x88, 0xec, 0xba, 0xea,
1016313498266Sopenharmony_ci  0x37, 0x2e, 0x81, 0x73, 0x97, 0x61, 0x2e, 0xa6, 0x3a, 0x1b, 0xd5, 0x76,
1016413498266Sopenharmony_ci  0x19, 0x8c, 0xee, 0x24, 0xd2, 0x38, 0xa6, 0x02, 0x4e, 0x31, 0xc9, 0x57,
1016513498266Sopenharmony_ci  0xfb, 0xb0, 0x46, 0xe9, 0xf8, 0xeb, 0x0e, 0x90, 0x2f, 0xae, 0x62, 0xf0,
1016613498266Sopenharmony_ci  0x31, 0x9b, 0x2d, 0x66, 0x36, 0xd0, 0x90, 0xde, 0x43, 0x46, 0x60, 0xed,
1016713498266Sopenharmony_ci  0xd1, 0x9a, 0xec, 0x85, 0x50, 0xbf, 0x81, 0x42, 0xc4, 0x54, 0x6f, 0x48,
1016813498266Sopenharmony_ci  0xf3, 0x35, 0x58, 0x23, 0x67, 0x13, 0x57, 0x25, 0x06, 0x21, 0x45, 0x10,
1016913498266Sopenharmony_ci  0xe4, 0xa3, 0x8c, 0x79, 0x2d, 0x6c, 0x00, 0xe7, 0x10, 0xa9, 0xc4, 0x8b,
1017013498266Sopenharmony_ci  0xf3, 0xe2, 0xfa, 0x53, 0xd1, 0x3c, 0x9b, 0x6b, 0x0a, 0x23, 0x8d, 0x87,
1017113498266Sopenharmony_ci  0x03, 0xc3, 0x30, 0xe0, 0x9f, 0x08, 0xcb, 0x8c, 0x18, 0xc9, 0x42, 0x9c,
1017213498266Sopenharmony_ci  0x63, 0xf8, 0x85, 0xcf, 0x36, 0xb1, 0x7a, 0xf3, 0x10, 0xda, 0xb9, 0xcc,
1017313498266Sopenharmony_ci  0xc6, 0xf5, 0xf9, 0x00, 0xc3, 0xee, 0x29, 0xf8, 0x26, 0xab, 0x29, 0x9f,
1017413498266Sopenharmony_ci  0x8c, 0xeb, 0x1e, 0x20, 0x62, 0xbd, 0x57, 0x16, 0x77, 0x98, 0x06, 0xcd,
1017513498266Sopenharmony_ci  0xc1, 0x6c, 0x33, 0xa3, 0xa5, 0x8d, 0xd8, 0x87, 0x8e, 0x38, 0xf2, 0x24,
1017613498266Sopenharmony_ci  0x5a, 0x51, 0x9e, 0xcc, 0x26, 0x6b, 0x89, 0x7d, 0x05, 0x5a, 0x4c, 0xe0,
1017713498266Sopenharmony_ci  0xdc, 0x4f, 0x26, 0xd9, 0xc7, 0x80, 0x2e, 0xa0, 0xc5, 0x6c, 0x07, 0xe6,
1017813498266Sopenharmony_ci  0x8c, 0xe3, 0x61, 0x5c, 0xfb, 0xb0, 0x86, 0xd2, 0xc2, 0xda, 0xf7, 0x6b,
1017913498266Sopenharmony_ci  0xe8, 0xcf, 0xcf, 0xc5, 0x8a, 0x22, 0xba, 0x37, 0xf0, 0x93, 0x0f, 0x19,
1018013498266Sopenharmony_ci  0x9c, 0x0c, 0xec, 0xc9, 0xe3, 0xc2, 0x33, 0x7e, 0xf1, 0xf5, 0x9a, 0x35,
1018113498266Sopenharmony_ci  0xd9, 0xcd, 0x80, 0xa1, 0xf1, 0xc3, 0xa8, 0x6b, 0xc1, 0x39, 0x5e, 0x3b,
1018213498266Sopenharmony_ci  0xe3, 0x87, 0xbe, 0xd3, 0x87, 0x08, 0xbd, 0xbd, 0x3b, 0xeb, 0x87, 0x27,
1018313498266Sopenharmony_ci  0xcd, 0x53, 0x80, 0xa7, 0xd7, 0x3f, 0xf4, 0x23, 0x50, 0xb5, 0xbe, 0xeb,
1018413498266Sopenharmony_ci  0x47, 0xa7, 0xa0, 0x39, 0x6d, 0x90, 0xae, 0xb5, 0xbd, 0xb5, 0xf3, 0x00,
1018513498266Sopenharmony_ci  0x96, 0x98, 0x70, 0xff, 0x9e, 0x5b, 0xdf, 0x62, 0xab, 0xb9, 0xed, 0x0f,
1018613498266Sopenharmony_ci  0xb8, 0x5c, 0xf8, 0xec, 0xc0, 0x1a, 0xab, 0xb1, 0x08, 0xe1, 0xf7, 0xfd,
1018713498266Sopenharmony_ci  0x68, 0x97, 0x6d, 0xa6, 0xdb, 0xdf, 0x75, 0xd4, 0x6d, 0x04, 0xa2, 0x24,
1018813498266Sopenharmony_ci  0xc2, 0x20, 0xd6, 0x5a, 0x9c, 0x65, 0xa3, 0xc8, 0x58, 0x2e, 0x12, 0x3c,
1018913498266Sopenharmony_ci  0xab, 0x67, 0x2a, 0x86, 0x18, 0xb2, 0xe0, 0xfd, 0xf1, 0xb0, 0x25, 0xf2,
1019013498266Sopenharmony_ci  0xc2, 0xf1, 0x3a, 0x70, 0x7c, 0x78, 0x4d, 0xae, 0xb3, 0x0a, 0x03, 0xa2,
1019113498266Sopenharmony_ci  0x18, 0x2b, 0x22, 0x41, 0x84, 0xbc, 0x8c, 0x53, 0x35, 0xdd, 0x72, 0xe8,
1019213498266Sopenharmony_ci  0x95, 0x2f, 0x68, 0x77, 0x5a, 0x03, 0xa8, 0x86, 0x00, 0x9e, 0x53, 0xa4,
1019313498266Sopenharmony_ci  0x4b, 0x92, 0x3e, 0xff, 0x81, 0xe7, 0x95, 0x46, 0xc5, 0x47, 0xd4, 0x94,
1019413498266Sopenharmony_ci  0xab, 0xe5, 0x92, 0xcc, 0xe2, 0xf0, 0x0d, 0x00, 0xc8, 0xcf, 0xd1, 0x0e,
1019513498266Sopenharmony_ci  0x34, 0x56, 0x20, 0xf7, 0x68, 0x46, 0x01, 0xe7, 0xa3, 0x32, 0x9b, 0x93,
1019613498266Sopenharmony_ci  0x7d, 0x52, 0x96, 0x27, 0x36, 0xcb, 0xc3, 0x99, 0x96, 0x53, 0x50, 0x3c,
1019713498266Sopenharmony_ci  0xe0, 0x54, 0x60, 0xac, 0x40, 0xc0, 0x08, 0xa6, 0xab, 0xe5, 0x0e, 0xc7,
1019813498266Sopenharmony_ci  0x2e, 0x6b, 0xc8, 0x0f, 0x42, 0xd7, 0xb7, 0xc3, 0x5a, 0xee, 0x31, 0x2a,
1019913498266Sopenharmony_ci  0xb0, 0xea, 0xe6, 0x97, 0xa6, 0xfb, 0x6d, 0xa0, 0x9a, 0x15, 0x9c, 0x05,
1020013498266Sopenharmony_ci  0xcd, 0x37, 0xb7, 0x6e, 0xfb, 0xe6, 0xeb, 0x15, 0xe5, 0x47, 0x7c, 0xad,
1020113498266Sopenharmony_ci  0x1f, 0xd8, 0x79, 0x92, 0x2d, 0xae, 0xec, 0xa7, 0x2d, 0xbb, 0xca, 0x94,
1020213498266Sopenharmony_ci  0x90, 0xd0, 0xb3, 0xaa, 0x0e, 0xc2, 0x46, 0x60, 0x44, 0xfd, 0xf1, 0xd1,
1020313498266Sopenharmony_ci  0xf1, 0x2e, 0xc5, 0xd6, 0x6f, 0x88, 0x98, 0x49, 0x06, 0xff, 0xa9, 0x20,
1020413498266Sopenharmony_ci  0x73, 0x4a, 0x7d, 0x26, 0x27, 0x74, 0x9d, 0xd5, 0x6e, 0x2a, 0xb3, 0xec,
1020513498266Sopenharmony_ci  0x5b, 0x58, 0xc9, 0x6f, 0x46, 0xaa, 0x3d, 0x67, 0xbe, 0x62, 0x52, 0x92,
1020613498266Sopenharmony_ci  0x8d, 0xd9, 0x4a, 0xe9, 0x9e, 0x25, 0x6f, 0xba, 0xe5, 0xde, 0x22, 0xfe,
1020713498266Sopenharmony_ci  0x54, 0x9e, 0x7f, 0x0b, 0x6f, 0x8d, 0x8a, 0x6f, 0x8c, 0x19, 0xdc, 0xc8,
1020813498266Sopenharmony_ci  0x70, 0xe9, 0xc7, 0x54, 0xbe, 0x39, 0x52, 0x3b, 0x20, 0xe3, 0x34, 0x62,
1020913498266Sopenharmony_ci  0xad, 0xa9, 0xd6, 0x20, 0x19, 0xa0, 0x2f, 0x20, 0x59, 0x48, 0xbd, 0x64,
1021013498266Sopenharmony_ci  0xfb, 0x20, 0x25, 0x4d, 0x19, 0x89, 0x00, 0xcf, 0x57, 0x62, 0xd1, 0x9a,
1021113498266Sopenharmony_ci  0x28, 0x12, 0x90, 0x42, 0x21, 0x27, 0x3e, 0x38, 0xf6, 0x2c, 0x41, 0x33,
1021213498266Sopenharmony_ci  0xfd, 0x8f, 0x12, 0x53, 0x95, 0xca, 0x75, 0x82, 0x8b, 0xd3, 0x30, 0xfa,
1021313498266Sopenharmony_ci  0x8d, 0x12, 0x8a, 0xa5, 0x87, 0x11, 0xbe, 0x79, 0x75, 0x72, 0xea, 0xe4,
1021413498266Sopenharmony_ci  0x2f, 0xb6, 0xf9, 0x63, 0x6a, 0x30, 0xe8, 0x1d, 0x34, 0x2a, 0x07, 0x93,
1021513498266Sopenharmony_ci  0xee, 0xd5, 0xcb, 0x93, 0x53, 0x8f, 0xca, 0xb1, 0x3e, 0xcf, 0x5e, 0x74,
1021613498266Sopenharmony_ci  0x82, 0x79, 0x07, 0xcf, 0x1d, 0x20, 0x43, 0xdc, 0x3c, 0x0e, 0xe7, 0xd0,
1021713498266Sopenharmony_ci  0xcc, 0x4c, 0x01, 0xea, 0xc9, 0xca, 0xc8, 0x66, 0xd0, 0xf9, 0x83, 0xc0,
1021813498266Sopenharmony_ci  0x21, 0xfe, 0x95, 0xbd, 0x1e, 0x52, 0x21, 0x44, 0xb3, 0xa7, 0xaa, 0xc5,
1021913498266Sopenharmony_ci  0x30, 0xd6, 0x55, 0xcb, 0xc4, 0x56, 0x5e, 0x5d, 0xcd, 0x86, 0x05, 0x86,
1022013498266Sopenharmony_ci  0x20, 0x82, 0x3c, 0xf6, 0xc1, 0xe7, 0x5c, 0xeb, 0x4c, 0x53, 0xb2, 0x44,
1022113498266Sopenharmony_ci  0x4a, 0x4f, 0x54, 0x93, 0x86, 0x32, 0x39, 0x3a, 0x68, 0xca, 0x50, 0x51,
1022213498266Sopenharmony_ci  0xc0, 0x09, 0x6d, 0x69, 0xaa, 0x4f, 0x1a, 0x04, 0x96, 0x4a, 0x41, 0x61,
1022313498266Sopenharmony_ci  0x50, 0x8d, 0xb9, 0xcb, 0x48, 0x2c, 0x90, 0xb2, 0xb1, 0x84, 0xc4, 0x02,
1022413498266Sopenharmony_ci  0x14, 0x76, 0xd2, 0x20, 0x31, 0x2f, 0x0c, 0x84, 0x4a, 0x51, 0x76, 0x92,
1022513498266Sopenharmony_ci  0x98, 0xf0, 0xb7, 0x8a, 0x2f, 0x8c, 0x46, 0xde, 0x01, 0x5d, 0x1f, 0xad,
1022613498266Sopenharmony_ci  0xe6, 0x08, 0xe2, 0xd4, 0x58, 0xc9, 0x02, 0x6b, 0x8b, 0x87, 0xd6, 0xac,
1022713498266Sopenharmony_ci  0x6d, 0x99, 0xa2, 0x21, 0xeb, 0xa2, 0x11, 0x5c, 0x3f, 0x8a, 0x52, 0xaa,
1022813498266Sopenharmony_ci  0xc0, 0x41, 0xbe, 0x39, 0x7c, 0xfa, 0x46, 0x07, 0x17, 0x89, 0xcc, 0xcd,
1022913498266Sopenharmony_ci  0xb1, 0x1d, 0xa6, 0x16, 0xe0, 0xd5, 0x25, 0xc6, 0xb7, 0x87, 0xa7, 0x6f,
1023013498266Sopenharmony_ci  0x57, 0xcc, 0x3f, 0x96, 0xa0, 0x64, 0x5a, 0x77, 0x5e, 0x76, 0xaa, 0xb2,
1023113498266Sopenharmony_ci  0x91, 0xb2, 0xf7, 0xce, 0x8c, 0x7a, 0xe6, 0xc3, 0x31, 0x20, 0x84, 0x7e,
1023213498266Sopenharmony_ci  0x9c, 0x8d, 0x15, 0x21, 0x57, 0x3d, 0xfb, 0x7c, 0x42, 0x70, 0xa0, 0xa4,
1023313498266Sopenharmony_ci  0x21, 0x50, 0xc6, 0x2f, 0xd5, 0xea, 0xea, 0x38, 0x25, 0xec, 0xc7, 0x6c,
1023413498266Sopenharmony_ci  0x54, 0x5a, 0x68, 0xd4, 0x9a, 0x6f, 0xa6, 0x14, 0x89, 0x61, 0x2c, 0xe4,
1023513498266Sopenharmony_ci  0x0c, 0x21, 0xa0, 0x0e, 0xae, 0xfb, 0xf8, 0xee, 0xe5, 0xb3, 0x57, 0x66,
1023613498266Sopenharmony_ci  0xbd, 0x64, 0x7d, 0x08, 0x91, 0xc0, 0x4c, 0x15, 0x8b, 0x6d, 0xe9, 0xb5,
1023713498266Sopenharmony_ci  0x4d, 0x3b, 0xe2, 0x01, 0xaf, 0x2f, 0xf2, 0xec, 0x9f, 0x78, 0xad, 0x91,
1023813498266Sopenharmony_ci  0x82, 0x3d, 0xc9, 0x58, 0x6e, 0x3e, 0xb7, 0xa2, 0x64, 0x45, 0x95, 0x76,
1023913498266Sopenharmony_ci  0x64, 0x0d, 0x84, 0x54, 0x3f, 0x08, 0x13, 0xec, 0x2a, 0xa5, 0xb1, 0x3c,
1024013498266Sopenharmony_ci  0x6b, 0xc5, 0x5c, 0x07, 0x77, 0x9e, 0xb5, 0x62, 0x5a, 0x5e, 0x5d, 0x7d,
1024113498266Sopenharmony_ci  0xd1, 0x21, 0xf9, 0x3a, 0x36, 0x1c, 0xa5, 0xcd, 0xce, 0x7b, 0xf1, 0xef,
1024213498266Sopenharmony_ci  0xb8, 0x83, 0xff, 0x5c, 0x60, 0x14, 0x2f, 0xdd, 0x84, 0xee, 0x8e, 0x36,
1024313498266Sopenharmony_ci  0x34, 0x19, 0x8c, 0x42, 0x8d, 0x49, 0x63, 0xde, 0x07, 0xe9, 0x77, 0x93,
1024413498266Sopenharmony_ci  0x8a, 0xc0, 0x7a, 0xda, 0x0c, 0xc1, 0xbe, 0x5a, 0x60, 0x4f, 0x09, 0xb6,
1024513498266Sopenharmony_ci  0x51, 0x4f, 0x55, 0x29, 0xa5, 0x63, 0xd7, 0x9f, 0xbf, 0x3d, 0x7a, 0x1d,
1024613498266Sopenharmony_ci  0x9f, 0x1e, 0x6d, 0x90, 0x4c, 0xc7, 0x01, 0xec, 0x94, 0x94, 0xda, 0x66,
1024713498266Sopenharmony_ci  0x59, 0x5a, 0xd1, 0xd7, 0x89, 0xf7, 0x6f, 0xa2, 0xe9, 0xaf, 0x57, 0x1b,
1024813498266Sopenharmony_ci  0x6e, 0x91, 0x35, 0x1a, 0x9e, 0xbe, 0x35, 0xbc, 0xf2, 0x38, 0x20, 0xa9,
1024913498266Sopenharmony_ci  0x3e, 0x28, 0x24, 0xc3, 0x81, 0x19, 0x25, 0xa8, 0x62, 0x6b, 0xd6, 0x1d,
1025013498266Sopenharmony_ci  0x57, 0x20, 0xa9, 0x6b, 0x93, 0x20, 0xc0, 0x23, 0x25, 0x52, 0x2d, 0x10,
1025113498266Sopenharmony_ci  0x2c, 0xc4, 0x0f, 0xe6, 0xab, 0x0b, 0x60, 0xf1, 0x49, 0x59, 0x16, 0x97,
1025213498266Sopenharmony_ci  0x2a, 0x06, 0xe2, 0x55, 0x05, 0xe4, 0x68, 0x0b, 0xc3, 0x3a, 0x5e, 0x56,
1025313498266Sopenharmony_ci  0x68, 0x1c, 0x8b, 0x3c, 0x01, 0x01, 0xc3, 0x18, 0x3a, 0xf0, 0xd5, 0x9d,
1025413498266Sopenharmony_ci  0x35, 0xfe, 0x0c, 0x89, 0x1e, 0x4e, 0xef, 0x28, 0x97, 0xc5, 0xbb, 0x5b,
1025513498266Sopenharmony_ci  0xab, 0x96, 0xe3, 0x3e, 0xa3, 0xc2, 0x8a, 0xa0, 0x0f, 0x15, 0x93, 0x49,
1025613498266Sopenharmony_ci  0x9b, 0x76, 0x70, 0x11, 0x62, 0x89, 0x0e, 0xee, 0x08, 0xe5, 0x7b, 0x85,
1025713498266Sopenharmony_ci  0x02, 0x40, 0xb3, 0xf4, 0x0c, 0xe7, 0xfa, 0x08, 0xac, 0x8b, 0x29, 0x90,
1025813498266Sopenharmony_ci  0x7a, 0x2e, 0x50, 0xd8, 0x7f, 0xa1, 0x00, 0xb5, 0xf6, 0xd9, 0x02, 0xa9,
1025913498266Sopenharmony_ci  0x99, 0x78, 0x2f, 0xc6, 0x45, 0x70, 0x46, 0xa2, 0x8d, 0x4b, 0xc3, 0x72,
1026013498266Sopenharmony_ci  0x56, 0xc8, 0x51, 0xb4, 0x30, 0x4c, 0x84, 0x78, 0xcd, 0x1c, 0x7d, 0x9d,
1026113498266Sopenharmony_ci  0xa0, 0xf1, 0x06, 0xff, 0x09, 0x40, 0xe5, 0x67, 0x58, 0xf6, 0x6a, 0xbc,
1026213498266Sopenharmony_ci  0x18, 0x11, 0xe1, 0xa0, 0x2d, 0x19, 0xa1, 0x47, 0x86, 0x25, 0xd5, 0xa1,
1026313498266Sopenharmony_ci  0x12, 0xbe, 0x4c, 0x4d, 0xdb, 0x8a, 0x3b, 0x64, 0xbe, 0x0b, 0xd6, 0x6e,
1026413498266Sopenharmony_ci  0xc5, 0xe7, 0xe8, 0x1b, 0x29, 0x7a, 0x65, 0x8b, 0xb9, 0xb1, 0x2e, 0xdd,
1026513498266Sopenharmony_ci  0xb6, 0x4a, 0xd2, 0x5d, 0x17, 0xad, 0xf3, 0xd3, 0xde, 0x46, 0x93, 0x5d,
1026613498266Sopenharmony_ci  0x2d, 0xae, 0x81, 0xe3, 0x98, 0x24, 0xd3, 0x84, 0x4d, 0x2d, 0x14, 0xd1,
1026713498266Sopenharmony_ci  0xf8, 0x6d, 0x52, 0xc1, 0x9d, 0xd0, 0x6c, 0x71, 0x63, 0x69, 0x04, 0x46,
1026813498266Sopenharmony_ci  0x7b, 0xaf, 0xee, 0xb6, 0x3c, 0x6c, 0xbb, 0xf5, 0xdb, 0xd0, 0x68, 0x63,
1026913498266Sopenharmony_ci  0x74, 0xf1, 0x82, 0xae, 0x89, 0x3d, 0x24, 0x04, 0xda, 0xf8, 0x95, 0x08,
1027013498266Sopenharmony_ci  0x76, 0xa1, 0xc5, 0x6a, 0x1c, 0x6a, 0x6d, 0xd0, 0x5f, 0x07, 0x4c, 0xdc,
1027113498266Sopenharmony_ci  0xc4, 0xbd, 0x41, 0xcb, 0x94, 0x01, 0x3e, 0x0c, 0x95, 0x09, 0xf7, 0x44,
1027213498266Sopenharmony_ci  0x68, 0x52, 0x0a, 0xc3, 0x27, 0x14, 0x0a, 0x2c, 0x28, 0x18, 0xb8, 0x08,
1027313498266Sopenharmony_ci  0x13, 0x10, 0x74, 0x30, 0x72, 0x01, 0x45, 0x57, 0xed, 0x34, 0x5a, 0xb7,
1027413498266Sopenharmony_ci  0xf5, 0xc4, 0x05, 0xb1, 0xe7, 0x95, 0x7c, 0xb5, 0x67, 0xea, 0x21, 0xe3,
1027513498266Sopenharmony_ci  0xf5, 0xd9, 0x6a, 0x6e, 0xf7, 0xa7, 0x9f, 0x5c, 0xe9, 0x14, 0xad, 0x87,
1027613498266Sopenharmony_ci  0x1b, 0x9d, 0x79, 0xbe, 0x40, 0xaa, 0x45, 0x23, 0x75, 0xc2, 0x4f, 0x16,
1027713498266Sopenharmony_ci  0xc0, 0x63, 0x86, 0xa2, 0x17, 0xe7, 0xa4, 0xbf, 0x9c, 0x28, 0x0e, 0x41,
1027813498266Sopenharmony_ci  0x5d, 0x9c, 0xa5, 0x9c, 0x57, 0xc7, 0x5e, 0x28, 0x44, 0xa0, 0x70, 0x80,
1027913498266Sopenharmony_ci  0x02, 0x48, 0xe0, 0x8f, 0x5f, 0xf6, 0x83, 0x11, 0xaa, 0x7d, 0x13, 0xc0,
1028013498266Sopenharmony_ci  0xc7, 0x41, 0x4f, 0xd3, 0x69, 0x6b, 0xb9, 0x38, 0x6c, 0xb0, 0x3a, 0x0f,
1028113498266Sopenharmony_ci  0x45, 0x0a, 0xb1, 0xb4, 0xd6, 0x3a, 0x1f, 0x62, 0x94, 0x96, 0xf4, 0x73,
1028213498266Sopenharmony_ci  0xba, 0x02, 0x2b, 0x8a, 0x09, 0xc6, 0x9b, 0x7f, 0x54, 0xa6, 0x62, 0x77,
1028313498266Sopenharmony_ci  0xaf, 0x7c, 0x69, 0x9d, 0x2b, 0xc7, 0x65, 0xf8, 0x2d, 0x31, 0x0a, 0xf6,
1028413498266Sopenharmony_ci  0x8f, 0x39, 0xbc, 0xc1, 0xae, 0x56, 0x6b, 0xa7, 0xb8, 0x6a, 0x95, 0x8f,
1028513498266Sopenharmony_ci  0x72, 0xe0, 0x26, 0xa7, 0xa0, 0x5d, 0xd7, 0xaa, 0x66, 0x7f, 0x31, 0x04,
1028613498266Sopenharmony_ci  0x8a, 0xbf, 0x44, 0x98, 0x35, 0xed, 0xe8, 0xa6, 0xb8, 0xf3, 0xa1, 0x28,
1028713498266Sopenharmony_ci  0x0a, 0x43, 0xe6, 0x18, 0x50, 0x81, 0xc8, 0x53, 0x05, 0x96, 0xde, 0xa3,
1028813498266Sopenharmony_ci  0x8b, 0xe9, 0x3c, 0x20, 0xa7, 0xbd, 0x22, 0x85, 0x96, 0x3b, 0x4d, 0x66,
1028913498266Sopenharmony_ci  0x68, 0xad, 0x62, 0xab, 0x89, 0x65, 0x4b, 0xc4, 0x78, 0xd8, 0x53, 0xcb,
1029013498266Sopenharmony_ci  0x51, 0x29, 0x26, 0x9f, 0x25, 0x20, 0xe2, 0x73, 0x9c, 0x01, 0xbd, 0xdc,
1029113498266Sopenharmony_ci  0x59, 0x01, 0x8e, 0xb7, 0x84, 0x4d, 0x93, 0xdc, 0x2e, 0xb9, 0x1d, 0xcd,
1029213498266Sopenharmony_ci  0x1a, 0x92, 0x5c, 0x37, 0x69, 0x10, 0x1a, 0x01, 0xd3, 0x63, 0x44, 0x76,
1029313498266Sopenharmony_ci  0xdf, 0x2f, 0x06, 0xcc, 0x3b, 0x47, 0x25, 0x02, 0x9c, 0x22, 0x5e, 0x8d,
1029413498266Sopenharmony_ci  0xaa, 0x6c, 0xdf, 0x1d, 0x9e, 0xba, 0x78, 0x55, 0x0e, 0xc1, 0xfb, 0xb8,
1029513498266Sopenharmony_ci  0x19, 0xbb, 0x5b, 0xdb, 0x7d, 0xfc, 0xb9, 0xc3, 0x19, 0x79, 0xbb, 0x5b,
1029613498266Sopenharmony_ci  0xbb, 0x03, 0x3d, 0xbc, 0xe6, 0x35, 0x36, 0xb2, 0x53, 0x59, 0x07, 0x85,
1029713498266Sopenharmony_ci  0xf1, 0xdb, 0xfd, 0xf8, 0x91, 0x3e, 0xee, 0x87, 0xab, 0x07, 0x2e, 0x1b,
1029813498266Sopenharmony_ci  0xa4, 0x2e, 0x27, 0xc7, 0xa3, 0x53, 0x3c, 0xf2, 0x22, 0xd7, 0x62, 0x18,
1029913498266Sopenharmony_ci  0x6d, 0x0d, 0x98, 0x30, 0xc8, 0x82, 0x45, 0xf5, 0xa8, 0x72, 0x62, 0xaa,
1030013498266Sopenharmony_ci  0x45, 0xae, 0x6a, 0xd6, 0x25, 0x65, 0xeb, 0xdd, 0x60, 0x76, 0x52, 0x02,
1030113498266Sopenharmony_ci  0x70, 0x45, 0xb8, 0xe2, 0x5b, 0x02, 0x53, 0xfc, 0xd8, 0xae, 0x73, 0x6b,
1030213498266Sopenharmony_ci  0xd6, 0x67, 0x78, 0xd5, 0x1c, 0x1e, 0xc8, 0x16, 0xc2, 0x65, 0xb4, 0x70,
1030313498266Sopenharmony_ci  0xd6, 0x44, 0x82, 0xb8, 0xf7, 0x30, 0xa3, 0x19, 0x48, 0x1c, 0xd7, 0xcf,
1030413498266Sopenharmony_ci  0x23, 0x0a, 0xfe, 0x42, 0x61, 0xfc, 0xf8, 0xaf, 0xdd, 0xa0, 0xa9, 0x50,
1030513498266Sopenharmony_ci  0x40, 0xd6, 0x4c, 0x69, 0x3b, 0x14, 0x2e, 0xad, 0x74, 0x19, 0x69, 0xac,
1030613498266Sopenharmony_ci  0xae, 0x09, 0x21, 0x50, 0x50, 0xb6, 0x40, 0xa4, 0x01, 0x1b, 0x81, 0xad,
1030713498266Sopenharmony_ci  0x51, 0xb8, 0x4a, 0xa7, 0x7c, 0x7d, 0x93, 0xc7, 0x6e, 0xb9, 0xb4, 0xae,
1030813498266Sopenharmony_ci  0x6c, 0xf5, 0xee, 0xa5, 0xf5, 0xa2, 0x03, 0x4d, 0x66, 0xf9, 0x2d, 0xf6,
1030913498266Sopenharmony_ci  0x6a, 0x55, 0xcb, 0x15, 0x65, 0x93, 0x28, 0x6c, 0x56, 0x32, 0xad, 0xe3,
1031013498266Sopenharmony_ci  0xea, 0x62, 0xd4, 0x94, 0xaf, 0x30, 0x4e, 0x40, 0x37, 0x71, 0x5f, 0x7e,
1031113498266Sopenharmony_ci  0xf1, 0x33, 0x6a, 0xb1, 0xae, 0xf3, 0xab, 0x67, 0x07, 0x6a, 0xb2, 0xa2,
1031213498266Sopenharmony_ci  0xe2, 0xd4, 0xae, 0x03, 0x82, 0xda, 0x31, 0xc4, 0x60, 0x5d, 0x0d, 0xe3,
1031313498266Sopenharmony_ci  0x45, 0xe9, 0x8b, 0xbf, 0xaa, 0x3f, 0x36, 0xb8, 0x71, 0xb8, 0x60, 0x32,
1031413498266Sopenharmony_ci  0xa5, 0xa5, 0x63, 0x4b, 0xcd, 0x0e, 0x9c, 0xc4, 0x6e, 0x83, 0xe1, 0x6d,
1031513498266Sopenharmony_ci  0xf4, 0xd8, 0x70, 0x58, 0x1e, 0x57, 0xdb, 0x4c, 0x0c, 0x50, 0xaa, 0x0c,
1031613498266Sopenharmony_ci  0xad, 0x3d, 0x8a, 0xe8, 0xa0, 0x8e, 0x8c, 0x27, 0x5d, 0x0c, 0x39, 0x38,
1031713498266Sopenharmony_ci  0xfb, 0x36, 0x31, 0xd3, 0x3a, 0x30, 0x24, 0x06, 0xd6, 0xba, 0x56, 0x97,
1031813498266Sopenharmony_ci  0x60, 0x63, 0x98, 0x6c, 0x45, 0x9f, 0x39, 0xa9, 0xe1, 0xec, 0x92, 0x1c,
1031913498266Sopenharmony_ci  0xfa, 0x78, 0x2a, 0xcd, 0xe9, 0x71, 0xb9, 0x3e, 0x52, 0xd1, 0x31, 0x5e,
1032013498266Sopenharmony_ci  0x64, 0x67, 0xf7, 0xc9, 0x83, 0x3e, 0xfd, 0xf6, 0x70, 0xeb, 0xcb, 0x1d,
1032113498266Sopenharmony_ci  0x13, 0x08, 0x11, 0xbd, 0x3c, 0x3c, 0x7d, 0x0e, 0x4b, 0x5c, 0xc2, 0x09,
1032213498266Sopenharmony_ci  0xee, 0xc8, 0x31, 0xc5, 0x40, 0x68, 0xac, 0x4a, 0xfe, 0x01, 0xe4, 0x94,
1032313498266Sopenharmony_ci  0x2c, 0xad, 0x27, 0x26, 0xbb, 0x1c, 0x81, 0x3e, 0x36, 0xe9, 0xcd, 0x18,
1032413498266Sopenharmony_ci  0xa4, 0xc0, 0xf3, 0xa4, 0xac, 0x63, 0xf4, 0x22, 0x56, 0xb3, 0x7a, 0x1e,
1032513498266Sopenharmony_ci  0x6f, 0x6d, 0x79, 0x14, 0x45, 0x26, 0x96, 0xe8, 0xc9, 0x60, 0x67, 0xb0,
1032613498266Sopenharmony_ci  0xd5, 0xe7, 0x22, 0xdf, 0x06, 0xac, 0xbd, 0xbd, 0xfb, 0x51, 0xef, 0xe0,
1032713498266Sopenharmony_ci  0xdd, 0xe9, 0x8b, 0xaf, 0xfe, 0xf2, 0xea, 0xe8, 0xbb, 0x97, 0x6f, 0x7a,
1032813498266Sopenharmony_ci  0x9c, 0xec, 0xd9, 0x5d, 0x17, 0xb4, 0xef, 0x80, 0x5e, 0x50, 0x74, 0xc3,
1032913498266Sopenharmony_ci  0x14, 0xcf, 0xc9, 0x3a, 0xf2, 0xac, 0x93, 0x83, 0x93, 0x57, 0x1b, 0x51,
1033013498266Sopenharmony_ci  0x8f, 0xda, 0xa1, 0x3e, 0x7b, 0xaa, 0xee, 0xb7, 0x7d, 0x43, 0x94, 0xa4,
1033113498266Sopenharmony_ci  0xd9, 0x10, 0xac, 0x92, 0xf1, 0x05, 0x06, 0x0e, 0x60, 0xab, 0xd8, 0x8c,
1033213498266Sopenharmony_ci  0xb7, 0xc9, 0xd1, 0x53, 0xca, 0xe6, 0x65, 0x07, 0xbc, 0x6f, 0x0e, 0xa4,
1033313498266Sopenharmony_ci  0xfb, 0x3b, 0x67, 0xd3, 0x9d, 0x87, 0xeb, 0xd1, 0xa7, 0xb8, 0xe7, 0x5a,
1033413498266Sopenharmony_ci  0x2e, 0x1c, 0x0e, 0x97, 0xd2, 0x1b, 0x1a, 0xd9, 0x52, 0x50, 0x16, 0xa2,
1033513498266Sopenharmony_ci  0x08, 0x4d, 0x6c, 0x8f, 0x27, 0x88, 0x52, 0xb7, 0x68, 0x0f, 0x4d, 0xc4,
1033613498266Sopenharmony_ci  0x33, 0xcd, 0x1f, 0xa7, 0x25, 0xa6, 0xb9, 0xb4, 0x73, 0x58, 0x59, 0x42,
1033713498266Sopenharmony_ci  0x76, 0x57, 0x8b, 0x97, 0xa8, 0x17, 0xad, 0xa7, 0x83, 0xb3, 0x01, 0x87,
1033813498266Sopenharmony_ci  0x72, 0xe1, 0x92, 0xd4, 0x76, 0x58, 0x55, 0x5e, 0x14, 0xe8, 0x2c, 0xd8,
1033913498266Sopenharmony_ci  0xe8, 0x52, 0x1e, 0x5d, 0x26, 0xf0, 0xc7, 0x17, 0xe7, 0x6a, 0xf6, 0xbf,
1034013498266Sopenharmony_ci  0x46, 0xf4, 0xf3, 0x9f, 0x6b, 0x51, 0x36, 0x4b, 0xe6, 0x9f, 0x22, 0x8e,
1034113498266Sopenharmony_ci  0xc7, 0x68, 0xf3, 0x89, 0x71, 0xeb, 0xa3, 0x7d, 0x49, 0xb5, 0xf3, 0xeb,
1034213498266Sopenharmony_ci  0xbd, 0x35, 0x38, 0x99, 0xc9, 0xf1, 0x91, 0xc7, 0xad, 0xf9, 0xbc, 0x0d,
1034313498266Sopenharmony_ci  0x27, 0x41, 0xb9, 0x2b, 0x5e, 0x46, 0x5a, 0x33, 0x26, 0x44, 0x30, 0x32,
1034413498266Sopenharmony_ci  0xd6, 0xd9, 0xbc, 0x54, 0x5f, 0x91, 0xcd, 0x02, 0xbd, 0x88, 0xc3, 0x19,
1034513498266Sopenharmony_ci  0xfa, 0xe5, 0xc7, 0x6a, 0x5c, 0x52, 0x97, 0xbc, 0xa7, 0xa1, 0x71, 0x7d,
1034613498266Sopenharmony_ci  0xd4, 0x12, 0xb1, 0x36, 0xb9, 0xf7, 0x24, 0x77, 0x71, 0xc9, 0x3a, 0x7c,
1034713498266Sopenharmony_ci  0xe1, 0x76, 0xd6, 0x9f, 0xc1, 0x12, 0x60, 0x3b, 0xc7, 0xcd, 0xf8, 0xc6,
1034813498266Sopenharmony_ci  0xd9, 0x3b, 0xd0, 0xcf, 0x4f, 0xb9, 0x32, 0x31, 0x32, 0x99, 0x9b, 0xc7,
1034913498266Sopenharmony_ci  0x72, 0x50, 0x8b, 0xe5, 0x68, 0xae, 0x78, 0x28, 0xf4, 0x37, 0x6a, 0x00,
1035013498266Sopenharmony_ci  0xde, 0x4e, 0x93, 0x5a, 0x70, 0xcb, 0x9d, 0xb6, 0x2a, 0x18, 0xbb, 0x85,
1035113498266Sopenharmony_ci  0x69, 0xa0, 0x26, 0x6f, 0xec, 0x2c, 0x0d, 0x48, 0x9b, 0x75, 0xd4, 0x1c,
1035213498266Sopenharmony_ci  0x85, 0xbf, 0x09, 0x34, 0xa0, 0xcf, 0xb5, 0x09, 0xd4, 0x79, 0x7b, 0x13,
1035313498266Sopenharmony_ci  0xee, 0x72, 0x0f, 0x70, 0x97, 0xbd, 0x3d, 0xc0, 0x87, 0x62, 0x32, 0xba,
1035413498266Sopenharmony_ci  0x10, 0xe0, 0x6b, 0x78, 0x13, 0x48, 0xf2, 0x57, 0x93, 0x0c, 0xa5, 0x7d,
1035513498266Sopenharmony_ci  0x01, 0x6d, 0x1b, 0x09, 0x0b, 0x84, 0xff, 0x6c, 0x8e, 0x91, 0x14, 0xb0,
1035613498266Sopenharmony_ci  0x42, 0x0e, 0x00, 0x45, 0x40, 0xb2, 0x83, 0x8b, 0x14, 0x6f, 0x20, 0xba,
1035713498266Sopenharmony_ci  0x80, 0x47, 0x45, 0x8e, 0xfe, 0x17, 0x51, 0xec, 0x60, 0x0f, 0xf0, 0x44,
1035813498266Sopenharmony_ci  0xe1, 0x35, 0x4a, 0xb7, 0x78, 0xca, 0xda, 0x8c, 0xd8, 0x6d, 0xb5, 0x7d,
1035913498266Sopenharmony_ci  0x0f, 0xbc, 0x80, 0xae, 0xa1, 0xb7, 0x4f, 0x8f, 0x4f, 0xa3, 0xd3, 0x23,
1036013498266Sopenharmony_ci  0xd7, 0x16, 0xcf, 0x00, 0x03, 0xcb, 0xd0, 0xcf, 0x49, 0x26, 0x16, 0xa4,
1036113498266Sopenharmony_ci  0x8c, 0x61, 0x7a, 0x9e, 0x5c, 0x64, 0x85, 0xa9, 0x10, 0xcc, 0xc2, 0x37,
1036213498266Sopenharmony_ci  0x81, 0x7e, 0x69, 0xf6, 0x67, 0x73, 0xb5, 0xbc, 0xd0, 0x23, 0x59, 0xbd,
1036313498266Sopenharmony_ci  0x76, 0xd4, 0x0d, 0x17, 0x01, 0x15, 0x74, 0x32, 0xa3, 0x60, 0x72, 0x84,
1036413498266Sopenharmony_ci  0x21, 0x8f, 0xac, 0x0a, 0x21, 0xdd, 0x37, 0x40, 0x75, 0xa5, 0x1e, 0xa5,
1036513498266Sopenharmony_ci  0x44, 0xfc, 0x01, 0xd1, 0x65, 0x63, 0x67, 0x45, 0x82, 0xd4, 0x4c, 0xe5,
1036613498266Sopenharmony_ci  0xa3, 0xed, 0x33, 0x06, 0x1c, 0x3e, 0xe2, 0xa5, 0xc2, 0xb5, 0x52, 0xe3,
1036713498266Sopenharmony_ci  0xa4, 0xc8, 0x26, 0x18, 0x2d, 0x32, 0x4d, 0xce, 0x7c, 0x6a, 0x6e, 0x97,
1036813498266Sopenharmony_ci  0x95, 0x65, 0xf8, 0x5f, 0xd9, 0x47, 0x42, 0x1a, 0xf5, 0xf6, 0x92, 0x43,
1036913498266Sopenharmony_ci  0x47, 0x78, 0x07, 0x82, 0x11, 0x4b, 0x82, 0x54, 0x38, 0x4a, 0x33, 0x2c,
1037013498266Sopenharmony_ci  0x39, 0x48, 0x64, 0x2f, 0x9e, 0x3c, 0x3a, 0x5b, 0xad, 0xed, 0x5c, 0x6a,
1037113498266Sopenharmony_ci  0xc1, 0x0a, 0x91, 0xf0, 0x9d, 0xe7, 0x10, 0x85, 0x3a, 0xb9, 0xd5, 0x09,
1037213498266Sopenharmony_ci  0x6f, 0x0f, 0xd4, 0x3d, 0xa7, 0xa0, 0x19, 0xd5, 0x8d, 0x83, 0xef, 0x1f,
1037313498266Sopenharmony_ci  0xf8, 0x9b, 0x9c, 0xf7, 0x26, 0xbc, 0xee, 0x97, 0x4d, 0x78, 0x5d, 0xdb,
1037413498266Sopenharmony_ci  0xdb, 0xaa, 0x4c, 0x97, 0xfd, 0x63, 0xf2, 0x52, 0x9f, 0xbd, 0x35, 0x64,
1037513498266Sopenharmony_ci  0x96, 0x25, 0x33, 0x6a, 0x36, 0xe5, 0xc8, 0xbb, 0x60, 0xc5, 0x46, 0x58,
1037613498266Sopenharmony_ci  0xdb, 0xb7, 0xe9, 0x3c, 0x65, 0x78, 0x3f, 0x37, 0x49, 0xc9, 0x4d, 0xb2,
1037713498266Sopenharmony_ci  0xd4, 0x22, 0xf2, 0x4d, 0xb6, 0xe2, 0x81, 0x95, 0x74, 0x11, 0x3d, 0xf1,
1037813498266Sopenharmony_ci  0x27, 0x71, 0xbe, 0x89, 0x23, 0x5e, 0xaf, 0x89, 0x46, 0xb2, 0xf3, 0xfa,
1037913498266Sopenharmony_ci  0x0f, 0x6f, 0x9f, 0xff, 0x43, 0x09, 0x6b, 0xa3, 0xdf, 0xe5, 0x16, 0x92,
1038013498266Sopenharmony_ci  0x7e, 0x9a, 0x69, 0xc8, 0x36, 0xec, 0x4d, 0xf2, 0xec, 0x1a, 0x8b, 0x60,
1038113498266Sopenharmony_ci  0xff, 0xf0, 0x8f, 0xf3, 0xb8, 0xa0, 0x5c, 0xab, 0x75, 0x0c, 0x67, 0xc6,
1038213498266Sopenharmony_ci  0xda, 0xab, 0xe2, 0x25, 0xd8, 0x1d, 0x3c, 0x24, 0xf7, 0x20, 0x6a, 0x09,
1038313498266Sopenharmony_ci  0xbb, 0x3b, 0xdb, 0x1b, 0xd7, 0xcf, 0xaa, 0xb1, 0xd4, 0x18, 0x63, 0x8c,
1038413498266Sopenharmony_ci  0x27, 0x6d, 0xfd, 0xf0, 0xa7, 0xe3, 0x37, 0xad, 0x39, 0xd1, 0xd9, 0xf7,
1038513498266Sopenharmony_ci  0x62, 0xd3, 0x71, 0x4a, 0x36, 0x82, 0xd5, 0xce, 0xc7, 0x42, 0xa6, 0x37,
1038613498266Sopenharmony_ci  0xda, 0x57, 0xf4, 0x30, 0x02, 0x7f, 0x0b, 0x44, 0x7f, 0x3f, 0x2f, 0x33,
1038713498266Sopenharmony_ci  0x14, 0xa8, 0x7b, 0x38, 0xfd, 0xde, 0xab, 0x22, 0x1f, 0x17, 0x79, 0x7c,
1038813498266Sopenharmony_ci  0x34, 0x81, 0xb5, 0x4e, 0x7b, 0x81, 0x2c, 0x5b, 0x4b, 0x7b, 0xf7, 0x57,
1038913498266Sopenharmony_ci  0xd0, 0xd1, 0xf6, 0xd1, 0xb8, 0x46, 0x73, 0xc4, 0x6d, 0xbf, 0xd5, 0x69,
1039013498266Sopenharmony_ci  0x0a, 0x1e, 0x78, 0x17, 0xfd, 0xa3, 0xd5, 0xc6, 0x6b, 0x81, 0x04, 0x79,
1039113498266Sopenharmony_ci  0xc6, 0xc5, 0xb7, 0x19, 0x8a, 0x72, 0x21, 0x45, 0xcd, 0x59, 0x87, 0x58,
1039213498266Sopenharmony_ci  0x79, 0x4a, 0xd4, 0xcd, 0x8d, 0x82, 0x11, 0xfb, 0x4e, 0x68, 0x23, 0x5f,
1039313498266Sopenharmony_ci  0xfb, 0xa8, 0x49, 0xa6, 0x4d, 0x0e, 0xf0, 0x91, 0x12, 0x60, 0xc9, 0x01,
1039413498266Sopenharmony_ci  0xbc, 0x4f, 0x71, 0x66, 0x5f, 0x77, 0xe1, 0x6b, 0x47, 0xaf, 0xff, 0x7e,
1039513498266Sopenharmony_ci  0x7a, 0xba, 0x11, 0x8c, 0x5a, 0xa4, 0xd7, 0xd7, 0x35, 0xee, 0x4e, 0xc4,
1039613498266Sopenharmony_ci  0x64, 0x4e, 0x32, 0x2a, 0x3c, 0xe2, 0xe7, 0x00, 0xc5, 0x41, 0x64, 0x0a,
1039713498266Sopenharmony_ci  0xde, 0xd2, 0x83, 0xd6, 0x12, 0x8c, 0x85, 0xde, 0x19, 0x0b, 0x5b, 0x62,
1039813498266Sopenharmony_ci  0xc3, 0xb0, 0x30, 0x0f, 0xca, 0x56, 0xfd, 0x80, 0x9d, 0xd2, 0x84, 0x99,
1039913498266Sopenharmony_ci  0x19, 0x2d, 0x8c, 0x61, 0x05, 0x70, 0xbe, 0x62, 0xb2, 0xa3, 0x7b, 0x87,
1040013498266Sopenharmony_ci  0xd9, 0x77, 0xfa, 0x91, 0x50, 0x46, 0xc7, 0x69, 0xf4, 0xc8, 0xb7, 0x5a,
1040113498266Sopenharmony_ci  0x1d, 0xf0, 0x34, 0xc4, 0x60, 0x57, 0xba, 0xa6, 0x86, 0x46, 0x34, 0x5d,
1040213498266Sopenharmony_ci  0xbf, 0x15, 0x21, 0x48, 0x36, 0xef, 0xb5, 0xef, 0xd7, 0x7c, 0xe8, 0x23,
1040313498266Sopenharmony_ci  0xbe, 0x6b, 0x9d, 0x7c, 0xbd, 0x46, 0xcc, 0xe0, 0x35, 0x51, 0x82, 0x6d,
1040413498266Sopenharmony_ci  0x23, 0x58, 0x38, 0x66, 0x10, 0x5e, 0xc1, 0x88, 0x41, 0x89, 0x10, 0xec,
1040513498266Sopenharmony_ci  0x88, 0xe6, 0xa3, 0x70, 0xbe, 0xd6, 0xae, 0x3a, 0xd7, 0xc2, 0xc3, 0x27,
1040613498266Sopenharmony_ci  0x81, 0xea, 0x98, 0x6f, 0x8e, 0x4e, 0x0f, 0xf7, 0x22, 0x4d, 0x23, 0xe4,
1040713498266Sopenharmony_ci  0xb5, 0x24, 0x40, 0x9b, 0xbe, 0x49, 0xef, 0xe5, 0x8d, 0xe3, 0xd8, 0x01,
1040813498266Sopenharmony_ci  0x5e, 0x7b, 0x82, 0x02, 0xe5, 0xa2, 0x71, 0xbe, 0xbb, 0x43, 0x77, 0xbe,
1040913498266Sopenharmony_ci  0xcf, 0x90, 0xfe, 0xc8, 0x45, 0x38, 0xc0, 0xc6, 0xbd, 0x06, 0xe4, 0x72,
1041013498266Sopenharmony_ci  0x36, 0x19, 0xca, 0x64, 0x1a, 0x00, 0x71, 0x30, 0x20, 0x37, 0x30, 0x7d,
1041113498266Sopenharmony_ci  0xe9, 0xfe, 0x93, 0x2e, 0xbf, 0x98, 0x8b, 0xca, 0xe5, 0x11, 0x10, 0x2b,
1041213498266Sopenharmony_ci  0x05, 0x14, 0xf5, 0xe5, 0x17, 0xdb, 0x45, 0x8a, 0xb1, 0x99, 0x35, 0xee,
1041313498266Sopenharmony_ci  0x54, 0x1b, 0xf8, 0xca, 0x56, 0xc8, 0xb1, 0x70, 0xa0, 0x13, 0xdf, 0x8e,
1041413498266Sopenharmony_ci  0x4d, 0xae, 0x41, 0xc5, 0x0d, 0x35, 0x01, 0x8d, 0x62, 0xac, 0x32, 0xe5,
1041513498266Sopenharmony_ci  0x9e, 0x83, 0x7a, 0x7c, 0xe3, 0x38, 0x7e, 0x06, 0x60, 0xa4, 0x46, 0xff,
1041613498266Sopenharmony_ci  0x9d, 0xa1, 0x7d, 0xdd, 0x8c, 0xd2, 0x06, 0xe9, 0xb5, 0x99, 0x8c, 0x78,
1041713498266Sopenharmony_ci  0x12, 0x30, 0x7c, 0xa0, 0x1b, 0xcd, 0x85, 0x60, 0xbd, 0x98, 0xa3, 0x38,
1041813498266Sopenharmony_ci  0x19, 0xae, 0xea, 0x4f, 0x50, 0xbb, 0x21, 0x1b, 0xde, 0x07, 0x7c, 0x1d,
1041913498266Sopenharmony_ci  0xc6, 0xaf, 0x7c, 0x23, 0xb5, 0x31, 0xfa, 0x1a, 0xf7, 0x90, 0x63, 0x52,
1042013498266Sopenharmony_ci  0x51, 0x7f, 0x05, 0x4a, 0x99, 0x6e, 0xde, 0x1a, 0x7a, 0xf4, 0x09, 0x1c,
1042113498266Sopenharmony_ci  0xce, 0xdb, 0x4d, 0xf1, 0x9f, 0xf4, 0xd9, 0x88, 0x6e, 0x20, 0xa1, 0xf9,
1042213498266Sopenharmony_ci  0x60, 0x73, 0x1c, 0x21, 0xe7, 0x2f, 0x61, 0x37, 0x0f, 0xb7, 0xec, 0x1b,
1042313498266Sopenharmony_ci  0xe8, 0xe6, 0xa9, 0xbb, 0x2d, 0x67, 0x04, 0x55, 0xb0, 0x4d, 0x22, 0x8e,
1042413498266Sopenharmony_ci  0x84, 0x41, 0x2f, 0x72, 0x09, 0xba, 0xee, 0xa6, 0x0e, 0x59, 0xc7, 0xcf,
1042513498266Sopenharmony_ci  0xa2, 0x93, 0x9a, 0xde, 0x77, 0xdd, 0x45, 0x5e, 0x89, 0x42, 0x1a, 0x0e,
1042613498266Sopenharmony_ci  0x56, 0x87, 0x46, 0x1a, 0x99, 0xad, 0xd1, 0xfe, 0x04, 0xee, 0x29, 0x01,
1042713498266Sopenharmony_ci  0x15, 0xe9, 0xc8, 0x6f, 0x7f, 0xad, 0xf1, 0xf2, 0xf8, 0x7c, 0x96, 0xeb,
1042813498266Sopenharmony_ci  0x63, 0x16, 0x08, 0x8f, 0x6e, 0x6a, 0xca, 0x46, 0x88, 0x1a, 0x45, 0xbf,
1042913498266Sopenharmony_ci  0xd9, 0x34, 0x38, 0x08, 0xd6, 0x30, 0xc8, 0x2a, 0x13, 0x71, 0xc5, 0x40,
1043013498266Sopenharmony_ci  0xd7, 0x44, 0x32, 0x02, 0x4b, 0x57, 0x46, 0x43, 0x82, 0x9c, 0xfb, 0xad,
1043113498266Sopenharmony_ci  0x18, 0x8a, 0x03, 0x13, 0xb5, 0x42, 0xfc, 0xd2, 0x0f, 0xc5, 0x3f, 0x47,
1043213498266Sopenharmony_ci  0xa4, 0x3c, 0x38, 0xf2, 0x14, 0x44, 0x82, 0xc1, 0xed, 0x4e, 0x8a, 0x77,
1043313498266Sopenharmony_ci  0xc9, 0x21, 0x7f, 0xd1, 0x59, 0x41, 0xca, 0x33, 0x15, 0x84, 0x72, 0x13,
1043413498266Sopenharmony_ci  0x2e, 0xa2, 0xc4, 0x0b, 0x6e, 0x46, 0x50, 0x9f, 0x0a, 0x53, 0xb9, 0x33,
1043513498266Sopenharmony_ci  0x8c, 0x8e, 0xa3, 0x3d, 0xed, 0x0e, 0x76, 0x96, 0x32, 0xf3, 0x14, 0xd8,
1043613498266Sopenharmony_ci  0x76, 0xe5, 0x45, 0x63, 0xaf, 0xa3, 0x4b, 0x01, 0xbe, 0xd8, 0xb0, 0x39,
1043713498266Sopenharmony_ci  0x7e, 0x72, 0xe4, 0x3c, 0x17, 0x24, 0x81, 0xbf, 0x2c, 0x30, 0xdb, 0x89,
1043813498266Sopenharmony_ci  0xab, 0xeb, 0x21, 0x3d, 0xd1, 0x7a, 0xd2, 0x57, 0x4d, 0x36, 0x58, 0x49,
1043913498266Sopenharmony_ci  0x1c, 0xdd, 0xd8, 0x60, 0xd1, 0x06, 0x72, 0x40, 0xa4, 0x6b, 0xbb, 0xcf,
1044013498266Sopenharmony_ci  0xb0, 0x38, 0x7c, 0x7e, 0x58, 0x46, 0x45, 0x04, 0xac, 0x66, 0x04, 0xae,
1044113498266Sopenharmony_ci  0xa3, 0x9d, 0x37, 0x66, 0x6f, 0x71, 0x0b, 0xcc, 0x29, 0x50, 0x7c, 0xdc,
1044213498266Sopenharmony_ci  0x31, 0x5c, 0x43, 0xeb, 0x83, 0x0d, 0xce, 0x81, 0x94, 0x97, 0x3c, 0xd3,
1044313498266Sopenharmony_ci  0x0f, 0xa5, 0xbd, 0x92, 0xab, 0x9a, 0xb3, 0x16, 0xc8, 0x02, 0x8e, 0x91,
1044413498266Sopenharmony_ci  0x48, 0x5a, 0x83, 0x40, 0x2d, 0xd2, 0x78, 0x23, 0x53, 0x7c, 0x0f, 0x09,
1044513498266Sopenharmony_ci  0x02, 0xac, 0x4a, 0x78, 0xa1, 0xe7, 0x62, 0xd1, 0x93, 0x46, 0xbb, 0xcf,
1044613498266Sopenharmony_ci  0x2e, 0xd3, 0xea, 0x7d, 0xa6, 0x2d, 0x57, 0xcb, 0x0e, 0x2f, 0x75, 0xbf,
1044713498266Sopenharmony_ci  0xbd, 0x4a, 0xcc, 0xb5, 0x79, 0x6b, 0x67, 0xf0, 0xe5, 0xaa, 0xf5, 0x07,
1044813498266Sopenharmony_ci  0x25, 0xfc, 0x89, 0xde, 0xa7, 0x22, 0x3d, 0x24, 0x80, 0x36, 0x09, 0xa0,
1044913498266Sopenharmony_ci  0x71, 0x49, 0xa4, 0x75, 0x82, 0x07, 0x63, 0x59, 0x71, 0x11, 0x4e, 0x00,
1045013498266Sopenharmony_ci  0x65, 0x00, 0x21, 0x8e, 0x51, 0x6d, 0x21, 0x04, 0xbf, 0x96, 0x46, 0x4c,
1045113498266Sopenharmony_ci  0x68, 0x57, 0xfb, 0x9c, 0x9b, 0x07, 0xd4, 0xdd, 0xe3, 0x16, 0x0f, 0xcf,
1045213498266Sopenharmony_ci  0x04, 0xaa, 0x85, 0xc4, 0x13, 0x8d, 0xf4, 0x81, 0xdb, 0xbc, 0xc2, 0x8b,
1045313498266Sopenharmony_ci  0x87, 0xcb, 0x89, 0x7b, 0xd0, 0xca, 0x58, 0xe4, 0x01, 0xc5, 0xa7, 0x8e,
1045413498266Sopenharmony_ci  0x5d, 0xd7, 0xee, 0x3e, 0x4b, 0xb2, 0xba, 0xe9, 0x9d, 0x24, 0xa5, 0x95,
1045513498266Sopenharmony_ci  0xb6, 0xef, 0xbf, 0x90, 0x1f, 0x23, 0x41, 0x4f, 0xa7, 0xe9, 0xd4, 0xdd,
1045613498266Sopenharmony_ci  0x26, 0x53, 0xc6, 0x34, 0x7c, 0x89, 0x73, 0x96, 0x65, 0x15, 0xbd, 0xd1,
1045713498266Sopenharmony_ci  0xc7, 0xa2, 0xf5, 0x93, 0xe3, 0x37, 0x87, 0xdf, 0x1d, 0x6d, 0x5c, 0xe7,
1045813498266Sopenharmony_ci  0x2c, 0x6c, 0x56, 0x91, 0x31, 0x39, 0x7e, 0x89, 0xa6, 0x6f, 0x4b, 0xf2,
1045913498266Sopenharmony_ci  0x1e, 0x49, 0x68, 0xdf, 0x9d, 0x9c, 0xc4, 0x07, 0xc7, 0x2f, 0x29, 0x93,
1046013498266Sopenharmony_ci  0xf7, 0x04, 0xfe, 0x85, 0xcd, 0x0c, 0x95, 0xb9, 0x18, 0x70, 0x35, 0xa9,
1046113498266Sopenharmony_ci  0x28, 0xfe, 0x81, 0x5c, 0xcf, 0x7a, 0xb6, 0x25, 0x06, 0x35, 0xe5, 0x34,
1046213498266Sopenharmony_ci  0x65, 0x09, 0xbc, 0x12, 0xb1, 0xc0, 0x78, 0xc5, 0x5a, 0xcd, 0x49, 0x8f,
1046313498266Sopenharmony_ci  0x9b, 0xd4, 0x1d, 0x76, 0x4b, 0x93, 0xea, 0x88, 0x88, 0x08, 0x38, 0x9c,
1046413498266Sopenharmony_ci  0x08, 0x9b, 0x14, 0xe3, 0x92, 0x69, 0x79, 0x35, 0x53, 0x1f, 0x0b, 0x57,
1046513498266Sopenharmony_ci  0x61, 0xd8, 0x9b, 0xf1, 0x7d, 0x84, 0x93, 0x90, 0xd1, 0x6f, 0x80, 0x58,
1046613498266Sopenharmony_ci  0x28, 0x49, 0x9d, 0x8a, 0xdb, 0xa2, 0xe1, 0xa6, 0x20, 0x7d, 0x06, 0x9a,
1046713498266Sopenharmony_ci  0x9c, 0x63, 0x79, 0xbc, 0x01, 0xa3, 0xe2, 0x71, 0xb4, 0x78, 0x3b, 0x2b,
1046813498266Sopenharmony_ci  0x29, 0x86, 0xdb, 0x61, 0x6f, 0x8d, 0xef, 0xb9, 0x34, 0xa7, 0xe2, 0xa9,
1046913498266Sopenharmony_ci  0xc4, 0x26, 0x9b, 0xd6, 0x0b, 0xaa, 0x1d, 0xa1, 0x8e, 0x27, 0xb6, 0xc6,
1047013498266Sopenharmony_ci  0x9d, 0xd3, 0x20, 0x3d, 0x41, 0x8b, 0xde, 0x51, 0xe9, 0xb8, 0x4c, 0xb9,
1047113498266Sopenharmony_ci  0x30, 0xe2, 0x48, 0x20, 0xff, 0x82, 0x14, 0xeb, 0xda, 0xea, 0x0c, 0x29,
1047213498266Sopenharmony_ci  0xdd, 0x03, 0xa0, 0xa1, 0x6d, 0x1b, 0xe6, 0xbc, 0xb7, 0x22, 0xeb, 0x1a,
1047313498266Sopenharmony_ci  0x62, 0xe0, 0x1c, 0x6e, 0x49, 0x5e, 0x4f, 0x49, 0x30, 0x01, 0xa9, 0x90,
1047413498266Sopenharmony_ci  0x3c, 0x22, 0x12, 0xf5, 0x40, 0x70, 0xef, 0xa6, 0x87, 0xe6, 0xe9, 0xa8,
1047513498266Sopenharmony_ci  0xcb, 0x11, 0x49, 0xd0, 0x9c, 0x3e, 0x1a, 0x42, 0x77, 0x6f, 0x25, 0x57,
1047613498266Sopenharmony_ci  0x6a, 0x69, 0x33, 0x14, 0x06, 0xf3, 0xbe, 0xb6, 0xd1, 0x47, 0x44, 0xab,
1047713498266Sopenharmony_ci  0x14, 0xeb, 0xbb, 0x91, 0x63, 0x89, 0xee, 0x75, 0xa1, 0x9a, 0x50, 0x8d,
1047813498266Sopenharmony_ci  0x56, 0x04, 0x98, 0x87, 0x33, 0x98, 0x0c, 0xab, 0x62, 0xba, 0xa8, 0x25,
1047913498266Sopenharmony_ci  0x0c, 0x0b, 0xdd, 0x4e, 0x88, 0xa0, 0xb3, 0x11, 0xa9, 0x39, 0x95, 0x9a,
1048013498266Sopenharmony_ci  0x16, 0xbd, 0x09, 0xdb, 0x0d, 0x58, 0xe4, 0xc5, 0x1e, 0x44, 0xa9, 0xd0,
1048113498266Sopenharmony_ci  0x1a, 0x8c, 0xc2, 0x71, 0x55, 0xc2, 0x64, 0xd1, 0x14, 0xef, 0xb4, 0x33,
1048213498266Sopenharmony_ci  0xa7, 0x44, 0x8b, 0x8b, 0xae, 0x60, 0x88, 0x97, 0x40, 0x10, 0x43, 0x8a,
1048313498266Sopenharmony_ci  0xf2, 0x00, 0xd9, 0x59, 0xd7, 0x87, 0x27, 0x9f, 0x50, 0x58, 0xbb, 0xb1,
1048413498266Sopenharmony_ci  0x3a, 0x85, 0x19, 0xa8, 0xb3, 0xa0, 0x9f, 0x41, 0xe4, 0x75, 0x7a, 0xe7,
1048513498266Sopenharmony_ci  0x29, 0xaf, 0x44, 0x47, 0xee, 0x6e, 0xda, 0x23, 0xce, 0x44, 0xf4, 0x3d,
1048613498266Sopenharmony_ci  0x03, 0x3c, 0xe5, 0x93, 0xec, 0x6c, 0xd0, 0xe4, 0x7d, 0xbe, 0x1e, 0xd7,
1048713498266Sopenharmony_ci  0x51, 0xa7, 0xd2, 0x36, 0xef, 0x53, 0xa0, 0xae, 0xb0, 0x17, 0x05, 0xc0,
1048813498266Sopenharmony_ci  0xb4, 0xc6, 0xa5, 0xdd, 0xdc, 0xf1, 0x31, 0xaa, 0x7e, 0xa8, 0xf2, 0xc5,
1048913498266Sopenharmony_ci  0x80, 0x67, 0xbe, 0x40, 0x3f, 0x67, 0x90, 0x3d, 0x49, 0x66, 0x30, 0x9e,
1049013498266Sopenharmony_ci  0x7d, 0xb4, 0xd3, 0x25, 0x94, 0xb7, 0x21, 0x26, 0x51, 0xa7, 0x0f, 0x03,
1049113498266Sopenharmony_ci  0xe4, 0x53, 0xa4, 0xd5, 0x35, 0x6c, 0xa1, 0x41, 0x23, 0x61, 0xde, 0x20,
1049213498266Sopenharmony_ci  0xcc, 0x61, 0xf5, 0x20, 0xd4, 0x66, 0xeb, 0xb7, 0x23, 0x08, 0x33, 0xb6,
1049313498266Sopenharmony_ci  0x95, 0x80, 0x6c, 0x5d, 0x72, 0xba, 0x06, 0xbe, 0xd6, 0xd9, 0x63, 0x8f,
1049413498266Sopenharmony_ci  0xe7, 0xb6, 0x77, 0xdc, 0xae, 0xb0, 0xa7, 0x21, 0xd9, 0x32, 0x70, 0x23,
1049513498266Sopenharmony_ci  0xc9, 0xb1, 0x1c, 0x38, 0x27, 0x57, 0x42, 0x86, 0xc3, 0xe5, 0x57, 0x7c,
1049613498266Sopenharmony_ci  0x95, 0x86, 0x23, 0x44, 0xbc, 0x0b, 0xc2, 0x3a, 0xd8, 0x6b, 0xc6, 0x8a,
1049713498266Sopenharmony_ci  0x53, 0xb9, 0x6c, 0xc2, 0x35, 0xe9, 0x30, 0x7a, 0xf1, 0x5d, 0x9e, 0x7d,
1049813498266Sopenharmony_ci  0x1c, 0x04, 0xb4, 0x15, 0x8e, 0x28, 0xe5, 0x38, 0x52, 0x29, 0x5a, 0xce,
1049913498266Sopenharmony_ci  0xb7, 0x70, 0x2a, 0x52, 0x84, 0x24, 0x1a, 0x79, 0xb1, 0x1f, 0xb0, 0xa8,
1050013498266Sopenharmony_ci  0x1e, 0x8a, 0x15, 0xcc, 0x6b, 0xfd, 0xe1, 0x86, 0x38, 0x9b, 0x26, 0xf5,
1050113498266Sopenharmony_ci  0x7c, 0x7d, 0x7b, 0x83, 0x01, 0x5b, 0xa5, 0x70, 0x8e, 0xa6, 0xbe, 0xd0,
1050213498266Sopenharmony_ci  0xdc, 0x39, 0x94, 0x67, 0x10, 0x3d, 0xd5, 0xca, 0xea, 0x81, 0xb8, 0x6f,
1050313498266Sopenharmony_ci  0x42, 0x52, 0x27, 0x4c, 0xb4, 0x09, 0x73, 0x4b, 0x7a, 0xd3, 0x98, 0x19,
1050413498266Sopenharmony_ci  0x29, 0x67, 0x5a, 0x1c, 0x06, 0xa4, 0x21, 0x20, 0x2b, 0x44, 0x30, 0xae,
1050513498266Sopenharmony_ci  0x10, 0xa0, 0x58, 0xd6, 0xf4, 0x1d, 0xe4, 0x52, 0x9b, 0x02, 0x16, 0x70,
1050613498266Sopenharmony_ci  0x3a, 0x46, 0x15, 0xa4, 0x8c, 0xce, 0xca, 0x02, 0x84, 0x18, 0x84, 0x01,
1050713498266Sopenharmony_ci  0xc1, 0xa9, 0x6f, 0x30, 0x0e, 0x85, 0x54, 0x1a, 0xf0, 0xb2, 0xe7, 0xd0,
1050813498266Sopenharmony_ci  0x8e, 0x61, 0x0a, 0x0f, 0xf4, 0x5e, 0x1c, 0xbd, 0x3e, 0xec, 0xb9, 0x21,
1050913498266Sopenharmony_ci  0x0e, 0x93, 0x4c, 0xe2, 0x8b, 0x9a, 0x9b, 0x3a, 0x08, 0x14, 0xdd, 0xf8,
1051013498266Sopenharmony_ci  0x11, 0x1e, 0xc5, 0xb0, 0x4d, 0x50, 0x4e, 0x23, 0xbd, 0xb0, 0x2a, 0x5b,
1051113498266Sopenharmony_ci  0x99, 0x9e, 0x1a, 0x70, 0xc8, 0x82, 0x21, 0xf4, 0x19, 0xd9, 0x7e, 0xdc,
1051213498266Sopenharmony_ci  0x3e, 0x24, 0x42, 0x5c, 0xb8, 0x01, 0xef, 0x85, 0xad, 0x48, 0x36, 0x88,
1051313498266Sopenharmony_ci  0x6a, 0xa1, 0x94, 0x0b, 0x55, 0x0e, 0xa2, 0x23, 0x2a, 0x4f, 0x6a, 0x2a,
1051413498266Sopenharmony_ci  0x93, 0x16, 0x34, 0x8e, 0xd8, 0x37, 0x14, 0x57, 0xda, 0x15, 0x6d, 0xe4,
1051513498266Sopenharmony_ci  0x7b, 0xe1, 0x23, 0xa1, 0x0c, 0x99, 0x03, 0xcc, 0xdd, 0xc9, 0xb0, 0xe0,
1051613498266Sopenharmony_ci  0x36, 0xed, 0x3f, 0x5c, 0xaa, 0x94, 0x28, 0xac, 0xd8, 0xca, 0xc5, 0x44,
1051713498266Sopenharmony_ci  0x43, 0x68, 0x39, 0x15, 0x23, 0xd1, 0xc1, 0x72, 0xaa, 0x40, 0x71, 0x19,
1051813498266Sopenharmony_ci  0x0a, 0xf6, 0x84, 0xef, 0x90, 0x80, 0xe5, 0xee, 0x94, 0x14, 0x37, 0x0e,
1051913498266Sopenharmony_ci  0x16, 0x66, 0x0f, 0x0e, 0xb9, 0xe5, 0x88, 0x7c, 0x99, 0x4e, 0x19, 0x82,
1052013498266Sopenharmony_ci  0x76, 0x6d, 0x76, 0xe5, 0x25, 0x61, 0xa5, 0xd3, 0xc9, 0x5a, 0x53, 0xae,
1052113498266Sopenharmony_ci  0x5a, 0x03, 0x05, 0x03, 0x94, 0xa1, 0x35, 0xa7, 0xce, 0x8a, 0x23, 0x0a,
1052213498266Sopenharmony_ci  0x78, 0xa8, 0xc1, 0x1d, 0xbd, 0x07, 0xcf, 0xe8, 0xec, 0x0a, 0xfb, 0xf3,
1052313498266Sopenharmony_ci  0xd2, 0xca, 0x34, 0x92, 0x88, 0xfa, 0xbd, 0x96, 0x01, 0xdf, 0x6d, 0xe8,
1052413498266Sopenharmony_ci  0x7f, 0x8b, 0x69, 0xad, 0xc0, 0x6c, 0x6f, 0xcf, 0x63, 0xfb, 0x8d, 0x5b,
1052513498266Sopenharmony_ci  0x96, 0xaf, 0x5d, 0x1b, 0x64, 0xb4, 0xbc, 0x4c, 0x7d, 0x57, 0x69, 0x68,
1052613498266Sopenharmony_ci  0x47, 0x20, 0x60, 0x59, 0xb0, 0xeb, 0x3a, 0x89, 0xf7, 0xfa, 0x82, 0x77,
1052713498266Sopenharmony_ci  0xd1, 0x96, 0xfe, 0x3c, 0x20, 0x71, 0xa7, 0xa8, 0xaf, 0x85, 0xe5, 0xd0,
1052813498266Sopenharmony_ci  0x6c, 0x27, 0x6b, 0xa0, 0x94, 0xea, 0x64, 0x1e, 0x46, 0x52, 0x55, 0x8c,
1052913498266Sopenharmony_ci  0x32, 0x37, 0x8e, 0x57, 0x66, 0x96, 0x58, 0x68, 0x30, 0x9b, 0x73, 0x67,
1053013498266Sopenharmony_ci  0xa1, 0xef, 0xb0, 0xb5, 0xae, 0xfc, 0x37, 0xb4, 0x74, 0x92, 0x9d, 0x47,
1053113498266Sopenharmony_ci  0xc3, 0x0d, 0xb2, 0x12, 0xcb, 0x96, 0x7b, 0xe1, 0x99, 0x7d, 0x17, 0xbe,
1053213498266Sopenharmony_ci  0xbc, 0x4f, 0x06, 0x7d, 0x1f, 0xc1, 0xc9, 0xc6, 0xcd, 0x1b, 0x05, 0x83,
1053313498266Sopenharmony_ci  0x6c, 0x60, 0x23, 0x50, 0x86, 0xe0, 0xf4, 0x98, 0x50, 0x66, 0x85, 0x0e,
1053413498266Sopenharmony_ci  0xf1, 0x3d, 0x85, 0x66, 0x25, 0xd9, 0x04, 0x45, 0x53, 0x13, 0x6b, 0x8d,
1053513498266Sopenharmony_ci  0x06, 0x9c, 0xe1, 0x5e, 0x70, 0xa0, 0xa7, 0x40, 0x95, 0xa0, 0x94, 0x5a,
1053613498266Sopenharmony_ci  0x71, 0xe9, 0x1f, 0x5f, 0x5c, 0xc6, 0x3c, 0x5e, 0xb6, 0xa1, 0xa1, 0xba,
1053713498266Sopenharmony_ci  0x57, 0x5e, 0x10, 0x8c, 0x25, 0xe1, 0x0d, 0xe8, 0x59, 0x77, 0xf7, 0x41,
1053813498266Sopenharmony_ci  0xd7, 0x9f, 0xc4, 0x99, 0xbd, 0xd0, 0x7d, 0xfc, 0x11, 0x23, 0xbf, 0xf2,
1053913498266Sopenharmony_ci  0xaa, 0x2e, 0x17, 0x23, 0xb9, 0x9f, 0xbe, 0xd3, 0x51, 0x68, 0x34, 0xad,
1054013498266Sopenharmony_ci  0x49, 0x8f, 0x40, 0xff, 0x5c, 0xe4, 0x78, 0xe8, 0xbc, 0xe6, 0xc8, 0x43,
1054113498266Sopenharmony_ci  0xd7, 0xd7, 0x5f, 0xe2, 0xa4, 0x1a, 0x65, 0x99, 0xd0, 0x1a, 0xba, 0x1d,
1054213498266Sopenharmony_ci  0x31, 0xd6, 0x33, 0xc0, 0xfe, 0x9e, 0x3b, 0xd5, 0xc2, 0xfa, 0xac, 0x2e,
1054313498266Sopenharmony_ci  0xe0, 0x95, 0x3f, 0x2e, 0x18, 0x14, 0x84, 0x03, 0xe7, 0x29, 0x6d, 0x84,
1054413498266Sopenharmony_ci  0x23, 0xc8, 0xc9, 0xb1, 0x2a, 0xae, 0x7c, 0x38, 0x50, 0x7e, 0x7a, 0xb6,
1054513498266Sopenharmony_ci  0xf8, 0x5b, 0xc3, 0x55, 0x5c, 0x2e, 0x2f, 0x2f, 0xb7, 0x07, 0x8d, 0x98,
1054613498266Sopenharmony_ci  0x24, 0x5e, 0x85, 0x18, 0x2b, 0x7d, 0x54, 0x35, 0xd7, 0xcb, 0xb8, 0xbc,
1054713498266Sopenharmony_ci  0xdc, 0x19, 0x2c, 0x39, 0xb3, 0xf2, 0xca, 0xbd, 0xc1, 0x2c, 0x87, 0xd0,
1054813498266Sopenharmony_ci  0x88, 0x6f, 0x32, 0xcc, 0x20, 0x2b, 0x7a, 0xb9, 0xac, 0xb9, 0xf6, 0x57,
1054913498266Sopenharmony_ci  0xc0, 0x12, 0x36, 0x6f, 0x68, 0x58, 0xf1, 0x75, 0x01, 0x57, 0x92, 0x2f,
1055013498266Sopenharmony_ci  0xe2, 0x64, 0x3a, 0x0f, 0x66, 0x21, 0x9d, 0x6c, 0x18, 0x66, 0x4b, 0x85,
1055113498266Sopenharmony_ci  0xcd, 0x5f, 0x1d, 0xbf, 0x21, 0x68, 0x32, 0x18, 0x4e, 0x9a, 0x57, 0x1c,
1055213498266Sopenharmony_ci  0x04, 0x8d, 0x9f, 0x61, 0x4a, 0x77, 0xce, 0xb6, 0x2d, 0xf1, 0x5d, 0x78,
1055313498266Sopenharmony_ci  0xc1, 0x2e, 0x1c, 0xf0, 0x84, 0x86, 0x10, 0x83, 0xc0, 0x83, 0x56, 0x36,
1055413498266Sopenharmony_ci  0xd7, 0xda, 0x82, 0xe9, 0xdb, 0x16, 0x46, 0x8f, 0x65, 0xa1, 0x0e, 0x33,
1055513498266Sopenharmony_ci  0x09, 0xf6, 0x6a, 0xfb, 0xa6, 0x5d, 0xa5, 0x42, 0x89, 0xda, 0x76, 0xe3,
1055613498266Sopenharmony_ci  0x5d, 0xae, 0x4e, 0xbd, 0x43, 0xec, 0x89, 0xb5, 0x69, 0x2f, 0xf6, 0xbe,
1055713498266Sopenharmony_ci  0x4e, 0xf5, 0x21, 0xb5, 0xd7, 0x99, 0x10, 0x28, 0x89, 0x13, 0x16, 0xb7,
1055813498266Sopenharmony_ci  0x1a, 0x6d, 0x82, 0xe2, 0x10, 0x87, 0x93, 0x98, 0x23, 0x53, 0x53, 0x52,
1055913498266Sopenharmony_ci  0x4c, 0xfd, 0xac, 0x11, 0x9f, 0x39, 0xcc, 0x93, 0x6f, 0x70, 0x2d, 0x4b,
1056013498266Sopenharmony_ci  0x7b, 0x9d, 0x31, 0x1b, 0x77, 0x07, 0x07, 0x2f, 0xf6, 0x76, 0x9a, 0xfb,
1056113498266Sopenharmony_ci  0xd2, 0x7b, 0x95, 0x37, 0xf4, 0x2e, 0x8b, 0xa9, 0x62, 0x7b, 0x2b, 0x5f,
1056213498266Sopenharmony_ci  0xab, 0x32, 0x8c, 0x95, 0xc1, 0x48, 0xf3, 0x79, 0xde, 0xae, 0x57, 0xae,
1056313498266Sopenharmony_ci  0x6d, 0x35, 0x21, 0xb9, 0x14, 0x93, 0xcb, 0x93, 0xe8, 0xd0, 0x40, 0x75,
1056413498266Sopenharmony_ci  0x2d, 0x26, 0x17, 0x10, 0xb2, 0x73, 0x0c, 0xde, 0xf4, 0xb9, 0x9b, 0xe1,
1056513498266Sopenharmony_ci  0x02, 0xef, 0x91, 0xb0, 0xc4, 0xc1, 0x5b, 0xc9, 0x4f, 0x60, 0xf3, 0x8c,
1056613498266Sopenharmony_ci  0x8d, 0x26, 0x55, 0x8d, 0x11, 0x50, 0x31, 0x4d, 0x66, 0x83, 0xe8, 0x65,
1056713498266Sopenharmony_ci  0xae, 0xf0, 0x02, 0x14, 0xa7, 0x5d, 0x65, 0x75, 0x7b, 0x7c, 0x8b, 0x44,
1056813498266Sopenharmony_ci  0xee, 0x35, 0x51, 0x43, 0x16, 0x5c, 0xa3, 0xd1, 0x62, 0x5a, 0x70, 0x17,
1056913498266Sopenharmony_ci  0x48, 0x2e, 0x6e, 0xd3, 0x3c, 0xe9, 0xf3, 0x24, 0x18, 0xdb, 0xc6, 0x6e,
1057013498266Sopenharmony_ci  0x6c, 0x46, 0x6f, 0xab, 0xe5, 0xbd, 0xca, 0x42, 0xf7, 0xa3, 0xc9, 0xf9,
1057113498266Sopenharmony_ci  0x7c, 0x91, 0x7f, 0xc0, 0x4e, 0x29, 0x73, 0x4c, 0xf3, 0x87, 0xb3, 0x00,
1057213498266Sopenharmony_ci  0xc4, 0x79, 0x32, 0x42, 0x64, 0x64, 0x29, 0x45, 0x64, 0x9a, 0x48, 0x40,
1057313498266Sopenharmony_ci  0xbe, 0xbe, 0x40, 0xe7, 0xff, 0x3b, 0xaf, 0x7e, 0xa5, 0x13, 0x6a, 0xee,
1057413498266Sopenharmony_ci  0x95, 0x52, 0x32, 0xcb, 0x15, 0x3e, 0x2c, 0x12, 0x4d, 0x2b, 0xaa, 0x5d,
1057513498266Sopenharmony_ci  0xc7, 0x49, 0x69, 0x1c, 0x15, 0x93, 0xee, 0x11, 0x3c, 0x2c, 0xdc, 0x9d,
1057613498266Sopenharmony_ci  0x73, 0x5c, 0xec, 0x76, 0x11, 0x45, 0x2f, 0x4f, 0xe3, 0x31, 0x04, 0x70,
1057713498266Sopenharmony_ci  0xb7, 0x69, 0x3c, 0xdc, 0xe6, 0x2d, 0x0e, 0x90, 0x0c, 0x66, 0xa5, 0x23,
1057813498266Sopenharmony_ci  0xf4, 0xa7, 0x3e, 0xdb, 0x0e, 0xcf, 0x30, 0x0c, 0x2d, 0x1e, 0x36, 0x51,
1057913498266Sopenharmony_ci  0xbd, 0xa1, 0xcd, 0x11, 0x08, 0x0d, 0x43, 0x8f, 0xc4, 0xc9, 0xa2, 0xac,
1058013498266Sopenharmony_ci  0x55, 0x6a, 0x31, 0xae, 0xf2, 0xb7, 0x45, 0x3e, 0x6a, 0x56, 0x80, 0x46,
1058113498266Sopenharmony_ci  0xb1, 0xa2, 0x20, 0x0b, 0x37, 0x93, 0x17, 0xfe, 0xfa, 0x37, 0x49, 0xb6,
1058213498266Sopenharmony_ci  0xf2, 0x6e, 0x76, 0xd8, 0x5b, 0x29, 0x88, 0x10, 0x4b, 0x38, 0x57, 0x7c,
1058313498266Sopenharmony_ci  0x24, 0xcf, 0xd2, 0x77, 0xf2, 0x61, 0x51, 0x36, 0x3f, 0xc2, 0xc0, 0xa7,
1058413498266Sopenharmony_ci  0x0e, 0xb4, 0xe7, 0x4a, 0x22, 0x41, 0x93, 0x8b, 0x22, 0x1b, 0x57, 0x24,
1058513498266Sopenharmony_ci  0x48, 0x21, 0x6c, 0x1d, 0x39, 0x46, 0x19, 0x3f, 0x85, 0x99, 0x82, 0x82,
1058613498266Sopenharmony_ci  0x5c, 0x32, 0x14, 0x05, 0x86, 0xff, 0x84, 0x8b, 0x5b, 0xf4, 0x23, 0xf1,
1058713498266Sopenharmony_ci  0xe2, 0xb1, 0xbc, 0x22, 0x71, 0x00, 0x67, 0x24, 0xf9, 0x09, 0x4a, 0x97,
1058813498266Sopenharmony_ci  0xb1, 0x67, 0x52, 0xb0, 0xdd, 0xc4, 0xe8, 0xf5, 0xa1, 0x84, 0x21, 0x45,
1058913498266Sopenharmony_ci  0x10, 0xc3, 0x74, 0x50, 0x24, 0xe0, 0x3e, 0x06, 0x89, 0xd4, 0x56, 0xdb,
1059013498266Sopenharmony_ci  0x1d, 0x6c, 0x6f, 0x6d, 0x49, 0x06, 0x9d, 0x66, 0x65, 0x67, 0x61, 0x74,
1059113498266Sopenharmony_ci  0x3d, 0x32, 0x0a, 0x50, 0x23, 0x94, 0x2e, 0xc8, 0x75, 0x03, 0xee, 0xf7,
1059213498266Sopenharmony_ci  0xa2, 0xa1, 0x3a, 0x21, 0x7c, 0x80, 0x84, 0x3c, 0xf8, 0x04, 0x11, 0xe6,
1059313498266Sopenharmony_ci  0x08, 0x67, 0x7c, 0xf3, 0xc7, 0xb0, 0xda, 0x7d, 0xe3, 0xb4, 0xbc, 0xf1,
1059413498266Sopenharmony_ci  0xee, 0x93, 0xfd, 0xb9, 0xd3, 0x00, 0xdb, 0xba, 0xbb, 0x74, 0x00, 0x77,
1059513498266Sopenharmony_ci  0x7a, 0x02, 0xa5, 0xd1, 0x5b, 0x1c, 0x41, 0x1d, 0x8e, 0x52, 0x3d, 0xab,
1059613498266Sopenharmony_ci  0x04, 0x84, 0x77, 0xd1, 0xe9, 0xee, 0xea, 0x3a, 0x9a, 0x45, 0xdf, 0x36,
1059713498266Sopenharmony_ci  0x43, 0x37, 0xdc, 0x51, 0xbf, 0x49, 0xfe, 0x8d, 0x28, 0xda, 0x27, 0xbb,
1059813498266Sopenharmony_ci  0xcd, 0x28, 0x5a, 0x17, 0xa7, 0xbb, 0xeb, 0x82, 0x32, 0xc9, 0xc0, 0x14,
1059913498266Sopenharmony_ci  0xc6, 0x6e, 0x61, 0xbd, 0x25, 0x81, 0xc4, 0x58, 0xa7, 0x10, 0x24, 0xde,
1060013498266Sopenharmony_ci  0x02, 0x47, 0x0c, 0x42, 0xd2, 0xb7, 0xcd, 0x83, 0x54, 0x33, 0x19, 0x7c,
1060113498266Sopenharmony_ci  0x30, 0x73, 0x02, 0xed, 0xef, 0x9b, 0xa1, 0x3b, 0x44, 0x69, 0x27, 0xe2,
1060213498266Sopenharmony_ci  0x90, 0xa5, 0xf9, 0xf0, 0x5a, 0x9e, 0xee, 0x94, 0x11, 0xb0, 0xe0, 0x6e,
1060313498266Sopenharmony_ci  0x4c, 0x56, 0x9f, 0x62, 0x70, 0xe8, 0x1e, 0xc0, 0xf5, 0x64, 0x65, 0x87,
1060413498266Sopenharmony_ci  0xb4, 0x2a, 0x42, 0xad, 0x0b, 0xf6, 0xde, 0x22, 0x8f, 0xbc, 0x53, 0x8c,
1060513498266Sopenharmony_ci  0xa7, 0x8e, 0x73, 0x54, 0x7c, 0x58, 0xda, 0x78, 0x73, 0xfc, 0xa6, 0x1f,
1060613498266Sopenharmony_ci  0x8a, 0x87, 0x13, 0x39, 0x82, 0x9d, 0xd0, 0x40, 0x86, 0xad, 0xe6, 0x80,
1060713498266Sopenharmony_ci  0x28, 0x1f, 0x85, 0x9c, 0xd0, 0xae, 0x96, 0xf0, 0xc6, 0x57, 0x12, 0xf0,
1060813498266Sopenharmony_ci  0x23, 0x71, 0x06, 0x36, 0xb4, 0x04, 0xa3, 0x15, 0x78, 0x90, 0x90, 0x8e,
1060913498266Sopenharmony_ci  0x8a, 0x70, 0x43, 0x0d, 0x01, 0x3b, 0xe1, 0x9e, 0x82, 0x2e, 0x99, 0x9b,
1061013498266Sopenharmony_ci  0xe9, 0x07, 0xd6, 0x9d, 0x27, 0x9f, 0x75, 0xb9, 0x7c, 0x6f, 0xa9, 0x1f,
1061113498266Sopenharmony_ci  0xb4, 0x09, 0x33, 0xbf, 0x5b, 0x31, 0x3d, 0xbf, 0x95, 0x94, 0x9e, 0xdf,
1061213498266Sopenharmony_ci  0x46, 0x48, 0x27, 0x71, 0xdc, 0x97, 0xd2, 0xf3, 0x7b, 0x15, 0xd2, 0xb1,
1061313498266Sopenharmony_ci  0x07, 0x23, 0xd9, 0xcc, 0x52, 0xbf, 0x04, 0xf5, 0x91, 0x71, 0x64, 0x0b,
1061413498266Sopenharmony_ci  0x4e, 0x59, 0x31, 0x99, 0x08, 0x16, 0x36, 0xbf, 0x15, 0xd1, 0x5b, 0x2a,
1061513498266Sopenharmony_ci  0x57, 0xe3, 0xb2, 0x61, 0xcc, 0xc8, 0x6c, 0x41, 0x62, 0x84, 0xe7, 0x8b,
1061613498266Sopenharmony_ci  0xb0, 0x2c, 0x10, 0x6e, 0x6e, 0xaa, 0x13, 0x02, 0x4f, 0x5d, 0x26, 0x5c,
1061713498266Sopenharmony_ci  0x41, 0x94, 0xd1, 0xa4, 0x4c, 0xb2, 0x2e, 0xba, 0x90, 0x94, 0xc9, 0x12,
1061813498266Sopenharmony_ci  0xca, 0x5c, 0x5c, 0xf9, 0x56, 0x97, 0x2a, 0x23, 0xc0, 0xdc, 0xa0, 0x6f,
1061913498266Sopenharmony_ci  0xea, 0xfe, 0xb8, 0x67, 0x73, 0xc9, 0x1c, 0xd9, 0x38, 0xb0, 0x32, 0x37,
1062013498266Sopenharmony_ci  0x13, 0x92, 0x5b, 0x2d, 0x7a, 0x5c, 0xf5, 0xd3, 0x52, 0x5f, 0x9a, 0xad,
1062113498266Sopenharmony_ci  0xdf, 0x82, 0xa2, 0x5b, 0xc3, 0x8b, 0x0b, 0xae, 0x5a, 0x7f, 0x7b, 0xb8,
1062213498266Sopenharmony_ci  0x5d, 0xa6, 0xf4, 0xaa, 0x6f, 0xb6, 0xb0, 0x99, 0xee, 0xf2, 0xd8, 0xbb,
1062313498266Sopenharmony_ci  0xa8, 0x85, 0x03, 0x64, 0xe3, 0x60, 0x89, 0x0c, 0x9d, 0x38, 0x8e, 0x78,
1062413498266Sopenharmony_ci  0xad, 0x52, 0xdc, 0x62, 0x64, 0x6d, 0x5a, 0xed, 0xe7, 0xe5, 0x33, 0xd8,
1062513498266Sopenharmony_ci  0x52, 0x34, 0xc5, 0xa3, 0xdb, 0xf6, 0x5b, 0xcb, 0x2c, 0xdb, 0xb2, 0x0e,
1062613498266Sopenharmony_ci  0x26, 0x5c, 0x69, 0x74, 0x1c, 0xa3, 0x9a, 0x50, 0xa9, 0x37, 0x9b, 0x59,
1062713498266Sopenharmony_ci  0x81, 0xad, 0xa4, 0x2e, 0x7c, 0x15, 0xc7, 0x77, 0x63, 0x7a, 0x68, 0x20,
1062813498266Sopenharmony_ci  0xdd, 0x9e, 0x5d, 0x47, 0x74, 0x4d, 0x20, 0xb4, 0xc8, 0xf9, 0x02, 0x8e,
1062913498266Sopenharmony_ci  0x20, 0x32, 0xce, 0xba, 0x4e, 0x67, 0xf3, 0x5a, 0xe2, 0x57, 0xd1, 0xa0,
1063013498266Sopenharmony_ci  0x4b, 0x12, 0x06, 0x0e, 0xd8, 0x19, 0x71, 0x15, 0x28, 0xdb, 0x46, 0x85,
1063113498266Sopenharmony_ci  0xd6, 0xd2, 0x99, 0xc0, 0xd4, 0x49, 0x19, 0x1a, 0x7c, 0x8f, 0x1c, 0x27,
1063213498266Sopenharmony_ci  0x54, 0xb5, 0x5c, 0x72, 0x89, 0x59, 0x2e, 0xb9, 0xcc, 0xa8, 0x6a, 0x1d,
1063313498266Sopenharmony_ci  0x27, 0xe0, 0x7b, 0x11, 0xb2, 0xc4, 0x57, 0xb4, 0x0c, 0xc5, 0xd8, 0xdc,
1063413498266Sopenharmony_ci  0x39, 0x19, 0xbd, 0x4e, 0x05, 0x20, 0xc8, 0xbe, 0x2b, 0x0f, 0x54, 0x8b,
1063513498266Sopenharmony_ci  0x11, 0x66, 0xb3, 0xfd, 0x81, 0xb2, 0xb3, 0xd9, 0x75, 0x57, 0x4c, 0x09,
1063613498266Sopenharmony_ci  0x6c, 0xe9, 0x35, 0x12, 0xb0, 0x6d, 0xa6, 0x75, 0x37, 0x30, 0xca, 0xcf,
1063713498266Sopenharmony_ci  0xad, 0xdd, 0xd2, 0xa6, 0xdd, 0x5b, 0x1c, 0x29, 0x3b, 0xa6, 0x95, 0x0e,
1063813498266Sopenharmony_ci  0xd1, 0x07, 0x2a, 0xb8, 0x99, 0x53, 0x94, 0x5b, 0x4b, 0x5a, 0xa1, 0xf0,
1063913498266Sopenharmony_ci  0x96, 0x68, 0x9f, 0x8f, 0xeb, 0xc7, 0x2b, 0x42, 0x97, 0x6b, 0xc7, 0xb0,
1064013498266Sopenharmony_ci  0x3c, 0x45, 0xbb, 0x6c, 0xac, 0x7e, 0x8b, 0x71, 0x24, 0x09, 0x42, 0xe4,
1064113498266Sopenharmony_ci  0x66, 0x53, 0x6b, 0x3e, 0x2b, 0x53, 0x0e, 0x28, 0x34, 0x82, 0xc3, 0x41,
1064213498266Sopenharmony_ci  0x83, 0x7d, 0x5f, 0xae, 0xc0, 0xa3, 0xd1, 0x50, 0x45, 0xc8, 0xfb, 0xc9,
1064313498266Sopenharmony_ci  0x25, 0x55, 0x81, 0xf0, 0xa8, 0xd2, 0x19, 0x21, 0xc7, 0x88, 0xc9, 0x3a,
1064413498266Sopenharmony_ci  0xea, 0xfd, 0x67, 0x0f, 0xdd, 0x90, 0x09, 0x86, 0x09, 0xa7, 0x65, 0x20,
1064513498266Sopenharmony_ci  0x55, 0x02, 0xd5, 0x38, 0xaa, 0x10, 0x4d, 0x16, 0x1c, 0x3c, 0x8d, 0x34,
1064613498266Sopenharmony_ci  0xb0, 0x3e, 0xfb, 0x07, 0x4d, 0x71, 0x29, 0xe8, 0xa0, 0x99, 0x8e, 0x8f,
1064713498266Sopenharmony_ci  0x03, 0xf4, 0x62, 0xe6, 0xd1, 0x17, 0xc2, 0xea, 0x92, 0x24, 0x13, 0xd0,
1064813498266Sopenharmony_ci  0x6c, 0x09, 0x37, 0x0c, 0x7b, 0xa0, 0x04, 0x30, 0xf1, 0xe8, 0x26, 0x9a,
1064913498266Sopenharmony_ci  0xdc, 0x25, 0x63, 0x08, 0x14, 0x5c, 0xc2, 0x5a, 0x0d, 0x95, 0xf1, 0xaf,
1065013498266Sopenharmony_ci  0x56, 0xb5, 0xd5, 0xb8, 0xd9, 0x65, 0xcb, 0x9f, 0x20, 0x82, 0x11, 0x95,
1065113498266Sopenharmony_ci  0xda, 0x6e, 0x24, 0x9e, 0xf4, 0x82, 0x05, 0xbb, 0x71, 0xab, 0x7b, 0xa2,
1065213498266Sopenharmony_ci  0xe8, 0x72, 0x59, 0xec, 0x1e, 0x29, 0x43, 0xf4, 0x79, 0xdf, 0xf9, 0x63,
1065313498266Sopenharmony_ci  0xef, 0xc9, 0x56, 0x4f, 0x96, 0x20, 0xea, 0x5d, 0x5e, 0x5e, 0x0e, 0xba,
1065413498266Sopenharmony_ci  0x9b, 0xe3, 0x90, 0x10, 0xdc, 0x3d, 0x7a, 0x10, 0x7e, 0xb1, 0x4d, 0x0e,
1065513498266Sopenharmony_ci  0x96, 0xe1, 0xc5, 0x5b, 0x5c, 0x97, 0xda, 0x7a, 0xb0, 0x1b, 0x1e, 0x6b,
1065613498266Sopenharmony_ci  0x11, 0x40, 0x2c, 0x9f, 0x48, 0xfd, 0x74, 0x57, 0xa0, 0xc0, 0xf5, 0x5e,
1065713498266Sopenharmony_ci  0x5e, 0xbc, 0xa7, 0x5f, 0xa5, 0x88, 0xd7, 0x9b, 0xa3, 0xf7, 0xc7, 0x6f,
1065813498266Sopenharmony_ci  0x8f, 0x7e, 0xfa, 0x47, 0x6f, 0xc3, 0xca, 0xc1, 0x98, 0xbd, 0xb2, 0x8b,
1065913498266Sopenharmony_ci  0x92, 0xaf, 0x40, 0xfb, 0x94, 0x81, 0xc8, 0x1f, 0x04, 0x20, 0x71, 0xc7,
1066013498266Sopenharmony_ci  0x61, 0x5d, 0xe7, 0x32, 0x06, 0x0e, 0x1c, 0x16, 0xe2, 0x54, 0xdf, 0x09,
1066113498266Sopenharmony_ci  0xc3, 0x51, 0x23, 0x47, 0x0e, 0x8e, 0x8e, 0x48, 0x00, 0x08, 0xbb, 0xd7,
1066213498266Sopenharmony_ci  0xc3, 0x9f, 0x3a, 0xe9, 0x28, 0x90, 0x5d, 0xf2, 0xf2, 0xd8, 0x29, 0x13,
1066313498266Sopenharmony_ci  0x6c, 0x93, 0xec, 0xc8, 0x84, 0xe1, 0x41, 0x66, 0xb6, 0xc2, 0x99, 0x9f,
1066413498266Sopenharmony_ci  0xbe, 0x7c, 0xf6, 0xd6, 0xb7, 0x42, 0x48, 0xee, 0xa2, 0xb3, 0x06, 0x24,
1066513498266Sopenharmony_ci  0xfd, 0xef, 0x51, 0x9a, 0xa3, 0x9a, 0x48, 0xaa, 0x29, 0x56, 0x39, 0xa5,
1066613498266Sopenharmony_ci  0xc8, 0x1c, 0xb6, 0xa0, 0x70, 0xdf, 0xde, 0x95, 0x9f, 0xa5, 0x0d, 0x54,
1066713498266Sopenharmony_ci  0x73, 0x38, 0xc2, 0x8a, 0x75, 0x31, 0x44, 0x10, 0x2d, 0x14, 0xc3, 0xc4,
1066813498266Sopenharmony_ci  0xc2, 0x62, 0x12, 0xed, 0xf9, 0x38, 0xf3, 0xcd, 0xe0, 0x25, 0x3d, 0xcd,
1066913498266Sopenharmony_ci  0x80, 0x27, 0x64, 0x15, 0xb9, 0xc1, 0x5c, 0xaf, 0x14, 0x10, 0xdc, 0xf6,
1067013498266Sopenharmony_ci  0x97, 0x3b, 0x83, 0xed, 0x47, 0x4f, 0xe0, 0x4e, 0xde, 0xda, 0xdc, 0x7e,
1067113498266Sopenharmony_ci  0xd4, 0x8b, 0x1a, 0x14, 0x8b, 0x67, 0x34, 0x19, 0x7b, 0xc2, 0xa8, 0x2e,
1067213498266Sopenharmony_ci  0x9b, 0x66, 0xe8, 0x10, 0xc7, 0xd4, 0x96, 0x7a, 0x1d, 0x31, 0x63, 0xc2,
1067313498266Sopenharmony_ci  0xc2, 0x6e, 0x12, 0x30, 0x76, 0xf7, 0x41, 0xb7, 0xda, 0x3b, 0x1d, 0x1b,
1067413498266Sopenharmony_ci  0x99, 0x7c, 0x6f, 0x35, 0xe6, 0xfc, 0xb1, 0xaf, 0x51, 0x86, 0x0d, 0xce,
1067513498266Sopenharmony_ci  0x5c, 0x4f, 0x67, 0xf1, 0xe5, 0xf0, 0x9a, 0xb8, 0xdb, 0xd3, 0x57, 0xaf,
1067613498266Sopenharmony_ci  0xe1, 0x76, 0x42, 0xb4, 0x40, 0x41, 0x7a, 0xad, 0xaf, 0xa6, 0xa9, 0xbc,
1067713498266Sopenharmony_ci  0x4d, 0xf2, 0x2d, 0x1f, 0xec, 0x73, 0x72, 0x99, 0x86, 0xb1, 0x4e, 0x5a,
1067813498266Sopenharmony_ci  0xe1, 0xa5, 0x06, 0x54, 0x59, 0x9c, 0xd4, 0x52, 0xa7, 0xb3, 0x87, 0x2d,
1067913498266Sopenharmony_ci  0xe2, 0xa3, 0x3d, 0xb7, 0xda, 0x70, 0xc8, 0x02, 0x87, 0x5e, 0xa8, 0x8f,
1068013498266Sopenharmony_ci  0x70, 0xd1, 0x10, 0xa4, 0xdd, 0x79, 0xca, 0x45, 0x07, 0xaf, 0xb3, 0x37,
1068113498266Sopenharmony_ci  0xf1, 0x64, 0xef, 0x23, 0x32, 0x54, 0x5a, 0xfe, 0x34, 0xf0, 0x40, 0x5e,
1068213498266Sopenharmony_ci  0xcf, 0x46, 0x3c, 0x28, 0x7c, 0xd0, 0xde, 0x2e, 0x93, 0xda, 0xa4, 0xdb,
1068313498266Sopenharmony_ci  0xc3, 0xfb, 0xe3, 0x07, 0x34, 0x11, 0xfc, 0x00, 0x7d, 0xd7, 0xfc, 0x2a,
1068413498266Sopenharmony_ci  0x08, 0x1a, 0x46, 0x1a, 0x19, 0x30, 0xd8, 0xec, 0x2c, 0x67, 0xfd, 0xf9,
1068513498266Sopenharmony_ci  0x75, 0x36, 0x2a, 0x8b, 0xaa, 0x98, 0x98, 0x7a, 0x7d, 0xaa, 0x58, 0xbf,
1068613498266Sopenharmony_ci  0x7c, 0x79, 0x12, 0x5d, 0xa6, 0x43, 0x85, 0xb6, 0x1e, 0xf8, 0xc1, 0x99,
1068713498266Sopenharmony_ci  0x74, 0xab, 0x62, 0xec, 0x70, 0x99, 0xa5, 0x35, 0x6e, 0xab, 0x82, 0x31,
1068813498266Sopenharmony_ci  0x61, 0xd1, 0x43, 0x7c, 0x27, 0x95, 0xfa, 0x4f, 0xe4, 0xf6, 0x80, 0x26,
1068913498266Sopenharmony_ci  0x47, 0x53, 0x92, 0x42, 0xa3, 0x79, 0xea, 0x5d, 0x1d, 0x73, 0x89, 0x8a,
1069013498266Sopenharmony_ci  0x30, 0x22, 0xa4, 0x13, 0x52, 0x4f, 0x35, 0x09, 0xc4, 0xc8, 0x95, 0x95,
1069113498266Sopenharmony_ci  0xb8, 0x75, 0xa8, 0xe1, 0x4b, 0xac, 0xc2, 0x07, 0x8c, 0x57, 0x2a, 0x26,
1069213498266Sopenharmony_ci  0x1e, 0x76, 0x8a, 0x80, 0x30, 0x98, 0xc8, 0x29, 0xbc, 0x8d, 0x86, 0x78,
1069313498266Sopenharmony_ci  0xa7, 0x8c, 0x8b, 0x92, 0xd2, 0xba, 0xa8, 0x8a, 0xb4, 0xc8, 0xc6, 0xf9,
1069413498266Sopenharmony_ci  0xa8, 0x58, 0x94, 0x88, 0xc5, 0x82, 0xe3, 0xbb, 0x02, 0x89, 0xc2, 0x13,
1069513498266Sopenharmony_ci  0x0a, 0x0a, 0x31, 0xb1, 0xe0, 0x32, 0x5b, 0x4d, 0x94, 0xd0, 0xfd, 0xe6,
1069613498266Sopenharmony_ci  0x8b, 0x21, 0x62, 0x71, 0xd3, 0xc5, 0x68, 0x25, 0x4b, 0x77, 0xa3, 0x82,
1069713498266Sopenharmony_ci  0x75, 0x0e, 0x65, 0x3f, 0x2c, 0x76, 0x31, 0x1e, 0x3c, 0xd8, 0x9c, 0x67,
1069813498266Sopenharmony_ci  0xd9, 0x59, 0x08, 0x47, 0xd8, 0x64, 0xe8, 0x50, 0x49, 0x0f, 0xab, 0xee,
1069913498266Sopenharmony_ci  0xd1, 0x88, 0x44, 0x40, 0x2e, 0xe5, 0x7e, 0x69, 0xd2, 0x01, 0x57, 0xe4,
1070013498266Sopenharmony_ci  0x0a, 0x3a, 0x56, 0x42, 0xd4, 0xd7, 0x71, 0xa0, 0xee, 0xe9, 0x34, 0x7d,
1070113498266Sopenharmony_ci  0xda, 0x51, 0x6a, 0x4e, 0xc1, 0x9c, 0x1c, 0x6b, 0xad, 0x68, 0x9a, 0x2b,
1070213498266Sopenharmony_ci  0xd4, 0x3c, 0xd1, 0x61, 0x99, 0xea, 0x34, 0x56, 0x2c, 0x0f, 0xb8, 0xec,
1070313498266Sopenharmony_ci  0x2c, 0x4c, 0xcf, 0xb1, 0xe0, 0x26, 0xd8, 0x47, 0xad, 0x50, 0x52, 0xa4,
1070413498266Sopenharmony_ci  0x98, 0xb6, 0x59, 0xa1, 0xd9, 0x38, 0x46, 0xdc, 0x65, 0x01, 0x05, 0x7e,
1070513498266Sopenharmony_ci  0xb0, 0x13, 0x0f, 0x53, 0xd0, 0xff, 0xca, 0x68, 0xbf, 0x46, 0x25, 0x2b,
1070613498266Sopenharmony_ci  0x0c, 0xcc, 0xc6, 0xc8, 0x6c, 0x02, 0x49, 0x46, 0x08, 0x1a, 0xcc, 0x38,
1070713498266Sopenharmony_ci  0xdc, 0x5c, 0xeb, 0x6f, 0xb9, 0x99, 0x53, 0x52, 0xd5, 0x90, 0x5a, 0x8e,
1070813498266Sopenharmony_ci  0x10, 0x66, 0xa9, 0xd5, 0xdc, 0xce, 0x60, 0xab, 0x03, 0x9c, 0x8d, 0x78,
1070913498266Sopenharmony_ci  0x4c, 0xa3, 0x0d, 0x65, 0x14, 0x8e, 0x63, 0x29, 0x48, 0xe5, 0xae, 0xa3,
1071013498266Sopenharmony_ci  0xc9, 0x66, 0x09, 0xb0, 0x80, 0x2b, 0x62, 0x4b, 0x03, 0x0b, 0x01, 0x11,
1071113498266Sopenharmony_ci  0xcc, 0x45, 0x66, 0xf0, 0x33, 0x06, 0xd0, 0x80, 0x5d, 0xba, 0xe1, 0xd0,
1071213498266Sopenharmony_ci  0x1a, 0xb6, 0x14, 0xca, 0xf9, 0x6a, 0x0c, 0x57, 0x2a, 0x74, 0x69, 0x92,
1071313498266Sopenharmony_ci  0x42, 0xa9, 0x51, 0x9c, 0x7c, 0x50, 0x47, 0x23, 0xaa, 0xbe, 0x24, 0x8a,
1071413498266Sopenharmony_ci  0xf0, 0xdb, 0xe7, 0x4f, 0x5b, 0xcd, 0x3d, 0x7a, 0xfc, 0x70, 0x2b, 0x2c,
1071513498266Sopenharmony_ci  0x2e, 0x34, 0x77, 0xe9, 0x8f, 0xc7, 0xce, 0x6a, 0xf6, 0xdf, 0x9b, 0x3d,
1071613498266Sopenharmony_ci  0x7f, 0xff, 0xe5, 0xe0, 0xdb, 0x87, 0x93, 0xf8, 0xc1, 0x60, 0xfb, 0x6f,
1071713498266Sopenharmony_ci  0xff, 0x7c, 0xdd, 0xfb, 0x94, 0xdc, 0x85, 0x06, 0x9d, 0x36, 0x28, 0x93,
1071813498266Sopenharmony_ci  0xec, 0x6c, 0x58, 0x94, 0x20, 0xda, 0x87, 0x1f, 0x5f, 0x2f, 0xcd, 0xc5,
1071913498266Sopenharmony_ci  0xd1, 0xcd, 0x55, 0xa5, 0xc5, 0x86, 0x83, 0x1a, 0x3d, 0x87, 0x1d, 0x7d,
1072013498266Sopenharmony_ci  0x06, 0x4b, 0xc2, 0x73, 0xeb, 0x61, 0x01, 0x3d, 0xc9, 0x1b, 0xf7, 0x7c,
1072113498266Sopenharmony_ci  0x2b, 0x44, 0x0f, 0x0d, 0x0f, 0x4c, 0x99, 0x86, 0x25, 0x2f, 0x5b, 0xf3,
1072213498266Sopenharmony_ci  0x47, 0x9e, 0x74, 0x46, 0x52, 0xd9, 0xa8, 0x63, 0x14, 0x25, 0xdf, 0xbd,
1072313498266Sopenharmony_ci  0x7d, 0xc5, 0x61, 0x61, 0xfa, 0x68, 0x97, 0xf3, 0x52, 0x1d, 0x2f, 0xcd,
1072413498266Sopenharmony_ci  0x6a, 0x5d, 0x8b, 0x39, 0xb0, 0x9a, 0x3a, 0x9b, 0x8a, 0x67, 0xb1, 0x84,
1072513498266Sopenharmony_ci  0x4d, 0xb7, 0x71, 0x68, 0x41, 0xbe, 0x2e, 0x45, 0x5c, 0x54, 0xb8, 0xc7,
1072613498266Sopenharmony_ci  0xf4, 0x73, 0x77, 0x7c, 0x26, 0x6c, 0x98, 0x9c, 0x9f, 0xfd, 0x66, 0x94,
1072713498266Sopenharmony_ci  0x99, 0x17, 0x93, 0x83, 0xe1, 0xca, 0x52, 0xb3, 0x28, 0x8e, 0xd9, 0xe5,
1072813498266Sopenharmony_ci  0x18, 0x6b, 0xda, 0xaf, 0xd6, 0xb2, 0xe9, 0x48, 0x98, 0x70, 0x76, 0xf6,
1072913498266Sopenharmony_ci  0x33, 0x24, 0x4c, 0x38, 0xbd, 0xf7, 0xea, 0xd9, 0xbc, 0x07, 0xbb, 0xbd,
1073013498266Sopenharmony_ci  0x1a, 0xfd, 0x7a, 0xc4, 0x41, 0x14, 0xfc, 0x37, 0xd7, 0x43, 0xed, 0xf8,
1073113498266Sopenharmony_ci  0x2f, 0x07, 0x52, 0xa9, 0x3d, 0x98, 0x95, 0xd7, 0xf4, 0xd2, 0xb9, 0x04,
1073213498266Sopenharmony_ci  0x16, 0xac, 0xec, 0xf6, 0x63, 0x89, 0xe0, 0xdc, 0xf2, 0x04, 0xf0, 0x10,
1073313498266Sopenharmony_ci  0x7e, 0xc8, 0xad, 0xdb, 0x50, 0xd5, 0x63, 0xf8, 0x9a, 0x34, 0x4d, 0x4a,
1073413498266Sopenharmony_ci  0x30, 0x2e, 0xd5, 0x9e, 0xf7, 0xaf, 0x7f, 0xfb, 0x26, 0xea, 0x9f, 0x7f,
1073513498266Sopenharmony_ci  0x25, 0x27, 0x73, 0x8a, 0x22, 0x86, 0xb9, 0x76, 0x55, 0xb4, 0xa8, 0x1a,
1073613498266Sopenharmony_ci  0xa2, 0x0b, 0x03, 0xf0, 0xe3, 0x96, 0x48, 0x8c, 0x67, 0xa0, 0x50, 0x9c,
1073713498266Sopenharmony_ci  0x41, 0xd1, 0x8c, 0xd6, 0xfe, 0xb4, 0x26, 0x51, 0x89, 0xea, 0x3c, 0x11,
1073813498266Sopenharmony_ci  0xcd, 0x4d, 0x04, 0x7e, 0x19, 0xb7, 0xd2, 0x22, 0x45, 0xba, 0x26, 0x7e,
1073913498266Sopenharmony_ci  0x5d, 0x63, 0xd1, 0x80, 0x29, 0x71, 0x97, 0x40, 0x9e, 0x1d, 0x74, 0x29,
1074013498266Sopenharmony_ci  0xa9, 0xc2, 0xad, 0xa5, 0x48, 0x35, 0x16, 0x95, 0x83, 0x46, 0x09, 0x5f,
1074113498266Sopenharmony_ci  0xc1, 0xb3, 0x1b, 0x93, 0x1d, 0x64, 0xc0, 0x28, 0xee, 0x59, 0x1e, 0x0e,
1074213498266Sopenharmony_ci  0x1b, 0xec, 0x21, 0x25, 0x00, 0x21, 0xfc, 0x0b, 0x84, 0xb3, 0x3e, 0xa8,
1074313498266Sopenharmony_ci  0x98, 0xff, 0x76, 0x03, 0xef, 0x7a, 0x68, 0x0d, 0xee, 0xe1, 0xd8, 0xdf,
1074413498266Sopenharmony_ci  0xff, 0x69, 0x1b, 0x2b, 0xa8, 0xf7, 0xda, 0x6d, 0x30, 0xa8, 0x8e, 0xa1,
1074513498266Sopenharmony_ci  0x64, 0x6b, 0x4d, 0x40, 0xab, 0xfe, 0x35, 0x3d, 0x22, 0xf0, 0x7a, 0x1f,
1074613498266Sopenharmony_ci  0x4d, 0x2b, 0xff, 0x1e, 0xe0, 0xcf, 0x9f, 0xb7, 0xe3, 0x87, 0xbf, 0x5a,
1074713498266Sopenharmony_ci  0xe5, 0x0c, 0x7b, 0xfe, 0xd3, 0xf6, 0xfb, 0x3f, 0xed, 0xf4, 0x82, 0x08,
1074813498266Sopenharmony_ci  0xa6, 0xb6, 0x0a, 0x85, 0x83, 0x05, 0x51, 0x11, 0x56, 0x80, 0x08, 0x52,
1074913498266Sopenharmony_ci  0x49, 0x5b, 0x85, 0x26, 0xf6, 0xe3, 0xef, 0x22, 0xc6, 0xa3, 0xb6, 0x2c,
1075013498266Sopenharmony_ci  0x3a, 0x52, 0x81, 0xcd, 0xa0, 0x12, 0x5e, 0x16, 0xfc, 0xb2, 0xb0, 0x25,
1075113498266Sopenharmony_ci  0x81, 0x11, 0x0e, 0xc3, 0x66, 0x32, 0xaf, 0x52, 0x83, 0x05, 0xe9, 0xe4,
1075213498266Sopenharmony_ci  0xb5, 0xad, 0xa4, 0x13, 0x5e, 0x12, 0x98, 0x6b, 0x92, 0x44, 0x8d, 0x30,
1075313498266Sopenharmony_ci  0xc6, 0x22, 0x1a, 0x0e, 0x23, 0x27, 0x7a, 0xf1, 0x0b, 0xcf, 0x7e, 0x32,
1075413498266Sopenharmony_ci  0x16, 0xce, 0xcf, 0xa6, 0x5c, 0xb5, 0x07, 0xc0, 0x8b, 0x6e, 0x00, 0xae,
1075513498266Sopenharmony_ci  0x10, 0xb0, 0x83, 0x87, 0x49, 0x97, 0xb3, 0x67, 0x9d, 0xa3, 0xf2, 0x2c,
1075613498266Sopenharmony_ci  0x06, 0xac, 0x4f, 0x98, 0x6b, 0x81, 0x94, 0x68, 0x82, 0x9e, 0xe9, 0x33,
1075713498266Sopenharmony_ci  0x3d, 0x0c, 0x28, 0x23, 0xa2, 0x04, 0x4c, 0xbf, 0xf8, 0x32, 0x45, 0x32,
1075813498266Sopenharmony_ci  0x04, 0x35, 0xb6, 0xc1, 0xbe, 0x69, 0x35, 0x88, 0x9d, 0x0c, 0x6d, 0x05,
1075913498266Sopenharmony_ci  0xc5, 0xa4, 0x0a, 0x2e, 0x87, 0xbb, 0x10, 0x2e, 0x3c, 0x10, 0x2f, 0x13,
1076013498266Sopenharmony_ci  0x2d, 0x4d, 0x77, 0xb4, 0xb9, 0x14, 0xb3, 0x75, 0x19, 0xb4, 0xcd, 0xd8,
1076113498266Sopenharmony_ci  0x94, 0x48, 0x11, 0x9b, 0x5a, 0x2e, 0x97, 0x41, 0xfb, 0x16, 0xa2, 0x8a,
1076213498266Sopenharmony_ci  0x40, 0xe3, 0x2b, 0x60, 0x67, 0x9c, 0x3d, 0x63, 0x2a, 0x72, 0xab, 0xa7,
1076313498266Sopenharmony_ci  0x40, 0x6f, 0xc5, 0x2a, 0x5a, 0x8b, 0xd7, 0xa2, 0xf5, 0x24, 0x32, 0x56,
1076413498266Sopenharmony_ci  0xd0, 0x71, 0x52, 0x9d, 0x6f, 0x04, 0xe2, 0xfc, 0xc5, 0xa2, 0x63, 0x79,
1076513498266Sopenharmony_ci  0x99, 0x70, 0x2e, 0xef, 0x3e, 0x2d, 0x24, 0xe1, 0x95, 0xcc, 0x3a, 0x2e,
1076613498266Sopenharmony_ci  0x58, 0x74, 0x31, 0xce, 0xf0, 0x9a, 0x60, 0x6d, 0x85, 0x78, 0x8f, 0x01,
1076713498266Sopenharmony_ci  0xf5, 0x36, 0x17, 0xaa, 0x87, 0xec, 0xb3, 0x39, 0x4e, 0x2f, 0x36, 0xf3,
1076813498266Sopenharmony_ci  0xc5, 0x74, 0xba, 0x77, 0xed, 0x52, 0xc3, 0xc2, 0x9a, 0xa7, 0xbd, 0xac,
1076913498266Sopenharmony_ci  0x14, 0x76, 0x16, 0x48, 0x66, 0xca, 0x8d, 0xda, 0x82, 0x66, 0xfc, 0xf8,
1077013498266Sopenharmony_ci  0x62, 0x19, 0xe7, 0xbd, 0x45, 0x18, 0xc7, 0x45, 0x74, 0xc3, 0x40, 0x93,
1077113498266Sopenharmony_ci  0xdb, 0xb1, 0xbf, 0xe8, 0x4e, 0x18, 0xda, 0x8a, 0x23, 0xd7, 0xef, 0x76,
1077213498266Sopenharmony_ci  0x42, 0x61, 0xcd, 0x4b, 0xaf, 0x6d, 0x2f, 0x84, 0xcc, 0x8f, 0x1f, 0x63,
1077313498266Sopenharmony_ci  0x4e, 0x72, 0xe3, 0xe8, 0x24, 0x57, 0x60, 0xd5, 0x88, 0xe9, 0x38, 0x9b,
1077413498266Sopenharmony_ci  0xcd, 0x80, 0x12, 0xfd, 0xfc, 0x73, 0xce, 0xbc, 0x1e, 0x13, 0xa6, 0x46,
1077513498266Sopenharmony_ci  0x64, 0xe2, 0xab, 0x8d, 0x0b, 0xae, 0x19, 0x54, 0xa1, 0xd1, 0xfa, 0x9a,
1077613498266Sopenharmony_ci  0x88, 0xe1, 0x5f, 0x90, 0x99, 0x41, 0x46, 0x93, 0x7a, 0x42, 0x9c, 0xc9,
1077713498266Sopenharmony_ci  0x84, 0x32, 0x1b, 0x39, 0x99, 0x41, 0x40, 0x24, 0x54, 0x68, 0x1b, 0xab,
1077813498266Sopenharmony_ci  0xc3, 0x59, 0x53, 0xda, 0xb3, 0x17, 0xc8, 0x0c, 0x2c, 0x6c, 0x94, 0x36,
1077913498266Sopenharmony_ci  0x8a, 0x13, 0x5d, 0x26, 0x1c, 0x24, 0x67, 0x2b, 0x39, 0x61, 0xc1, 0x05,
1078013498266Sopenharmony_ci  0xeb, 0x34, 0x14, 0xc2, 0x0d, 0xc1, 0x0e, 0x24, 0x16, 0xd3, 0xf0, 0x23,
1078113498266Sopenharmony_ci  0x92, 0x35, 0x85, 0xa1, 0x72, 0x0d, 0x46, 0xc1, 0x97, 0x75, 0x63, 0x88,
1078213498266Sopenharmony_ci  0x3e, 0x67, 0x71, 0xd7, 0x86, 0x83, 0xda, 0xdf, 0xc4, 0xe8, 0xce, 0xb1,
1078313498266Sopenharmony_ci  0x19, 0xfd, 0x3e, 0x56, 0x95, 0x61, 0x03, 0xa3, 0x8c, 0xff, 0x6b, 0xd9,
1078413498266Sopenharmony_ci  0x59, 0xd9, 0x5e, 0x7a, 0x90, 0x56, 0x4a, 0x05, 0xb0, 0x9d, 0xcf, 0x92,
1078513498266Sopenharmony_ci  0x8f, 0x4d, 0x5f, 0xf6, 0x93, 0xa6, 0x2f, 0xdb, 0x7d, 0x30, 0x88, 0xaa,
1078613498266Sopenharmony_ci  0x44, 0x07, 0x22, 0xa9, 0x3e, 0xf0, 0x4e, 0x8e, 0x8b, 0xe0, 0xa1, 0x60,
1078713498266Sopenharmony_ci  0xf9, 0xb5, 0x39, 0x92, 0xfe, 0xb2, 0x7a, 0xe8, 0x58, 0xd6, 0xad, 0xc4,
1078813498266Sopenharmony_ci  0xda, 0xe7, 0x2e, 0xfa, 0x9b, 0x94, 0x9b, 0x40, 0xb1, 0xc0, 0x50, 0x2f,
1078913498266Sopenharmony_ci  0xf7, 0x59, 0x65, 0xb8, 0xbf, 0x49, 0xee, 0x9d, 0x75, 0x02, 0xf0, 0xf8,
1079013498266Sopenharmony_ci  0xa3, 0x48, 0xd3, 0xd1, 0xdc, 0x42, 0xb8, 0x32, 0x1c, 0xed, 0x04, 0xfd,
1079113498266Sopenharmony_ci  0x85, 0x2d, 0x04, 0xed, 0xc5, 0xfe, 0xe3, 0x2d, 0x04, 0x8d, 0xee, 0x31,
1079213498266Sopenharmony_ci  0x5c, 0xb5, 0x83, 0x1e, 0x57, 0xa9, 0xb0, 0xdd, 0x04, 0xf8, 0x68, 0x50,
1079313498266Sopenharmony_ci  0xda, 0xa3, 0x06, 0xa5, 0x35, 0x1e, 0xec, 0x4e, 0x31, 0x16, 0x58, 0x4a,
1079413498266Sopenharmony_ci  0x2a, 0xbc, 0x62, 0xa9, 0x00, 0xe1, 0xd2, 0x0d, 0x81, 0x57, 0xe2, 0x1d,
1079513498266Sopenharmony_ci  0xe2, 0x0d, 0x0c, 0x88, 0x72, 0x65, 0x7a, 0x86, 0x75, 0xef, 0xd0, 0x80,
1079613498266Sopenharmony_ci  0x85, 0x65, 0x59, 0xe0, 0x5e, 0xce, 0xd3, 0xf2, 0xbf, 0x21, 0xff, 0xba,
1079713498266Sopenharmony_ci  0xfb, 0x62, 0x12, 0x3e, 0xd2, 0xca, 0x6a, 0x94, 0x71, 0x1f, 0xec, 0xc9,
1079813498266Sopenharmony_ci  0xe6, 0xdd, 0x11, 0x6b, 0x6a, 0x54, 0xb9, 0x5e, 0x42, 0x2f, 0x31, 0xd5,
1079913498266Sopenharmony_ci  0xb8, 0xd9, 0x9f, 0x9f, 0x97, 0x49, 0x95, 0xfa, 0x70, 0xb2, 0x27, 0x2f,
1080013498266Sopenharmony_ci  0x22, 0x0a, 0xb5, 0x39, 0x86, 0xa7, 0xf8, 0x19, 0x23, 0xf6, 0x4b, 0xe5,
1080113498266Sopenharmony_ci  0xfa, 0xe8, 0x43, 0x7a, 0x15, 0xb6, 0x6d, 0x50, 0xcb, 0x7f, 0x48, 0xd5,
1080213498266Sopenharmony_ci  0x7a, 0xea, 0x89, 0x33, 0x65, 0x29, 0xb6, 0xf3, 0xea, 0x16, 0x10, 0x3a,
1080313498266Sopenharmony_ci  0xf4, 0x5a, 0x2b, 0xeb, 0xb4, 0xb1, 0x4c, 0xf5, 0x79, 0x9c, 0x54, 0xb1,
1080413498266Sopenharmony_ci  0xc7, 0x69, 0x4f, 0xdb, 0xa5, 0x5f, 0xd0, 0x57, 0x87, 0x38, 0x8b, 0x98,
1080513498266Sopenharmony_ci  0x2a, 0x99, 0x63, 0xa9, 0x49, 0x20, 0xd7, 0xcd, 0xc1, 0x60, 0x13, 0x35,
1080613498266Sopenharmony_ci  0xe2, 0x4d, 0xf8, 0xc7, 0xa6, 0x6b, 0x93, 0x71, 0xac, 0xd5, 0x1c, 0x29,
1080713498266Sopenharmony_ci  0xed, 0xd8, 0xd9, 0x00, 0x23, 0x6c, 0x30, 0xff, 0x05, 0x73, 0x48, 0x38,
1080813498266Sopenharmony_ci  0x8c, 0xb3, 0xfa, 0xe7, 0x02, 0x54, 0x08, 0x4e, 0xc8, 0x9c, 0xa5, 0xe5,
1080913498266Sopenharmony_ci  0x99, 0xc6, 0x12, 0x5b, 0x6b, 0xaa, 0x27, 0xe4, 0x6b, 0x2e, 0x4c, 0x45,
1081013498266Sopenharmony_ci  0x6e, 0x44, 0x31, 0x19, 0xb8, 0x28, 0xbe, 0x8c, 0xbe, 0x46, 0xf5, 0x6b,
1081113498266Sopenharmony_ci  0xb2, 0x5a, 0xc3, 0x3f, 0xa8, 0xdc, 0x54, 0x52, 0x2f, 0xf5, 0x50, 0xd8,
1081213498266Sopenharmony_ci  0x05, 0xb9, 0x87, 0xe3, 0xa5, 0x4d, 0xaf, 0x4e, 0x08, 0x66, 0x50, 0x81,
1081313498266Sopenharmony_ci  0xcd, 0xc7, 0x5d, 0x80, 0xff, 0x4f, 0xeb, 0xd1, 0x26, 0xf9, 0x3e, 0xc6,
1081413498266Sopenharmony_ci  0x4b, 0x0b, 0xb9, 0x50, 0xa6, 0x6b, 0xcc, 0xa6, 0xc1, 0x06, 0x25, 0x64,
1081513498266Sopenharmony_ci  0xc0, 0xe7, 0xc6, 0xf3, 0xc5, 0x10, 0x09, 0x66, 0xff, 0x9c, 0x76, 0xe4,
1081613498266Sopenharmony_ci  0xeb, 0x60, 0x7c, 0x5a, 0x33, 0x79, 0x98, 0xed, 0x41, 0x6c, 0x25, 0x30,
1081713498266Sopenharmony_ci  0x5c, 0x4e, 0x5d, 0x59, 0x78, 0x8a, 0xb8, 0x80, 0x2d, 0xbc, 0xec, 0xe3,
1081813498266Sopenharmony_ci  0xd3, 0x51, 0x27, 0x0c, 0x0c, 0xc3, 0x88, 0xc8, 0xec, 0x63, 0x98, 0xa7,
1081913498266Sopenharmony_ci  0x26, 0x35, 0x5a, 0xc5, 0x4f, 0xc6, 0x96, 0x21, 0x2f, 0x19, 0xb5, 0x46,
1082013498266Sopenharmony_ci  0x06, 0x5f, 0xcf, 0xeb, 0x9f, 0x73, 0x54, 0x8b, 0x89, 0xd0, 0x91, 0x51,
1082113498266Sopenharmony_ci  0xe0, 0x20, 0x60, 0x27, 0x8e, 0x0f, 0x5f, 0x23, 0x89, 0x3d, 0x3b, 0x7c,
1082213498266Sopenharmony_ci  0x2b, 0x36, 0xfb, 0x3e, 0xfe, 0x89, 0xf6, 0x13, 0x36, 0x99, 0xb4, 0x85,
1082313498266Sopenharmony_ci  0x83, 0x09, 0xf9, 0x0b, 0x1f, 0x3d, 0x20, 0xaf, 0x1e, 0x1d, 0xf4, 0xf3,
1082413498266Sopenharmony_ci  0x64, 0xe7, 0xe1, 0x23, 0x19, 0xb6, 0xd6, 0xe1, 0x26, 0xf3, 0xd7, 0x1a,
1082513498266Sopenharmony_ci  0x7f, 0xb5, 0xb9, 0xc9, 0xf9, 0xf5, 0xe8, 0xa5, 0xf6, 0x34, 0x6c, 0x0a,
1082613498266Sopenharmony_ci  0x51, 0xc2, 0x67, 0xff, 0xba, 0x16, 0x46, 0x6c, 0x52, 0xc7, 0x0e, 0x07,
1082713498266Sopenharmony_ci  0x82, 0x60, 0x90, 0x34, 0x21, 0x4b, 0xbd, 0x72, 0xc4, 0x68, 0xc5, 0x7b,
1082813498266Sopenharmony_ci  0x14, 0xe7, 0x8a, 0xd4, 0x0e, 0xf1, 0x20, 0x96, 0x46, 0x58, 0xb4, 0x84,
1082913498266Sopenharmony_ci  0xe0, 0xa5, 0xa9, 0x50, 0x2d, 0xd5, 0x58, 0xa2, 0xdb, 0x03, 0xef, 0x45,
1083013498266Sopenharmony_ci  0x2d, 0x23, 0x01, 0xec, 0xb3, 0xb1, 0x40, 0x15, 0x93, 0xf6, 0xc8, 0xaf,
1083113498266Sopenharmony_ci  0x8e, 0x28, 0xe8, 0x4b, 0xb8, 0x1d, 0x4e, 0xc3, 0x52, 0x57, 0x2b, 0xab,
1083213498266Sopenharmony_ci  0x5d, 0xb3, 0x32, 0x27, 0x87, 0x71, 0x30, 0x05, 0x63, 0x02, 0x2d, 0x86,
1083313498266Sopenharmony_ci  0x1e, 0x2c, 0xbd, 0x12, 0x86, 0xe1, 0xa0, 0xcd, 0x28, 0x14, 0xcd, 0xe4,
1083413498266Sopenharmony_ci  0xb1, 0x40, 0xa7, 0x4e, 0x11, 0xcb, 0xa1, 0x9f, 0x3c, 0x5a, 0x50, 0x18,
1083513498266Sopenharmony_ci  0x21, 0xa3, 0x4d, 0x19, 0x08, 0x77, 0x8e, 0xc1, 0xbd, 0xa2, 0xe4, 0xb4,
1083613498266Sopenharmony_ci  0xeb, 0x2e, 0x6f, 0x58, 0xa1, 0x94, 0xe2, 0x55, 0x58, 0x7c, 0x94, 0x2f,
1083713498266Sopenharmony_ci  0x5a, 0xd1, 0x69, 0x6a, 0x70, 0x45, 0x7a, 0x6f, 0xfb, 0x88, 0x31, 0xbb,
1083813498266Sopenharmony_ci  0xd9, 0xa9, 0x29, 0x24, 0xb5, 0xe9, 0x0c, 0xb4, 0x21, 0xd2, 0x33, 0x45,
1083913498266Sopenharmony_ci  0x96, 0x11, 0x4a, 0x3d, 0x43, 0x7f, 0x0b, 0x8e, 0x3f, 0xad, 0xbf, 0x57,
1084013498266Sopenharmony_ci  0x91, 0xdd, 0xbf, 0x79, 0x80, 0x76, 0x37, 0x91, 0x70, 0xc5, 0x99, 0xe8,
1084113498266Sopenharmony_ci  0xd9, 0x23, 0x8e, 0x60, 0xfc, 0x48, 0x2a, 0xb8, 0x29, 0xdf, 0xe5, 0x0b,
1084213498266Sopenharmony_ci  0x20, 0x9e, 0x7e, 0x74, 0x59, 0x4c, 0x27, 0xf8, 0x99, 0x1b, 0xa2, 0xf3,
1084313498266Sopenharmony_ci  0x00, 0xc3, 0x94, 0xfa, 0x11, 0x90, 0xfb, 0x18, 0x09, 0xac, 0x8f, 0xcc,
1084413498266Sopenharmony_ci  0x01, 0xa7, 0xd7, 0x5e, 0x20, 0x94, 0x9d, 0xc8, 0x6b, 0x39, 0x4b, 0x46,
1084513498266Sopenharmony_ci  0x47, 0x27, 0x20, 0xee, 0x0d, 0x1e, 0xff, 0x65, 0x33, 0xa3, 0xdf, 0xfe,
1084613498266Sopenharmony_ci  0x12, 0xad, 0x3f, 0x1e, 0x3c, 0x7c, 0x30, 0xd8, 0x86, 0x76, 0x4e, 0xb0,
1084713498266Sopenharmony_ci  0x26, 0x41, 0x0e, 0x37, 0xff, 0x3a, 0xe1, 0xf7, 0x6e, 0x7b, 0xf8, 0xbd,
1084813498266Sopenharmony_ci  0x72, 0x64, 0xae, 0x19, 0x36, 0x0c, 0x83, 0x07, 0xcd, 0xca, 0xb9, 0x0c,
1084913498266Sopenharmony_ci  0xdc, 0x0e, 0xb3, 0x31, 0x83, 0xc7, 0x34, 0x83, 0xfb, 0x1d, 0xf6, 0x11,
1085013498266Sopenharmony_ci  0x6d, 0x20, 0x2e, 0xde, 0x10, 0x8b, 0x1e, 0xe1, 0x21, 0x23, 0x50, 0x67,
1085113498266Sopenharmony_ci  0x9e, 0x46, 0x97, 0xd7, 0xa3, 0xc1, 0x42, 0xef, 0x06, 0x37, 0x77, 0x45,
1085213498266Sopenharmony_ci  0x80, 0xc5, 0xc6, 0x08, 0xe0, 0xbf, 0x95, 0x4c, 0x43, 0xad, 0xd7, 0x0d,
1085313498266Sopenharmony_ci  0x4f, 0x1b, 0xa5, 0xdb, 0xdb, 0x4f, 0x86, 0x0f, 0xb7, 0x9f, 0x7c, 0xf9,
1085413498266Sopenharmony_ci  0x78, 0xf2, 0xe0, 0xc1, 0xc3, 0x9d, 0xf1, 0x68, 0x6d, 0x45, 0x19, 0x04,
1085513498266Sopenharmony_ci  0x8d, 0x43, 0xd0, 0x2a, 0x37, 0xd8, 0xb8, 0x74, 0xb8, 0xc2, 0x5b, 0x38,
1085613498266Sopenharmony_ci  0x9a, 0xa8, 0x79, 0xcf, 0x94, 0x54, 0x16, 0xbc, 0x26, 0x60, 0xfa, 0xc7,
1085713498266Sopenharmony_ci  0x3b, 0xbb, 0xdb, 0x9b, 0x8f, 0x06, 0x0f, 0x06, 0x3b, 0x06, 0xf4, 0x89,
1085813498266Sopenharmony_ci  0x6b, 0x3d, 0xd4, 0x04, 0x2c, 0x10, 0x88, 0x0c, 0x26, 0x74, 0x87, 0x2c,
1085913498266Sopenharmony_ci  0x97, 0x52, 0x75, 0xe6, 0x13, 0xf2, 0x05, 0x5a, 0x74, 0x05, 0x2c, 0x5e,
1086013498266Sopenharmony_ci  0xb7, 0xed, 0x22, 0xfd, 0x92, 0xbf, 0xda, 0x0b, 0x7d, 0xcb, 0x63, 0x1c,
1086113498266Sopenharmony_ci  0x84, 0x89, 0x0c, 0xc1, 0xcd, 0x1a, 0x66, 0xff, 0x5c, 0x64, 0x35, 0xe8,
1086213498266Sopenharmony_ci  0x93, 0xe4, 0x8d, 0x4c, 0x87, 0x18, 0xcc, 0x7c, 0x59, 0x91, 0x76, 0x0b,
1086313498266Sopenharmony_ci  0x2b, 0x30, 0x52, 0x80, 0x9f, 0x60, 0xac, 0x5a, 0xae, 0x90, 0x80, 0x4e,
1086413498266Sopenharmony_ci  0x95, 0x12, 0x82, 0xe3, 0xcd, 0xe8, 0x3e, 0xc3, 0x27, 0xaa, 0xac, 0xaa,
1086513498266Sopenharmony_ci  0xe1, 0x16, 0x02, 0x9e, 0xfd, 0xa2, 0xb8, 0x44, 0x62, 0xea, 0x13, 0x60,
1086613498266Sopenharmony_ci  0x47, 0xa0, 0xae, 0x13, 0xba, 0x09, 0x4c, 0x2c, 0x34, 0x3c, 0xc4, 0x48,
1086713498266Sopenharmony_ci  0x0b, 0xb4, 0x7e, 0x14, 0x11, 0x2a, 0xd0, 0x0b, 0x9c, 0x6a, 0xc8, 0x91,
1086813498266Sopenharmony_ci  0x22, 0x8d, 0x09, 0x2f, 0xe7, 0x94, 0xb3, 0x34, 0x41, 0xc3, 0x13, 0x42,
1086913498266Sopenharmony_ci  0xd3, 0x72, 0x5c, 0x2c, 0xe7, 0x85, 0x92, 0xe8, 0xd4, 0x01, 0xaa, 0x1b,
1087013498266Sopenharmony_ci  0x92, 0xb1, 0x78, 0xd7, 0xef, 0x34, 0xb7, 0xa5, 0xd0, 0x56, 0x57, 0x96,
1087113498266Sopenharmony_ci  0xad, 0x64, 0x30, 0x0e, 0x96, 0x70, 0x3c, 0x8e, 0x7a, 0x78, 0x6f, 0xac,
1087213498266Sopenharmony_ci  0xea, 0xf5, 0x96, 0xb2, 0x84, 0x7d, 0x5b, 0x93, 0x90, 0x25, 0xef, 0x2e,
1087313498266Sopenharmony_ci  0xb8, 0x61, 0x7d, 0xe1, 0xd6, 0xe4, 0xbf, 0x7b, 0xf7, 0xe4, 0xbf, 0xf3,
1087413498266Sopenharmony_ci  0x3f, 0x9f, 0xfc, 0x95, 0xfa, 0x93, 0xa5, 0xb4, 0xaf, 0x05, 0x24, 0xa2,
1087513498266Sopenharmony_ci  0xcf, 0x44, 0xfe, 0x3b, 0xf7, 0x42, 0xfe, 0x3b, 0xb7, 0x23, 0xff, 0x9d,
1087613498266Sopenharmony_ci  0xbb, 0x23, 0xff, 0xed, 0x55, 0xc9, 0x7f, 0xf7, 0x26, 0xe4, 0x0f, 0x94,
1087713498266Sopenharmony_ci  0x36, 0x45, 0xa1, 0xb3, 0x41, 0xfe, 0x0f, 0x56, 0x22, 0x7f, 0xa6, 0x7f,
1087813498266Sopenharmony_ci  0x3a, 0x00, 0x9d, 0x27, 0x00, 0xc7, 0xec, 0x02, 0xbd, 0x83, 0x8c, 0x1c,
1087913498266Sopenharmony_ci  0xae, 0x39, 0x79, 0x73, 0x3a, 0x4b, 0xa8, 0x51, 0x6d, 0x35, 0x14, 0xfd,
1088013498266Sopenharmony_ci  0x31, 0xb8, 0x4f, 0x32, 0xdb, 0xbd, 0x17, 0x32, 0xdb, 0xbd, 0x1d, 0x99,
1088113498266Sopenharmony_ci  0xed, 0xde, 0x0b, 0x97, 0xdd, 0xbe, 0x8e, 0xcc, 0xca, 0x94, 0xa3, 0x19,
1088213498266Sopenharmony_ci  0x7f, 0xd6, 0xb0, 0x52, 0xe8, 0xeb, 0x57, 0x72, 0x58, 0xed, 0xa1, 0x38,
1088313498266Sopenharmony_ci  0xf7, 0x6b, 0xdb, 0x56, 0x11, 0x52, 0x68, 0x4f, 0x8e, 0x9e, 0x7e, 0x7f,
1088413498266Sopenharmony_ci  0x22, 0x51, 0x91, 0x52, 0x8d, 0x42, 0xb5, 0x12, 0xf6, 0x9e, 0x80, 0xa2,
1088513498266Sopenharmony_ci  0x4a, 0xe5, 0x49, 0x3c, 0x2d, 0x97, 0x72, 0x6c, 0x1b, 0xe1, 0xd4, 0x08,
1088613498266Sopenharmony_ci  0x02, 0x22, 0x57, 0x2f, 0x95, 0x4a, 0x97, 0x5a, 0x00, 0xe4, 0x6f, 0xd6,
1088713498266Sopenharmony_ci  0x56, 0xa5, 0xf8, 0xa9, 0xcf, 0x30, 0x79, 0x20, 0x32, 0x12, 0xe3, 0x15,
1088813498266Sopenharmony_ci  0xcf, 0x9d, 0x17, 0xd7, 0xeb, 0xf3, 0x92, 0x50, 0x75, 0xe9, 0xd1, 0x0d,
1088913498266Sopenharmony_ci  0x0d, 0x9d, 0x5e, 0x36, 0x3a, 0x19, 0xd7, 0x0b, 0xb4, 0xec, 0xa0, 0x62,
1089013498266Sopenharmony_ci  0x1b, 0xb5, 0xe2, 0xbe, 0x1d, 0x4b, 0xb5, 0xf9, 0x56, 0x03, 0x33, 0x42,
1089113498266Sopenharmony_ci  0xb5, 0x7b, 0xa4, 0x50, 0xb2, 0xb3, 0xde, 0xf8, 0x9e, 0x1f, 0xf5, 0xff,
1089213498266Sopenharmony_ci  0x91, 0x51, 0xc1, 0x24, 0xec, 0x00, 0x76, 0x18, 0x4e, 0x4c, 0x4e, 0x70,
1089313498266Sopenharmony_ci  0xb1, 0x66, 0x86, 0xda, 0x46, 0xa5, 0x38, 0xca, 0x55, 0x31, 0xfa, 0x50,
1089413498266Sopenharmony_ci  0x3d, 0x80, 0x26, 0xdb, 0x2e, 0x7d, 0xfe, 0x22, 0xc1, 0x6f, 0xe4, 0x8f,
1089513498266Sopenharmony_ci  0x87, 0xd8, 0x31, 0xa1, 0xd0, 0xf2, 0x9f, 0xe7, 0xf4, 0x37, 0xe7, 0xa8,
1089613498266Sopenharmony_ci  0x71, 0x01, 0x60, 0x27, 0x60, 0x6a, 0x14, 0x5c, 0x68, 0xbd, 0x9c, 0xd8,
1089713498266Sopenharmony_ci  0x8e, 0xcb, 0x55, 0x58, 0xde, 0x14, 0x5e, 0xb5, 0x58, 0xac, 0xc2, 0x48,
1089813498266Sopenharmony_ci  0x66, 0x68, 0xd9, 0xcc, 0x2e, 0x8c, 0x23, 0x68, 0x86, 0xda, 0x7d, 0xd0,
1089913498266Sopenharmony_ci  0x19, 0xbe, 0xc5, 0x09, 0xc4, 0x1a, 0x4d, 0x23, 0x7a, 0x87, 0xe9, 0x44,
1090013498266Sopenharmony_ci  0xc2, 0x6b, 0xdc, 0x0d, 0xc0, 0x1a, 0xd6, 0x81, 0x74, 0x93, 0xaa, 0x5a,
1090113498266Sopenharmony_ci  0xcc, 0x8c, 0xfd, 0x79, 0x7b, 0xeb, 0x89, 0xef, 0x55, 0x78, 0xa7, 0x38,
1090213498266Sopenharmony_ci  0xb0, 0x26, 0x62, 0x96, 0x53, 0xeb, 0x14, 0x69, 0xde, 0xa8, 0x2f, 0x81,
1090313498266Sopenharmony_ci  0x4e, 0x31, 0xee, 0x28, 0x60, 0xe2, 0x1b, 0xa7, 0x6c, 0x29, 0xc1, 0x10,
1090413498266Sopenharmony_ci  0x6d, 0x58, 0x07, 0x1f, 0x05, 0x0e, 0xb1, 0xf2, 0xc9, 0x7e, 0x2a, 0x40,
1090513498266Sopenharmony_ci  0x6e, 0x88, 0x4f, 0xc6, 0x19, 0x54, 0x1e, 0x67, 0x44, 0xcb, 0xbd, 0x86,
1090613498266Sopenharmony_ci  0x32, 0x7f, 0x83, 0x2d, 0x32, 0x07, 0xfc, 0xf3, 0x83, 0x2d, 0xdc, 0x51,
1090713498266Sopenharmony_ci  0x6d, 0x05, 0x7d, 0xe7, 0xd3, 0x42, 0x38, 0xd4, 0x9f, 0x77, 0x93, 0x2e,
1090813498266Sopenharmony_ci  0xdf, 0x89, 0xf2, 0x80, 0xcf, 0x11, 0x8f, 0x66, 0x3a, 0x37, 0x44, 0xc9,
1090913498266Sopenharmony_ci  0xc7, 0x4b, 0x93, 0x52, 0xe2, 0x8f, 0x91, 0x78, 0xd4, 0xf1, 0x1f, 0xf3,
1091013498266Sopenharmony_ci  0xf1, 0x2d, 0xb3, 0x35, 0xc4, 0x87, 0xc7, 0x7d, 0x35, 0x6c, 0xe4, 0x0f,
1091113498266Sopenharmony_ci  0x77, 0x1a, 0x36, 0x72, 0x0f, 0x0a, 0x26, 0xe0, 0x57, 0x11, 0xd9, 0x4d,
1091213498266Sopenharmony_ci  0x0b, 0x47, 0x69, 0xa5, 0x05, 0x93, 0x16, 0x9c, 0xb0, 0xb5, 0x8d, 0xc6,
1091313498266Sopenharmony_ci  0x6b, 0x3e, 0x84, 0xa6, 0xa2, 0x2c, 0x0c, 0xab, 0xa2, 0x51, 0x3b, 0x6a,
1091413498266Sopenharmony_ci  0xc0, 0xed, 0x7b, 0x65, 0x8d, 0x93, 0x69, 0x3f, 0x0a, 0x67, 0xf6, 0x12,
1091513498266Sopenharmony_ci  0x2d, 0x35, 0x3a, 0x19, 0x97, 0xc9, 0xa5, 0x63, 0xee, 0xe3, 0xf2, 0x86,
1091613498266Sopenharmony_ci  0x13, 0x0a, 0x4e, 0xb3, 0x79, 0x79, 0x68, 0x1f, 0xc3, 0xcc, 0x84, 0x10,
1091713498266Sopenharmony_ci  0x30, 0x52, 0x35, 0x2a, 0x53, 0x09, 0xea, 0x05, 0x36, 0x46, 0x6d, 0xcd,
1091813498266Sopenharmony_ci  0xd3, 0x72, 0x84, 0x89, 0xa7, 0x67, 0xa9, 0x16, 0xd1, 0x35, 0xb3, 0xd6,
1091913498266Sopenharmony_ci  0x7a, 0x38, 0x54, 0x5f, 0x68, 0x10, 0x02, 0xbf, 0xb3, 0x3e, 0x27, 0x93,
1092013498266Sopenharmony_ci  0x3d, 0x8e, 0x12, 0x26, 0x17, 0x24, 0xa2, 0xf7, 0xfb, 0x9a, 0xf8, 0x2a,
1092113498266Sopenharmony_ci  0xa9, 0x84, 0xf3, 0x04, 0x93, 0x40, 0xcf, 0xb3, 0x79, 0x5b, 0x0a, 0x8a,
1092213498266Sopenharmony_ci  0xbf, 0x2a, 0xbe, 0x8a, 0x37, 0xe4, 0x48, 0x16, 0x17, 0x88, 0x5d, 0x9d,
1092313498266Sopenharmony_ci  0x8c, 0x3e, 0xd0, 0x50, 0x31, 0x6b, 0xe1, 0x9c, 0x2c, 0xdf, 0x22, 0x1e,
1092413498266Sopenharmony_ci  0x10, 0x24, 0x2c, 0xa2, 0x30, 0x11, 0x8c, 0x42, 0x28, 0x36, 0x4e, 0x07,
1092513498266Sopenharmony_ci  0xc6, 0x11, 0xb0, 0xcc, 0x9d, 0x91, 0xca, 0x61, 0xb5, 0x26, 0x9c, 0x68,
1092613498266Sopenharmony_ci  0x8f, 0x56, 0xcd, 0x08, 0xb3, 0x39, 0xa2, 0xea, 0x6a, 0x36, 0x2c, 0x04,
1092713498266Sopenharmony_ci  0xaa, 0xb6, 0x98, 0xff, 0x77, 0xf2, 0x7c, 0x39, 0xb4, 0x7a, 0xb7, 0x58,
1092813498266Sopenharmony_ci  0x1d, 0x6e, 0x56, 0x78, 0x03, 0x13, 0xe9, 0x46, 0x07, 0xfc, 0x4f, 0x2b,
1092913498266Sopenharmony_ci  0x07, 0x98, 0xc6, 0x94, 0x10, 0x35, 0x96, 0xe8, 0xa0, 0xa6, 0xb0, 0x02,
1093013498266Sopenharmony_ci  0x17, 0x4b, 0xac, 0x7a, 0xd0, 0xbe, 0xde, 0x33, 0x5f, 0x5f, 0x0b, 0xe0,
1093113498266Sopenharmony_ci  0x69, 0x6e, 0xa4, 0x89, 0x18, 0xb5, 0x91, 0x1f, 0x13, 0x12, 0x30, 0x69,
1093213498266Sopenharmony_ci  0x76, 0xd5, 0xe8, 0x3c, 0x9d, 0x31, 0x56, 0x91, 0x0f, 0x5b, 0x0b, 0xd2,
1093313498266Sopenharmony_ci  0x65, 0xce, 0x34, 0x8a, 0xe1, 0x8d, 0xb9, 0x31, 0x73, 0xd9, 0xdb, 0xd7,
1093413498266Sopenharmony_ci  0x54, 0x35, 0x95, 0x3a, 0x99, 0xd1, 0x53, 0x68, 0xfe, 0xf0, 0xfd, 0xbb,
1093513498266Sopenharmony_ci  0x37, 0x27, 0xef, 0x8e, 0x63, 0xaf, 0xa4, 0xf9, 0xdb, 0xd3, 0xc3, 0x67,
1093613498266Sopenharmony_ci  0x98, 0x25, 0x79, 0x7a, 0xf4, 0xf4, 0xe8, 0x55, 0xb4, 0x1e, 0x28, 0x22,
1093713498266Sopenharmony_ci  0xe8, 0x12, 0x91, 0x21, 0x1b, 0x2e, 0x70, 0xca, 0x98, 0x62, 0xb2, 0x00,
1093813498266Sopenharmony_ci  0xcc, 0xd1, 0xcc, 0x28, 0xd6, 0x71, 0x95, 0x03, 0x25, 0x09, 0xe5, 0xac,
1093913498266Sopenharmony_ci  0xb5, 0x7c, 0x40, 0x62, 0x48, 0x3e, 0x5b, 0x70, 0xfa, 0x9e, 0x69, 0xc5,
1094013498266Sopenharmony_ci  0x4d, 0x03, 0xa2, 0x54, 0xd7, 0x40, 0x7d, 0xc8, 0x3e, 0x85, 0xc3, 0x70,
1094113498266Sopenharmony_ci  0xaa, 0x80, 0x83, 0xdf, 0xdc, 0x61, 0xf8, 0x6b, 0x6c, 0xda, 0x67, 0x70,
1094213498266Sopenharmony_ci  0xcd, 0x37, 0xfa, 0x67, 0x94, 0x91, 0x89, 0xbd, 0x49, 0xae, 0x13, 0xa8,
1094313498266Sopenharmony_ci  0xf1, 0x6d, 0x9b, 0x45, 0x06, 0x2d, 0x91, 0xb2, 0xe2, 0x53, 0x25, 0x7d,
1094413498266Sopenharmony_ci  0x6c, 0x69, 0xb2, 0x0a, 0x13, 0xa5, 0xa1, 0x4a, 0x2e, 0xaa, 0x73, 0x89,
1094513498266Sopenharmony_ci  0x0c, 0xcc, 0xbc, 0x42, 0xa5, 0x6c, 0x24, 0x92, 0xb5, 0xc8, 0x8d, 0xae,
1094613498266Sopenharmony_ci  0x35, 0xc0, 0x83, 0xee, 0x49, 0x00, 0xfc, 0xc6, 0x38, 0xcd, 0xc5, 0x5a,
1094713498266Sopenharmony_ci  0x6e, 0x86, 0x2a, 0x45, 0x1e, 0x24, 0xdf, 0x15, 0x1e, 0xc0, 0x6f, 0x9d,
1094813498266Sopenharmony_ci  0xcd, 0x0f, 0x82, 0x73, 0xeb, 0xdb, 0xb8, 0x9b, 0x08, 0xc3, 0x6c, 0xc7,
1094913498266Sopenharmony_ci  0x84, 0xed, 0xe1, 0x15, 0x9d, 0x56, 0x9c, 0xca, 0xdf, 0x71, 0xfa, 0xfb,
1095013498266Sopenharmony_ci  0x52, 0xcd, 0x89, 0x98, 0x2e, 0x49, 0xd3, 0xb8, 0x66, 0x2c, 0x40, 0x3b,
1095113498266Sopenharmony_ci  0x73, 0xe9, 0x88, 0x78, 0x6d, 0xac, 0x21, 0x06, 0xa2, 0xf5, 0x71, 0x9f,
1095213498266Sopenharmony_ci  0xfa, 0xbc, 0x59, 0x72, 0xfd, 0x2f, 0xd9, 0xaf, 0x6f, 0x5d, 0x48, 0x1c,
1095313498266Sopenharmony_ci  0x46, 0x60, 0xc2, 0x61, 0x88, 0x68, 0xc5, 0xb8, 0xe5, 0x34, 0x94, 0x3e,
1095413498266Sopenharmony_ci  0xc1, 0x45, 0xe3, 0xc8, 0x9e, 0x3b, 0x03, 0xf3, 0xbc, 0x51, 0xac, 0x29,
1095513498266Sopenharmony_ci  0x38, 0x76, 0xf5, 0x47, 0x0f, 0x07, 0x3b, 0x1b, 0x8d, 0xb0, 0x4f, 0x02,
1095613498266Sopenharmony_ci  0x5b, 0x2b, 0xa3, 0xbf, 0xe0, 0xbf, 0x0a, 0xf2, 0x84, 0xbf, 0xcf, 0x3b,
1095713498266Sopenharmony_ci  0xb7, 0xca, 0x59, 0x85, 0xaa, 0x2f, 0x49, 0x19, 0x22, 0xc2, 0x9e, 0x15,
1095813498266Sopenharmony_ci  0xc5, 0xb8, 0x51, 0xd2, 0x66, 0xd9, 0x49, 0xe2, 0x45, 0x5a, 0x31, 0x73,
1095913498266Sopenharmony_ci  0xf6, 0x0e, 0x4f, 0x12, 0xf7, 0xff, 0x55, 0x6b, 0x83, 0x56, 0x50, 0x51,
1096013498266Sopenharmony_ci  0xb1, 0x15, 0xef, 0xfc, 0xdc, 0xf0, 0xe4, 0x90, 0x7e, 0xc2, 0x67, 0x67,
1096113498266Sopenharmony_ci  0xc9, 0xe1, 0xa1, 0x70, 0x05, 0x95, 0x36, 0x06, 0xfe, 0xad, 0xe9, 0x90,
1096213498266Sopenharmony_ci  0x76, 0x8a, 0xcb, 0x43, 0xde, 0xc7, 0x69, 0x3a, 0x21, 0x15, 0x84, 0xa0,
1096313498266Sopenharmony_ci  0xe2, 0xfb, 0xf4, 0x25, 0x45, 0x9e, 0x9a, 0xb4, 0xda, 0x71, 0x3f, 0x54,
1096413498266Sopenharmony_ci  0xf8, 0x99, 0xe0, 0xd6, 0xb9, 0x86, 0x99, 0xd5, 0xe9, 0x4c, 0x8d, 0xd9,
1096513498266Sopenharmony_ci  0x35, 0xa0, 0x89, 0xb5, 0xbe, 0x29, 0xc3, 0x30, 0xbd, 0xa2, 0x28, 0xc5,
1096613498266Sopenharmony_ci  0xec, 0x23, 0x9f, 0xd9, 0xdf, 0xd3, 0xb2, 0xf0, 0x43, 0xe8, 0x49, 0xe8,
1096713498266Sopenharmony_ci  0xd3, 0x12, 0x97, 0x68, 0x65, 0xb9, 0x00, 0xe6, 0x4a, 0x37, 0xb3, 0xf9,
1096813498266Sopenharmony_ci  0x10, 0x7b, 0xf5, 0x8e, 0xd2, 0x5f, 0x64, 0x7e, 0x88, 0x71, 0x2f, 0xec,
1096913498266Sopenharmony_ci  0xde, 0x8c, 0x07, 0xe3, 0x0f, 0x80, 0x9e, 0xb3, 0xda, 0x54, 0xd7, 0xb1,
1097013498266Sopenharmony_ci  0x0b, 0xa7, 0xb0, 0x7f, 0xed, 0x5d, 0x97, 0x68, 0x65, 0x6a, 0x0e, 0x17,
1097113498266Sopenharmony_ci  0x68, 0xdd, 0x05, 0xd7, 0x31, 0xfc, 0x7c, 0x82, 0x62, 0x85, 0x29, 0xc8,
1097213498266Sopenharmony_ci  0x29, 0x84, 0xe5, 0xdf, 0x42, 0xb1, 0xc8, 0x18, 0x29, 0x5c, 0xbe, 0x02,
1097313498266Sopenharmony_ci  0x1d, 0xe2, 0xe6, 0xb1, 0x82, 0x10, 0x87, 0xa7, 0x2a, 0xab, 0x6d, 0x35,
1097413498266Sopenharmony_ci  0x1b, 0x4a, 0xdf, 0x07, 0xe1, 0x87, 0xa9, 0x2e, 0x3c, 0x38, 0xde, 0x46,
1097513498266Sopenharmony_ci  0x41, 0x2d, 0x34, 0x23, 0xf5, 0x3a, 0xff, 0xaa, 0xb1, 0x32, 0xc4, 0x1b,
1097613498266Sopenharmony_ci  0x9a, 0xcb, 0xb3, 0x4e, 0xf5, 0xbd, 0x35, 0x9c, 0x9b, 0x7a, 0x76, 0x5a,
1097713498266Sopenharmony_ci  0xed, 0xe8, 0x9c, 0x3b, 0xa3, 0xf2, 0xbd, 0x64, 0x51, 0xa8, 0x16, 0xc3,
1097813498266Sopenharmony_ci  0xdf, 0x08, 0x49, 0x14, 0xb8, 0x7b, 0x82, 0xd6, 0x2d, 0x5e, 0x15, 0xb1,
1097913498266Sopenharmony_ci  0xe8, 0x10, 0x6e, 0x17, 0x3c, 0x52, 0xa5, 0x1d, 0xcd, 0x61, 0xe8, 0x48,
1098013498266Sopenharmony_ci  0x0d, 0xbc, 0xa4, 0xa6, 0x70, 0xf3, 0xcc, 0xc9, 0x79, 0xb2, 0x14, 0x48,
1098113498266Sopenharmony_ci  0x43, 0x5b, 0x0a, 0x2d, 0xbd, 0x67, 0x0e, 0x54, 0x3c, 0xc1, 0xb3, 0xb9,
1098213498266Sopenharmony_ci  0xd0, 0x50, 0x73, 0x47, 0x68, 0xe0, 0x7d, 0xe7, 0x2c, 0xf3, 0x71, 0x38,
1098313498266Sopenharmony_ci  0x44, 0x83, 0xae, 0xc8, 0xea, 0x8b, 0x8e, 0x5b, 0xc2, 0x70, 0xe8, 0xaa,
1098413498266Sopenharmony_ci  0xff, 0x17, 0xfc, 0x87, 0x97, 0x54, 0xd9, 0x20, 0x7d, 0x82, 0x3c, 0x96,
1098513498266Sopenharmony_ci  0x9e, 0xe8, 0x68, 0xc2, 0xe5, 0x1f, 0xc4, 0x18, 0x96, 0x35, 0xd1, 0x56,
1098613498266Sopenharmony_ci  0xa6, 0x45, 0x1e, 0x23, 0xb1, 0x5a, 0x2b, 0x83, 0x59, 0x7a, 0x86, 0xdf,
1098713498266Sopenharmony_ci  0xc6, 0x8b, 0x11, 0x9a, 0x1e, 0x15, 0x70, 0xca, 0xd4, 0x6f, 0xe1, 0x1b,
1098813498266Sopenharmony_ci  0xa1, 0xad, 0x7b, 0x8d, 0xca, 0x0c, 0x8b, 0xf7, 0x61, 0x94, 0x6f, 0x32,
1098913498266Sopenharmony_ci  0x41, 0xc0, 0x91, 0x12, 0x7f, 0x90, 0x3f, 0x9d, 0x58, 0x3d, 0x41, 0x60,
1099013498266Sopenharmony_ci  0x58, 0xd4, 0x9c, 0x79, 0x51, 0x63, 0x90, 0x00, 0x9d, 0xe6, 0xb1, 0x5f,
1099113498266Sopenharmony_ci  0x6b, 0xee, 0x0c, 0x0e, 0xf5, 0xa2, 0x72, 0xd7, 0x59, 0xb5, 0x1d, 0x6c,
1099213498266Sopenharmony_ci  0x96, 0x23, 0x93, 0x51, 0x04, 0x93, 0xcc, 0x57, 0x0e, 0xad, 0x72, 0x38,
1099313498266Sopenharmony_ci  0x99, 0x97, 0x63, 0x8d, 0xaf, 0x70, 0xc2, 0x2c, 0x19, 0x69, 0x55, 0x82,
1099413498266Sopenharmony_ci  0x20, 0x30, 0x4f, 0xb4, 0xac, 0x91, 0xd0, 0xb9, 0x54, 0x88, 0x74, 0x03,
1099513498266Sopenharmony_ci  0xec, 0x9b, 0x16, 0xcf, 0xbe, 0x4d, 0x10, 0x24, 0x6b, 0x9b, 0x05, 0xc4,
1099613498266Sopenharmony_ci  0xf5, 0x6f, 0x0c, 0x56, 0x0a, 0x29, 0xe3, 0x0b, 0xe3, 0x04, 0x73, 0x0c,
1099713498266Sopenharmony_ci  0x74, 0xc8, 0x39, 0x76, 0x42, 0x2c, 0x20, 0xca, 0x89, 0x71, 0x98, 0x04,
1099813498266Sopenharmony_ci  0x18, 0x93, 0xa3, 0x2a, 0x3b, 0x4a, 0xfd, 0xcc, 0x71, 0x4e, 0xae, 0x0b,
1099913498266Sopenharmony_ci  0xd7, 0x23, 0x32, 0x57, 0xdd, 0xb2, 0x4b, 0x4e, 0x4a, 0x7b, 0xde, 0x0f,
1100013498266Sopenharmony_ci  0x40, 0x84, 0x47, 0xa2, 0xfd, 0x0a, 0x8e, 0xc3, 0x6d, 0xee, 0x39, 0xb9,
1100113498266Sopenharmony_ci  0x2d, 0x5d, 0xf9, 0xd1, 0x83, 0x80, 0xd4, 0xec, 0x6a, 0x49, 0x4f, 0x5e,
1100213498266Sopenharmony_ci  0x2e, 0x37, 0xce, 0xb1, 0x82, 0x06, 0x70, 0x84, 0x45, 0x56, 0x13, 0x31,
1100313498266Sopenharmony_ci  0xb6, 0x90, 0x20, 0x14, 0x7e, 0x00, 0x8d, 0x9e, 0xc8, 0x3b, 0xbc, 0xb4,
1100413498266Sopenharmony_ci  0xe9, 0x5c, 0xc3, 0x5d, 0x4c, 0x2a, 0x19, 0xa7, 0x6b, 0x92, 0xc8, 0x26,
1100513498266Sopenharmony_ci  0x96, 0x4e, 0x22, 0x1d, 0xb6, 0x74, 0xb1, 0x66, 0x23, 0x00, 0x2d, 0xa8,
1100613498266Sopenharmony_ci  0x3b, 0x86, 0x1d, 0x08, 0x9b, 0x26, 0x31, 0x05, 0x68, 0x3f, 0x1f, 0xc7,
1100713498266Sopenharmony_ci  0xc0, 0xc3, 0xe6, 0xcb, 0xed, 0xef, 0xee, 0x8c, 0xef, 0x21, 0xe9, 0xbd,
1100813498266Sopenharmony_ci  0xd9, 0xbe, 0xfe, 0x4d, 0xb9, 0xc9, 0x36, 0x0f, 0x7e, 0x8c, 0xc6, 0x25,
1100913498266Sopenharmony_ci  0x56, 0xa2, 0x6e, 0x69, 0x4e, 0x32, 0xbf, 0x34, 0x92, 0xd0, 0xf9, 0x13,
1101013498266Sopenharmony_ci  0x3f, 0xa5, 0xd7, 0x79, 0xf2, 0x1a, 0x11, 0x07, 0xd7, 0x9c, 0x76, 0xe4,
1101113498266Sopenharmony_ci  0x5b, 0x6e, 0xb6, 0xb9, 0xc9, 0x76, 0x77, 0x75, 0x37, 0xdb, 0x40, 0x0a,
1101213498266Sopenharmony_ci  0xcd, 0xbd, 0x95, 0x6d, 0x7d, 0xc7, 0x28, 0xcf, 0xd4, 0x22, 0xd9, 0x1b,
1101313498266Sopenharmony_ci  0x72, 0x01, 0xd6, 0x71, 0x7a, 0x62, 0xeb, 0x87, 0xb7, 0xc9, 0x98, 0xf7,
1101413498266Sopenharmony_ci  0xc1, 0x85, 0x4d, 0xe4, 0x39, 0x91, 0x02, 0xac, 0xd4, 0xdd, 0x1a, 0xa2,
1101513498266Sopenharmony_ci  0x12, 0x62, 0xa8, 0x7e, 0x19, 0x5d, 0x49, 0xd4, 0x11, 0x0e, 0x2c, 0xbb,
1101613498266Sopenharmony_ci  0xa6, 0xd6, 0x94, 0xbb, 0xbc, 0xf7, 0x45, 0x27, 0xdc, 0xfa, 0x1f, 0x40,
1101713498266Sopenharmony_ci  0x25, 0xa1, 0x2a, 0x75, 0x5d, 0x74, 0x32, 0x4a, 0x62, 0xb6, 0xf6, 0x07,
1101813498266Sopenharmony_ci  0xe3, 0x0c, 0xdb, 0x7c, 0x61, 0x21, 0xcc, 0xfb, 0xe9, 0x81, 0x00, 0xf6,
1101913498266Sopenharmony_ci  0x19, 0x39, 0x4a, 0x5c, 0x06, 0x92, 0xca, 0xec, 0x03, 0xd7, 0x5d, 0x55,
1102013498266Sopenharmony_ci  0x35, 0xa3, 0xcc, 0x39, 0x41, 0x86, 0x0d, 0xc7, 0xc7, 0xb7, 0x57, 0x4e,
1102113498266Sopenharmony_ci  0x45, 0xe5, 0x26, 0xec, 0x3a, 0x74, 0x17, 0x4a, 0x24, 0x8f, 0x2c, 0xdb,
1102213498266Sopenharmony_ci  0x66, 0xc9, 0xd3, 0x24, 0xc4, 0x51, 0xcc, 0x0d, 0x5a, 0x0c, 0x34, 0xed,
1102313498266Sopenharmony_ci  0x9a, 0xa5, 0x10, 0xeb, 0xc4, 0x5b, 0x52, 0x8b, 0x39, 0xa3, 0x0b, 0x30,
1102413498266Sopenharmony_ci  0x2d, 0x27, 0xc9, 0x48, 0xd3, 0xe7, 0x74, 0x4e, 0x32, 0x8b, 0xb5, 0x8a,
1102513498266Sopenharmony_ci  0xaa, 0xa0, 0x5c, 0x04, 0x21, 0x76, 0xdd, 0x0b, 0x91, 0xeb, 0xfc, 0x4e,
1102613498266Sopenharmony_ci  0xa8, 0xc8, 0x09, 0x69, 0x8b, 0xa6, 0xca, 0x12, 0x8d, 0xc4, 0xc0, 0x53,
1102713498266Sopenharmony_ci  0xe0, 0xaa, 0x6a, 0x18, 0x56, 0xfb, 0x8c, 0x79, 0x01, 0x64, 0x4f, 0x06,
1102813498266Sopenharmony_ci  0x18, 0x3f, 0x86, 0xb3, 0x93, 0x78, 0x2d, 0xf7, 0xab, 0x87, 0x84, 0x80,
1102913498266Sopenharmony_ci  0x25, 0x39, 0x50, 0x81, 0x43, 0xe1, 0x0c, 0x21, 0xab, 0x9a, 0x03, 0xd0,
1103013498266Sopenharmony_ci  0x80, 0x2c, 0x49, 0x90, 0x9a, 0xa4, 0x49, 0xbd, 0x20, 0x10, 0x2d, 0x82,
1103113498266Sopenharmony_ci  0x71, 0x21, 0x44, 0x07, 0x4f, 0x2b, 0x91, 0xa4, 0xa9, 0x54, 0x2a, 0x03,
1103213498266Sopenharmony_ci  0x1a, 0x29, 0x50, 0x88, 0x41, 0xa9, 0xe4, 0x5a, 0x93, 0xa2, 0x4b, 0x87,
1103313498266Sopenharmony_ci  0x77, 0x5b, 0x6f, 0xa8, 0xd5, 0xf8, 0xaa, 0x07, 0xd7, 0x8e, 0x6a, 0xc5,
1103413498266Sopenharmony_ci  0x9a, 0xb7, 0x09, 0x86, 0x69, 0x52, 0x39, 0x8f, 0x84, 0xc2, 0x66, 0xe9,
1103513498266Sopenharmony_ci  0x28, 0xb6, 0xa2, 0x19, 0x0f, 0xec, 0xbe, 0xed, 0xb4, 0x22, 0xe7, 0x65,
1103613498266Sopenharmony_ci  0xd4, 0xd8, 0x48, 0x38, 0x49, 0xfd, 0x44, 0x04, 0x24, 0xed, 0x8a, 0xe8,
1103713498266Sopenharmony_ci  0x5b, 0x41, 0x3c, 0x9c, 0x73, 0x45, 0x11, 0xb9, 0x1d, 0x50, 0x05, 0xad,
1103813498266Sopenharmony_ci  0x7e, 0x3e, 0x43, 0x95, 0xf9, 0x46, 0xff, 0x4f, 0x0f, 0xb8, 0x22, 0x5e,
1103913498266Sopenharmony_ci  0x8d, 0x95, 0x59, 0x3e, 0x9a, 0x05, 0x5f, 0x89, 0x27, 0xb6, 0x90, 0x64,
1104013498266Sopenharmony_ci  0x78, 0xf1, 0x29, 0xcb, 0x50, 0x77, 0xa4, 0xb5, 0x25, 0x2e, 0xc2, 0x56,
1104113498266Sopenharmony_ci  0xcb, 0x22, 0xdb, 0xe9, 0xb4, 0x69, 0x34, 0x1e, 0x84, 0xcd, 0x70, 0x77,
1104213498266Sopenharmony_ci  0x87, 0x1e, 0xfa, 0xa4, 0xdd, 0xa1, 0x16, 0x3e, 0xe3, 0xee, 0x50, 0xff,
1104313498266Sopenharmony_ci  0x9b, 0x06, 0x55, 0x5d, 0x80, 0x2c, 0xee, 0x6c, 0x8b, 0x74, 0x5f, 0x3e,
1104413498266Sopenharmony_ci  0xf6, 0xcd, 0xa7, 0x91, 0x5c, 0x5d, 0xdc, 0xb7, 0x3d, 0x29, 0x1e, 0xd8,
1104513498266Sopenharmony_ci  0x75, 0xc7, 0xce, 0x40, 0x8b, 0x71, 0x7d, 0x35, 0x4f, 0xa3, 0x7d, 0xfc,
1104613498266Sopenharmony_ci  0xb9, 0x64, 0x77, 0xcc, 0x83, 0x9f, 0xb2, 0x41, 0xa6, 0x91, 0xd0, 0x1e,
1104713498266Sopenharmony_ci  0x75, 0x68, 0x12, 0x1e, 0x0c, 0xc3, 0xa7, 0xe4, 0xa8, 0xb4, 0x86, 0x81,
1104813498266Sopenharmony_ci  0x41, 0xf6, 0xee, 0xa7, 0x7c, 0x1d, 0xde, 0x76, 0xbf, 0xac, 0x9e, 0x21,
1104913498266Sopenharmony_ci  0xcd, 0x0d, 0x6e, 0x70, 0x34, 0x88, 0x6f, 0xe1, 0xcf, 0x9f, 0x45, 0xba,
1105013498266Sopenharmony_ci  0xf9, 0xb5, 0x73, 0x13, 0x0e, 0xfb, 0xb2, 0x11, 0x9f, 0xba, 0x07, 0x9f,
1105113498266Sopenharmony_ci  0xc7, 0xad, 0x7c, 0x4f, 0x8b, 0x4c, 0x3b, 0x79, 0x93, 0x95, 0xce, 0xe6,
1105213498266Sopenharmony_ci  0xe7, 0x68, 0xa9, 0xdb, 0x0f, 0x81, 0xb3, 0x3a, 0x84, 0x2e, 0x8f, 0xad,
1105313498266Sopenharmony_ci  0xba, 0xc4, 0x27, 0x16, 0xf1, 0x47, 0x71, 0x4c, 0xa5, 0xa5, 0x26, 0xf8,
1105413498266Sopenharmony_ci  0xa3, 0x9b, 0x1e, 0xe0, 0xc4, 0xba, 0x9c, 0x84, 0x10, 0x33, 0x19, 0x80,
1105513498266Sopenharmony_ci  0x4a, 0xed, 0x6e, 0xda, 0x1e, 0xd5, 0xc4, 0xd6, 0x28, 0x14, 0xd8, 0xa1,
1105613498266Sopenharmony_ci  0x6c, 0xac, 0x5f, 0x81, 0x3c, 0xf3, 0x16, 0xdd, 0xd6, 0xd1, 0x62, 0xee,
1105713498266Sopenharmony_ci  0x4b, 0x33, 0x94, 0x9b, 0x41, 0xcf, 0x71, 0x8b, 0x8d, 0x1a, 0x9f, 0x40,
1105813498266Sopenharmony_ci  0x10, 0xef, 0xde, 0xbe, 0xf2, 0x2c, 0x98, 0xba, 0x27, 0x14, 0x1e, 0x51,
1105913498266Sopenharmony_ci  0xa5, 0x9b, 0xe3, 0x62, 0x54, 0x6d, 0x56, 0xd5, 0x54, 0x57, 0x69, 0x70,
1106013498266Sopenharmony_ci  0x5e, 0xcf, 0xa6, 0xcb, 0x88, 0x4d, 0x86, 0xfc, 0x59, 0x9c, 0x4c, 0x4e,
1106113498266Sopenharmony_ci  0xff, 0x87, 0x4f, 0x9f, 0xbd, 0x38, 0x8c, 0xe1, 0xe7, 0xc9, 0x41, 0x7c,
1106213498266Sopenharmony_ci  0x70, 0x78, 0xb2, 0xf3, 0xf0, 0x51, 0xfc, 0xf4, 0xe9, 0xeb, 0x27, 0x9f,
1106313498266Sopenharmony_ci  0x4a, 0x84, 0xd2, 0x3c, 0x1d, 0xcb, 0x45, 0x89, 0x5e, 0xef, 0xf6, 0x4d,
1106413498266Sopenharmony_ci  0x79, 0x03, 0xb2, 0x2c, 0xa7, 0xb6, 0xf6, 0xf5, 0x12, 0xb2, 0x94, 0xc7,
1106513498266Sopenharmony_ci  0x3e, 0xe5, 0xe4, 0x4b, 0x13, 0x9f, 0x6d, 0x33, 0xa4, 0xff, 0x32, 0x45,
1106613498266Sopenharmony_ci  0xab, 0x6c, 0xf5, 0x49, 0xd2, 0x8b, 0x6e, 0x80, 0x34, 0xb9, 0xfa, 0xb2,
1106713498266Sopenharmony_ci  0xb3, 0x92, 0xb7, 0xdc, 0xb4, 0x63, 0x94, 0xfe, 0x67, 0x02, 0x5a, 0x77,
1106813498266Sopenharmony_ci  0x87, 0x5a, 0xbf, 0xe0, 0xe0, 0xf9, 0x6a, 0xbf, 0xf4, 0x85, 0xef, 0xb6,
1106913498266Sopenharmony_ci  0xcd, 0xc0, 0x0d, 0xbd, 0xff, 0x7a, 0x15, 0x5d, 0xba, 0xb8, 0x2f, 0x1d,
1107013498266Sopenharmony_ci  0x5d, 0x9a, 0xff, 0x4c, 0x4a, 0x3a, 0x59, 0x08, 0xfc, 0x6d, 0x65, 0x28,
1107113498266Sopenharmony_ci  0x8c, 0x68, 0x9f, 0xff, 0xdd, 0xfc, 0x26, 0x74, 0xa8, 0x14, 0xfe, 0x95,
1107213498266Sopenharmony_ci  0x56, 0x40, 0x5e, 0x40, 0xdb, 0xa6, 0xd4, 0x9b, 0x14, 0x36, 0xad, 0x31,
1107313498266Sopenharmony_ci  0x77, 0xb4, 0xcb, 0x9a, 0xb0, 0x45, 0x5b, 0xe4, 0x79, 0x13, 0x15, 0x08,
1107413498266Sopenharmony_ci  0x99, 0x51, 0xd5, 0xd1, 0xe7, 0xa5, 0xdc, 0xd9, 0xa6, 0xeb, 0x21, 0x03,
1107513498266Sopenharmony_ci  0x4f, 0x9d, 0x1e, 0x2b, 0x53, 0x04, 0x3a, 0x54, 0x9b, 0x1e, 0x63, 0x75,
1107613498266Sopenharmony_ci  0xe1, 0xf8, 0x51, 0x8a, 0x97, 0x41, 0xc7, 0x89, 0x5f, 0xe0, 0x92, 0xc8,
1107713498266Sopenharmony_ci  0x80, 0x91, 0x0f, 0x08, 0xfc, 0x8f, 0x32, 0x00, 0x22, 0x44, 0x1f, 0x9b,
1107813498266Sopenharmony_ci  0x9a, 0x11, 0xa6, 0x51, 0xe9, 0x9c, 0x32, 0xd2, 0x54, 0xf4, 0xf4, 0xe8,
1107913498266Sopenharmony_ci  0xcd, 0x9b, 0xc3, 0xa7, 0xed, 0xc8, 0x7a, 0x8b, 0xb2, 0x49, 0xe6, 0x01,
1108013498266Sopenharmony_ci  0xf1, 0x70, 0xb4, 0x2f, 0x04, 0xee, 0x1d, 0x17, 0xa4, 0x36, 0x31, 0x9f,
1108113498266Sopenharmony_ci  0x32, 0x02, 0xf8, 0xeb, 0x52, 0xb0, 0x6b, 0xe9, 0x6b, 0xb9, 0xdd, 0x92,
1108213498266Sopenharmony_ci  0x11, 0xa2, 0x46, 0x0a, 0xed, 0xb6, 0x9b, 0x0b, 0x51, 0x32, 0x51, 0x19,
1108313498266Sopenharmony_ci  0xc7, 0x27, 0x56, 0xa8, 0x57, 0x93, 0x31, 0x9e, 0x1c, 0x7a, 0xd2, 0x3b,
1108413498266Sopenharmony_ci  0x21, 0x89, 0x8d, 0xc7, 0x9b, 0x82, 0xc2, 0xc5, 0xb6, 0x70, 0x1e, 0x51,
1108513498266Sopenharmony_ci  0xe0, 0xd8, 0xc8, 0x00, 0xe7, 0x29, 0x9e, 0xb4, 0x71, 0x5c, 0x4c, 0x62,
1108613498266Sopenharmony_ci  0x8a, 0xbc, 0x9a, 0x25, 0xe5, 0x07, 0x0c, 0xcd, 0x77, 0x40, 0xc5, 0x08,
1108713498266Sopenharmony_ci  0xfd, 0x1e, 0xdd, 0xbf, 0xd0, 0x38, 0xf7, 0x8a, 0x01, 0x63, 0x1e, 0x58,
1108813498266Sopenharmony_ci  0x50, 0x59, 0x1b, 0x38, 0x27, 0x19, 0x10, 0x31, 0xdf, 0xbc, 0xde, 0xc3,
1108913498266Sopenharmony_ci  0x9c, 0x5d, 0x7d, 0x3f, 0x4f, 0x2f, 0xb1, 0x1f, 0x2e, 0xdc, 0x8a, 0xf5,
1109013498266Sopenharmony_ci  0xe6, 0x30, 0x46, 0xcb, 0x8f, 0x2a, 0xad, 0x17, 0x65, 0xce, 0x8c, 0xf7,
1109113498266Sopenharmony_ci  0x8a, 0x37, 0x69, 0x46, 0x70, 0xd1, 0x08, 0xad, 0x5f, 0x21, 0x62, 0x8a,
1109213498266Sopenharmony_ci  0x40, 0x9c, 0x7a, 0x8b, 0xf4, 0x82, 0xa9, 0xa8, 0x1d, 0xc5, 0xda, 0xc0,
1109313498266Sopenharmony_ci  0xdb, 0x92, 0xc0, 0x03, 0x21, 0x6c, 0x06, 0xad, 0xd4, 0x3d, 0x0f, 0x81,
1109413498266Sopenharmony_ci  0x0e, 0xd3, 0xc2, 0xa3, 0x27, 0xa7, 0x32, 0xef, 0x0e, 0x53, 0xb3, 0x97,
1109513498266Sopenharmony_ci  0x49, 0x67, 0x98, 0xad, 0x03, 0x7c, 0x48, 0x45, 0xd3, 0x31, 0x12, 0x0f,
1109613498266Sopenharmony_ci  0xe1, 0xa4, 0xca, 0x33, 0x42, 0x6e, 0xc3, 0x7e, 0xbf, 0xd1, 0xd2, 0x61,
1109713498266Sopenharmony_ci  0x0c, 0xae, 0xac, 0xee, 0xf6, 0x00, 0x42, 0x2b, 0xac, 0x1d, 0x86, 0x9a,
1109813498266Sopenharmony_ci  0xc9, 0xca, 0x6a, 0x18, 0x16, 0x47, 0xcb, 0xc9, 0xd1, 0xcc, 0x72, 0x04,
1109913498266Sopenharmony_ci  0x29, 0x22, 0xc6, 0xdf, 0x00, 0x35, 0x27, 0x93, 0x8e, 0x17, 0x36, 0x8a,
1110013498266Sopenharmony_ci  0xe7, 0xf6, 0x9b, 0x58, 0x08, 0x8a, 0xa6, 0x88, 0x7e, 0x44, 0x67, 0xfb,
1110113498266Sopenharmony_ci  0x2a, 0x36, 0xcd, 0x55, 0xf5, 0x38, 0xcb, 0x6f, 0xec, 0xb5, 0xf1, 0x03,
1110213498266Sopenharmony_ci  0xba, 0xf0, 0x30, 0x38, 0x54, 0xb9, 0x49, 0x3e, 0xd4, 0x36, 0xc1, 0x9b,
1110313498266Sopenharmony_ci  0xb7, 0x94, 0x0b, 0x04, 0x3d, 0x7a, 0x96, 0x91, 0xdd, 0x1f, 0x12, 0x53,
1110413498266Sopenharmony_ci  0xb3, 0x9f, 0xde, 0x4f, 0xf1, 0x73, 0x8c, 0xe8, 0x8e, 0xdf, 0xc0, 0x1e,
1110513498266Sopenharmony_ci  0xed, 0x45, 0x7f, 0x2b, 0x10, 0x11, 0xc9, 0x04, 0x7a, 0x76, 0xf3, 0xf1,
1110613498266Sopenharmony_ci  0x9b, 0x34, 0x8d, 0x91, 0xbb, 0xf1, 0xc1, 0x19, 0x1d, 0x10, 0x38, 0xd0,
1110713498266Sopenharmony_ci  0xf3, 0x32, 0xab, 0xee, 0xb0, 0xf5, 0x17, 0xc0, 0x42, 0xf6, 0x6e, 0xd6,
1110813498266Sopenharmony_ci  0xdc, 0x8a, 0xe0, 0xe1, 0xd2, 0x0f, 0x56, 0x04, 0x0a, 0xdf, 0x20, 0xad,
1110913498266Sopenharmony_ci  0xb8, 0xb6, 0x1a, 0x54, 0xfd, 0x66, 0xd1, 0x25, 0x13, 0x8f, 0xbd, 0x63,
1111013498266Sopenharmony_ci  0x6a, 0x3e, 0x5d, 0x23, 0xeb, 0xf3, 0xe0, 0xd9, 0xd5, 0xc3, 0x09, 0xb8,
1111113498266Sopenharmony_ci  0xc4, 0x14, 0x0a, 0x2a, 0x9d, 0xc8, 0x85, 0x9c, 0xb6, 0x9b, 0x71, 0xf4,
1111213498266Sopenharmony_ci  0xbe, 0xe5, 0x12, 0xde, 0x1b, 0x7d, 0x10, 0xc8, 0x79, 0xf6, 0x05, 0xc2,
1111313498266Sopenharmony_ci  0xd9, 0x96, 0x91, 0x84, 0xe9, 0xbb, 0x59, 0x30, 0x4b, 0x43, 0xf2, 0x18,
1111413498266Sopenharmony_ci  0x15, 0x09, 0x81, 0xa6, 0x2b, 0x71, 0xfb, 0x5f, 0xe3, 0x1b, 0x68, 0xae,
1111513498266Sopenharmony_ci  0x59, 0x47, 0xcc, 0xe3, 0x27, 0x5b, 0x28, 0xb9, 0x44, 0xd3, 0xad, 0x44,
1111613498266Sopenharmony_ci  0x16, 0x1e, 0xd7, 0xa7, 0x0a, 0x26, 0x83, 0x56, 0x7b, 0xcd, 0x1a, 0x51,
1111713498266Sopenharmony_ci  0xc8, 0x57, 0x6e, 0x07, 0xb9, 0xcc, 0x65, 0xba, 0x1a, 0xc6, 0xce, 0xed,
1111813498266Sopenharmony_ci  0x90, 0xe8, 0xaa, 0x66, 0xd1, 0x2e, 0x5d, 0xa1, 0x61, 0x3b, 0x5d, 0x59,
1111913498266Sopenharmony_ci  0x61, 0xf0, 0xe5, 0x48, 0xd3, 0x54, 0x58, 0x92, 0xbc, 0x5d, 0xfd, 0x16,
1112013498266Sopenharmony_ci  0xb3, 0x9d, 0x7e, 0x41, 0x95, 0x55, 0x76, 0xd4, 0x8c, 0xed, 0xd3, 0x14,
1112113498266Sopenharmony_ci  0x89, 0x76, 0x3c, 0x7a, 0x97, 0xf9, 0xb9, 0x4b, 0x9b, 0xf8, 0x90, 0x5e,
1112213498266Sopenharmony_ci  0xdd, 0xc8, 0x8a, 0x66, 0x9e, 0xbb, 0x85, 0x1a, 0xe7, 0x77, 0x16, 0x49,
1112313498266Sopenharmony_ci  0xd0, 0x8e, 0x38, 0x76, 0xda, 0x76, 0x34, 0x57, 0x99, 0xbb, 0x7b, 0x23,
1112413498266Sopenharmony_ci  0x9a, 0x19, 0x05, 0x26, 0xfa, 0x3b, 0x1f, 0x46, 0x14, 0x2f, 0x7e, 0x27,
1112513498266Sopenharmony_ci  0xd6, 0x1d, 0x03, 0x06, 0xb3, 0x92, 0x66, 0x47, 0x88, 0x20, 0xf0, 0x63,
1112613498266Sopenharmony_ci  0xe9, 0x2e, 0x7c, 0x8a, 0x1e, 0xbd, 0x4a, 0xbe, 0xfc, 0x1d, 0x07, 0x41,
1112713498266Sopenharmony_ci  0xdc, 0xc7, 0x12, 0xf3, 0x2e, 0xae, 0xbe, 0xce, 0xe6, 0xaa, 0xbb, 0x2e,
1112813498266Sopenharmony_ci  0x3a, 0xd0, 0xa8, 0xd1, 0x6f, 0xcc, 0xe5, 0xb8, 0x7e, 0x72, 0xfc, 0xe6,
1112913498266Sopenharmony_ci  0xf0, 0xbb, 0xa3, 0x8d, 0x90, 0x4a, 0xed, 0x57, 0x47, 0xb1, 0x0a, 0xf6,
1113013498266Sopenharmony_ci  0x52, 0x95, 0xda, 0xde, 0xbd, 0xae, 0x56, 0x1d, 0xc8, 0x20, 0x0b, 0x0d,
1113113498266Sopenharmony_ci  0x44, 0xb2, 0x0c, 0x56, 0xd3, 0xb0, 0x6d, 0x8f, 0xf7, 0xa5, 0x64, 0xdb,
1113213498266Sopenharmony_ci  0x1e, 0xee, 0x58, 0xcf, 0x5e, 0x5d, 0xb5, 0x46, 0x70, 0xf4, 0x6b, 0xe3,
1113313498266Sopenharmony_ci  0xfa, 0x79, 0x79, 0x03, 0x05, 0x3b, 0xb4, 0x04, 0xf7, 0x6d, 0xed, 0x25,
1113413498266Sopenharmony_ci  0x04, 0xcd, 0xde, 0xb0, 0x96, 0x50, 0x2f, 0x8d, 0x6d, 0xbb, 0x89, 0x72,
1113513498266Sopenharmony_ci  0x19, 0xd8, 0xc4, 0xfb, 0xa9, 0xf2, 0xe0, 0x34, 0xbe, 0x6c, 0xeb, 0x6e,
1113613498266Sopenharmony_ci  0x2f, 0xb4, 0x7a, 0x14, 0xe2, 0xee, 0x61, 0xa0, 0xb2, 0x02, 0x7f, 0xb1,
1113713498266Sopenharmony_ci  0x0c, 0x69, 0xcc, 0x72, 0x48, 0x7a, 0xea, 0x13, 0x58, 0xe4, 0xad, 0x50,
1113813498266Sopenharmony_ci  0xc7, 0xee, 0x8c, 0x45, 0x36, 0x91, 0xc8, 0xee, 0x94, 0x6d, 0x7a, 0x89,
1113913498266Sopenharmony_ci  0x6b, 0xa6, 0xf5, 0x1b, 0x70, 0xcc, 0x9b, 0x83, 0x56, 0x85, 0x99, 0x68,
1114013498266Sopenharmony_ci  0x17, 0x6e, 0x95, 0xc1, 0x5a, 0xeb, 0x06, 0xad, 0x6a, 0x46, 0x93, 0xb8,
1114113498266Sopenharmony_ci  0x61, 0x65, 0x5d, 0x98, 0x55, 0xff, 0xaf, 0x04, 0xad, 0x6a, 0xa0, 0x56,
1114213498266Sopenharmony_ci  0xa1, 0x99, 0x8b, 0x50, 0x7c, 0x02, 0xc0, 0x55, 0x4e, 0x35, 0x5c, 0x46,
1114313498266Sopenharmony_ci  0xad, 0x5a, 0x06, 0x5a, 0xe5, 0x60, 0x56, 0x2d, 0x81, 0xac, 0xe2, 0xa2,
1114413498266Sopenharmony_ci  0xc1, 0xcb, 0x40, 0xab, 0x6e, 0x89, 0x5a, 0xd5, 0x01, 0x5a, 0x75, 0x5b,
1114513498266Sopenharmony_ci  0xcc, 0xaa, 0xbb, 0x01, 0xad, 0x72, 0x05, 0xd6, 0xdb, 0x20, 0x0d, 0xdd,
1114613498266Sopenharmony_ci  0x46, 0x60, 0xbd, 0xc6, 0xd4, 0xf1, 0xa9, 0x70, 0x43, 0x7e, 0x23, 0x77,
1114713498266Sopenharmony_ci  0x08, 0x3a, 0xd4, 0x68, 0x77, 0xa9, 0x30, 0xf6, 0x65, 0x88, 0xb5, 0x20,
1114813498266Sopenharmony_ci  0xad, 0x66, 0x23, 0xa9, 0xff, 0xb0, 0x8f, 0x3f, 0xbf, 0x5e, 0x62, 0xc8,
1114913498266Sopenharmony_ci  0x6a, 0xa6, 0x38, 0x3b, 0x89, 0x6c, 0xd2, 0x0c, 0x67, 0x4b, 0x58, 0xdb,
1115013498266Sopenharmony_ci  0x72, 0xe4, 0x83, 0xd1, 0xca, 0x31, 0x0a, 0x87, 0x0b, 0x87, 0x87, 0x75,
1115113498266Sopenharmony_ci  0x8f, 0x3b, 0xbf, 0x7c, 0xe3, 0x1b, 0xa3, 0xe8, 0x55, 0xe7, 0xe5, 0x62,
1115213498266Sopenharmony_ci  0x08, 0xbc, 0xe8, 0xaa, 0x77, 0x5b, 0xd1, 0xa9, 0xd1, 0x9e, 0x17, 0x1b,
1115313498266Sopenharmony_ci  0xe3, 0x6d, 0x4d, 0x35, 0x8d, 0x69, 0xc1, 0xb1, 0x5c, 0x8d, 0xe7, 0x72,
1115413498266Sopenharmony_ci  0xb2, 0x77, 0x6e, 0xeb, 0xb9, 0x3b, 0x50, 0xdc, 0xdb, 0x2d, 0x2e, 0xaf,
1115513498266Sopenharmony_ci  0xc0, 0xda, 0x6a, 0xae, 0x0d, 0xb6, 0xd1, 0xad, 0xc1, 0xb7, 0xba, 0xb9,
1115613498266Sopenharmony_ci  0xe5, 0x1e, 0xb5, 0xc6, 0xfa, 0x89, 0xda, 0x4d, 0xbb, 0xb9, 0xd5, 0xd5,
1115713498266Sopenharmony_ci  0x1b, 0x6a, 0x61, 0x51, 0x17, 0xf1, 0x68, 0x9a, 0x01, 0x3f, 0xa7, 0x50,
1115813498266Sopenharmony_ci  0x83, 0xe5, 0x7b, 0xd7, 0x7a, 0xf8, 0xae, 0x36, 0xb0, 0xdd, 0x6c, 0x97,
1115913498266Sopenharmony_ci  0xa8, 0x1a, 0xfb, 0x49, 0xd4, 0xce, 0x2e, 0xde, 0x70, 0x1b, 0x9d, 0xce,
1116013498266Sopenharmony_ci  0x02, 0x17, 0xde, 0x27, 0x6c, 0x6d, 0x7b, 0x16, 0x9f, 0x1c, 0x13, 0x15,
1116113498266Sopenharmony_ci  0x6c, 0x55, 0xd0, 0xf2, 0x9d, 0xf8, 0x28, 0x2d, 0x77, 0x13, 0x85, 0x62,
1116213498266Sopenharmony_ci  0xa2, 0x1e, 0x3f, 0x0e, 0xed, 0x7c, 0x3d, 0xad, 0xb6, 0x77, 0x6d, 0xb8,
1116313498266Sopenharmony_ci  0x88, 0xfc, 0xb2, 0xc0, 0x52, 0x37, 0xa1, 0xd0, 0x11, 0x91, 0xd8, 0x6c,
1116413498266Sopenharmony_ci  0xfc, 0x87, 0x64, 0x6f, 0x70, 0xa8, 0x05, 0xbd, 0x57, 0x2d, 0x0b, 0x01,
1116513498266Sopenharmony_ci  0x69, 0x35, 0x47, 0xf5, 0xec, 0x5c, 0x72, 0x21, 0xbd, 0x09, 0x61, 0x61,
1116613498266Sopenharmony_ci  0x55, 0xd0, 0xaf, 0x48, 0x6a, 0xd9, 0x1e, 0xec, 0x06, 0xc3, 0x43, 0xda,
1116713498266Sopenharmony_ci  0xc6, 0x60, 0xee, 0x7f, 0x59, 0xcc, 0x08, 0x85, 0x8c, 0x2c, 0xe6, 0x14,
1116813498266Sopenharmony_ci  0x24, 0xc2, 0x02, 0x11, 0xb4, 0xad, 0xe1, 0x2b, 0xa1, 0xe6, 0xee, 0x2f,
1116913498266Sopenharmony_ci  0x74, 0xa4, 0x59, 0x44, 0x2b, 0x63, 0x09, 0x18, 0xeb, 0xea, 0x20, 0xfe,
1117013498266Sopenharmony_ci  0xee, 0x82, 0xf3, 0xa0, 0x15, 0x62, 0x88, 0x68, 0xac, 0x15, 0x9a, 0xdb,
1117113498266Sopenharmony_ci  0x81, 0x33, 0xb9, 0x3d, 0x80, 0xff, 0x43, 0xc1, 0x85, 0xd2, 0xc0, 0x02,
1117213498266Sopenharmony_ci  0xd5, 0x88, 0x92, 0x68, 0x9c, 0xa1, 0x89, 0x1d, 0xbd, 0x55, 0x0e, 0x8e,
1117313498266Sopenharmony_ci  0xa2, 0xbf, 0x35, 0x52, 0xd9, 0x03, 0x4d, 0xfd, 0x78, 0x57, 0xb1, 0x1c,
1117413498266Sopenharmony_ci  0xd9, 0x5e, 0x33, 0xb3, 0xea, 0x94, 0x62, 0xc6, 0x3d, 0x04, 0x2b, 0xbb,
1117513498266Sopenharmony_ci  0x35, 0x83, 0x54, 0xae, 0x49, 0xbf, 0xf1, 0x28, 0xf3, 0xb3, 0xdd, 0xa7,
1117613498266Sopenharmony_ci  0xcd, 0x61, 0xc0, 0xec, 0xdf, 0x1f, 0x1c, 0x9e, 0xbc, 0xdf, 0xde, 0x79,
1117713498266Sopenharmony_ci  0xf2, 0xfe, 0xbb, 0xa7, 0xaf, 0xdf, 0x9f, 0xbc, 0x38, 0x40, 0x11, 0xfe,
1117813498266Sopenharmony_ci  0x96, 0x77, 0x6b, 0xa3, 0xed, 0x76, 0x60, 0x4d, 0x73, 0xc1, 0x96, 0x04,
1117913498266Sopenharmony_ci  0x3b, 0x3e, 0xda, 0xee, 0x38, 0xd8, 0xa8, 0x14, 0xdf, 0xc4, 0x50, 0xeb,
1118013498266Sopenharmony_ci  0x3e, 0xfa, 0x29, 0xb6, 0x5a, 0xb7, 0x9d, 0xcf, 0xba, 0x61, 0x66, 0x14,
1118113498266Sopenharmony_ci  0x27, 0x6f, 0x8f, 0xef, 0x47, 0x07, 0x86, 0x4e, 0x08, 0xaf, 0xfb, 0xfa,
1118213498266Sopenharmony_ci  0xab, 0x15, 0x9e, 0x34, 0x20, 0x3e, 0xfb, 0x8c, 0xd0, 0xb3, 0x74, 0x27,
1118313498266Sopenharmony_ci  0xcc, 0xc3, 0x9f, 0x60, 0x91, 0x70, 0x9b, 0xb9, 0x66, 0x1f, 0xee, 0x33,
1118413498266Sopenharmony_ci  0xf4, 0xd4, 0x1d, 0x46, 0xd3, 0x08, 0xf4, 0x19, 0x37, 0x83, 0xec, 0x52,
1118513498266Sopenharmony_ci  0x41, 0xa5, 0xa1, 0xb1, 0x0d, 0xf4, 0xd8, 0xa7, 0x6d, 0x01, 0x35, 0xf1,
1118613498266Sopenharmony_ci  0xb9, 0xe2, 0xcf, 0xb4, 0xff, 0x6a, 0x46, 0x92, 0xcf, 0x3d, 0x2d, 0xbb,
1118713498266Sopenharmony_ci  0x6e, 0xef, 0xcd, 0x96, 0xfe, 0x62, 0xbb, 0x6b, 0xc5, 0x09, 0x99, 0x90,
1118813498266Sopenharmony_ci  0x9e, 0xb8, 0x03, 0x41, 0x92, 0xdb, 0xb9, 0x2f, 0x23, 0x27, 0xb7, 0x7e,
1118913498266Sopenharmony_ci  0x57, 0x0b, 0xba, 0x6c, 0xe1, 0xde, 0xf5, 0x9b, 0xc6, 0xd4, 0xfd, 0x46,
1119013498266Sopenharmony_ci  0x0d, 0xdd, 0xaf, 0x83, 0x21, 0xb9, 0x57, 0x6c, 0x37, 0x73, 0xca, 0xa0,
1119113498266Sopenharmony_ci  0x36, 0x40, 0xc4, 0x0a, 0x03, 0x50, 0xd0, 0x2e, 0x22, 0x1c, 0x44, 0x3f,
1119213498266Sopenharmony_ci  0x0c, 0xd0, 0x37, 0x8a, 0x05, 0xd8, 0x46, 0x62, 0x12, 0x86, 0x4e, 0x4e,
1119313498266Sopenharmony_ci  0x8e, 0x5f, 0xc6, 0x9c, 0x3a, 0x3d, 0x96, 0x5a, 0xce, 0x5c, 0x00, 0x9c,
1119413498266Sopenharmony_ci  0x71, 0x87, 0xa2, 0x34, 0x23, 0xd7, 0x7a, 0xf4, 0xa6, 0x43, 0xad, 0xa6,
1119513498266Sopenharmony_ci  0xb2, 0x71, 0xa1, 0xda, 0xd6, 0xec, 0xf4, 0xd7, 0xea, 0x75, 0xb5, 0x5b,
1119613498266Sopenharmony_ci  0xf5, 0xa0, 0x4a, 0xa7, 0x7e, 0x92, 0xf0, 0x92, 0x89, 0x93, 0xc5, 0x89,
1119713498266Sopenharmony_ci  0x84, 0xcd, 0x34, 0xbf, 0xc8, 0xca, 0x22, 0xa7, 0x50, 0x9d, 0xa1, 0x89,
1119813498266Sopenharmony_ci  0x5d, 0x23, 0xb1, 0xc8, 0x2b, 0xf1, 0x4b, 0x36, 0x3f, 0x07, 0xc3, 0xcc,
1119913498266Sopenharmony_ci  0x31, 0x2a, 0xed, 0x45, 0xbd, 0xf8, 0x5d, 0xb4, 0xe7, 0x17, 0x98, 0x3f,
1120013498266Sopenharmony_ci  0xca, 0x25, 0x1b, 0x8c, 0x02, 0xcd, 0x4a, 0x52, 0x41, 0x28, 0xdf, 0x4b,
1120113498266Sopenharmony_ci  0xcc, 0x50, 0xe7, 0xc0, 0x09, 0x2a, 0xc7, 0xee, 0xaf, 0xe2, 0x9f, 0xc6,
1120213498266Sopenharmony_ci  0x0f, 0x85, 0x4c, 0x65, 0xb0, 0x57, 0x23, 0x0c, 0x94, 0x42, 0xe1, 0x17,
1120313498266Sopenharmony_ci  0x43, 0xa5, 0x4c, 0x34, 0x1d, 0xdb, 0xc8, 0x72, 0xca, 0xff, 0xaf, 0x19,
1120413498266Sopenharmony_ci  0xf9, 0x0e, 0x63, 0x1a, 0x46, 0x65, 0x3a, 0xe6, 0x1c, 0xf1, 0x2a, 0x68,
1120513498266Sopenharmony_ci  0x79, 0x9b, 0x17, 0x55, 0x95, 0x0d, 0x41, 0xb4, 0x3c, 0x13, 0xa1, 0xae,
1120613498266Sopenharmony_ci  0x4a, 0x19, 0xa7, 0x85, 0x83, 0x20, 0x70, 0x0d, 0x4d, 0x7d, 0x41, 0xca,
1120713498266Sopenharmony_ci  0xb8, 0x96, 0x2c, 0xbd, 0x24, 0x10, 0xbe, 0x77, 0x25, 0x91, 0x1b, 0x28,
1120813498266Sopenharmony_ci  0x5e, 0x5e, 0x64, 0xd8, 0x2c, 0xd3, 0x57, 0x12, 0xcd, 0x0a, 0x5e, 0x64,
1120913498266Sopenharmony_ci  0x41, 0x64, 0x9c, 0x62, 0xf9, 0x5a, 0x60, 0x14, 0x27, 0x84, 0xed, 0x5a,
1121013498266Sopenharmony_ci  0xa5, 0x79, 0x95, 0xf9, 0x34, 0x77, 0x21, 0x60, 0x59, 0x16, 0xb8, 0xb0,
1121113498266Sopenharmony_ci  0x4c, 0x11, 0x91, 0xe0, 0x22, 0x95, 0x3d, 0x14, 0x7b, 0xad, 0x29, 0xba,
1121213498266Sopenharmony_ci  0x89, 0xc8, 0x5f, 0xb3, 0x0c, 0x6b, 0xc2, 0xf8, 0x59, 0x68, 0x39, 0x15,
1121313498266Sopenharmony_ci  0x22, 0x57, 0x5e, 0x42, 0x03, 0x88, 0x90, 0x85, 0xf8, 0xd1, 0x44, 0xcb,
1121413498266Sopenharmony_ci  0x18, 0xf9, 0xea, 0x5c, 0xfc, 0x2e, 0xad, 0xfb, 0x86, 0x9e, 0xf7, 0xe6,
1121513498266Sopenharmony_ci  0x9f, 0xea, 0xfd, 0xc2, 0xc3, 0xe0, 0x70, 0x17, 0x87, 0xa9, 0xaf, 0x00,
1121613498266Sopenharmony_ci  0xbe, 0xd9, 0xac, 0x62, 0xdb, 0x0d, 0x45, 0xd9, 0x44, 0x24, 0xf4, 0x8a,
1121713498266Sopenharmony_ci  0x40, 0x87, 0x41, 0x28, 0x27, 0xd9, 0x47, 0x44, 0x70, 0xf4, 0x03, 0x86,
1121813498266Sopenharmony_ci  0xda, 0x78, 0x8e, 0x08, 0x13, 0xc4, 0xae, 0x24, 0x06, 0x58, 0x8c, 0x6a,
1121913498266Sopenharmony_ci  0xaa, 0xa5, 0x48, 0xc5, 0xa5, 0x29, 0x59, 0x9c, 0x3c, 0x73, 0x51, 0x30,
1122013498266Sopenharmony_ci  0x7f, 0xab, 0x05, 0x54, 0xd9, 0x80, 0xa6, 0xb4, 0xc8, 0x94, 0x48, 0x58,
1122113498266Sopenharmony_ci  0x16, 0x97, 0x92, 0xf0, 0x63, 0x39, 0x42, 0xd6, 0xe3, 0x12, 0x82, 0x50,
1122213498266Sopenharmony_ci  0xd9, 0x8d, 0x49, 0xe9, 0xe3, 0x47, 0x64, 0x1f, 0x81, 0x2f, 0x12, 0x1c,
1122313498266Sopenharmony_ci  0x2d, 0xf6, 0x91, 0xd6, 0x1c, 0x81, 0x68, 0xa1, 0xbd, 0x26, 0xda, 0xbb,
1122413498266Sopenharmony_ci  0xfa, 0x2e, 0x4e, 0x80, 0xb4, 0x28, 0xcf, 0x2a, 0x80, 0x88, 0xa5, 0xc5,
1122513498266Sopenharmony_ci  0x71, 0xf0, 0x2b, 0x8a, 0xd7, 0x1c, 0x44, 0xe9, 0xe0, 0x6c, 0xe0, 0x0c,
1122613498266Sopenharmony_ci  0xdf, 0xbc, 0xb9, 0x89, 0x5e, 0x8f, 0xcd, 0xba, 0xd8, 0xe4, 0x6e, 0x07,
1122713498266Sopenharmony_ci  0xf8, 0xcf, 0x17, 0xdd, 0xa0, 0xa3, 0x26, 0x56, 0x87, 0xf3, 0x55, 0x91,
1122813498266Sopenharmony_ci  0xbe, 0x8d, 0xd3, 0x52, 0x09, 0xd0, 0x41, 0x21, 0xe3, 0x0d, 0x0c, 0x8c,
1122913498266Sopenharmony_ci  0xce, 0x68, 0xa6, 0x6c, 0xb0, 0xd0, 0x72, 0x02, 0x12, 0xcd, 0x68, 0xaf,
1123013498266Sopenharmony_ci  0xbe, 0x0d, 0xd0, 0x55, 0x6b, 0xa6, 0x59, 0x93, 0x21, 0xdb, 0x86, 0x5a,
1123113498266Sopenharmony_ci  0x82, 0x33, 0xec, 0x96, 0x1f, 0xe8, 0x47, 0x25, 0xe8, 0xfa, 0x88, 0x72,
1123213498266Sopenharmony_ci  0x61, 0xd3, 0x54, 0xb9, 0xfc, 0x80, 0x53, 0x70, 0xc0, 0xa9, 0x5b, 0xd0,
1123313498266Sopenharmony_ci  0xb6, 0x66, 0x38, 0x01, 0x95, 0x4f, 0x1e, 0x53, 0x40, 0xa5, 0xb7, 0x59,
1123413498266Sopenharmony_ci  0x65, 0x3a, 0x2a, 0xce, 0xf2, 0xec, 0x77, 0x4e, 0x74, 0xf5, 0x20, 0xd8,
1123513498266Sopenharmony_ci  0x1a, 0x38, 0xa8, 0x4d, 0xc0, 0x02, 0x04, 0xc6, 0x08, 0x77, 0x48, 0xc1,
1123613498266Sopenharmony_ci  0xa9, 0x66, 0xd2, 0x88, 0xf2, 0x36, 0xca, 0x28, 0xa2, 0x97, 0x5d, 0x60,
1123713498266Sopenharmony_ci  0x42, 0x44, 0x88, 0x8b, 0x8c, 0xc0, 0x30, 0xf8, 0x82, 0x80, 0xc0, 0x79,
1123813498266Sopenharmony_ci  0xd8, 0x21, 0x88, 0x1c, 0x57, 0x69, 0xe5, 0xf3, 0xb1, 0x3d, 0x15, 0xcc,
1123913498266Sopenharmony_ci  0x1f, 0x43, 0x7c, 0x8d, 0x9c, 0x28, 0x2b, 0xe3, 0x98, 0xe2, 0x39, 0xbb,
1124013498266Sopenharmony_ci  0x15, 0x92, 0x69, 0xd3, 0xc8, 0x21, 0xb0, 0x60, 0x04, 0x56, 0xf7, 0x91,
1124113498266Sopenharmony_ci  0x6f, 0xb3, 0xc6, 0x8d, 0x6c, 0x6b, 0xf6, 0x52, 0x78, 0x99, 0xaf, 0x95,
1124213498266Sopenharmony_ci  0x34, 0x02, 0xb0, 0x17, 0x15, 0xd7, 0xfe, 0x60, 0xd4, 0x46, 0x04, 0x6d,
1124313498266Sopenharmony_ci  0xcc, 0x83, 0xad, 0x59, 0xe3, 0x45, 0x12, 0x0a, 0x46, 0xb4, 0x15, 0x72,
1124413498266Sopenharmony_ci  0x91, 0xc4, 0x4d, 0xeb, 0xbd, 0x1e, 0xfe, 0xd4, 0x11, 0xc3, 0x02, 0xf8,
1124513498266Sopenharmony_ci  0xe0, 0x7c, 0x58, 0xb2, 0xd2, 0x14, 0xe9, 0x96, 0x31, 0xe3, 0x51, 0x96,
1124613498266Sopenharmony_ci  0x5a, 0x67, 0xc8, 0xa9, 0x2e, 0x08, 0xc8, 0xd5, 0x01, 0xb8, 0xa0, 0x07,
1124713498266Sopenharmony_ci  0x08, 0x1e, 0x2a, 0xf6, 0x83, 0xad, 0xd9, 0xf8, 0x23, 0x90, 0xd9, 0xbc,
1124813498266Sopenharmony_ci  0xb0, 0xf8, 0x26, 0x1d, 0x0c, 0x84, 0x9e, 0x96, 0x3e, 0xd0, 0xfc, 0x87,
1124913498266Sopenharmony_ci  0xec, 0xc3, 0x1e, 0x3e, 0xd8, 0x3e, 0xcf, 0x86, 0x49, 0x6c, 0xc9, 0x19,
1125013498266Sopenharmony_ci  0x1e, 0x07, 0x5a, 0x4a, 0xa0, 0x73, 0xa2, 0xb0, 0x4e, 0x4d, 0x61, 0x82,
1125113498266Sopenharmony_ci  0x0c, 0x76, 0x08, 0xc5, 0x92, 0x4d, 0xba, 0xed, 0x41, 0x0b, 0x2a, 0xd0,
1125213498266Sopenharmony_ci  0xa1, 0x50, 0xc6, 0x66, 0x4b, 0xfa, 0xc8, 0x7e, 0x11, 0x78, 0xc5, 0x70,
1125313498266Sopenharmony_ci  0x89, 0x78, 0x6e, 0x45, 0x58, 0x2f, 0x14, 0x9c, 0x1a, 0xe9, 0x30, 0x03,
1125413498266Sopenharmony_ci  0xfd, 0xff, 0x06, 0xfe, 0xad, 0x73, 0x51, 0x12, 0xf7, 0xf6, 0xae, 0x49,
1125513498266Sopenharmony_ci  0x23, 0x80, 0x5d, 0x26, 0x57, 0x5a, 0x43, 0x9a, 0x9f, 0x47, 0x32, 0xf7,
1125613498266Sopenharmony_ci  0x3c, 0xc2, 0xed, 0x43, 0xd4, 0x97, 0x68, 0xf8, 0x36, 0x46, 0x8e, 0xb0,
1125713498266Sopenharmony_ci  0xea, 0x88, 0x31, 0x1b, 0x81, 0x5f, 0x6c, 0x84, 0xa0, 0xc5, 0x08, 0x8c,
1125813498266Sopenharmony_ci  0x07, 0xf9, 0x2c, 0xae, 0x1a, 0xc9, 0x21, 0x7f, 0x31, 0xdb, 0xd1, 0xe1,
1125913498266Sopenharmony_ci  0x70, 0x4e, 0x0c, 0x4b, 0xc4, 0x43, 0x8f, 0x1c, 0x49, 0x13, 0x5c, 0x93,
1126013498266Sopenharmony_ci  0x11, 0x23, 0x47, 0x23, 0x00, 0xde, 0x0c, 0xf6, 0x01, 0x67, 0x63, 0x2e,
1126113498266Sopenharmony_ci  0x94, 0xf8, 0xb8, 0xef, 0x59, 0x0b, 0x27, 0xf5, 0x3c, 0x46, 0x36, 0xd5,
1126213498266Sopenharmony_ci  0xc7, 0x55, 0x11, 0x9a, 0xed, 0x2e, 0x6a, 0xcf, 0xbd, 0x7e, 0x46, 0xc0,
1126313498266Sopenharmony_ci  0x1e, 0x91, 0xc9, 0x3c, 0xfc, 0xe0, 0x15, 0x1d, 0x39, 0x74, 0x67, 0xdf,
1126413498266Sopenharmony_ci  0x20, 0x3e, 0x69, 0x7b, 0xb0, 0x15, 0xed, 0x3b, 0x92, 0xda, 0xd7, 0x37,
1126513498266Sopenharmony_ci  0xc1, 0x49, 0x67, 0xa1, 0x08, 0x5f, 0x55, 0xb9, 0xa2, 0xf3, 0x3a, 0x08,
1126613498266Sopenharmony_ci  0x0b, 0x39, 0xb8, 0x9d, 0x2c, 0x6f, 0x29, 0xe3, 0x47, 0xe0, 0x28, 0x7c,
1126713498266Sopenharmony_ci  0xb9, 0x83, 0xf5, 0xa7, 0x6c, 0xc1, 0x56, 0x73, 0xf3, 0x28, 0x85, 0x5d,
1126813498266Sopenharmony_ci  0xac, 0x2f, 0xd3, 0x54, 0x2c, 0xe9, 0x5a, 0x14, 0xdc, 0x61, 0x8e, 0xe6,
1126913498266Sopenharmony_ci  0xa6, 0x00, 0xf9, 0x34, 0x6c, 0x41, 0xee, 0x33, 0xfa, 0x0b, 0x72, 0xda,
1127013498266Sopenharmony_ci  0x1a, 0x94, 0x12, 0x81, 0xce, 0xc2, 0x5b, 0x57, 0x33, 0x7d, 0x3c, 0xc6,
1127113498266Sopenharmony_ci  0x44, 0xe3, 0x6f, 0x9f, 0x16, 0x76, 0x5f, 0x28, 0x6b, 0xc6, 0x55, 0x71,
1127213498266Sopenharmony_ci  0xe0, 0xea, 0x1a, 0x80, 0xc8, 0x8a, 0x32, 0x23, 0x0f, 0x6e, 0x5f, 0x6f,
1127313498266Sopenharmony_ci  0x82, 0xc0, 0xd6, 0xee, 0xc9, 0xfe, 0x80, 0x4d, 0xdf, 0x51, 0xf8, 0x7f,
1127413498266Sopenharmony_ci  0xdf, 0xa7, 0xb8, 0xb4, 0xed, 0xd6, 0xb5, 0x0c, 0x9c, 0x19, 0x76, 0xf8,
1127513498266Sopenharmony_ci  0xd8, 0xab, 0xc4, 0x6d, 0x8e, 0x21, 0x09, 0x23, 0x8d, 0xae, 0xdc, 0x5c,
1127613498266Sopenharmony_ci  0x1d, 0x9b, 0x9d, 0x12, 0xbe, 0x14, 0x04, 0xd9, 0x79, 0x82, 0xf7, 0x97,
1127713498266Sopenharmony_ci  0xb7, 0x99, 0x03, 0xe1, 0x9b, 0xf2, 0x6c, 0x94, 0xcc, 0xe1, 0x63, 0x02,
1127813498266Sopenharmony_ci  0x40, 0xf4, 0xce, 0xf2, 0x2c, 0x19, 0xa7, 0x12, 0x68, 0xd7, 0xa6, 0xb3,
1127913498266Sopenharmony_ci  0x56, 0x56, 0x18, 0x2d, 0x80, 0x17, 0xda, 0x1e, 0x12, 0x16, 0xf4, 0xc6,
1128013498266Sopenharmony_ci  0x90, 0x62, 0xe7, 0xe2, 0xdc, 0xd2, 0xf4, 0x2f, 0x89, 0xa8, 0x74, 0x0f,
1128113498266Sopenharmony_ci  0x94, 0x84, 0xc0, 0xe7, 0x7e, 0x16, 0x52, 0xe1, 0xdd, 0xa4, 0x45, 0xa8,
1128213498266Sopenharmony_ci  0x02, 0xbb, 0xa9, 0xbf, 0xde, 0x1e, 0xb9, 0x60, 0x5e, 0x69, 0x5e, 0x4f,
1128313498266Sopenharmony_ci  0xc3, 0x4f, 0xc4, 0x4c, 0xce, 0xf3, 0xb7, 0x49, 0xc9, 0x73, 0x7d, 0x65,
1128413498266Sopenharmony_ci  0x41, 0xd1, 0x86, 0xda, 0x41, 0x2c, 0x93, 0x89, 0xbb, 0xd2, 0x75, 0xfc,
1128513498266Sopenharmony_ci  0xe4, 0x07, 0xdd, 0x84, 0x7b, 0x49, 0x7e, 0xe0, 0xc6, 0x6f, 0x75, 0x4a,
1128613498266Sopenharmony_ci  0x64, 0x5c, 0xf7, 0x91, 0x27, 0x23, 0x01, 0x6d, 0x81, 0x98, 0xeb, 0xf5,
1128713498266Sopenharmony_ci  0x13, 0xbc, 0xdd, 0x4e, 0x9e, 0x1e, 0x6f, 0x44, 0xc7, 0xad, 0x58, 0x35,
1128813498266Sopenharmony_ci  0xc2, 0x76, 0x46, 0x79, 0xd1, 0x15, 0x36, 0xf8, 0xaa, 0x62, 0xb3, 0xd4,
1128913498266Sopenharmony_ci  0x92, 0xb0, 0xa6, 0x4c, 0xb8, 0xa5, 0x26, 0x29, 0x52, 0x8b, 0xe1, 0x3c,
1129013498266Sopenharmony_ci  0x42, 0x97, 0x23, 0xa2, 0xbb, 0x18, 0x61, 0xdb, 0x47, 0x84, 0x14, 0x28,
1129113498266Sopenharmony_ci  0xa1, 0x58, 0x1a, 0x42, 0x65, 0xc2, 0xb4, 0x34, 0x14, 0xcb, 0xa7, 0x75,
1129213498266Sopenharmony_ci  0x2e, 0xb5, 0x6a, 0xab, 0x44, 0x52, 0xe1, 0x06, 0x12, 0x00, 0x58, 0x9c,
1129313498266Sopenharmony_ci  0x68, 0x22, 0x8d, 0xa7, 0x39, 0xde, 0xb6, 0xd0, 0x11, 0x5e, 0xd5, 0x7e,
1129413498266Sopenharmony_ci  0xe2, 0x1f, 0x1d, 0x2c, 0x2a, 0xcf, 0x50, 0xa7, 0x7a, 0xbc, 0xf0, 0xb6,
1129513498266Sopenharmony_ci  0xb6, 0x23, 0x91, 0x01, 0x66, 0x84, 0x53, 0x2b, 0xe7, 0x50, 0x13, 0x48,
1129613498266Sopenharmony_ci  0x3c, 0x32, 0x1e, 0x12, 0xa0, 0x3c, 0x56, 0xae, 0x26, 0xc2, 0xc1, 0xf3,
1129713498266Sopenharmony_ci  0x0b, 0x27, 0x71, 0x8e, 0xa9, 0x43, 0xf8, 0x52, 0x55, 0x9d, 0xef, 0x00,
1129813498266Sopenharmony_ci  0xa3, 0xde, 0x19, 0x3c, 0x21, 0x4b, 0x01, 0x08, 0x8d, 0xa9, 0xa0, 0x1c,
1129913498266Sopenharmony_ci  0xe2, 0xc9, 0xc8, 0x3c, 0x6f, 0x7f, 0x95, 0x4e, 0x27, 0xed, 0x06, 0x45,
1130013498266Sopenharmony_ci  0x67, 0xed, 0xf2, 0x77, 0x31, 0x15, 0x74, 0xe4, 0x24, 0xdc, 0xb7, 0x65,
1130113498266Sopenharmony_ci  0x88, 0x3b, 0x27, 0x32, 0x80, 0xdf, 0xa3, 0x6a, 0x95, 0xb2, 0xce, 0x6d,
1130213498266Sopenharmony_ci  0x33, 0xd0, 0xdf, 0x91, 0xca, 0xff, 0xb9, 0xc0, 0x7d, 0xd9, 0x17, 0x93,
1130313498266Sopenharmony_ci  0x98, 0x47, 0xd7, 0x44, 0xd6, 0xcf, 0x31, 0x09, 0xec, 0x24, 0xcd, 0xc7,
1130413498266Sopenharmony_ci  0x9c, 0xed, 0x38, 0xcc, 0x60, 0xbf, 0xca, 0x2b, 0x63, 0x46, 0x6b, 0x32,
1130513498266Sopenharmony_ci  0x40, 0x7c, 0x83, 0x8a, 0x7b, 0xe0, 0x6b, 0xc1, 0x32, 0x3d, 0xc0, 0xc6,
1130613498266Sopenharmony_ci  0xff, 0x4e, 0xbd, 0x4a, 0x03, 0x62, 0x03, 0x41, 0xf9, 0xf5, 0xdb, 0xc3,
1130713498266Sopenharmony_ci  0xe7, 0x47, 0x6f, 0x0f, 0x9b, 0xf8, 0xfe, 0x35, 0x5d, 0x19, 0x94, 0x6b,
1130813498266Sopenharmony_ci  0xd8, 0x1e, 0xdd, 0x6f, 0xe8, 0xed, 0xe7, 0x82, 0x3e, 0x9c, 0x2f, 0x99,
1130913498266Sopenharmony_ci  0xa1, 0xe5, 0x33, 0x3a, 0xfe, 0xf1, 0x99, 0x19, 0x1c, 0x0a, 0xe3, 0x39,
1131013498266Sopenharmony_ci  0x0f, 0x4a, 0x5b, 0xec, 0x73, 0xa4, 0xe9, 0xb0, 0xdd, 0x1c, 0x45, 0x1c,
1131113498266Sopenharmony_ci  0x82, 0x52, 0x7e, 0x5a, 0xd0, 0x35, 0x65, 0x87, 0x47, 0x89, 0x9e, 0x9c,
1131213498266Sopenharmony_ci  0x82, 0xab, 0xd5, 0x83, 0x40, 0x05, 0x40, 0xbb, 0x2c, 0x16, 0x03, 0x32,
1131313498266Sopenharmony_ci  0xcd, 0x7a, 0xe7, 0x88, 0x24, 0x6d, 0x2a, 0x9a, 0x2b, 0x46, 0xaf, 0x31,
1131413498266Sopenharmony_ci  0xa2, 0xf9, 0xaf, 0xc5, 0x7e, 0xd0, 0xe6, 0x3a, 0xaf, 0x1a, 0x48, 0x4c,
1131513498266Sopenharmony_ci  0x1b, 0x91, 0xdf, 0xbf, 0x26, 0xa7, 0x72, 0xe7, 0x6c, 0x4b, 0x46, 0x24,
1131613498266Sopenharmony_ci  0x4c, 0x8a, 0x67, 0x1b, 0x07, 0x8e, 0x30, 0xda, 0x50, 0xf0, 0xa8, 0x3a,
1131713498266Sopenharmony_ci  0x60, 0x67, 0xb4, 0x54, 0x62, 0x90, 0x65, 0xf1, 0x90, 0xa3, 0x5f, 0xcd,
1131813498266Sopenharmony_ci  0x32, 0x6b, 0x77, 0xeb, 0xd5, 0x46, 0xc7, 0x4c, 0x2c, 0x2e, 0x6c, 0x6e,
1131913498266Sopenharmony_ci  0xcc, 0x78, 0x6b, 0x7f, 0x59, 0x6b, 0x6a, 0x91, 0x56, 0xff, 0xa5, 0x4b,
1132013498266Sopenharmony_ci  0x09, 0x03, 0x0e, 0x42, 0x28, 0xd7, 0x08, 0x17, 0x24, 0x36, 0x6d, 0x92,
1132113498266Sopenharmony_ci  0xdd, 0xf5, 0x2d, 0x6f, 0x65, 0x96, 0x67, 0x9a, 0xeb, 0x12, 0x0d, 0x02,
1132213498266Sopenharmony_ci  0xc0, 0xdc, 0x2a, 0xbb, 0xd1, 0x7a, 0x55, 0x75, 0x81, 0x78, 0xaf, 0xb5,
1132313498266Sopenharmony_ci  0xd4, 0xf3, 0x99, 0x80, 0x06, 0x4c, 0x19, 0x4f, 0xb0, 0xd6, 0xbc, 0xd8,
1132413498266Sopenharmony_ci  0x62, 0x7f, 0x41, 0x57, 0x53, 0x96, 0x7b, 0xee, 0xb8, 0x14, 0xed, 0xf5,
1132513498266Sopenharmony_ci  0x18, 0xa1, 0xda, 0x58, 0x03, 0x6c, 0x05, 0x0e, 0xbb, 0xdd, 0xe8, 0xd6,
1132613498266Sopenharmony_ci  0xea, 0xc0, 0xf4, 0x41, 0x9a, 0x2c, 0xb3, 0xea, 0x43, 0x7b, 0xbb, 0xff,
1132713498266Sopenharmony_ci  0x13, 0xc8, 0x8c, 0xaa, 0x59, 0x5e, 0x66, 0x15, 0xb0, 0x57, 0x29, 0x69,
1132813498266Sopenharmony_ci  0x21, 0x81, 0xb8, 0x65, 0x4a, 0xc9, 0xd2, 0x3a, 0x48, 0xb1, 0xa4, 0xa1,
1132913498266Sopenharmony_ci  0x76, 0x8d, 0x53, 0x0e, 0x56, 0x6b, 0xe3, 0x55, 0x60, 0xbe, 0x83, 0xe6,
1133013498266Sopenharmony_ci  0xff, 0x32, 0xb5, 0xda, 0x3f, 0x09, 0xed, 0xc3, 0x70, 0x81, 0x4c, 0x5c,
1133113498266Sopenharmony_ci  0x5d, 0x89, 0x99, 0xc1, 0xe3, 0x5d, 0x5d, 0xe5, 0x35, 0x72, 0x62, 0xbe,
1133213498266Sopenharmony_ci  0x38, 0x46, 0x45, 0x49, 0x82, 0x0e, 0xd2, 0xa6, 0x3d, 0xaa, 0x15, 0x55,
1133313498266Sopenharmony_ci  0xfb, 0xfa, 0xf2, 0xe1, 0x97, 0xa1, 0x6a, 0x3a, 0x94, 0x08, 0x0e, 0x87,
1133413498266Sopenharmony_ci  0x0b, 0x5f, 0xe1, 0xd9, 0x54, 0x14, 0x19, 0x5d, 0x70, 0x09, 0x10, 0xa2,
1133513498266Sopenharmony_ci  0x3b, 0xd3, 0x14, 0x11, 0x00, 0x32, 0xcf, 0x61, 0x8a, 0x00, 0xee, 0x3e,
1133613498266Sopenharmony_ci  0xaf, 0x3f, 0x71, 0x9a, 0xf1, 0x71, 0x68, 0xe8, 0xc8, 0x50, 0xb9, 0x0e,
1133713498266Sopenharmony_ci  0x71, 0x3a, 0xa9, 0x10, 0x3f, 0x88, 0xde, 0xe5, 0x04, 0x01, 0x80, 0xeb,
1133813498266Sopenharmony_ci  0xf6, 0x1c, 0x21, 0xd8, 0x59, 0x34, 0x42, 0x08, 0x3f, 0xd8, 0x2b, 0xb8,
1133913498266Sopenharmony_ci  0x23, 0x03, 0xac, 0xe9, 0x9f, 0x4d, 0x8e, 0x94, 0xd5, 0x74, 0x33, 0xc8,
1134013498266Sopenharmony_ci  0x81, 0xd1, 0x90, 0x60, 0x3a, 0xcb, 0x0a, 0x06, 0x60, 0xb9, 0xd9, 0xf3,
1134113498266Sopenharmony_ci  0xcc, 0xab, 0xd1, 0x85, 0xb7, 0x7e, 0x45, 0x84, 0x0b, 0x87, 0x97, 0xda,
1134213498266Sopenharmony_ci  0xc6, 0x98, 0xef, 0x74, 0x3a, 0xe5, 0x1a, 0x13, 0xd8, 0x08, 0x29, 0xd8,
1134313498266Sopenharmony_ci  0x5c, 0x6a, 0x84, 0x92, 0xe7, 0xd5, 0xf2, 0x80, 0x86, 0x07, 0x0f, 0x19,
1134413498266Sopenharmony_ci  0x99, 0x4a, 0xa6, 0x60, 0x57, 0xa6, 0x28, 0x9a, 0x22, 0x61, 0x6a, 0x58,
1134513498266Sopenharmony_ci  0x14, 0x62, 0xc0, 0x5b, 0xfb, 0x24, 0xad, 0x8e, 0x99, 0x53, 0xec, 0x49,
1134613498266Sopenharmony_ci  0xc7, 0x30, 0x47, 0x2f, 0x92, 0x29, 0xc1, 0xcb, 0x0b, 0x9d, 0x30, 0x2c,
1134713498266Sopenharmony_ci  0x67, 0x84, 0xc1, 0xa2, 0x51, 0x00, 0xe7, 0x07, 0x95, 0xd6, 0xab, 0x54,
1134813498266Sopenharmony_ci  0x62, 0xab, 0xe9, 0xc2, 0x4b, 0x88, 0x2f, 0xd2, 0x3d, 0xa8, 0xd4, 0x1a,
1134913498266Sopenharmony_ci  0x2d, 0x69, 0x0e, 0xd7, 0x69, 0xcc, 0xf1, 0x43, 0xf8, 0x24, 0xa3, 0x34,
1135013498266Sopenharmony_ci  0x22, 0xe5, 0xe6, 0x63, 0x8e, 0xfa, 0xda, 0xa7, 0xf1, 0xa4, 0x1f, 0x49,
1135113498266Sopenharmony_ci  0x4c, 0x05, 0x6a, 0xfe, 0x5a, 0x4c, 0x25, 0xe1, 0xe6, 0x68, 0x11, 0x28,
1135213498266Sopenharmony_ci  0xd8, 0x1b, 0xfa, 0xa6, 0x37, 0xd9, 0x30, 0x54, 0x71, 0xe1, 0x08, 0x21,
1135313498266Sopenharmony_ci  0x40, 0xa0, 0x86, 0xf7, 0x67, 0x69, 0x8d, 0xdf, 0xaf, 0xef, 0x6e, 0xd0,
1135413498266Sopenharmony_ci  0x72, 0x74, 0x40, 0x90, 0x23, 0x96, 0x01, 0xd5, 0x99, 0x68, 0x0e, 0xc2,
1135513498266Sopenharmony_ci  0xd4, 0x9d, 0x88, 0xd6, 0x1d, 0x1f, 0xee, 0x63, 0x44, 0x61, 0xf4, 0x84,
1135613498266Sopenharmony_ci  0xb3, 0xf3, 0xb3, 0x72, 0x1e, 0x9d, 0x81, 0x94, 0x3f, 0xbf, 0x66, 0x55,
1135713498266Sopenharmony_ci  0xe5, 0x51, 0x6f, 0x59, 0xf9, 0xdd, 0x97, 0xcf, 0xf4, 0x00, 0x19, 0xa9,
1135813498266Sopenharmony_ci  0x12, 0x0d, 0x5a, 0xe1, 0xe6, 0xda, 0x4b, 0xa9, 0x57, 0xb4, 0x69, 0xca,
1135913498266Sopenharmony_ci  0x9a, 0x06, 0x74, 0xe5, 0xf9, 0xbb, 0x70, 0x73, 0x8d, 0x0d, 0xe1, 0x36,
1136013498266Sopenharmony_ci  0xb4, 0x61, 0x3a, 0x7f, 0x63, 0x68, 0x6c, 0x96, 0xf0, 0x09, 0x3b, 0x03,
1136113498266Sopenharmony_ci  0x06, 0xa6, 0xdd, 0xf8, 0x92, 0xea, 0xf9, 0xac, 0x18, 0xb3, 0x11, 0xe8,
1136213498266Sopenharmony_ci  0xda, 0xb5, 0x98, 0x11, 0x88, 0xab, 0x2c, 0x86, 0xe2, 0xbc, 0x57, 0xee,
1136313498266Sopenharmony_ci  0xdd, 0x45, 0xed, 0x0c, 0x33, 0xde, 0x6c, 0x9f, 0x2b, 0xb6, 0x0d, 0x18,
1136413498266Sopenharmony_ci  0x2c, 0x35, 0x51, 0xf3, 0xf4, 0xa6, 0x3b, 0x85, 0x3c, 0x2a, 0x46, 0xb5,
1136513498266Sopenharmony_ci  0x33, 0x03, 0x7c, 0xa0, 0x83, 0x60, 0xe9, 0xee, 0x09, 0xcc, 0x0c, 0xf1,
1136613498266Sopenharmony_ci  0x3f, 0xc9, 0x54, 0xb6, 0x7c, 0x66, 0xfc, 0xa0, 0xb7, 0xc9, 0xf0, 0x21,
1136713498266Sopenharmony_ci  0xdf, 0x68, 0xde, 0x0e, 0x77, 0xcf, 0xac, 0xb1, 0xc3, 0x96, 0x2d, 0xd1,
1136813498266Sopenharmony_ci  0x20, 0x70, 0x93, 0x5d, 0x03, 0x90, 0xd9, 0x66, 0xfc, 0xf6, 0x06, 0xbb,
1136913498266Sopenharmony_ci  0x4c, 0x8d, 0x2c, 0xdd, 0x64, 0x7a, 0x22, 0xb0, 0xc7, 0x53, 0x74, 0x6d,
1137013498266Sopenharmony_ci  0x2d, 0xca, 0x51, 0xfa, 0x9e, 0xc6, 0xc7, 0x25, 0xed, 0xdf, 0x2f, 0x5f,
1137113498266Sopenharmony_ci  0x94, 0xa9, 0x14, 0x7b, 0xba, 0x9a, 0xa1, 0x28, 0x6e, 0xb9, 0xf0, 0x88,
1137213498266Sopenharmony_ci  0x7c, 0x7b, 0x28, 0x6e, 0x51, 0xf1, 0x23, 0xd0, 0x17, 0xe8, 0xfb, 0xa0,
1137313498266Sopenharmony_ci  0x8a, 0xae, 0xa4, 0x6f, 0xfb, 0x8b, 0x22, 0x53, 0xd5, 0x10, 0xd4, 0xf2,
1137413498266Sopenharmony_ci  0x2c, 0x67, 0x3f, 0x80, 0x1c, 0x05, 0x77, 0x8c, 0xf8, 0x58, 0x07, 0x36,
1137513498266Sopenharmony_ci  0x7e, 0xd0, 0x44, 0x3d, 0xfb, 0x80, 0xd0, 0xda, 0x46, 0xb8, 0x7a, 0x8f,
1137613498266Sopenharmony_ci  0x5b, 0xd5, 0x3d, 0x39, 0x7e, 0x5a, 0x77, 0x9c, 0xa7, 0x24, 0xc8, 0xf8,
1137713498266Sopenharmony_ci  0x06, 0x39, 0xd1, 0xdd, 0xec, 0x28, 0x20, 0x32, 0x35, 0x25, 0xa7, 0xf7,
1137813498266Sopenharmony_ci  0x5c, 0xe4, 0x41, 0xf6, 0xcb, 0x1b, 0xdd, 0x4d, 0xd9, 0xb8, 0x3c, 0x19,
1137913498266Sopenharmony_ci  0xe6, 0xe3, 0x8d, 0x12, 0x02, 0xca, 0xcd, 0x97, 0x93, 0x62, 0x63, 0x12,
1138013498266Sopenharmony_ci  0x37, 0xe4, 0xe4, 0xe1, 0xe6, 0xd0, 0x49, 0xb1, 0x9c, 0x93, 0x93, 0xb0,
1138113498266Sopenharmony_ci  0xd5, 0xe2, 0xe3, 0xf7, 0xc9, 0xc6, 0xd1, 0x05, 0x2f, 0xcb, 0x86, 0xbf,
1138213498266Sopenharmony_ci  0xea, 0x9a, 0xa9, 0xa8, 0x46, 0xf8, 0x3f, 0xc3, 0xaa, 0x98, 0x2e, 0x50,
1138313498266Sopenharmony_ci  0x71, 0xa6, 0x0c, 0x33, 0x0e, 0x45, 0xe9, 0x90, 0xd8, 0xac, 0x56, 0x47,
1138413498266Sopenharmony_ci  0xa1, 0xb8, 0x9e, 0xbc, 0xee, 0x6d, 0x6a, 0x29, 0xa0, 0x32, 0x44, 0xb5,
1138513498266Sopenharmony_ci  0x42, 0xe4, 0xdd, 0x3b, 0x2b, 0x4f, 0xdb, 0x51, 0xb2, 0x38, 0x62, 0xf7,
1138613498266Sopenharmony_ci  0xa5, 0x0c, 0xd0, 0x5e, 0xf7, 0x55, 0xa2, 0xdd, 0xb6, 0xaf, 0x93, 0x71,
1138713498266Sopenharmony_ci  0x8a, 0x02, 0x3c, 0x93, 0x08, 0xcd, 0xf9, 0x7a, 0x9e, 0xc5, 0x23, 0xef,
1138813498266Sopenharmony_ci  0xa4, 0xdd, 0x72, 0x76, 0x0d, 0xcd, 0xc2, 0x03, 0x76, 0x56, 0x5c, 0x80,
1138913498266Sopenharmony_ci  0xcd, 0xcc, 0x2a, 0xc8, 0xef, 0xba, 0x9b, 0xeb, 0x1e, 0x43, 0xe3, 0x74,
1139013498266Sopenharmony_ci  0x2f, 0x39, 0x3f, 0xfc, 0x64, 0x70, 0x40, 0x76, 0x79, 0xb1, 0xae, 0xc6,
1139113498266Sopenharmony_ci  0x95, 0x1d, 0x5a, 0x07, 0xc1, 0x5f, 0xb5, 0xde, 0x92, 0xc1, 0xf5, 0x1d,
1139213498266Sopenharmony_ci  0x77, 0x17, 0x99, 0x30, 0xd0, 0xc6, 0xe3, 0x53, 0x87, 0x32, 0xce, 0x95,
1139313498266Sopenharmony_ci  0x18, 0x2f, 0x1a, 0x06, 0xa6, 0x79, 0x00, 0x98, 0x47, 0xc4, 0xc6, 0x4f,
1139413498266Sopenharmony_ci  0x46, 0xe4, 0xe9, 0x32, 0x62, 0x70, 0xfb, 0xbd, 0x67, 0x87, 0xaf, 0x0e,
1139513498266Sopenharmony_ci  0x69, 0x7b, 0x7a, 0x91, 0x6f, 0xc5, 0x98, 0x14, 0x45, 0xb7, 0x21, 0xe3,
1139613498266Sopenharmony_ci  0x27, 0x34, 0x5c, 0x88, 0xf9, 0xd6, 0x35, 0xd0, 0xe1, 0x8a, 0x81, 0xb0,
1139713498266Sopenharmony_ci  0xdb, 0x0d, 0x33, 0xf8, 0x0c, 0xcb, 0x49, 0x8d, 0x28, 0x5c, 0x44, 0x4b,
1139813498266Sopenharmony_ci  0x52, 0xb5, 0xea, 0xe6, 0x59, 0xb7, 0x7b, 0xd3, 0x5f, 0xff, 0xe4, 0x41,
1139913498266Sopenharmony_ci  0x00, 0x73, 0xe9, 0xb8, 0xcc, 0xa8, 0xbc, 0x60, 0x21, 0x16, 0x26, 0xa9,
1140013498266Sopenharmony_ci  0xf0, 0x72, 0x9e, 0x70, 0x75, 0x0c, 0x46, 0x99, 0x29, 0xd4, 0x32, 0x3b,
1140113498266Sopenharmony_ci  0x69, 0x82, 0x6b, 0x17, 0xd3, 0x36, 0x2d, 0x18, 0xdf, 0x3f, 0xf0, 0x8c,
1140213498266Sopenharmony_ci  0x2e, 0x1b, 0x94, 0x86, 0xfa, 0x91, 0x31, 0x4f, 0x8f, 0x1c, 0x36, 0x49,
1140313498266Sopenharmony_ci  0x93, 0x96, 0xb4, 0x55, 0x64, 0x25, 0xbc, 0x16, 0x9c, 0xb3, 0x28, 0xe4,
1140413498266Sopenharmony_ci  0x8a, 0xbf, 0x07, 0x0a, 0x73, 0xeb, 0x26, 0x53, 0x6c, 0x9d, 0x78, 0x1e,
1140513498266Sopenharmony_ci  0xe5, 0xed, 0x34, 0x3f, 0x43, 0x38, 0xaa, 0x89, 0x97, 0x38, 0x5a, 0x75,
1140613498266Sopenharmony_ci  0x18, 0xc7, 0xdc, 0x1d, 0xf8, 0x0c, 0xf1, 0xaf, 0x6e, 0xf7, 0x98, 0xfc,
1140713498266Sopenharmony_ci  0x96, 0x55, 0xe7, 0x2b, 0xba, 0xe1, 0xd2, 0xb3, 0x71, 0xdc, 0x34, 0xb2,
1140813498266Sopenharmony_ci  0xc6, 0x65, 0x9f, 0x5b, 0x86, 0x3b, 0x64, 0x9f, 0xfe, 0x09, 0xe2, 0xec,
1140913498266Sopenharmony_ci  0x45, 0x6a, 0x29, 0x8b, 0x9e, 0xbf, 0x7c, 0x75, 0xb8, 0x11, 0xbd, 0x95,
1141013498266Sopenharmony_ci  0xe0, 0x35, 0x54, 0x4f, 0xaf, 0x6a, 0x5a, 0x51, 0x68, 0x60, 0x3d, 0x1b,
1141113498266Sopenharmony_ci  0x80, 0x08, 0x9a, 0x50, 0xb0, 0x0e, 0xea, 0x7a, 0xe3, 0x62, 0xe4, 0x15,
1141213498266Sopenharmony_ci  0xca, 0x40, 0x47, 0xee, 0x86, 0x84, 0xbc, 0xe5, 0x02, 0x85, 0x34, 0xd8,
1141313498266Sopenharmony_ci  0xe6, 0x02, 0x62, 0xb8, 0x11, 0xa4, 0xf7, 0x8a, 0xa9, 0x80, 0x0c, 0x6d,
1141413498266Sopenharmony_ci  0x09, 0x0b, 0x3a, 0xd3, 0x88, 0xba, 0x6e, 0x2f, 0xd9, 0x5b, 0xec, 0xb8,
1141513498266Sopenharmony_ci  0xf2, 0x1d, 0xcc, 0x74, 0x8a, 0xad, 0x25, 0xe5, 0x32, 0xb9, 0xf2, 0x37,
1141613498266Sopenharmony_ci  0x75, 0x2b, 0x7e, 0xf0, 0xe5, 0x97, 0x96, 0xaf, 0x2a, 0xaf, 0x45, 0x0b,
1141713498266Sopenharmony_ci  0xca, 0xc3, 0xad, 0x2d, 0x9a, 0x98, 0x57, 0x23, 0x07, 0xbe, 0x88, 0xbf,
1141813498266Sopenharmony_ci  0xfc, 0xf2, 0xcb, 0xe5, 0xc2, 0x78, 0x25, 0xf6, 0x0e, 0xa0, 0xa8, 0x71,
1141913498266Sopenharmony_ci  0x77, 0x53, 0x31, 0x7e, 0xd3, 0x7e, 0x89, 0xc8, 0xa6, 0xf3, 0x95, 0x2f,
1142013498266Sopenharmony_ci  0xb1, 0xfb, 0xf6, 0x2b, 0xf4, 0x24, 0xaf, 0x68, 0x31, 0x99, 0x20, 0xc9,
1142113498266Sopenharmony_ci  0xe1, 0x63, 0x5a, 0xb4, 0xf3, 0x32, 0x29, 0xc7, 0xfe, 0xc4, 0xb7, 0xfa,
1142213498266Sopenharmony_ci  0xf1, 0x76, 0x70, 0xe2, 0xc4, 0xf4, 0x28, 0x6f, 0x11, 0xb7, 0x15, 0x0f,
1142313498266Sopenharmony_ci  0xfc, 0xfa, 0x7f, 0x6e, 0x30, 0x50, 0x56, 0xbb, 0x95, 0x6d, 0x18, 0xcb,
1142413498266Sopenharmony_ci  0xf6, 0x97, 0x5f, 0xf6, 0x71, 0x4c, 0x0f, 0x6f, 0xb0, 0x24, 0x97, 0x85,
1142513498266Sopenharmony_ci  0xb5, 0xf4, 0xe3, 0xbb, 0x96, 0x70, 0x2a, 0xe8, 0x23, 0x0a, 0x77, 0x82,
1142613498266Sopenharmony_ci  0xdf, 0x7c, 0x15, 0xbd, 0x39, 0x3a, 0x3d, 0x34, 0xce, 0xab, 0x2a, 0x65,
1142713498266Sopenharmony_ci  0x9b, 0x56, 0xc3, 0xa6, 0x34, 0xc7, 0x7c, 0x22, 0x36, 0xda, 0xb1, 0xcb,
1142813498266Sopenharmony_ci  0x06, 0xf1, 0xfd, 0x7c, 0x73, 0x3d, 0x7b, 0x96, 0xfa, 0x06, 0xdc, 0x17,
1142913498266Sopenharmony_ci  0x79, 0x22, 0x4b, 0x39, 0x14, 0x63, 0x17, 0x63, 0x22, 0x12, 0x87, 0x51,
1143013498266Sopenharmony_ci  0xfc, 0x47, 0x74, 0x9c, 0x94, 0x95, 0x64, 0x4a, 0x17, 0x6a, 0xcc, 0x0a,
1143113498266Sopenharmony_ci  0x56, 0x38, 0x2d, 0xca, 0x99, 0xf1, 0x1c, 0x18, 0xe7, 0x95, 0xd8, 0x2f,
1143213498266Sopenharmony_ci  0xe4, 0xef, 0x6c, 0x98, 0x4d, 0xb3, 0xfa, 0x4a, 0x55, 0x20, 0xb4, 0x40,
1143313498266Sopenharmony_ci  0x05, 0xd4, 0xac, 0x23, 0xf6, 0x29, 0x9f, 0x65, 0xb5, 0x5b, 0x49, 0x76,
1143413498266Sopenharmony_ci  0x1d, 0x28, 0x6e, 0x83, 0xc3, 0x50, 0x29, 0xe3, 0x4b, 0x22, 0x43, 0xd6,
1143513498266Sopenharmony_ci  0x2a, 0xb8, 0x03, 0x6b, 0x4e, 0xa3, 0xc7, 0x3f, 0x8a, 0xf9, 0x9a, 0x67,
1143613498266Sopenharmony_ci  0xaf, 0x4a, 0xa7, 0x68, 0x88, 0x92, 0x4e, 0xf9, 0x85, 0x98, 0x9e, 0x94,
1143713498266Sopenharmony_ci  0x03, 0x4b, 0x16, 0xb1, 0x8f, 0xe4, 0x2e, 0x87, 0xd3, 0x52, 0xe4, 0xb1,
1143813498266Sopenharmony_ci  0xdb, 0x79, 0x20, 0x38, 0x84, 0x3c, 0x22, 0x14, 0xdd, 0xab, 0xf0, 0x9a,
1143913498266Sopenharmony_ci  0xd8, 0x8c, 0x9b, 0x67, 0xbf, 0xd6, 0x5c, 0x82, 0x45, 0x6e, 0x3d, 0xec,
1144013498266Sopenharmony_ci  0xad, 0xe6, 0xc6, 0xe9, 0x5c, 0x53, 0xd1, 0xf3, 0x66, 0x03, 0x70, 0x6c,
1144113498266Sopenharmony_ci  0x26, 0xd9, 0xd9, 0xa2, 0x0c, 0x27, 0x26, 0xbf, 0x46, 0x1b, 0xa9, 0xf2,
1144213498266Sopenharmony_ci  0x0d, 0xb5, 0x9f, 0x29, 0x64, 0xe3, 0x79, 0x72, 0x91, 0x36, 0xcb, 0x39,
1144313498266Sopenharmony_ci  0x48, 0xfc, 0x36, 0x86, 0x40, 0x32, 0x3e, 0x62, 0xdb, 0x98, 0x4c, 0x8e,
1144413498266Sopenharmony_ci  0x5e, 0x8a, 0x01, 0x12, 0x27, 0x13, 0x2b, 0x9b, 0x28, 0xc7, 0x25, 0x3a,
1144513498266Sopenharmony_ci  0x3f, 0xb1, 0xb0, 0xb1, 0xf3, 0xfc, 0x4c, 0x35, 0x89, 0xcb, 0xf3, 0xc2,
1144613498266Sopenharmony_ci  0x93, 0x3e, 0x90, 0xe5, 0x21, 0x8b, 0xf3, 0x8b, 0x89, 0x21, 0x5f, 0xa3,
1144713498266Sopenharmony_ci  0xbd, 0x62, 0x16, 0xc7, 0x1b, 0x00, 0xcf, 0x5f, 0xe6, 0xd3, 0x22, 0xc1,
1144813498266Sopenharmony_ci  0x6d, 0xe2, 0xeb, 0x35, 0x32, 0xc1, 0x89, 0x22, 0xe2, 0x49, 0xa5, 0xe3,
1144913498266Sopenharmony_ci  0x56, 0x73, 0x8d, 0xcd, 0x94, 0x7d, 0x84, 0xd3, 0xe2, 0x14, 0xc4, 0xe3,
1145013498266Sopenharmony_ci  0xe3, 0xe0, 0x98, 0x26, 0x99, 0x1b, 0xc2, 0xfd, 0x3b, 0xf3, 0x1d, 0x45,
1145113498266Sopenharmony_ci  0x58, 0x70, 0x6d, 0x40, 0x63, 0xc4, 0xcb, 0x9b, 0xb7, 0xc6, 0x44, 0x4a,
1145213498266Sopenharmony_ci  0xa7, 0x1f, 0x6b, 0xf8, 0x33, 0x1d, 0xbb, 0xa6, 0xd2, 0xe8, 0xe4, 0xe5,
1145313498266Sopenharmony_ci  0x7f, 0x1d, 0x86, 0x43, 0x56, 0x78, 0x66, 0x9f, 0x2b, 0x64, 0x85, 0x7b,
1145413498266Sopenharmony_ci  0xdf, 0xd9, 0x89, 0x1f, 0x3c, 0x58, 0xed, 0x72, 0x7c, 0x4a, 0x69, 0x6a,
1145513498266Sopenharmony_ci  0x62, 0x20, 0x8f, 0x13, 0x49, 0x36, 0x4e, 0xf0, 0xd3, 0x64, 0x8e, 0xeb,
1145613498266Sopenharmony_ci  0xd1, 0x94, 0xc5, 0xd0, 0xad, 0x34, 0x83, 0x35, 0x57, 0x3f, 0x3b, 0x7e,
1145713498266Sopenharmony_ci  0xb2, 0x34, 0x73, 0x01, 0x98, 0xd6, 0xc7, 0x6c, 0xb6, 0x98, 0x59, 0x9f,
1145813498266Sopenharmony_ci  0xc4, 0x84, 0xde, 0xcd, 0x47, 0x57, 0x9c, 0xc6, 0x48, 0x75, 0x3e, 0x5d,
1145913498266Sopenharmony_ci  0x14, 0x1e, 0x2f, 0xb0, 0x23, 0x77, 0x6e, 0x34, 0x5b, 0x20, 0x1a, 0x09,
1146013498266Sopenharmony_ci  0x81, 0x7c, 0x0c, 0xac, 0xc8, 0x2e, 0x72, 0x38, 0xc1, 0xeb, 0x55, 0x31,
1146113498266Sopenharmony_ci  0x4b, 0x59, 0x9e, 0x25, 0x5e, 0x33, 0x0e, 0xba, 0x2e, 0x75, 0xdc, 0xb0,
1146213498266Sopenharmony_ci  0xf5, 0x81, 0x6a, 0xb6, 0x7d, 0xf5, 0x2d, 0x24, 0x0a, 0x2f, 0x81, 0xd5,
1146313498266Sopenharmony_ci  0x92, 0xad, 0x4f, 0xc5, 0x0b, 0x99, 0x8c, 0x26, 0x64, 0x22, 0xad, 0x34,
1146413498266Sopenharmony_ci  0x0c, 0x3f, 0x18, 0x7d, 0x2e, 0xfc, 0xc3, 0xd0, 0xc4, 0xbb, 0xb7, 0xaf,
1146513498266Sopenharmony_ci  0x38, 0x5e, 0x26, 0xb1, 0x53, 0x82, 0x7d, 0x82, 0xed, 0xa2, 0x5b, 0x8d,
1146613498266Sopenharmony_ci  0x5c, 0x0c, 0x78, 0x6e, 0xf3, 0x80, 0xd6, 0x45, 0x4b, 0x86, 0x73, 0x83,
1146713498266Sopenharmony_ci  0x39, 0xf4, 0x35, 0x1e, 0x01, 0x2d, 0x66, 0x0b, 0xd8, 0xc5, 0xa9, 0x1d,
1146813498266Sopenharmony_ci  0xb2, 0x69, 0x98, 0xe2, 0x07, 0x70, 0x3e, 0xe9, 0x38, 0x60, 0x90, 0xc7,
1146913498266Sopenharmony_ci  0xc0, 0x65, 0x8a, 0x3e, 0x74, 0x91, 0x83, 0xa5, 0xf9, 0xa6, 0x28, 0xdd,
1147013498266Sopenharmony_ci  0x44, 0x5a, 0x24, 0x16, 0x12, 0xff, 0x57, 0x20, 0xac, 0x27, 0x41, 0xd7,
1147113498266Sopenharmony_ci  0x71, 0x3a, 0xed, 0x4c, 0x36, 0x3b, 0x75, 0x10, 0x8a, 0x89, 0xa4, 0xdc,
1147213498266Sopenharmony_ci  0x53, 0x03, 0x7d, 0xf4, 0xde, 0x6c, 0xbe, 0xeb, 0x49, 0xba, 0xc5, 0x1b,
1147313498266Sopenharmony_ci  0x31, 0xe5, 0xa9, 0x85, 0x0a, 0x48, 0x21, 0xf6, 0xbc, 0xc7, 0x1c, 0x5b,
1147413498266Sopenharmony_ci  0xf8, 0x8e, 0x6d, 0x5a, 0x86, 0x1c, 0x30, 0x37, 0x41, 0x4d, 0xe7, 0xf8,
1147513498266Sopenharmony_ci  0x37, 0xbb, 0x24, 0xd7, 0xaa, 0x35, 0xa0, 0x13, 0x12, 0x52, 0x36, 0xe0,
1147613498266Sopenharmony_ci  0x50, 0xae, 0xcd, 0xda, 0xf7, 0xc7, 0x3a, 0x5c, 0x6b, 0xa0, 0xf1, 0xd3,
1147713498266Sopenharmony_ci  0x97, 0xe7, 0x6b, 0x18, 0x54, 0x07, 0x0a, 0xd8, 0x06, 0xf5, 0xb0, 0x36,
1147813498266Sopenharmony_ci  0x5e, 0x8b, 0x36, 0xd7, 0xc7, 0x09, 0x87, 0x46, 0x92, 0xb0, 0xb5, 0x03,
1147913498266Sopenharmony_ci  0xe7, 0x0d, 0x1d, 0xfe, 0xd8, 0xc1, 0x06, 0xd9, 0x44, 0x3c, 0x86, 0xcf,
1148013498266Sopenharmony_ci  0x1e, 0x2b, 0x33, 0xac, 0xbe, 0x54, 0xb9, 0xec, 0xe1, 0x24, 0x9d, 0x99,
1148113498266Sopenharmony_ci  0x53, 0x20, 0x94, 0x50, 0x3a, 0x5b, 0x18, 0x42, 0x41, 0xa5, 0x54, 0xf1,
1148213498266Sopenharmony_ci  0x1c, 0xa9, 0x1e, 0x7b, 0x0d, 0x52, 0x1a, 0xfb, 0xbc, 0xa8, 0xc2, 0x1e,
1148313498266Sopenharmony_ci  0xa8, 0x23, 0x0c, 0xf1, 0x4c, 0x87, 0x6c, 0x7b, 0xcb, 0x82, 0x26, 0x63,
1148413498266Sopenharmony_ci  0x0b, 0x3c, 0xcf, 0xbe, 0x0b, 0xd0, 0xe2, 0x81, 0x71, 0xa2, 0x3c, 0x61,
1148513498266Sopenharmony_ci  0x08, 0x4a, 0xf7, 0x8c, 0xe9, 0xec, 0x91, 0x88, 0x7a, 0x15, 0x5f, 0x3f,
1148613498266Sopenharmony_ci  0x51, 0x3a, 0x4d, 0xe6, 0x04, 0x2e, 0x0b, 0xe2, 0xc3, 0x28, 0x0d, 0x07,
1148713498266Sopenharmony_ci  0x21, 0xa4, 0x17, 0x19, 0x56, 0x33, 0x34, 0x94, 0x89, 0x50, 0x92, 0x42,
1148813498266Sopenharmony_ci  0x99, 0x1d, 0x91, 0xc6, 0x93, 0x45, 0x2e, 0xc8, 0x2e, 0x54, 0x75, 0x68,
1148913498266Sopenharmony_ci  0x96, 0x4d, 0xa7, 0x99, 0x88, 0x98, 0x70, 0xe3, 0xa2, 0x6d, 0x86, 0x34,
1149013498266Sopenharmony_ci  0x3e, 0x89, 0x7c, 0xd3, 0xa3, 0x31, 0x09, 0x9e, 0x7b, 0xe4, 0x39, 0x19,
1149113498266Sopenharmony_ci  0xc7, 0x29, 0x52, 0x55, 0x54, 0x3a, 0x5f, 0x20, 0x93, 0x6d, 0xd1, 0x72,
1149213498266Sopenharmony_ci  0x70, 0xab, 0x1c, 0x11, 0x27, 0x77, 0x1e, 0xe8, 0x1b, 0x18, 0xb5, 0xbd,
1149313498266Sopenharmony_ci  0xc8, 0x03, 0x22, 0x15, 0x68, 0x02, 0xa3, 0xd0, 0xb0, 0x39, 0x84, 0x0a,
1149413498266Sopenharmony_ci  0xd3, 0x5c, 0xae, 0xd8, 0x34, 0xa9, 0x95, 0x63, 0x81, 0x9e, 0x34, 0xab,
1149513498266Sopenharmony_ci  0x4a, 0x62, 0x98, 0x50, 0xdf, 0xad, 0xcb, 0x2b, 0x15, 0x24, 0x82, 0x98,
1149613498266Sopenharmony_ci  0xd5, 0xf4, 0x04, 0x10, 0xd1, 0x14, 0x94, 0xba, 0x69, 0x71, 0xc6, 0xc5,
1149713498266Sopenharmony_ci  0xd2, 0x48, 0xb5, 0x43, 0x82, 0xe4, 0x10, 0x5f, 0x9e, 0x13, 0x5a, 0x42,
1149813498266Sopenharmony_ci  0x3f, 0x6f, 0x05, 0x79, 0xb9, 0x07, 0xeb, 0x74, 0xe5, 0xfc, 0x9a, 0xdb,
1149913498266Sopenharmony_ci  0x21, 0xe3, 0x50, 0x57, 0x3b, 0x9b, 0xc1, 0x92, 0xc1, 0xd1, 0x60, 0x30,
1150013498266Sopenharmony_ci  0x58, 0xf6, 0xda, 0xee, 0xe6, 0xf9, 0x6d, 0x5e, 0xdb, 0x7e, 0xb0, 0x39,
1150113498266Sopenharmony_ci  0xeb, 0x7c, 0xaf, 0x5b, 0x03, 0xa5, 0x1a, 0xc3, 0xdc, 0x02, 0x87, 0xe6,
1150213498266Sopenharmony_ci  0xd1, 0xb6, 0xc6, 0xb4, 0xad, 0x8d, 0x94, 0x41, 0x34, 0x49, 0x34, 0x6f,
1150313498266Sopenharmony_ci  0xdc, 0x4b, 0x83, 0xd8, 0xfb, 0x23, 0x97, 0x35, 0x93, 0xa8, 0x4d, 0xa9,
1150413498266Sopenharmony_ci  0x1f, 0xca, 0x75, 0xa2, 0xc9, 0x0d, 0x0a, 0x02, 0x10, 0x87, 0xc4, 0x51,
1150513498266Sopenharmony_ci  0x68, 0x34, 0x89, 0x98, 0xe8, 0x4c, 0xcf, 0x7d, 0xa9, 0x07, 0x91, 0xd9,
1150613498266Sopenharmony_ci  0x6d, 0x4d, 0x63, 0xc6, 0xaf, 0x22, 0xcc, 0x6e, 0x0e, 0xae, 0x60, 0xe2,
1150713498266Sopenharmony_ci  0xe7, 0xa8, 0x3e, 0xf2, 0x8e, 0x62, 0x8c, 0x09, 0x97, 0x71, 0x87, 0xb3,
1150813498266Sopenharmony_ci  0xe0, 0xb9, 0x31, 0xa7, 0xd0, 0x37, 0x0e, 0x0a, 0xc6, 0xba, 0x3c, 0xc4,
1150913498266Sopenharmony_ci  0x0c, 0x27, 0x73, 0x83, 0x30, 0x4a, 0x37, 0x92, 0xac, 0xdd, 0x57, 0x2b,
1151013498266Sopenharmony_ci  0xae, 0x2c, 0xd4, 0xe5, 0xb5, 0x92, 0xd2, 0xe5, 0xaa, 0x59, 0xfd, 0x65,
1151113498266Sopenharmony_ci  0xac, 0x2b, 0xe4, 0x6c, 0x4d, 0xca, 0xf6, 0x2a, 0x0c, 0x84, 0x2d, 0xa3,
1151213498266Sopenharmony_ci  0x7d, 0xb8, 0xcf, 0x3b, 0x90, 0xfa, 0x4f, 0x48, 0xa6, 0x44, 0xaa, 0xef,
1151313498266Sopenharmony_ci  0xbd, 0xc5, 0xa7, 0xf1, 0xf1, 0xe3, 0xe4, 0x2c, 0x05, 0xde, 0x9f, 0x33,
1151413498266Sopenharmony_ci  0xcc, 0x58, 0xab, 0x98, 0x8a, 0xba, 0xa0, 0x43, 0x27, 0x19, 0x15, 0x7e,
1151513498266Sopenharmony_ci  0x1a, 0x15, 0x45, 0x8f, 0x38, 0xf9, 0x3b, 0x0d, 0x78, 0xfd, 0xc9, 0x34,
1151613498266Sopenharmony_ci  0x91, 0xbd, 0x5f, 0x94, 0x98, 0x52, 0x41, 0x94, 0x13, 0x10, 0x32, 0x0d,
1151713498266Sopenharmony_ci  0x1f, 0x7a, 0x45, 0x90, 0x23, 0xd6, 0xb1, 0x62, 0x73, 0x03, 0x58, 0x06,
1151813498266Sopenharmony_ci  0x8c, 0x7a, 0x7f, 0xc5, 0xf0, 0xb3, 0x9e, 0x0e, 0x13, 0x26, 0xef, 0xdd,
1151913498266Sopenharmony_ci  0xfa, 0xba, 0x14, 0x18, 0x9b, 0x5f, 0x6b, 0xb0, 0x0b, 0x05, 0xb1, 0x35,
1152013498266Sopenharmony_ci  0x02, 0xd7, 0x38, 0x8e, 0x91, 0x03, 0xe5, 0xe5, 0x36, 0xc0, 0x57, 0x82,
1152113498266Sopenharmony_ci  0xea, 0x09, 0xe6, 0xa8, 0x4c, 0x0a, 0x0e, 0xb2, 0x83, 0xab, 0xf6, 0x95,
1152213498266Sopenharmony_ci  0x8c, 0x6f, 0x4f, 0xe2, 0x1d, 0xd9, 0x03, 0xa1, 0x43, 0x6b, 0xa4, 0xa6,
1152313498266Sopenharmony_ci  0x85, 0x26, 0x9b, 0x4c, 0x41, 0x2b, 0xe8, 0x73, 0xd4, 0x47, 0xc6, 0x89,
1152413498266Sopenharmony_ci  0xaf, 0xa2, 0x3e, 0xe1, 0x98, 0x48, 0xc4, 0xe0, 0x48, 0xa3, 0xc6, 0xd6,
1152513498266Sopenharmony_ci  0x76, 0x30, 0x39, 0x99, 0xec, 0x8a, 0x75, 0xd3, 0x57, 0x14, 0xf6, 0xbb,
1152613498266Sopenharmony_ci  0x19, 0x9f, 0x74, 0xdf, 0x53, 0x42, 0x9e, 0xc0, 0x6a, 0x6b, 0x8c, 0x7a,
1152713498266Sopenharmony_ci  0x6f, 0x05, 0x58, 0xb0, 0xa5, 0x0d, 0xc9, 0xc2, 0xc6, 0xaf, 0x6e, 0xd3,
1152813498266Sopenharmony_ci  0xe0, 0xf2, 0x97, 0x3b, 0x0f, 0xdb, 0x01, 0x2e, 0x3d, 0x7a, 0x21, 0xe3,
1152913498266Sopenharmony_ci  0xe4, 0x8c, 0xa2, 0xa3, 0x90, 0x5b, 0x3a, 0xb4, 0xed, 0x1c, 0xc0, 0xbf,
1153013498266Sopenharmony_ci  0xf1, 0x2e, 0x61, 0x7c, 0x9a, 0x7c, 0x19, 0x07, 0x7c, 0x76, 0x72, 0x0a,
1153113498266Sopenharmony_ci  0xdd, 0x7b, 0xb0, 0x26, 0x78, 0x42, 0xa2, 0xe3, 0x23, 0xa7, 0x0d, 0xf1,
1153213498266Sopenharmony_ci  0xbf, 0xe9, 0x71, 0x94, 0x12, 0x98, 0xc1, 0x60, 0xb7, 0xd8, 0x71, 0x4a,
1153313498266Sopenharmony_ci  0x3c, 0xe5, 0xf2, 0x09, 0x31, 0xf0, 0x2c, 0x50, 0x00, 0xa4, 0x24, 0xba,
1153413498266Sopenharmony_ci  0x29, 0x18, 0x60, 0x45, 0x09, 0x2a, 0xa1, 0x11, 0x80, 0x39, 0x1a, 0xd5,
1153513498266Sopenharmony_ci  0x8c, 0xe1, 0x62, 0x5e, 0x31, 0xa5, 0x36, 0xe1, 0x58, 0x90, 0x60, 0xe3,
1153613498266Sopenharmony_ci  0x06, 0xa6, 0xc4, 0x36, 0x3a, 0x71, 0x12, 0x0e, 0x50, 0x69, 0xe0, 0x1c,
1153713498266Sopenharmony_ci  0x72, 0x59, 0x3c, 0x0d, 0x95, 0xc4, 0x23, 0x02, 0xe7, 0x19, 0x03, 0xe1,
1153813498266Sopenharmony_ci  0x4d, 0x14, 0x4c, 0xc3, 0x35, 0xdd, 0x65, 0xaf, 0x0d, 0xc8, 0xef, 0x5a,
1153913498266Sopenharmony_ci  0x8c, 0xa7, 0x4a, 0x2e, 0x6c, 0xda, 0x8e, 0xba, 0xbe, 0x9c, 0x10, 0x35,
1154013498266Sopenharmony_ci  0xb8, 0x67, 0xe4, 0xcb, 0x4e, 0xef, 0x4b, 0x2b, 0x8d, 0x34, 0x8e, 0x39,
1154113498266Sopenharmony_ci  0xaa, 0x39, 0x86, 0xe7, 0x83, 0x02, 0xae, 0xb3, 0x1c, 0xae, 0xa5, 0x2d,
1154213498266Sopenharmony_ci  0xb1, 0xf3, 0x10, 0xcd, 0x8a, 0xfe, 0x16, 0x16, 0x09, 0x2b, 0x10, 0x98,
1154313498266Sopenharmony_ci  0xa1, 0x96, 0x65, 0xa7, 0xe4, 0x35, 0x53, 0x26, 0xdd, 0x75, 0x81, 0x39,
1154413498266Sopenharmony_ci  0x53, 0x61, 0x67, 0x0d, 0x32, 0x0c, 0xcc, 0x02, 0xbb, 0x2c, 0x43, 0xf6,
1154513498266Sopenharmony_ci  0x04, 0xf6, 0x79, 0x6b, 0x19, 0xed, 0xa8, 0x18, 0xc1, 0x92, 0x54, 0x51,
1154613498266Sopenharmony_ci  0x0c, 0xd7, 0xe6, 0x14, 0x23, 0x68, 0xc4, 0xe2, 0x42, 0xe2, 0x38, 0xb1,
1154713498266Sopenharmony_ci  0xb7, 0x6b, 0x30, 0x76, 0x46, 0x20, 0xaf, 0xb1, 0x3e, 0x20, 0x9e, 0x0d,
1154813498266Sopenharmony_ci  0x6f, 0x01, 0x8c, 0x18, 0x67, 0x62, 0xe9, 0x3a, 0xb7, 0x93, 0xd2, 0xef,
1154913498266Sopenharmony_ci  0xeb, 0x2e, 0x7d, 0x2e, 0xb4, 0xcb, 0x9c, 0x85, 0x07, 0x8f, 0xa8, 0x8d,
1155013498266Sopenharmony_ci  0x08, 0xeb, 0x96, 0x53, 0xde, 0x55, 0xf4, 0xe7, 0xb8, 0x62, 0x35, 0x1e,
1155113498266Sopenharmony_ci  0xba, 0x5f, 0xbf, 0x4a, 0xeb, 0x0d, 0xb3, 0xcd, 0x4a, 0xa1, 0x5f, 0x74,
1155213498266Sopenharmony_ci  0x78, 0x93, 0xc9, 0x26, 0xd5, 0x4c, 0x1f, 0xb8, 0x72, 0x83, 0xa7, 0x79,
1155313498266Sopenharmony_ci  0xc7, 0x40, 0x56, 0xa2, 0xdc, 0x75, 0x10, 0x34, 0x61, 0x62, 0x75, 0x77,
1155413498266Sopenharmony_ci  0x73, 0x55, 0x97, 0xe2, 0x20, 0x96, 0x30, 0xa9, 0x2e, 0xcb, 0xe5, 0x4a,
1155513498266Sopenharmony_ci  0xdd, 0xe3, 0xd5, 0xd3, 0x13, 0xd7, 0x63, 0x93, 0xa1, 0x51, 0x84, 0xda,
1155613498266Sopenharmony_ci  0x87, 0x0a, 0x16, 0x17, 0x26, 0x68, 0x0c, 0x54, 0x8d, 0x77, 0xff, 0x53,
1155713498266Sopenharmony_ci  0x5e, 0x8e, 0xd6, 0xf5, 0x93, 0x4a, 0x6f, 0x55, 0x18, 0xf8, 0x34, 0x1b,
1155813498266Sopenharmony_ci  0x79, 0x22, 0x8c, 0x31, 0x71, 0x92, 0x6f, 0xde, 0xcf, 0x50, 0xfd, 0xf1,
1155913498266Sopenharmony_ci  0xe0, 0xed, 0x9b, 0x97, 0x6f, 0xbe, 0xdb, 0xc3, 0x5b, 0x20, 0x2d, 0x47,
1156013498266Sopenharmony_ci  0x19, 0x66, 0xfe, 0xfc, 0xb6, 0x18, 0x43, 0x4b, 0x74, 0x57, 0x8a, 0x04,
1156113498266Sopenharmony_ci  0xde, 0x30, 0x58, 0xa4, 0x12, 0x65, 0x46, 0x65, 0xe6, 0xdb, 0xcd, 0x31,
1156213498266Sopenharmony_ci  0xaa, 0x03, 0xc2, 0x79, 0x96, 0xc5, 0xd9, 0xc2, 0xd8, 0x8e, 0x47, 0x94,
1156313498266Sopenharmony_ci  0x90, 0x4f, 0x01, 0x82, 0x14, 0xbf, 0x8e, 0x3b, 0x67, 0x9d, 0xdb, 0x09,
1156413498266Sopenharmony_ci  0xc8, 0x60, 0xaf, 0x5e, 0xa1, 0x27, 0xa2, 0x9d, 0x70, 0x40, 0xbb, 0xc2,
1156513498266Sopenharmony_ci  0xbe, 0x48, 0xca, 0x5c, 0xd4, 0xbc, 0x7e, 0xb4, 0xe6, 0xe1, 0x25, 0xdb,
1156613498266Sopenharmony_ci  0xb8, 0xec, 0x81, 0xba, 0x15, 0x55, 0x82, 0x52, 0xa0, 0x03, 0x24, 0x99,
1156713498266Sopenharmony_ci  0x11, 0x96, 0x4c, 0x59, 0x83, 0x64, 0x50, 0x4c, 0xea, 0xcb, 0xe4, 0xba,
1156813498266Sopenharmony_ci  0x2a, 0xb2, 0x3e, 0xc3, 0x8f, 0xae, 0x91, 0x29, 0x7d, 0x0d, 0xfa, 0x3a,
1156913498266Sopenharmony_ci  0x64, 0x40, 0xbf, 0x8f, 0x15, 0x85, 0xcc, 0xa3, 0xbf, 0x85, 0x6e, 0xbd,
1157013498266Sopenharmony_ci  0x4d, 0xe2, 0xd8, 0x9d, 0x57, 0x5f, 0xfb, 0x2e, 0x6a, 0xa8, 0x01, 0xf6,
1157113498266Sopenharmony_ci  0x63, 0x44, 0x06, 0x5c, 0x56, 0xe6, 0xe5, 0x9c, 0x5d, 0x43, 0x6e, 0xa2,
1157213498266Sopenharmony_ci  0x93, 0xc4, 0xe1, 0x13, 0x8c, 0x03, 0x28, 0x0b, 0x6c, 0x8a, 0x22, 0x0b,
1157313498266Sopenharmony_ci  0x54, 0x30, 0x64, 0x7a, 0x9c, 0x82, 0x48, 0x2f, 0x6e, 0x85, 0x0a, 0x45,
1157413498266Sopenharmony_ci  0x25, 0xff, 0x9a, 0xbc, 0x4c, 0x4b, 0x71, 0x30, 0x9a, 0x1a, 0x37, 0x20,
1157513498266Sopenharmony_ci  0x5c, 0x0d, 0xa2, 0x93, 0xa2, 0x23, 0xd1, 0x94, 0x4b, 0x33, 0x61, 0x77,
1157613498266Sopenharmony_ci  0xa2, 0xb7, 0x48, 0xd5, 0x1e, 0x0e, 0x83, 0x4d, 0x9c, 0xbc, 0x7b, 0x12,
1157713498266Sopenharmony_ci  0x20, 0x25, 0x2a, 0x1a, 0x3b, 0xf5, 0x3c, 0x69, 0xee, 0x42, 0xd0, 0x5e,
1157813498266Sopenharmony_ci  0x0f, 0x53, 0xa3, 0x17, 0x61, 0x5f, 0x14, 0xf9, 0x4a, 0x59, 0xdb, 0xbd,
1157913498266Sopenharmony_ci  0x18, 0xc1, 0xf6, 0x7a, 0xec, 0x50, 0x93, 0x9d, 0xed, 0x6c, 0xee, 0x46,
1158013498266Sopenharmony_ci  0x64, 0x67, 0xfa, 0xbd, 0xd3, 0xe2, 0xc5, 0xad, 0xc6, 0x57, 0xd6, 0x68,
1158113498266Sopenharmony_ci  0x5a, 0x63, 0x0b, 0x38, 0xde, 0x81, 0xf0, 0xb6, 0x3b, 0x3e, 0xdf, 0xb9,
1158213498266Sopenharmony_ci  0x15, 0x45, 0xb6, 0xbf, 0x6a, 0x73, 0x9d, 0x12, 0x91, 0xf6, 0x24, 0x3b,
1158313498266Sopenharmony_ci  0x89, 0x60, 0x99, 0xd9, 0x99, 0xe9, 0x84, 0x14, 0x51, 0x30, 0xaf, 0x93,
1158413498266Sopenharmony_ci  0x62, 0xc0, 0x97, 0x75, 0x4a, 0x2e, 0x88, 0xf6, 0xda, 0xad, 0x93, 0x8b,
1158513498266Sopenharmony_ci  0xc8, 0xca, 0x2a, 0xe4, 0xe6, 0x12, 0xfb, 0xbe, 0xfb, 0xba, 0x08, 0x2c,
1158613498266Sopenharmony_ci  0x7d, 0xeb, 0x49, 0x47, 0x9d, 0x69, 0x51, 0x7b, 0xc8, 0xcd, 0x93, 0xc1,
1158713498266Sopenharmony_ci  0xc6, 0xca, 0x42, 0x8d, 0x1f, 0xcf, 0xa3, 0xf8, 0x39, 0x44, 0xdd, 0xa1,
1158813498266Sopenharmony_ci  0x4a, 0x68, 0x12, 0xc1, 0x42, 0xad, 0xb1, 0xb9, 0xd0, 0x22, 0xf5, 0x39,
1158913498266Sopenharmony_ci  0x82, 0x05, 0xe9, 0x4a, 0x54, 0x2d, 0x8c, 0x12, 0xd7, 0xe9, 0x04, 0x07,
1159013498266Sopenharmony_ci  0x9a, 0xeb, 0x1c, 0x88, 0xca, 0x72, 0x59, 0x7e, 0x51, 0xd0, 0x37, 0x6c,
1159113498266Sopenharmony_ci  0x13, 0x76, 0x20, 0x6e, 0x42, 0x68, 0x40, 0x78, 0x2a, 0x38, 0x61, 0x6c,
1159213498266Sopenharmony_ci  0x89, 0xbc, 0x75, 0xda, 0x5a, 0x61, 0x8d, 0x4c, 0x50, 0xd8, 0x21, 0x98,
1159313498266Sopenharmony_ci  0x9b, 0xc6, 0x2d, 0x5b, 0x78, 0xe8, 0xee, 0x34, 0x24, 0xb1, 0x82, 0xc3,
1159413498266Sopenharmony_ci  0x11, 0xef, 0xd3, 0xc5, 0x7a, 0x4e, 0x2f, 0xa7, 0x53, 0x74, 0x4e, 0x5a,
1159513498266Sopenharmony_ci  0xb8, 0xe8, 0xb6, 0x54, 0x46, 0x72, 0x17, 0xca, 0x5c, 0xed, 0x69, 0xa0,
1159613498266Sopenharmony_ci  0x0c, 0x06, 0x32, 0x97, 0xd9, 0x08, 0xe2, 0x32, 0x8e, 0x83, 0x94, 0xad,
1159713498266Sopenharmony_ci  0x5a, 0x74, 0xec, 0x90, 0xf5, 0x8c, 0xce, 0x8b, 0xa2, 0x4a, 0xbb, 0x63,
1159813498266Sopenharmony_ci  0x88, 0xf8, 0x36, 0x21, 0x15, 0x86, 0x4a, 0xd6, 0x75, 0x68, 0x18, 0x8a,
1159913498266Sopenharmony_ci  0x91, 0xe9, 0xc4, 0xd2, 0xe0, 0xde, 0x8e, 0xdb, 0xa3, 0x1b, 0x67, 0x56,
1160013498266Sopenharmony_ci  0xb5, 0x37, 0x0c, 0xda, 0x98, 0x2a, 0xf5, 0x1e, 0xa6, 0x31, 0x91, 0x7e,
1160113498266Sopenharmony_ci  0x2b, 0xe4, 0xc2, 0xa3, 0x08, 0xe5, 0x6f, 0x8b, 0x0c, 0x1b, 0x5e, 0x1f,
1160213498266Sopenharmony_ci  0x57, 0x2e, 0xc5, 0x35, 0x59, 0x26, 0xce, 0x99, 0xfc, 0x79, 0x22, 0x23,
1160313498266Sopenharmony_ci  0x72, 0x96, 0xe5, 0x4d, 0x4d, 0x80, 0x86, 0x99, 0xd5, 0xc4, 0xd8, 0xfe,
1160413498266Sopenharmony_ci  0xbc, 0xb3, 0xd5, 0x25, 0x08, 0x30, 0xb3, 0x56, 0xfc, 0xf3, 0x79, 0x52,
1160513498266Sopenharmony_ci  0x9a, 0xb8, 0x5d, 0x11, 0xf5, 0x08, 0x51, 0x08, 0x85, 0x8c, 0xc5, 0x5c,
1160613498266Sopenharmony_ci  0x1c, 0xcd, 0xe8, 0x30, 0x09, 0x2f, 0x7d, 0x67, 0x9a, 0x08, 0xab, 0x62,
1160713498266Sopenharmony_ci  0x0e, 0x02, 0x34, 0x06, 0xe1, 0xe7, 0x57, 0xc2, 0x7b, 0x25, 0x8f, 0xde,
1160813498266Sopenharmony_ci  0xfa, 0x88, 0xe8, 0x66, 0x43, 0x7a, 0xf0, 0xe0, 0xe4, 0x03, 0x85, 0xe1,
1160913498266Sopenharmony_ci  0x9b, 0xf7, 0xda, 0xbd, 0xc5, 0x47, 0x1d, 0x75, 0x0a, 0x04, 0xc4, 0x3d,
1161013498266Sopenharmony_ci  0x43, 0x58, 0xb1, 0x02, 0x16, 0xeb, 0x33, 0xf8, 0x3e, 0x7d, 0x68, 0x0f,
1161113498266Sopenharmony_ci  0x6d, 0xa4, 0xc8, 0xb1, 0x7f, 0xeb, 0x47, 0xdd, 0x57, 0x66, 0x43, 0x9a,
1161213498266Sopenharmony_ci  0xd1, 0xc9, 0xbf, 0x75, 0x28, 0x1c, 0xe7, 0xe9, 0x39, 0x9d, 0x4d, 0xd9,
1161313498266Sopenharmony_ci  0x39, 0x47, 0x03, 0x20, 0x2f, 0x35, 0x71, 0x77, 0x3e, 0x49, 0xb4, 0x40,
1161413498266Sopenharmony_ci  0x35, 0xcc, 0x2a, 0xb2, 0xc9, 0x01, 0xc1, 0x9a, 0x16, 0x92, 0x9c, 0x44,
1161513498266Sopenharmony_ci  0xf7, 0x3e, 0x25, 0x19, 0x32, 0x8a, 0x87, 0x3a, 0x83, 0x91, 0x71, 0x0b,
1161613498266Sopenharmony_ci  0x13, 0x50, 0x8d, 0xd5, 0xa0, 0x5a, 0x10, 0x8f, 0x0c, 0xf0, 0x44, 0xe7,
1161713498266Sopenharmony_ci  0x5a, 0x41, 0xd7, 0x35, 0xa3, 0x8c, 0x10, 0x8f, 0xd2, 0x41, 0x2d, 0xcd,
1161813498266Sopenharmony_ci  0xee, 0x76, 0xa6, 0xde, 0x9d, 0xf3, 0x7a, 0xeb, 0x1a, 0x51, 0x4e, 0xeb,
1161913498266Sopenharmony_ci  0xb7, 0xbc, 0xd3, 0x69, 0x60, 0x20, 0xc5, 0x4c, 0x8a, 0x62, 0x35, 0x3b,
1162013498266Sopenharmony_ci  0x8a, 0x27, 0xb1, 0x91, 0x21, 0xe5, 0x77, 0x82, 0xe5, 0x83, 0x36, 0xd1,
1162113498266Sopenharmony_ci  0xe3, 0x3b, 0x6e, 0x0b, 0x98, 0x17, 0x69, 0x5c, 0xe4, 0x71, 0x08, 0xe6,
1162213498266Sopenharmony_ci  0xe6, 0x47, 0x53, 0xad, 0x2d, 0x32, 0xd1, 0xb1, 0x46, 0xc7, 0x25, 0x5b,
1162313498266Sopenharmony_ci  0x1d, 0xb9, 0x9a, 0x30, 0xd8, 0x0c, 0x5d, 0x41, 0x72, 0xef, 0xd3, 0x91,
1162413498266Sopenharmony_ci  0xa1, 0x0d, 0x0a, 0xd0, 0x41, 0x33, 0x83, 0xdc, 0x46, 0x59, 0xd2, 0xfe,
1162513498266Sopenharmony_ci  0x5d, 0x48, 0x60, 0xbf, 0xc9, 0x6d, 0x03, 0x4e, 0x47, 0xee, 0x0d, 0x96,
1162613498266Sopenharmony_ci  0x75, 0x03, 0x6e, 0x25, 0xb8, 0x17, 0xb5, 0xe2, 0x04, 0xdd, 0x3d, 0xd3,
1162713498266Sopenharmony_ci  0x94, 0x2f, 0x26, 0x1b, 0x95, 0x25, 0x38, 0x63, 0x16, 0x11, 0x05, 0xd3,
1162813498266Sopenharmony_ci  0x6b, 0x70, 0x0e, 0x3e, 0xec, 0x06, 0x68, 0xd5, 0x0b, 0x32, 0x26, 0xaa,
1162913498266Sopenharmony_ci  0x85, 0xbc, 0x0b, 0x77, 0x47, 0x27, 0x2a, 0x85, 0x37, 0x61, 0x1a, 0x67,
1163013498266Sopenharmony_ci  0x0b, 0xc4, 0x2e, 0xf3, 0x27, 0xb8, 0x5c, 0xd5, 0x6e, 0x93, 0xa4, 0xb3,
1163113498266Sopenharmony_ci  0x13, 0x4b, 0x25, 0xcd, 0xdb, 0x91, 0xa4, 0xd3, 0xfa, 0x6d, 0xc8, 0xd2,
1163213498266Sopenharmony_ci  0x1d, 0x1c, 0x90, 0xa6, 0xa6, 0xa0, 0xaf, 0x42, 0x9d, 0x13, 0xa4, 0x43,
1163313498266Sopenharmony_ci  0xcc, 0x84, 0x6b, 0xfa, 0x3e, 0x76, 0x5b, 0xbe, 0x0f, 0x76, 0x37, 0xc6,
1163413498266Sopenharmony_ci  0x12, 0x5e, 0xbc, 0x8f, 0x02, 0xdd, 0xd7, 0x37, 0x2a, 0x66, 0x48, 0x80,
1163513498266Sopenharmony_ci  0x86, 0x39, 0x7b, 0x26, 0xd0, 0x8e, 0x03, 0x34, 0xd9, 0xe3, 0x56, 0x7a,
1163613498266Sopenharmony_ci  0xd1, 0x3a, 0x36, 0xb3, 0xa1, 0x76, 0x39, 0xbf, 0xa6, 0x87, 0x96, 0x1d,
1163713498266Sopenharmony_ci  0x14, 0x01, 0x32, 0xa9, 0x3c, 0x70, 0x1a, 0x36, 0xcc, 0x61, 0xa0, 0x14,
1163813498266Sopenharmony_ci  0xe8, 0xb9, 0xb8, 0xdf, 0x82, 0xef, 0x3c, 0x59, 0x4c, 0x83, 0x66, 0x6c,
1163913498266Sopenharmony_ci  0x94, 0x4a, 0x34, 0x4b, 0x01, 0x68, 0xa5, 0x42, 0x3b, 0x30, 0x19, 0xfa,
1164013498266Sopenharmony_ci  0x6d, 0x09, 0x5b, 0x09, 0x43, 0x00, 0xaa, 0x25, 0x2a, 0xa8, 0xa6, 0x98,
1164113498266Sopenharmony_ci  0x53, 0xda, 0x71, 0xe7, 0x12, 0xa0, 0x1e, 0x1d, 0x14, 0x63, 0xfb, 0x61,
1164213498266Sopenharmony_ci  0x23, 0xb9, 0x88, 0xc3, 0x4c, 0x82, 0x7c, 0x33, 0xcf, 0x91, 0x6d, 0x97,
1164313498266Sopenharmony_ci  0x79, 0x3f, 0x22, 0x71, 0xbb, 0xd5, 0x5c, 0xef, 0xe8, 0xf8, 0xf4, 0xe5,
1164413498266Sopenharmony_ci  0xd1, 0x9b, 0x93, 0xe8, 0x3f, 0x7b, 0xe1, 0xf4, 0x73, 0xf6, 0xfb, 0x54,
1164513498266Sopenharmony_ci  0x91, 0x4a, 0x07, 0x70, 0x1f, 0x0e, 0x31, 0x4d, 0x4c, 0x6d, 0xed, 0x28,
1164613498266Sopenharmony_ci  0x72, 0xa1, 0x44, 0x47, 0x12, 0x48, 0x5d, 0xb9, 0xf1, 0x03, 0x81, 0xe2,
1164713498266Sopenharmony_ci  0x48, 0x38, 0x41, 0xbc, 0xb5, 0xe1, 0x70, 0xa0, 0x6e, 0xa7, 0xf1, 0x65,
1164813498266Sopenharmony_ci  0x70, 0xdc, 0x27, 0x28, 0xf5, 0x2f, 0x92, 0x72, 0x5c, 0xd1, 0x01, 0xa7,
1164913498266Sopenharmony_ci  0xeb, 0x81, 0xcb, 0xbe, 0x72, 0x3d, 0x7a, 0xef, 0x22, 0xa1, 0xfc, 0x3a,
1165013498266Sopenharmony_ci  0x62, 0x69, 0x68, 0xeb, 0x2c, 0x8b, 0xa9, 0x13, 0x38, 0xd6, 0x15, 0xc4,
1165113498266Sopenharmony_ci  0xda, 0x24, 0xa6, 0xcf, 0x54, 0x7d, 0xae, 0x35, 0x8a, 0xde, 0x7f, 0xf6,
1165213498266Sopenharmony_ci  0xa2, 0xf8, 0xa7, 0x48, 0xf7, 0x61, 0xa5, 0x33, 0xd4, 0x88, 0x97, 0x6e,
1165313498266Sopenharmony_ci  0xa0, 0x8e, 0x3e, 0x6c, 0x1c, 0x23, 0xf7, 0xb9, 0x68, 0x7f, 0x96, 0xc2,
1165413498266Sopenharmony_ci  0x46, 0x78, 0x19, 0xe1, 0x4f, 0x6d, 0x11, 0x0d, 0x7e, 0x40, 0x0f, 0x11,
1165513498266Sopenharmony_ci  0xd7, 0x8f, 0x46, 0x07, 0xbd, 0x1e, 0x8a, 0x4e, 0x96, 0x48, 0x33, 0x14,
1165613498266Sopenharmony_ci  0x82, 0xb9, 0x21, 0xbd, 0xa8, 0xa8, 0xb0, 0x8c, 0x62, 0x88, 0x64, 0x94,
1165713498266Sopenharmony_ci  0x66, 0x48, 0x91, 0x77, 0xa8, 0x46, 0x89, 0x86, 0x68, 0xc6, 0x90, 0xcc,
1165813498266Sopenharmony_ci  0x27, 0x53, 0x0c, 0x03, 0xeb, 0x38, 0xa0, 0xf8, 0x20, 0xf9, 0x2d, 0xaa,
1165913498266Sopenharmony_ci  0x1a, 0xae, 0x15, 0x5d, 0xc7, 0xc0, 0x2a, 0xd9, 0xda, 0x60, 0x1d, 0x79,
1166013498266Sopenharmony_ci  0x3e, 0x8d, 0x0a, 0x70, 0xae, 0xa3, 0x8f, 0x94, 0x2c, 0x6b, 0x04, 0x6f,
1166113498266Sopenharmony_ci  0xf5, 0xe1, 0x5d, 0x77, 0xae, 0x4f, 0xab, 0x85, 0x6c, 0x23, 0xaf, 0x98,
1166213498266Sopenharmony_ci  0xb8, 0x4d, 0x7e, 0x68, 0x9d, 0xf5, 0x15, 0xb1, 0x06, 0x75, 0x34, 0x07,
1166313498266Sopenharmony_ci  0x53, 0xf9, 0xee, 0xf0, 0x74, 0x43, 0x00, 0xf5, 0xcd, 0x10, 0x29, 0xd8,
1166413498266Sopenharmony_ci  0x50, 0x4c, 0x33, 0x89, 0xb1, 0x22, 0x29, 0x84, 0x7e, 0x40, 0x4b, 0x31,
1166513498266Sopenharmony_ci  0x69, 0xf7, 0xf3, 0x69, 0xc2, 0x26, 0x74, 0xd8, 0x9f, 0xa7, 0xb0, 0x36,
1166613498266Sopenharmony_ci  0x28, 0xb7, 0x8f, 0x59, 0x25, 0x52, 0x3f, 0xb5, 0xe1, 0x7f, 0x5a, 0xbd,
1166713498266Sopenharmony_ci  0xfc, 0xf8, 0xdd, 0x69, 0x47, 0x0a, 0x28, 0x6c, 0x1c, 0xa6, 0x16, 0x9c,
1166813498266Sopenharmony_ci  0x1e, 0x52, 0xf1, 0x65, 0x8c, 0x04, 0x4f, 0xa7, 0x14, 0xf2, 0x5f, 0xa7,
1166913498266Sopenharmony_ci  0xa3, 0xf3, 0xbc, 0xc0, 0xc8, 0x08, 0x02, 0x98, 0x00, 0x45, 0xfa, 0xc7,
1167013498266Sopenharmony_ci  0x74, 0xf8, 0xec, 0xe0, 0x07, 0xae, 0x3a, 0xdb, 0x31, 0xd9, 0xe3, 0xb7,
1167113498266Sopenharmony_ci  0x47, 0xc7, 0xcf, 0x5f, 0xbe, 0x79, 0xd6, 0x8f, 0x9e, 0x1e, 0x1d, 0xff,
1167213498266Sopenharmony_ci  0xa3, 0x1f, 0xbd, 0x3e, 0xfa, 0xe1, 0x90, 0xfa, 0xc0, 0xb0, 0x10, 0x8f,
1167313498266Sopenharmony_ci  0x1c, 0xe4, 0x7f, 0x6f, 0xd0, 0x59, 0x4b, 0x21, 0x86, 0xa4, 0xf3, 0x8b,
1167413498266Sopenharmony_ci  0xef, 0x90, 0xa3, 0x27, 0x5c, 0xfd, 0xee, 0xc0, 0x4d, 0x72, 0x82, 0x35,
1167513498266Sopenharmony_ci  0xed, 0x87, 0x9b, 0x7b, 0x71, 0x78, 0x00, 0xfd, 0x1f, 0x1f, 0x9d, 0x9c,
1167613498266Sopenharmony_ci  0x52, 0xcf, 0x30, 0x75, 0xbb, 0x1e, 0x18, 0xa7, 0x24, 0x06, 0x70, 0xd2,
1167713498266Sopenharmony_ci  0xe9, 0x35, 0xf9, 0x85, 0xee, 0xa6, 0x70, 0x73, 0x70, 0xfc, 0x33, 0x4e,
1167813498266Sopenharmony_ci  0x82, 0x70, 0x95, 0x14, 0x19, 0x54, 0xd5, 0x35, 0x27, 0xd7, 0x72, 0x48,
1167913498266Sopenharmony_ci  0x71, 0x98, 0xae, 0xf9, 0x50, 0x6a, 0x9f, 0x13, 0x5c, 0x9b, 0x6a, 0xb9,
1168013498266Sopenharmony_ci  0x4a, 0x18, 0x5d, 0xa9, 0x6c, 0x34, 0x01, 0x81, 0x17, 0x34, 0xd7, 0x13,
1168113498266Sopenharmony_ci  0xdd, 0xc3, 0x1c, 0x3b, 0x9a, 0x5c, 0x09, 0xa4, 0x70, 0x8a, 0xda, 0x58,
1168213498266Sopenharmony_ci  0x45, 0x16, 0x43, 0x1f, 0x16, 0xd2, 0x62, 0x37, 0x10, 0xe8, 0x56, 0xe6,
1168313498266Sopenharmony_ci  0x6a, 0xf7, 0xe2, 0x5a, 0x4e, 0xb4, 0x2c, 0x3a, 0xae, 0xa3, 0xd3, 0xf1,
1168413498266Sopenharmony_ci  0x92, 0x25, 0x02, 0x4e, 0xcb, 0x4f, 0x5b, 0x9f, 0xc9, 0x02, 0x31, 0x89,
1168513498266Sopenharmony_ci  0x40, 0xd9, 0x45, 0x4d, 0x53, 0xe3, 0x60, 0xc4, 0xf1, 0x17, 0xc5, 0x2f,
1168613498266Sopenharmony_ci  0xd5, 0xed, 0xd8, 0x95, 0x6a, 0x14, 0x0c, 0xd4, 0x75, 0x93, 0x04, 0xf9,
1168713498266Sopenharmony_ci  0x38, 0x3a, 0xdc, 0xcf, 0x42, 0xa4, 0x35, 0xd8, 0xb2, 0x86, 0xf4, 0x74,
1168813498266Sopenharmony_ci  0x2f, 0x05, 0xda, 0xf5, 0x94, 0x3c, 0xb4, 0xfe, 0xb8, 0x2c, 0x0b, 0x59,
1168913498266Sopenharmony_ci  0x60, 0x65, 0xa5, 0xc8, 0x9e, 0xf3, 0xaa, 0xef, 0x38, 0xf3, 0xc3, 0xcd,
1169013498266Sopenharmony_ci  0xa1, 0x56, 0xad, 0xd8, 0x96, 0xc0, 0xb4, 0x72, 0x89, 0x74, 0x8d, 0x2a,
1169113498266Sopenharmony_ci  0xb8, 0x0e, 0x63, 0x16, 0x2a, 0x2b, 0x53, 0xf4, 0x10, 0xf7, 0xab, 0x23,
1169213498266Sopenharmony_ci  0x40, 0xcc, 0xfa, 0x34, 0xf2, 0xb3, 0xb4, 0xcd, 0xb9, 0x92, 0xd1, 0x08,
1169313498266Sopenharmony_ci  0x48, 0x87, 0x2e, 0x0e, 0x27, 0xba, 0x61, 0x77, 0xeb, 0x63, 0x64, 0x82,
1169413498266Sopenharmony_ci  0xa5, 0x3b, 0x9a, 0x2b, 0x90, 0x8d, 0xc7, 0x9c, 0x3e, 0xca, 0x70, 0xc0,
1169513498266Sopenharmony_ci  0xe1, 0xc0, 0x62, 0x97, 0x47, 0xa3, 0x01, 0x45, 0xb8, 0x34, 0x7f, 0xe9,
1169613498266Sopenharmony_ci  0x20, 0x99, 0x70, 0xf5, 0x12, 0xc3, 0x2a, 0x5f, 0xbd, 0x3c, 0xe9, 0xe0,
1169713498266Sopenharmony_ci  0x33, 0x34, 0xe3, 0x71, 0x81, 0x63, 0xe6, 0x24, 0xd2, 0x4c, 0xc5, 0x33,
1169813498266Sopenharmony_ci  0x6c, 0xd3, 0x97, 0xdb, 0x8f, 0x8e, 0x77, 0xc3, 0x17, 0x05, 0x7d, 0xb3,
1169913498266Sopenharmony_ci  0x7c, 0x04, 0x51, 0xd7, 0x5e, 0xbf, 0x3d, 0x3c, 0x7d, 0xeb, 0x4b, 0x31,
1170013498266Sopenharmony_ci  0xaf, 0x0f, 0x3a, 0xee, 0x24, 0xfa, 0x66, 0x79, 0x57, 0x7e, 0x68, 0xd2,
1170113498266Sopenharmony_ci  0xeb, 0xae, 0x1b, 0x8e, 0xbe, 0xe9, 0x6e, 0xed, 0xc5, 0xe1, 0xab, 0xe3,
1170213498266Sopenharmony_ci  0xce, 0x81, 0xff, 0xf0, 0xf6, 0xf9, 0x3f, 0xba, 0xe2, 0x25, 0x0c, 0xa1,
1170313498266Sopenharmony_ci  0x7f, 0x86, 0x78, 0x89, 0x9f, 0x38, 0x2f, 0xed, 0xf4, 0x70, 0x85, 0xd0,
1170413498266Sopenharmony_ci  0x88, 0x9f, 0xa2, 0x37, 0xaf, 0x60, 0x8f, 0x56, 0x82, 0xe2, 0x69, 0x4a,
1170513498266Sopenharmony_ci  0x77, 0x4d, 0x55, 0xa6, 0x2a, 0xa6, 0x20, 0xf8, 0xec, 0xff, 0xfc, 0x17,
1170613498266Sopenharmony_ci  0x02, 0x64, 0x26, 0x94, 0xbf, 0x3d, 0xb8, 0x0f, 0xcb, 0x9f, 0xfb, 0xf8,
1170713498266Sopenharmony_ci  0xf3, 0xd7, 0xc1, 0x60, 0xf0, 0x75, 0x50, 0x29, 0x44, 0x53, 0xa0, 0xee,
1170813498266Sopenharmony_ci  0x0d, 0x3e, 0x89, 0x5e, 0x64, 0xc6, 0xe3, 0x36, 0x1e, 0x13, 0xc2, 0x9a,
1170913498266Sopenharmony_ci  0x24, 0x70, 0x4d, 0x74, 0x4f, 0xce, 0x93, 0xac, 0xc4, 0xba, 0xa3, 0x7e,
1171013498266Sopenharmony_ci  0x18, 0x35, 0xe7, 0x6a, 0x58, 0x74, 0x54, 0x93, 0x4e, 0x42, 0x33, 0x56,
1171113498266Sopenharmony_ci  0xee, 0xb2, 0x5e, 0x6d, 0x08, 0x20, 0xbc, 0x13, 0xe4, 0x10, 0x30, 0x6e,
1171213498266Sopenharmony_ci  0xd2, 0x48, 0xb8, 0x5b, 0xd6, 0xbf, 0x59, 0x23, 0x36, 0xa2, 0x47, 0xae,
1171313498266Sopenharmony_ci  0xd7, 0xa5, 0xcc, 0x7d, 0x6c, 0x86, 0x4f, 0x56, 0xd9, 0xd0, 0xb6, 0x62,
1171413498266Sopenharmony_ci  0x2c, 0x05, 0x72, 0xa0, 0x92, 0x34, 0x57, 0xba, 0x44, 0x91, 0xe6, 0x36,
1171513498266Sopenharmony_ci  0xd3, 0x7a, 0xb4, 0x89, 0x93, 0xac, 0x1a, 0x1a, 0x9d, 0x23, 0xbe, 0x7b,
1171613498266Sopenharmony_ci  0x6c, 0xce, 0xc5, 0x24, 0x61, 0x44, 0x70, 0xce, 0xf2, 0x75, 0x70, 0xdc,
1171713498266Sopenharmony_ci  0x2c, 0x24, 0xb9, 0x63, 0x3d, 0x54, 0x97, 0x56, 0xa0, 0x39, 0xb3, 0xdc,
1171813498266Sopenharmony_ci  0x06, 0x56, 0xd0, 0xa0, 0x34, 0x2b, 0xfb, 0x86, 0x17, 0x09, 0xd9, 0x55,
1171913498266Sopenharmony_ci  0xa0, 0x5d, 0x59, 0x4e, 0xc0, 0x6b, 0xc5, 0x0b, 0x22, 0x61, 0xca, 0xc7,
1172013498266Sopenharmony_ci  0x2c, 0x52, 0x3c, 0x7c, 0xad, 0xfb, 0x4d, 0x7d, 0xe1, 0xee, 0x76, 0x1b,
1172113498266Sopenharmony_ci  0xe4, 0xd0, 0x00, 0x62, 0x34, 0x56, 0x58, 0xb0, 0x7e, 0x05, 0x9c, 0x63,
1172213498266Sopenharmony_ci  0x10, 0x3a, 0xc7, 0xc5, 0xc6, 0x5f, 0xfb, 0xcf, 0x35, 0xd4, 0x6c, 0x69,
1172313498266Sopenharmony_ci  0xf4, 0x41, 0x40, 0x7e, 0x25, 0x58, 0x94, 0xbe, 0x03, 0x5d, 0x12, 0x67,
1172413498266Sopenharmony_ci  0x36, 0x0b, 0xa2, 0x64, 0x67, 0xd2, 0xf0, 0x0d, 0xe1, 0xc8, 0x14, 0x30,
1172513498266Sopenharmony_ci  0xd0, 0x7e, 0x3a, 0x1e, 0x25, 0x5c, 0xbe, 0x24, 0x10, 0x4c, 0xcb, 0x04,
1172613498266Sopenharmony_ci  0xc2, 0x1a, 0x57, 0x41, 0x9d, 0xda, 0x33, 0x23, 0xf9, 0x4d, 0x4d, 0x72,
1172713498266Sopenharmony_ci  0x67, 0x8b, 0x27, 0x27, 0x8c, 0x04, 0x79, 0x04, 0x27, 0x76, 0x75, 0x42,
1172813498266Sopenharmony_ci  0xb4, 0x0a, 0xe1, 0xe8, 0x12, 0x33, 0xcf, 0xe1, 0xfc, 0xe2, 0x46, 0xc0,
1172913498266Sopenharmony_ci  0x2c, 0x35, 0xa5, 0x21, 0x63, 0xf1, 0x03, 0x3f, 0xec, 0x2d, 0x9b, 0x5f,
1173013498266Sopenharmony_ci  0x3c, 0x40, 0xb5, 0x24, 0x7e, 0xd4, 0xe7, 0xbf, 0x1e, 0x69, 0x88, 0x71,
1173113498266Sopenharmony_ci  0x23, 0x08, 0x8e, 0x2d, 0x12, 0xac, 0xba, 0xbc, 0x3c, 0xd6, 0xac, 0xd0,
1173213498266Sopenharmony_ci  0x81, 0xbf, 0x4b, 0x8c, 0x3b, 0xa4, 0xda, 0x16, 0xcd, 0xd5, 0xa2, 0x32,
1173313498266Sopenharmony_ci  0xf9, 0x47, 0x97, 0x13, 0x91, 0x39, 0x95, 0xdf, 0xf3, 0x73, 0x59, 0x68,
1173413498266Sopenharmony_ci  0xa9, 0xb5, 0xaa, 0x11, 0x87, 0x8e, 0x8a, 0xd5, 0xfa, 0xb6, 0x04, 0x80,
1173513498266Sopenharmony_ci  0x23, 0x62, 0x35, 0xe1, 0xb8, 0x89, 0x65, 0xb6, 0x66, 0x84, 0x67, 0x90,
1173613498266Sopenharmony_ci  0x06, 0xbd, 0x44, 0x01, 0xb4, 0x06, 0x13, 0xd4, 0xbf, 0xe2, 0x17, 0x4d,
1173713498266Sopenharmony_ci  0x0b, 0xcc, 0x4a, 0x5d, 0xe4, 0x94, 0x9d, 0x6a, 0xe2, 0xfe, 0x4d, 0xc8,
1173813498266Sopenharmony_ci  0xb3, 0x0e, 0x7d, 0x8a, 0xbe, 0x89, 0x49, 0xc0, 0x0a, 0x08, 0x94, 0xf1,
1173913498266Sopenharmony_ci  0x32, 0x67, 0xe8, 0x5d, 0xb4, 0xc9, 0x55, 0x82, 0x9a, 0xe4, 0x6f, 0x01,
1174013498266Sopenharmony_ci  0xd3, 0x65, 0xc9, 0x60, 0x21, 0x45, 0xd4, 0x45, 0x43, 0x72, 0xf2, 0x85,
1174113498266Sopenharmony_ci  0x44, 0x08, 0x1c, 0xce, 0x32, 0xa2, 0x4b, 0x3a, 0xf0, 0x05, 0x06, 0xa7,
1174213498266Sopenharmony_ci  0x93, 0x26, 0x2b, 0x0b, 0x81, 0x16, 0x35, 0x3f, 0x32, 0x6b, 0x4e, 0x00,
1174313498266Sopenharmony_ci  0x77, 0x1e, 0xb3, 0x97, 0x18, 0x10, 0xa9, 0xb8, 0x21, 0x46, 0x3b, 0x6c,
1174413498266Sopenharmony_ci  0x0d, 0x36, 0x55, 0x89, 0x09, 0x27, 0x0d, 0xa2, 0xf2, 0xcf, 0xc3, 0x32,
1174513498266Sopenharmony_ci  0x21, 0x34, 0xf8, 0x5f, 0x29, 0xcc, 0x9d, 0x32, 0x8f, 0xfd, 0xd4, 0x16,
1174613498266Sopenharmony_ci  0xd0, 0xd7, 0x1b, 0x75, 0xdc, 0x96, 0x76, 0x64, 0x6c, 0x81, 0xb6, 0xb7,
1174713498266Sopenharmony_ci  0x94, 0x63, 0xf9, 0x99, 0x0e, 0x2e, 0x09, 0x2f, 0xbf, 0xb3, 0xa3, 0x2f,
1174813498266Sopenharmony_ci  0xaf, 0xe9, 0x88, 0x4f, 0x9c, 0xd1, 0x53, 0x2f, 0xf5, 0xcc, 0x9a, 0xe1,
1174913498266Sopenharmony_ci  0x73, 0x3b, 0x8f, 0x1e, 0x5c, 0xd3, 0x0e, 0xa5, 0xdd, 0x01, 0xb5, 0x0a,
1175013498266Sopenharmony_ci  0x86, 0x16, 0xbe, 0xde, 0x6a, 0xe2, 0xf1, 0xc3, 0x40, 0x13, 0xf6, 0xc8,
1175113498266Sopenharmony_ci  0xdf, 0x5f, 0x9a, 0xba, 0xf6, 0xe0, 0xdc, 0xe8, 0x7b, 0x0f, 0x1e, 0xec,
1175213498266Sopenharmony_ci  0xee, 0x6d, 0xef, 0xe0, 0x2e, 0x6c, 0x81, 0xb6, 0xbb, 0x5a, 0x6c, 0xb0,
1175313498266Sopenharmony_ci  0x42, 0x6c, 0xa2, 0x8f, 0x9b, 0x02, 0xbb, 0xe1, 0x86, 0x8a, 0xab, 0x8b,
1175413498266Sopenharmony_ci  0x51, 0xf3, 0xf2, 0xc7, 0x58, 0x6f, 0x20, 0x41, 0x36, 0x9a, 0xb6, 0xb9,
1175513498266Sopenharmony_ci  0xd5, 0x5b, 0x8a, 0xf0, 0x47, 0xf5, 0x18, 0xd8, 0x1e, 0x5b, 0x65, 0xdb,
1175613498266Sopenharmony_ci  0x61, 0xfb, 0x92, 0xca, 0x0d, 0x42, 0x05, 0xf2, 0x0f, 0xb1, 0xe6, 0x52,
1175713498266Sopenharmony_ci  0xb3, 0x83, 0x6b, 0x8b, 0xd0, 0x51, 0xb8, 0x52, 0x35, 0x4d, 0xc7, 0x67,
1175813498266Sopenharmony_ci  0xa0, 0x72, 0xcd, 0x66, 0x69, 0xd9, 0xc3, 0x3b, 0x55, 0xf3, 0x13, 0x06,
1175913498266Sopenharmony_ci  0xd1, 0x33, 0xd6, 0x63, 0xd5, 0xc7, 0xf6, 0x45, 0x48, 0xc9, 0x41, 0xce,
1176013498266Sopenharmony_ci  0xa8, 0xfc, 0x63, 0xdd, 0xd5, 0x37, 0xb2, 0x9c, 0xe1, 0x2e, 0x71, 0x75,
1176113498266Sopenharmony_ci  0xcb, 0xd1, 0x46, 0x5f, 0xa0, 0xdb, 0x35, 0x03, 0x3d, 0xf7, 0x85, 0x10,
1176213498266Sopenharmony_ci  0xd1, 0x34, 0x46, 0x28, 0xfd, 0x6b, 0xfc, 0x98, 0x42, 0x6f, 0x1b, 0x48,
1176313498266Sopenharmony_ci  0x2e, 0xb2, 0xf3, 0xd8, 0x3a, 0xbd, 0xd1, 0x78, 0x81, 0xa1, 0x54, 0x7e,
1176413498266Sopenharmony_ci  0x72, 0x84, 0x24, 0xc2, 0x3b, 0x53, 0xe0, 0xd8, 0xb1, 0x94, 0x5d, 0xe3,
1176513498266Sopenharmony_ci  0x44, 0x6d, 0x68, 0x9c, 0x46, 0x5b, 0x23, 0x99, 0xa9, 0x49, 0xd3, 0x5b,
1176613498266Sopenharmony_ci  0xa3, 0x5b, 0x7f, 0xb6, 0xf0, 0xb2, 0x1b, 0x86, 0x69, 0x4d, 0x96, 0xc9,
1176713498266Sopenharmony_ci  0xc9, 0x04, 0x98, 0x42, 0x3e, 0x9e, 0x8a, 0xd6, 0x46, 0xc9, 0x3d, 0x30,
1176813498266Sopenharmony_ci  0x56, 0x3c, 0x88, 0xc3, 0x29, 0x56, 0x82, 0x41, 0x48, 0x71, 0xc4, 0xfd,
1176913498266Sopenharmony_ci  0x8a, 0xaa, 0x51, 0x99, 0xcd, 0xa1, 0xd5, 0xe3, 0x69, 0x9a, 0x54, 0x7e,
1177013498266Sopenharmony_ci  0xea, 0x86, 0x58, 0x52, 0x74, 0xb5, 0x08, 0x12, 0xad, 0x3b, 0xe0, 0xeb,
1177113498266Sopenharmony_ci  0x39, 0xfa, 0xd3, 0x35, 0x3a, 0x6b, 0x36, 0x07, 0x29, 0x47, 0xd2, 0x67,
1177213498266Sopenharmony_ci  0x3d, 0x2c, 0x50, 0x4e, 0x0a, 0x21, 0x2c, 0x39, 0x3f, 0x30, 0x6e, 0x9a,
1177313498266Sopenharmony_ci  0x7c, 0xb8, 0x72, 0xd2, 0x4e, 0x88, 0x0f, 0x8e, 0xa6, 0xe8, 0xf8, 0x76,
1177413498266Sopenharmony_ci  0x72, 0xd4, 0xb0, 0x95, 0x73, 0x36, 0x19, 0x5f, 0x71, 0x34, 0x8f, 0xa4,
1177513498266Sopenharmony_ci  0xe1, 0xf4, 0x03, 0xc2, 0x45, 0xed, 0x42, 0x01, 0x6a, 0x03, 0xe1, 0x95,
1177613498266Sopenharmony_ci  0x66, 0x0b, 0x9d, 0xac, 0x35, 0xce, 0xe8, 0x8b, 0xa0, 0x4a, 0xdf, 0x8f,
1177713498266Sopenharmony_ci  0x8c, 0x6b, 0xc7, 0x66, 0xca, 0x64, 0xb5, 0xf1, 0x03, 0x89, 0x53, 0x81,
1177813498266Sopenharmony_ci  0x4c, 0xdd, 0x5a, 0x27, 0x26, 0x34, 0x59, 0x75, 0xee, 0x58, 0x5c, 0x49,
1177913498266Sopenharmony_ci  0xbc, 0xc2, 0x88, 0xe1, 0xb0, 0x1b, 0x9c, 0x2e, 0x0b, 0x0c, 0x64, 0x97,
1178013498266Sopenharmony_ci  0x16, 0x05, 0x2f, 0x2a, 0x7a, 0x51, 0x5c, 0x22, 0x5f, 0xf1, 0xc3, 0xd1,
1178113498266Sopenharmony_ci  0x2c, 0x72, 0x7e, 0xb9, 0x48, 0x05, 0xa6, 0x26, 0x71, 0xe7, 0x49, 0xd1,
1178213498266Sopenharmony_ci  0x2c, 0xff, 0x17, 0xee, 0x87, 0x39, 0x41, 0xae, 0x7c, 0x2d, 0xce, 0x9e,
1178313498266Sopenharmony_ci  0x50, 0xc1, 0x71, 0x34, 0xe3, 0x50, 0x5b, 0xc8, 0x59, 0x53, 0x5c, 0x90,
1178413498266Sopenharmony_ci  0x1f, 0x09, 0xf1, 0x06, 0x2e, 0x4d, 0x8c, 0x84, 0x5f, 0x9c, 0x9d, 0xa5,
1178513498266Sopenharmony_ci  0x22, 0x7f, 0x89, 0x31, 0x09, 0xa6, 0x53, 0xa5, 0x52, 0xa3, 0x1a, 0x54,
1178613498266Sopenharmony_ci  0xe7, 0x30, 0xd8, 0xef, 0x45, 0x66, 0xc7, 0x43, 0x85, 0x70, 0x8a, 0xd9,
1178713498266Sopenharmony_ci  0x50, 0xa3, 0x55, 0xdb, 0x65, 0x8d, 0xfa, 0x26, 0x1b, 0xcb, 0x77, 0x87,
1178813498266Sopenharmony_ci  0xe3, 0x21, 0xe5, 0x33, 0x96, 0xda, 0x03, 0x16, 0xae, 0x87, 0xdd, 0x06,
1178913498266Sopenharmony_ci  0x5e, 0x34, 0x06, 0x14, 0x76, 0x06, 0x8a, 0x23, 0x70, 0xe2, 0xe4, 0x94,
1179013498266Sopenharmony_ci  0x54, 0x06, 0x2d, 0x31, 0x60, 0x2d, 0x32, 0xa9, 0xd2, 0xa4, 0xe9, 0x8b,
1179113498266Sopenharmony_ci  0xb3, 0x97, 0xcb, 0x90, 0x3b, 0x10, 0xde, 0xd4, 0xa8, 0x81, 0x51, 0x74,
1179213498266Sopenharmony_ci  0x53, 0xc6, 0xbc, 0xb2, 0x9e, 0x0a, 0xdb, 0x39, 0xa0, 0x33, 0x64, 0x68,
1179313498266Sopenharmony_ci  0x2c, 0xc3, 0xfc, 0x6e, 0x27, 0x57, 0x1e, 0xa5, 0x87, 0x07, 0x5b, 0x0f,
1179413498266Sopenharmony_ci  0x50, 0xda, 0x41, 0xda, 0x5c, 0xa0, 0x08, 0x19, 0xc6, 0xc9, 0x97, 0xd4,
1179513498266Sopenharmony_ci  0xfa, 0x88, 0x33, 0xd0, 0xc8, 0xe8, 0x27, 0x4b, 0x35, 0x36, 0x71, 0xb4,
1179613498266Sopenharmony_ci  0x89, 0x75, 0xfc, 0xe5, 0xca, 0xb7, 0x03, 0x89, 0x16, 0xc2, 0xa8, 0x2d,
1179713498266Sopenharmony_ci  0x1b, 0x37, 0xb0, 0xce, 0x5c, 0x0a, 0x89, 0xac, 0xe5, 0x18, 0x1a, 0xa9,
1179813498266Sopenharmony_ci  0x76, 0xe7, 0xe6, 0xea, 0x54, 0xa1, 0x28, 0x10, 0xb3, 0x5a, 0x72, 0xce,
1179913498266Sopenharmony_ci  0xa9, 0xd8, 0x88, 0x5d, 0x34, 0x10, 0xa3, 0xf8, 0xd8, 0xba, 0x3e, 0x22,
1180013498266Sopenharmony_ci  0xb1, 0xb1, 0x7a, 0xa1, 0x01, 0x40, 0x81, 0x0f, 0x3e, 0x7e, 0xb4, 0xbd,
1180113498266Sopenharmony_ci  0xb2, 0xf1, 0x45, 0x59, 0x32, 0x2c, 0x57, 0x2b, 0xba, 0x46, 0xb9, 0x0f,
1180213498266Sopenharmony_ci  0x57, 0xe2, 0xee, 0xda, 0x59, 0x6e, 0xa5, 0xb1, 0xb3, 0xee, 0x00, 0xa3,
1180313498266Sopenharmony_ci  0x75, 0xec, 0x13, 0x6f, 0xcc, 0x87, 0x1f, 0x3f, 0x6e, 0xc8, 0x9a, 0xf8,
1180413498266Sopenharmony_ci  0x90, 0x86, 0xc3, 0x4c, 0xab, 0x4f, 0x38, 0x2e, 0xc3, 0xe5, 0xce, 0xd3,
1180513498266Sopenharmony_ci  0xe6, 0x55, 0x7b, 0xd7, 0x71, 0x7a, 0xcd, 0xd6, 0x57, 0xf7, 0xfe, 0xe0,
1180613498266Sopenharmony_ci  0xc2, 0x3d, 0x0c, 0x8d, 0x73, 0x35, 0xa9, 0x83, 0xaf, 0x7e, 0xd7, 0xe9,
1180713498266Sopenharmony_ci  0xf3, 0x78, 0xbb, 0xed, 0x3b, 0xc5, 0x0e, 0x50, 0x3a, 0x01, 0x19, 0x0c,
1180813498266Sopenharmony_ci  0xe9, 0xae, 0x6d, 0x95, 0xb1, 0xd6, 0x78, 0xd5, 0xda, 0x58, 0x39, 0xc1,
1180913498266Sopenharmony_ci  0xc0, 0x00, 0xfa, 0x18, 0x0b, 0x9c, 0xa9, 0x3a, 0x7e, 0x88, 0x20, 0xe5,
1181013498266Sopenharmony_ci  0x6f, 0x0f, 0x9f, 0xbf, 0x3b, 0x39, 0x7c, 0xc6, 0x35, 0x99, 0x42, 0x88,
1181113498266Sopenharmony_ci  0x10, 0x5c, 0xf2, 0x86, 0x79, 0x01, 0x34, 0x5a, 0xb0, 0x8e, 0x60, 0x46,
1181213498266Sopenharmony_ci  0xbb, 0x4c, 0xa6, 0x09, 0x38, 0x7f, 0x3a, 0x25, 0x1c, 0x7f, 0xbf, 0x9d,
1181313498266Sopenharmony_ci  0x69, 0x86, 0x36, 0xbc, 0x19, 0xc3, 0x71, 0x9b, 0x70, 0xe0, 0x56, 0x27,
1181413498266Sopenharmony_ci  0xb7, 0xda, 0xf7, 0xc6, 0x28, 0x95, 0x16, 0x1e, 0xdf, 0x66, 0xe3, 0x1b,
1181513498266Sopenharmony_ci  0x29, 0x84, 0x0e, 0x35, 0x2e, 0xab, 0xd9, 0xe8, 0xe4, 0x1b, 0x46, 0xfb,
1181613498266Sopenharmony_ci  0x92, 0xb7, 0xfb, 0x75, 0x20, 0xda, 0x47, 0x3d, 0xbf, 0x20, 0x30, 0xa6,
1181713498266Sopenharmony_ci  0x73, 0xd5, 0x05, 0x93, 0x19, 0xf0, 0x4a, 0x0e, 0xb8, 0x44, 0x45, 0x53,
1181813498266Sopenharmony_ci  0x6e, 0x6e, 0x8a, 0xfa, 0xe5, 0x01, 0x31, 0x2a, 0x70, 0x10, 0x25, 0x04,
1181913498266Sopenharmony_ci  0x33, 0x95, 0x93, 0x4a, 0x6e, 0x6f, 0xd5, 0x07, 0x2d, 0xb9, 0x30, 0xb5,
1182013498266Sopenharmony_ci  0xac, 0x33, 0xfa, 0x06, 0x79, 0x1e, 0x24, 0x57, 0xc4, 0x87, 0xa1, 0xa5,
1182113498266Sopenharmony_ci  0xeb, 0x87, 0x8a, 0x1b, 0xa3, 0x80, 0xc6, 0x43, 0x81, 0x75, 0x39, 0x2b,
1182213498266Sopenharmony_ci  0xe0, 0xa6, 0x3f, 0x9f, 0x99, 0x4a, 0x14, 0xc2, 0x55, 0x37, 0xda, 0x04,
1182313498266Sopenharmony_ci  0xd7, 0xbe, 0x4c, 0xd1, 0xdb, 0x41, 0x69, 0x93, 0xa9, 0x00, 0x16, 0x4f,
1182413498266Sopenharmony_ci  0x5c, 0x56, 0x4d, 0xeb, 0xcd, 0x46, 0xa9, 0x13, 0x09, 0x53, 0xa2, 0xb5,
1182513498266Sopenharmony_ci  0xe0, 0x15, 0xf4, 0x93, 0xe8, 0x7f, 0x4f, 0xcb, 0xc2, 0xa9, 0x83, 0x60,
1182613498266Sopenharmony_ci  0x9c, 0x08, 0x7a, 0x6d, 0xea, 0xb0, 0x83, 0xb1, 0x40, 0xea, 0xa1, 0xb6,
1182713498266Sopenharmony_ci  0x5b, 0xf4, 0x39, 0x60, 0x96, 0x9c, 0xee, 0x1f, 0x7e, 0x1a, 0x81, 0xfa,
1182813498266Sopenharmony_ci  0x84, 0x37, 0x4b, 0x3e, 0x72, 0x2c, 0x53, 0x17, 0xed, 0x71, 0x9c, 0xa9,
1182913498266Sopenharmony_ci  0xda, 0x32, 0x4a, 0x36, 0x13, 0xe1, 0x04, 0x1b, 0x69, 0x4a, 0x08, 0xd5,
1183013498266Sopenharmony_ci  0x63, 0xc8, 0x4a, 0x04, 0xe2, 0x01, 0x6a, 0x50, 0x7e, 0x5e, 0x15, 0xbb,
1183113498266Sopenharmony_ci  0x04, 0x4a, 0xc2, 0x1a, 0xc9, 0x49, 0xf4, 0x5d, 0x54, 0xe8, 0xcd, 0x5a,
1183213498266Sopenharmony_ci  0x47, 0xa0, 0x41, 0x19, 0xd6, 0x06, 0x7e, 0x4c, 0x26, 0x0c, 0x89, 0x21,
1183313498266Sopenharmony_ci  0xe4, 0xbe, 0xcf, 0x93, 0x50, 0x0a, 0x48, 0x89, 0xf4, 0xae, 0xbe, 0x3e,
1183413498266Sopenharmony_ci  0x8e, 0x63, 0xa5, 0xac, 0x5e, 0x02, 0xc1, 0xcf, 0x46, 0x2a, 0xc6, 0x4c,
1183513498266Sopenharmony_ci  0x9c, 0x86, 0x94, 0xfb, 0xd4, 0xbe, 0x62, 0x40, 0x4d, 0x09, 0xd4, 0xef,
1183613498266Sopenharmony_ci  0x0c, 0x31, 0x01, 0x9c, 0xd8, 0x09, 0x9c, 0x3c, 0x95, 0xba, 0x20, 0xd0,
1183713498266Sopenharmony_ci  0x69, 0xf2, 0x76, 0x0a, 0x94, 0x36, 0x95, 0xee, 0xf2, 0x32, 0x4a, 0x50,
1183813498266Sopenharmony_ci  0x90, 0x23, 0x34, 0x73, 0x9c, 0x8a, 0x85, 0x8d, 0x30, 0xc3, 0xa4, 0x85,
1183913498266Sopenharmony_ci  0x87, 0x16, 0xb2, 0x62, 0x4c, 0xd8, 0xd8, 0xd4, 0x23, 0x07, 0xdd, 0x53,
1184013498266Sopenharmony_ci  0x49, 0xcc, 0x2f, 0x82, 0x4e, 0xbc, 0xb5, 0xca, 0x62, 0x77, 0x50, 0x13,
1184113498266Sopenharmony_ci  0x7d, 0xf6, 0x2e, 0xcd, 0xf0, 0x22, 0xd6, 0xfd, 0xe4, 0x52, 0x76, 0xae,
1184213498266Sopenharmony_ci  0xc1, 0x26, 0x7c, 0x32, 0x6a, 0x96, 0x6f, 0xd5, 0xe4, 0x22, 0x67, 0xb4,
1184313498266Sopenharmony_ci  0xcb, 0x57, 0xd0, 0xa0, 0x18, 0xf7, 0x24, 0x78, 0x71, 0x1a, 0xf7, 0x58,
1184413498266Sopenharmony_ci  0xf2, 0xb8, 0x35, 0x8c, 0xdd, 0x2d, 0x73, 0x26, 0xb6, 0xb7, 0xee, 0xe4,
1184513498266Sopenharmony_ci  0x50, 0x44, 0xfb, 0xf9, 0x62, 0xf6, 0x75, 0x80, 0x15, 0x24, 0x81, 0xfb,
1184613498266Sopenharmony_ci  0x94, 0xce, 0x83, 0x00, 0x36, 0xd9, 0xc2, 0x20, 0x4c, 0xe6, 0x68, 0x32,
1184713498266Sopenharmony_ci  0x66, 0xfa, 0xe8, 0xe4, 0xc1, 0x7d, 0x56, 0xae, 0xe4, 0xf9, 0x73, 0x0b,
1184813498266Sopenharmony_ci  0x34, 0x21, 0x3c, 0xbd, 0xd2, 0x73, 0x76, 0xc6, 0x1a, 0xf7, 0x62, 0x4e,
1184913498266Sopenharmony_ci  0x3b, 0xeb, 0x87, 0x8d, 0x8b, 0xb5, 0x4b, 0xde, 0x86, 0x9e, 0xb7, 0x5c,
1185013498266Sopenharmony_ci  0xae, 0x47, 0x6a, 0x8c, 0xe9, 0x47, 0xe2, 0x0e, 0xc4, 0x06, 0xd1, 0xc5,
1185113498266Sopenharmony_ci  0xd2, 0xd1, 0xfc, 0x78, 0xda, 0xba, 0x0f, 0xd8, 0x7e, 0xce, 0x85, 0x66,
1185213498266Sopenharmony_ci  0xf7, 0x04, 0xd2, 0x03, 0xe8, 0xa6, 0xaf, 0xa8, 0xff, 0x2c, 0xb0, 0x86,
1185313498266Sopenharmony_ci  0x51, 0xae, 0x58, 0xa7, 0x28, 0x6c, 0x95, 0xb6, 0x07, 0x5b, 0x4f, 0xfa,
1185413498266Sopenharmony_ci  0xd1, 0x83, 0x9d, 0x2f, 0xfb, 0x08, 0x30, 0x86, 0x3f, 0x76, 0xf0, 0xc7,
1185513498266Sopenharmony_ci  0x2e, 0x69, 0xaa, 0x0f, 0x41, 0x1b, 0xe8, 0x72, 0x46, 0x62, 0x3b, 0x1d,
1185613498266Sopenharmony_ci  0xe8, 0x0e, 0x5a, 0x95, 0x25, 0x19, 0x16, 0x0b, 0x47, 0x24, 0x4e, 0x9a,
1185713498266Sopenharmony_ci  0xeb, 0xcd, 0xfc, 0x8a, 0xa1, 0x59, 0x90, 0x07, 0x55, 0x7e, 0xd1, 0xa2,
1185813498266Sopenharmony_ci  0x22, 0x1f, 0x6b, 0xd5, 0x24, 0x9b, 0x9f, 0x03, 0xff, 0xd6, 0xe7, 0x40,
1185913498266Sopenharmony_ci  0x51, 0x84, 0xf8, 0x27, 0x6b, 0x49, 0xa9, 0x69, 0x0b, 0xa9, 0xa4, 0x87,
1186013498266Sopenharmony_ci  0x45, 0x70, 0x12, 0x0a, 0x88, 0xf4, 0xf6, 0x67, 0x46, 0x0e, 0x5d, 0x84,
1186113498266Sopenharmony_ci  0xe7, 0x20, 0x17, 0x3c, 0x73, 0x9a, 0x0a, 0x49, 0x96, 0x8d, 0xbd, 0x95,
1186213498266Sopenharmony_ci  0xf8, 0x8e, 0xa9, 0x43, 0xd0, 0xb6, 0x29, 0x4f, 0x94, 0x99, 0xfe, 0xd0,
1186313498266Sopenharmony_ci  0xe7, 0xa2, 0x52, 0xda, 0x89, 0xf0, 0xbc, 0x9c, 0x84, 0x0b, 0x3e, 0xbc,
1186413498266Sopenharmony_ci  0xa8, 0x15, 0x72, 0xb0, 0x5c, 0xeb, 0xee, 0xe2, 0xf0, 0x88, 0xcc, 0xf3,
1186513498266Sopenharmony_ci  0x40, 0x71, 0xda, 0x8f, 0x0a, 0x15, 0x14, 0x23, 0x02, 0xcb, 0x42, 0x75,
1186613498266Sopenharmony_ci  0x6d, 0x49, 0xd8, 0xd7, 0x9b, 0xdd, 0x5e, 0xea, 0x83, 0x46, 0x2c, 0x74,
1186713498266Sopenharmony_ci  0x58, 0xb1, 0xb2, 0x47, 0xb4, 0x56, 0xd6, 0x46, 0x1c, 0xb8, 0xa8, 0xe5,
1186813498266Sopenharmony_ci  0xca, 0xb4, 0xa0, 0x20, 0xa4, 0x58, 0x87, 0x39, 0x0f, 0xed, 0x28, 0x01,
1186913498266Sopenharmony_ci  0xf0, 0xe0, 0x6a, 0x9b, 0x30, 0x1d, 0xb2, 0xcd, 0xc5, 0x07, 0x68, 0x47,
1187013498266Sopenharmony_ci  0xdf, 0x6b, 0x57, 0xe8, 0xa1, 0xca, 0x01, 0x04, 0xe0, 0xef, 0xab, 0xa4,
1187113498266Sopenharmony_ci  0x08, 0x46, 0x9b, 0xb2, 0xb6, 0x84, 0x75, 0x1e, 0x35, 0x46, 0x56, 0xa2,
1187213498266Sopenharmony_ci  0xff, 0x1c, 0x40, 0x15, 0x24, 0x1b, 0xb7, 0x6a, 0xe5, 0xa3, 0x47, 0xa1,
1187313498266Sopenharmony_ci  0xaa, 0x95, 0x8e, 0x80, 0xb0, 0x4a, 0xe4, 0xda, 0x5d, 0x16, 0x29, 0xf9,
1187413498266Sopenharmony_ci  0x04, 0x71, 0xc0, 0xde, 0x16, 0x0e, 0x0b, 0xac, 0x92, 0x6a, 0x1a, 0x63,
1187513498266Sopenharmony_ci  0x7d, 0xe8, 0xdf, 0xb3, 0x71, 0xb4, 0x9f, 0x51, 0x7d, 0xe3, 0xfa, 0xea,
1187613498266Sopenharmony_ci  0xeb, 0x60, 0x89, 0x5a, 0x3c, 0x69, 0xf0, 0x24, 0xd0, 0xc4, 0xef, 0x52,
1187713498266Sopenharmony_ci  0xfc, 0x40, 0x1e, 0x87, 0xa5, 0xe3, 0x16, 0x36, 0xfa, 0x1a, 0xb2, 0x7b,
1187813498266Sopenharmony_ci  0x72, 0x70, 0xf2, 0x2a, 0x3a, 0x7e, 0x75, 0xf0, 0xf2, 0x0d, 0xbc, 0x13,
1187913498266Sopenharmony_ci  0x07, 0x32, 0x60, 0xb5, 0x1a, 0x75, 0x9f, 0x93, 0x36, 0x9a, 0x3a, 0x50,
1188013498266Sopenharmony_ci  0xab, 0x60, 0xb5, 0xe9, 0x87, 0x3b, 0xf2, 0x2b, 0x32, 0x8e, 0x49, 0x84,
1188113498266Sopenharmony_ci  0x68, 0x00, 0xaf, 0xc7, 0x0b, 0x4d, 0x61, 0xef, 0x4e, 0x5e, 0xb6, 0x5a,
1188213498266Sopenharmony_ci  0x50, 0xa3, 0x54, 0xa7, 0x8b, 0x28, 0x07, 0x87, 0xb2, 0xcc, 0x14, 0x78,
1188313498266Sopenharmony_ci  0x56, 0x66, 0x19, 0x2a, 0xfe, 0xac, 0x5f, 0xc3, 0x58, 0x58, 0xeb, 0x07,
1188413498266Sopenharmony_ci  0xaa, 0x74, 0x1a, 0x24, 0xa4, 0x97, 0x36, 0xe4, 0x9c, 0x74, 0xd1, 0x16,
1188513498266Sopenharmony_ci  0x1b, 0x71, 0x3f, 0x11, 0xc4, 0x4d, 0x96, 0x87, 0x18, 0x48, 0x0b, 0x4b,
1188613498266Sopenharmony_ci  0x54, 0x0a, 0x01, 0xa8, 0x27, 0x0b, 0x67, 0xb9, 0x86, 0xe6, 0xd0, 0x61,
1188713498266Sopenharmony_ci  0xe1, 0x95, 0x77, 0x53, 0xdc, 0x42, 0xc6, 0x14, 0x37, 0x79, 0x7a, 0x67,
1188813498266Sopenharmony_ci  0xc0, 0x21, 0xa9, 0xb2, 0xaf, 0x94, 0x14, 0x28, 0xfa, 0x0a, 0x77, 0x59,
1188913498266Sopenharmony_ci  0x9d, 0x27, 0x84, 0xd1, 0x0a, 0x3c, 0x69, 0x0a, 0xed, 0x05, 0x0a, 0xcf,
1189013498266Sopenharmony_ci  0x2a, 0xcd, 0x85, 0x8f, 0x47, 0x83, 0xa2, 0xfe, 0x78, 0xf9, 0xb9, 0xd1,
1189113498266Sopenharmony_ci  0x3d, 0x0d, 0x61, 0x96, 0xac, 0x10, 0x3b, 0x80, 0x11, 0x6c, 0x79, 0xac,
1189213498266Sopenharmony_ci  0xe1, 0x5a, 0xae, 0x2a, 0x87, 0x2c, 0xc1, 0x3b, 0x39, 0x59, 0x7b, 0xf7,
1189313498266Sopenharmony_ci  0x0e, 0x73, 0x56, 0x5f, 0x05, 0xc3, 0xc2, 0xa2, 0x11, 0xe6, 0x7c, 0x24,
1189413498266Sopenharmony_ci  0x9a, 0x94, 0xbd, 0x54, 0xa9, 0x96, 0x0e, 0x56, 0x82, 0x6a, 0x69, 0x2f,
1189513498266Sopenharmony_ci  0xa1, 0xaf, 0x45, 0x4b, 0xab, 0xab, 0xf2, 0x1d, 0x1d, 0xcc, 0x6a, 0xab,
1189613498266Sopenharmony_ci  0xe9, 0x6e, 0x46, 0x63, 0xed, 0x80, 0xf0, 0x41, 0x56, 0xe7, 0x94, 0x88,
1189713498266Sopenharmony_ci  0x7d, 0xfc, 0xf9, 0xf5, 0x92, 0x5c, 0xda, 0x66, 0x31, 0xd1, 0x91, 0x0d,
1189813498266Sopenharmony_ci  0x92, 0x95, 0x66, 0x24, 0xa1, 0x1c, 0xf1, 0x5b, 0x8f, 0xdf, 0x1c, 0x7e,
1189913498266Sopenharmony_ci  0x77, 0x14, 0x96, 0x67, 0x1b, 0x7d, 0xde, 0x94, 0x2e, 0xef, 0x92, 0x30,
1190013498266Sopenharmony_ci  0xdd, 0xfe, 0xb1, 0x3e, 0xe0, 0x78, 0x53, 0x58, 0xcc, 0x6a, 0xbc, 0x3c,
1190113498266Sopenharmony_ci  0x4f, 0xcf, 0x40, 0xd1, 0xb1, 0x10, 0x46, 0x5c, 0xcf, 0xd2, 0x6d, 0xdd,
1190213498266Sopenharmony_ci  0x59, 0xe9, 0x13, 0x2a, 0x46, 0x78, 0x5e, 0x5c, 0x76, 0xe7, 0x93, 0x10,
1190313498266Sopenharmony_ci  0x4f, 0x61, 0xfa, 0xa8, 0xe8, 0x69, 0x4c, 0x86, 0xaa, 0x49, 0x72, 0x72,
1190413498266Sopenharmony_ci  0x44, 0x4a, 0x6c, 0xc3, 0xe6, 0x9a, 0xc0, 0x42, 0x55, 0x89, 0x97, 0x1c,
1190513498266Sopenharmony_ci  0xc9, 0x59, 0x83, 0x54, 0xb8, 0xe7, 0xf3, 0x02, 0x60, 0x35, 0x4e, 0x91,
1190613498266Sopenharmony_ci  0x99, 0xfc, 0x8d, 0x0f, 0x52, 0x50, 0x60, 0x0a, 0x1d, 0x25, 0xd3, 0xf4,
1190713498266Sopenharmony_ci  0xca, 0xa7, 0xc9, 0x0e, 0x4a, 0x17, 0x7c, 0x55, 0x2a, 0xa0, 0x62, 0x7e,
1190813498266Sopenharmony_ci  0x67, 0x54, 0x5f, 0x70, 0x96, 0xd6, 0x0d, 0x44, 0x16, 0x67, 0x1b, 0xdb,
1190913498266Sopenharmony_ci  0x0d, 0x70, 0x57, 0xc4, 0xea, 0xff, 0xb9, 0xc8, 0x08, 0x80, 0x0d, 0xa4,
1191013498266Sopenharmony_ci  0x6b, 0xf5, 0xdc, 0xd1, 0x26, 0x6b, 0xb3, 0x11, 0x35, 0x8b, 0x8f, 0x9a,
1191113498266Sopenharmony_ci  0x3d, 0xf7, 0x24, 0x7d, 0xa0, 0x01, 0x60, 0x92, 0x9c, 0x9e, 0xf6, 0x14,
1191213498266Sopenharmony_ci  0xa7, 0x36, 0x5b, 0x20, 0x58, 0xe1, 0x4b, 0x68, 0x0a, 0x64, 0xdf, 0xa9,
1191313498266Sopenharmony_ci  0xb8, 0x4a, 0x24, 0x0b, 0x1e, 0x1d, 0x38, 0x8c, 0xbb, 0x51, 0x7d, 0xa0,
1191413498266Sopenharmony_ci  0x8b, 0xc4, 0x2b, 0x85, 0x55, 0xd4, 0x2c, 0x86, 0x62, 0x61, 0xbd, 0x8b,
1191513498266Sopenharmony_ci  0xd4, 0x48, 0x03, 0x30, 0x0c, 0x90, 0x9a, 0x93, 0xe9, 0x66, 0x55, 0x8f,
1191613498266Sopenharmony_ci  0x51, 0xd0, 0x17, 0x10, 0x0f, 0x6c, 0xcb, 0x3a, 0x60, 0xea, 0x50, 0xb1,
1191713498266Sopenharmony_ci  0x63, 0x3e, 0x01, 0xcd, 0x05, 0x27, 0xd0, 0x71, 0x23, 0x70, 0x48, 0x69,
1191813498266Sopenharmony_ci  0x0f, 0x57, 0x71, 0xd6, 0xd4, 0x78, 0xbf, 0x4c, 0xa5, 0xbb, 0x2e, 0x78,
1191913498266Sopenharmony_ci  0xc7, 0xf3, 0x24, 0x69, 0xd5, 0x1a, 0xe7, 0xa2, 0x5a, 0x4e, 0x91, 0xbc,
1192013498266Sopenharmony_ci  0x09, 0x37, 0xa2, 0xc6, 0x15, 0xf8, 0x3a, 0xb5, 0xba, 0x22, 0x21, 0xae,
1192113498266Sopenharmony_ci  0x68, 0xf0, 0xbe, 0x40, 0xc2, 0xc2, 0x6c, 0x82, 0xa2, 0x22, 0x6c, 0x26,
1192213498266Sopenharmony_ci  0xd8, 0x0f, 0x98, 0xb7, 0xf0, 0xa1, 0x65, 0x14, 0xc9, 0xf5, 0x50, 0x1f,
1192313498266Sopenharmony_ci  0x5c, 0x5b, 0x5b, 0xb7, 0x19, 0xb5, 0x74, 0x72, 0xf4, 0xf4, 0xfb, 0x93,
1192413498266Sopenharmony_ci  0x07, 0xd7, 0x16, 0xd5, 0xe5, 0x37, 0xfc, 0x72, 0x59, 0x54, 0x25, 0x39,
1192513498266Sopenharmony_ci  0x93, 0x1c, 0x93, 0x60, 0x65, 0x5d, 0xe8, 0xd3, 0x58, 0x14, 0x71, 0x84,
1192613498266Sopenharmony_ci  0x68, 0x43, 0xb9, 0x9a, 0x07, 0x93, 0x1c, 0xc5, 0x53, 0xc4, 0x51, 0x0b,
1192713498266Sopenharmony_ci  0x26, 0x24, 0xc8, 0xa4, 0xf4, 0xd9, 0xfa, 0x8d, 0xa9, 0x13, 0xcd, 0x64,
1192813498266Sopenharmony_ci  0xe9, 0x2b, 0x58, 0xf3, 0x34, 0x54, 0x95, 0xd4, 0xe0, 0xc7, 0x98, 0xc2,
1192913498266Sopenharmony_ci  0xbd, 0x5c, 0xff, 0x79, 0x91, 0x67, 0x1f, 0x81, 0x55, 0xa2, 0xa2, 0x28,
1193013498266Sopenharmony_ci  0x43, 0x65, 0x3b, 0x10, 0xe5, 0xf5, 0xd1, 0x58, 0xfc, 0x70, 0x39, 0xfc,
1193113498266Sopenharmony_ci  0xb8, 0x1f, 0xa5, 0x03, 0xcc, 0xd7, 0xeb, 0xf1, 0x0e, 0xc0, 0x4e, 0x9b,
1193213498266Sopenharmony_ci  0x37, 0x36, 0x31, 0xb1, 0x6a, 0xb3, 0x2e, 0x36, 0xb9, 0xbd, 0x01, 0xfe,
1193313498266Sopenharmony_ci  0xd3, 0x5b, 0xc6, 0xb7, 0x6d, 0x95, 0x79, 0x0c, 0x91, 0x30, 0xb8, 0x61,
1193413498266Sopenharmony_ci  0xca, 0x8b, 0xdd, 0xb2, 0xb4, 0xe4, 0x9d, 0x40, 0xa7, 0x76, 0xc0, 0x15,
1193513498266Sopenharmony_ci  0x0b, 0x3c, 0x62, 0x21, 0xc5, 0x33, 0x47, 0x53, 0xd0, 0x5c, 0x03, 0xd9,
1193613498266Sopenharmony_ci  0xc0, 0x8d, 0xe8, 0x09, 0xdc, 0x9c, 0x05, 0x5a, 0x56, 0xa6, 0x0b, 0xec,
1193713498266Sopenharmony_ci  0x8e, 0x1d, 0xa9, 0xa6, 0xb4, 0xbc, 0x81, 0xdb, 0x11, 0x12, 0xa3, 0x01,
1193813498266Sopenharmony_ci  0x04, 0xfd, 0x18, 0x76, 0x7c, 0xa2, 0x2f, 0xeb, 0x3b, 0xb0, 0x28, 0xed,
1193913498266Sopenharmony_ci  0x1a, 0xde, 0x81, 0xa0, 0x18, 0xad, 0xe2, 0xdb, 0x88, 0x8a, 0xc1, 0x54,
1194013498266Sopenharmony_ci  0x4b, 0x33, 0x02, 0xa2, 0x57, 0x2d, 0x67, 0x5b, 0xdb, 0x58, 0xc1, 0x40,
1194113498266Sopenharmony_ci  0x46, 0x6f, 0xb3, 0xa2, 0xaf, 0xeb, 0xa3, 0xdd, 0xc4, 0x1f, 0xda, 0x4a,
1194213498266Sopenharmony_ci  0xab, 0x50, 0x02, 0x7a, 0x13, 0xd0, 0x4e, 0xf3, 0x32, 0xf7, 0x5d, 0xaf,
1194313498266Sopenharmony_ci  0xe7, 0x1c, 0x79, 0x9d, 0x10, 0xbe, 0x38, 0x3b, 0x0f, 0xd8, 0xf0, 0x21,
1194413498266Sopenharmony_ci  0xa1, 0x31, 0x95, 0x72, 0xd3, 0xc6, 0x28, 0xc5, 0xe6, 0xe1, 0x99, 0x5c,
1194513498266Sopenharmony_ci  0xe4, 0x95, 0x75, 0x2d, 0xa1, 0x4b, 0x2f, 0x6d, 0x34, 0x02, 0xc8, 0x81,
1194613498266Sopenharmony_ci  0xdd, 0x39, 0x43, 0xed, 0x90, 0xb9, 0x78, 0x4f, 0xae, 0x91, 0xb6, 0xee,
1194713498266Sopenharmony_ci  0x0b, 0x8c, 0x59, 0x7a, 0x47, 0x5a, 0xc7, 0x83, 0xba, 0xf7, 0x60, 0xeb,
1194813498266Sopenharmony_ci  0xcb, 0x47, 0xb7, 0xa9, 0x1c, 0xfe, 0x20, 0xf1, 0x4a, 0x3a, 0xf3, 0x1f,
1194913498266Sopenharmony_ci  0xb1, 0x36, 0xed, 0xb3, 0xba, 0xe4, 0x56, 0xbc, 0x2e, 0xb9, 0x19, 0xb3,
1195013498266Sopenharmony_ci  0x0b, 0xd5, 0xdc, 0xbe, 0x9e, 0xd9, 0xd1, 0xa1, 0x82, 0xbb, 0xd7, 0xad,
1195113498266Sopenharmony_ci  0x77, 0x4f, 0x36, 0xb3, 0x70, 0x08, 0x5f, 0x83, 0xc9, 0x05, 0x0b, 0x28,
1195213498266Sopenharmony_ci  0x0b, 0xe1, 0x73, 0x4b, 0x28, 0xa7, 0x33, 0x97, 0x52, 0x36, 0x65, 0xf8,
1195313498266Sopenharmony_ci  0x14, 0xa3, 0xc0, 0x58, 0x4e, 0x75, 0x33, 0x56, 0x95, 0xdc, 0x8e, 0x57,
1195413498266Sopenharmony_ci  0x99, 0x98, 0xab, 0x15, 0xb8, 0x15, 0xbb, 0x1d, 0x3e, 0x85, 0x57, 0xdd,
1195513498266Sopenharmony_ci  0x86, 0x55, 0x25, 0xb7, 0xe1, 0x55, 0xc9, 0x67, 0x60, 0x56, 0xee, 0x68,
1195613498266Sopenharmony_ci  0xae, 0x65, 0x59, 0xd6, 0x8a, 0x66, 0x18, 0x96, 0xef, 0xf3, 0x96, 0xb8,
1195713498266Sopenharmony_ci  0x06, 0x61, 0x57, 0x9c, 0x2e, 0xfe, 0xdf, 0x84, 0x59, 0x25, 0xf7, 0x9c,
1195813498266Sopenharmony_ci  0x1c, 0xb1, 0x9c, 0x59, 0x25, 0x77, 0xc0, 0xad, 0x56, 0x66, 0x56, 0x0f,
1195913498266Sopenharmony_ci  0xe3, 0x61, 0x52, 0x65, 0xa3, 0x36, 0x5d, 0x7b, 0xa9, 0xdc, 0x68, 0x41,
1196013498266Sopenharmony_ci  0xc2, 0x06, 0x36, 0x51, 0xda, 0xa1, 0x74, 0xb4, 0x96, 0x9d, 0x4e, 0x12,
1196113498266Sopenharmony_ci  0x30, 0x39, 0x14, 0x33, 0x90, 0xf7, 0xc0, 0x51, 0x60, 0xbc, 0x3f, 0x0f,
1196213498266Sopenharmony_ci  0x95, 0xd5, 0x69, 0x45, 0xbc, 0xa5, 0x2d, 0x7b, 0x4b, 0xac, 0x10, 0xce,
1196313498266Sopenharmony_ci  0x36, 0x22, 0x72, 0x40, 0x5c, 0xd5, 0x4c, 0xe9, 0x0c, 0x24, 0xf1, 0x79,
1196413498266Sopenharmony_ci  0x46, 0x38, 0x19, 0x05, 0xd6, 0xd7, 0xfa, 0xee, 0xe4, 0x24, 0x3e, 0x38,
1196513498266Sopenharmony_ci  0x7e, 0x29, 0x0d, 0xfb, 0x1e, 0x95, 0x91, 0x01, 0x80, 0x75, 0x86, 0x97,
1196613498266Sopenharmony_ci  0x5d, 0x27, 0xca, 0x3b, 0xcb, 0x77, 0xa3, 0x18, 0x97, 0x5b, 0xd0, 0x84,
1196713498266Sopenharmony_ci  0x36, 0x6f, 0x36, 0xf5, 0x93, 0x29, 0xe4, 0xe1, 0xb2, 0x3c, 0xe5, 0xe6,
1196813498266Sopenharmony_ci  0xfa, 0x81, 0x7e, 0xdd, 0xa6, 0x8b, 0x83, 0xaa, 0x81, 0xfb, 0xa4, 0xeb,
1196913498266Sopenharmony_ci  0xaa, 0x66, 0x09, 0x32, 0xd8, 0x10, 0x87, 0xe2, 0x6a, 0x46, 0x5c, 0x0f,
1197013498266Sopenharmony_ci  0x12, 0x19, 0x33, 0x3f, 0xe1, 0x29, 0xd7, 0x08, 0xde, 0x1d, 0x51, 0xdd,
1197113498266Sopenharmony_ci  0xdb, 0x68, 0xfb, 0xcb, 0x47, 0xdb, 0xc0, 0x85, 0xae, 0x38, 0xb2, 0x53,
1197213498266Sopenharmony_ci  0xde, 0x7f, 0x30, 0xd8, 0xdd, 0x7c, 0x30, 0x78, 0x80, 0x97, 0x9b, 0xcd,
1197313498266Sopenharmony_ci  0x15, 0x91, 0xf6, 0xbb, 0xe2, 0x24, 0xe1, 0x50, 0xbe, 0x39, 0x7c, 0x2a,
1197413498266Sopenharmony_ci  0x18, 0x42, 0x29, 0x05, 0xde, 0x35, 0xcd, 0xaa, 0x92, 0x15, 0x89, 0x37,
1197513498266Sopenharmony_ci  0xaa, 0x56, 0x70, 0x62, 0x16, 0xee, 0x71, 0x52, 0x6f, 0x39, 0x22, 0xb5,
1197613498266Sopenharmony_ci  0x47, 0x91, 0x51, 0x35, 0x37, 0x23, 0xc1, 0x2b, 0x82, 0x4d, 0x53, 0xb2,
1197713498266Sopenharmony_ci  0x32, 0xf0, 0x8d, 0x0f, 0x4c, 0xe9, 0xac, 0x89, 0xb3, 0x62, 0x37, 0x21,
1197813498266Sopenharmony_ci  0x32, 0x67, 0x04, 0xf7, 0x10, 0x5c, 0xe3, 0x75, 0x72, 0x4b, 0x5a, 0x75,
1197913498266Sopenharmony_ci  0x46, 0x79, 0x97, 0x04, 0xdb, 0x49, 0x9f, 0x6a, 0x02, 0xec, 0x30, 0x22,
1198013498266Sopenharmony_ci  0xda, 0xc8, 0x0f, 0xcf, 0x56, 0x28, 0x37, 0xaa, 0xda, 0xf9, 0xd1, 0xb3,
1198113498266Sopenharmony_ci  0x3b, 0x9a, 0xa9, 0x4d, 0x2e, 0x9e, 0xfc, 0x73, 0x9c, 0x0f, 0x56, 0xb5,
1198213498266Sopenharmony_ci  0x49, 0x66, 0x75, 0x97, 0x4d, 0x3c, 0x38, 0xe6, 0x9b, 0xdc, 0x34, 0x5e,
1198313498266Sopenharmony_ci  0xca, 0x52, 0xfd, 0x69, 0xee, 0xf4, 0xf0, 0x48, 0xc8, 0x1c, 0xf9, 0x87,
1198413498266Sopenharmony_ci  0x6c, 0xd8, 0xb5, 0x97, 0x4c, 0x93, 0x4f, 0x37, 0xaf, 0x16, 0x53, 0x24,
1198513498266Sopenharmony_ci  0xcd, 0xdc, 0x25, 0xed, 0x71, 0x30, 0xeb, 0xd6, 0xab, 0x85, 0x08, 0xa0,
1198613498266Sopenharmony_ci  0xa3, 0x41, 0xac, 0xf7, 0xe7, 0xdd, 0x21, 0x6d, 0x54, 0x93, 0x6c, 0x62,
1198713498266Sopenharmony_ci  0x7c, 0xcc, 0xe8, 0x94, 0xb4, 0xb1, 0x53, 0xda, 0xa8, 0x80, 0x91, 0xa2,
1198813498266Sopenharmony_ci  0x52, 0xc6, 0xe6, 0xa6, 0x65, 0x37, 0xaa, 0xb9, 0x8b, 0xae, 0xbd, 0xee,
1198913498266Sopenharmony_ci  0x56, 0xb9, 0x85, 0xbc, 0x2b, 0xcf, 0x43, 0x50, 0xfa, 0xb4, 0x68, 0xcb,
1199013498266Sopenharmony_ci  0x46, 0xe3, 0x9f, 0x44, 0x6e, 0x7f, 0xf4, 0x15, 0xa6, 0xbd, 0xdc, 0x46,
1199113498266Sopenharmony_ci  0x15, 0x7b, 0x68, 0xc4, 0x59, 0x4c, 0x70, 0x49, 0x6b, 0x83, 0xa9, 0xfb,
1199213498266Sopenharmony_ci  0x91, 0x62, 0x90, 0x6d, 0x96, 0x53, 0x40, 0x91, 0x61, 0x18, 0xb5, 0x8d,
1199313498266Sopenharmony_ci  0x41, 0x74, 0x9d, 0xcd, 0x8a, 0xd5, 0x36, 0xc6, 0x8d, 0x13, 0x9d, 0xcd,
1199413498266Sopenharmony_ci  0xbb, 0x1d, 0x1d, 0x0d, 0xee, 0x0f, 0xd7, 0xc1, 0x1e, 0x9e, 0xff, 0xbf,
1199513498266Sopenharmony_ci  0x5c, 0x07, 0x7b, 0xc8, 0xb3, 0x8e, 0x43, 0x00, 0x84, 0xbc, 0xa4, 0xcb,
1199613498266Sopenharmony_ci  0xd5, 0x31, 0x5a, 0xa0, 0xcf, 0xa1, 0x8e, 0xdd, 0x46, 0x1f, 0xeb, 0x56,
1199713498266Sopenharmony_ci  0xc7, 0x6e, 0xab, 0x8d, 0xdd, 0xa3, 0x3a, 0x16, 0x38, 0xc5, 0x1d, 0x11,
1199813498266Sopenharmony_ci  0x17, 0xf7, 0x0c, 0x15, 0xd4, 0x1e, 0x05, 0x8f, 0x58, 0x58, 0xd5, 0xde,
1199913498266Sopenharmony_ci  0x63, 0xac, 0x5a, 0x73, 0x1b, 0xfe, 0xe5, 0xaa, 0x66, 0x0f, 0x12, 0x9f,
1200013498266Sopenharmony_ci  0x79, 0x7d, 0x0a, 0xcf, 0x8a, 0x49, 0x0a, 0xf6, 0x8c, 0xd5, 0x82, 0x68,
1200113498266Sopenharmony_ci  0x39, 0xf5, 0xa4, 0x52, 0x02, 0x89, 0x76, 0x31, 0xcd, 0x39, 0x9f, 0xf7,
1200213498266Sopenharmony_ci  0x66, 0x0c, 0x2b, 0xf2, 0x6a, 0xda, 0x7d, 0x4e, 0x86, 0xf5, 0xff, 0x7e,
1200313498266Sopenharmony_ci  0x7e, 0xb5, 0xba, 0xcd, 0xe8, 0xe1, 0xff, 0x9f, 0x47, 0xdd, 0x03, 0x8f,
1200413498266Sopenharmony_ci  0x6a, 0x10, 0xce, 0x3a, 0x66, 0xba, 0x61, 0x22, 0x22, 0xfc, 0xab, 0x87,
1200513498266Sopenharmony_ci  0x7a, 0xc3, 0x7a, 0xb6, 0x11, 0x29, 0x98, 0x67, 0xff, 0xf2, 0xf8, 0x87,
1200613498266Sopenharmony_ci  0x47, 0x54, 0x6d, 0xf6, 0xa4, 0x1d, 0x81, 0x58, 0x46, 0xaf, 0x9e, 0x1d,
1200713498266Sopenharmony_ci  0x1c, 0x2f, 0xb1, 0x4c, 0x3d, 0xfc, 0xac, 0x66, 0xf4, 0x87, 0x77, 0xc5,
1200813498266Sopenharmony_ci  0xf8, 0x2c, 0x27, 0xed, 0xe2, 0x80, 0xff, 0x20, 0x03, 0xd6, 0x3c, 0x4d,
1200913498266Sopenharmony_ci  0xc7, 0x5c, 0xaf, 0x29, 0xda, 0xa7, 0x3f, 0x96, 0x85, 0xe8, 0x4a, 0x75,
1201013498266Sopenharmony_ci  0xbd, 0x0a, 0x03, 0x0c, 0xdd, 0xc0, 0x6b, 0x5c, 0x0b, 0x7a, 0x19, 0x44,
1201113498266Sopenharmony_ci  0xf9, 0x5c, 0x4a, 0xd5, 0x4a, 0x8d, 0xb1, 0x40, 0x08, 0xe8, 0x86, 0xe8,
1201213498266Sopenharmony_ci  0x85, 0x1c, 0xae, 0x6d, 0x23, 0x73, 0x25, 0x56, 0x9e, 0x18, 0x1f, 0x95,
1201313498266Sopenharmony_ci  0xdf, 0xc4, 0x80, 0xd3, 0x92, 0xed, 0x16, 0xa7, 0x8a, 0xbc, 0xda, 0x66,
1201413498266Sopenharmony_ci  0x82, 0x14, 0xe7, 0xcd, 0x77, 0x16, 0xed, 0x88, 0x94, 0xf8, 0xb9, 0xb2,
1201513498266Sopenharmony_ci  0x93, 0xe3, 0xa0, 0xc8, 0x9c, 0x82, 0xa4, 0x76, 0xb7, 0x4c, 0x15, 0x37,
1201613498266Sopenharmony_ci  0xd2, 0x46, 0x82, 0x21, 0xba, 0x1d, 0xc4, 0xe1, 0xac, 0xd4, 0x8a, 0xa6,
1201713498266Sopenharmony_ci  0xcb, 0xbb, 0x89, 0x6b, 0x71, 0xfa, 0xdf, 0xdd, 0xda, 0x6a, 0x4e, 0x6f,
1201813498266Sopenharmony_ci  0xd5, 0x18, 0xed, 0xd6, 0xf2, 0xf4, 0x03, 0x35, 0xbb, 0x9a, 0x81, 0xef,
1201913498266Sopenharmony_ci  0x96, 0x6c, 0xda, 0x2b, 0xdb, 0x95, 0xe2, 0x40, 0xd5, 0x66, 0x0d, 0xd5,
1202013498266Sopenharmony_ci  0x50, 0x65, 0x39, 0x97, 0x6e, 0xdc, 0xe9, 0x34, 0x08, 0x06, 0x63, 0x84,
1202113498266Sopenharmony_ci  0xc7, 0x8b, 0x32, 0x68, 0xd7, 0x4c, 0x22, 0xa7, 0x63, 0xde, 0xfa, 0x7e,
1202213498266Sopenharmony_ci  0x33, 0x5d, 0x92, 0xa3, 0x94, 0x99, 0x68, 0x5e, 0x4e, 0x9c, 0xc7, 0xc3,
1202313498266Sopenharmony_ci  0x7b, 0xd0, 0x6f, 0x64, 0xad, 0x34, 0x06, 0x45, 0x24, 0xb5, 0x1d, 0x99,
1202413498266Sopenharmony_ci  0x52, 0x26, 0x2e, 0x75, 0xfd, 0xc3, 0x07, 0xc6, 0x70, 0x5e, 0x5d, 0x7a,
1202513498266Sopenharmony_ci  0x0d, 0x09, 0x1e, 0x5f, 0xe5, 0xa4, 0x8e, 0xd2, 0x99, 0x29, 0xa0, 0x61,
1202613498266Sopenharmony_ci  0x8e, 0xb1, 0xc0, 0x88, 0xb8, 0x0d, 0x46, 0x39, 0x09, 0xa3, 0x50, 0x25,
1202713498266Sopenharmony_ci  0x5c, 0x90, 0x92, 0x96, 0xd3, 0xf2, 0xd8, 0xb4, 0x1e, 0x89, 0x3f, 0x8b,
1202813498266Sopenharmony_ci  0x93, 0x7a, 0x11, 0x37, 0x00, 0xae, 0xb8, 0x92, 0x03, 0xad, 0xe1, 0xa2,
1202913498266Sopenharmony_ci  0x83, 0xb9, 0x96, 0x57, 0xe1, 0xb2, 0x2b, 0x9a, 0xd5, 0x2f, 0xf9, 0x0a,
1203013498266Sopenharmony_ci  0x1d, 0x50, 0x5f, 0xce, 0x31, 0xf0, 0x52, 0x15, 0x6e, 0x52, 0xf5, 0xee,
1203113498266Sopenharmony_ci  0x2e, 0x78, 0xe4, 0x5d, 0x1e, 0x02, 0x8f, 0x01, 0x32, 0xa7, 0xb4, 0x07,
1203213498266Sopenharmony_ci  0xa1, 0x21, 0x2e, 0x62, 0x84, 0x1d, 0x1a, 0xa3, 0xe2, 0x61, 0xea, 0xdb,
1203313498266Sopenharmony_ci  0x8b, 0xd6, 0x4f, 0x5f, 0x9d, 0x84, 0xaa, 0x2e, 0xa9, 0xc5, 0xc5, 0xdc,
1203413498266Sopenharmony_ci  0x4e, 0x49, 0x49, 0x79, 0xb8, 0x98, 0xa7, 0x0b, 0xdf, 0x51, 0xac, 0xed,
1203513498266Sopenharmony_ci  0x64, 0x9a, 0x5c, 0xfa, 0xf8, 0x15, 0x7c, 0xc9, 0x9e, 0xbc, 0xda, 0xa5,
1203613498266Sopenharmony_ci  0x51, 0x41, 0xf3, 0xdb, 0x83, 0x2d, 0x23, 0x5d, 0x54, 0x14, 0x66, 0x4d,
1203713498266Sopenharmony_ci  0xc8, 0xe0, 0xdf, 0x1e, 0x1e, 0x9c, 0x9c, 0xda, 0x8d, 0x0f, 0x5a, 0x57,
1203813498266Sopenharmony_ci  0x45, 0xb4, 0xb4, 0x04, 0x0f, 0xed, 0xc2, 0xf6, 0x5c, 0x61, 0x51, 0x4c,
1203913498266Sopenharmony_ci  0xc1, 0x1b, 0xc7, 0xc1, 0xf1, 0xd8, 0x80, 0xd4, 0xb9, 0x71, 0xc6, 0x90,
1204013498266Sopenharmony_ci  0x47, 0xd0, 0xb4, 0x00, 0xaa, 0x01, 0x81, 0xd1, 0x25, 0x92, 0xb0, 0x6f,
1204113498266Sopenharmony_ci  0x80, 0x02, 0xe8, 0x78, 0x50, 0x72, 0x6f, 0x31, 0xc5, 0x90, 0x71, 0xec,
1204213498266Sopenharmony_ci  0xa7, 0x69, 0x10, 0xae, 0xba, 0xf1, 0x00, 0xdc, 0xe8, 0xa0, 0x29, 0xa2,
1204313498266Sopenharmony_ci  0xc4, 0xe7, 0x95, 0x19, 0xac, 0xae, 0x16, 0x47, 0xf8, 0x0e, 0xaf, 0x0c,
1204413498266Sopenharmony_ci  0x6c, 0xad, 0x47, 0x55, 0x54, 0x0c, 0x8e, 0x2a, 0xed, 0x56, 0x1f, 0x34,
1204513498266Sopenharmony_ci  0x8a, 0x76, 0x54, 0x4f, 0xaf, 0x28, 0x40, 0xf7, 0x1a, 0xf3, 0x4e, 0x73,
1204613498266Sopenharmony_ci  0x8b, 0xef, 0x36, 0x99, 0xb6, 0xd5, 0xf8, 0xca, 0x84, 0xdf, 0x1a, 0xdb,
1204713498266Sopenharmony_ci  0x6a, 0x22, 0x81, 0xc4, 0x2e, 0xb6, 0xda, 0x20, 0x72, 0xff, 0x40, 0x38,
1204813498266Sopenharmony_ci  0x3e, 0x39, 0x2d, 0xb0, 0x4f, 0xf0, 0x8b, 0xba, 0x88, 0x47, 0x53, 0x4c,
1204913498266Sopenharmony_ci  0x55, 0x89, 0x81, 0x95, 0x84, 0xa9, 0x7e, 0xfd, 0x04, 0xcd, 0xb2, 0x79,
1205013498266Sopenharmony_ci  0x3a, 0xdd, 0x20, 0x33, 0x63, 0x34, 0xcd, 0x86, 0x4a, 0xf6, 0xcd, 0xf2,
1205113498266Sopenharmony_ci  0x38, 0x84, 0xd1, 0xc7, 0xb7, 0x0b, 0x29, 0x1d, 0x6d, 0xab, 0x22, 0x77,
1205213498266Sopenharmony_ci  0x04, 0xff, 0x42, 0x4f, 0x0c, 0xc0, 0xa9, 0xb8, 0x3b, 0x4d, 0xb3, 0x5d,
1205313498266Sopenharmony_ci  0x5f, 0x80, 0xeb, 0x6c, 0xed, 0xde, 0xe1, 0x55, 0x67, 0xed, 0xb2, 0x41,
1205413498266Sopenharmony_ci  0x74, 0x92, 0x29, 0x04, 0x8e, 0xa2, 0x4d, 0x24, 0xe6, 0x5d, 0xd2, 0x3f,
1205513498266Sopenharmony_ci  0x1a, 0xfd, 0x71, 0xc2, 0x39, 0x68, 0x0a, 0x71, 0x40, 0xdd, 0xaa, 0x74,
1205613498266Sopenharmony_ci  0x8c, 0x6d, 0x23, 0x27, 0x07, 0x9a, 0x1f, 0x9d, 0x34, 0xda, 0xaa, 0x6a,
1205713498266Sopenharmony_ci  0xaa, 0x52, 0x21, 0x55, 0x83, 0x3c, 0xf0, 0x0d, 0x72, 0xdf, 0x64, 0x17,
1205813498266Sopenharmony_ci  0xc9, 0xe8, 0x2a, 0x02, 0xf5, 0x67, 0x2a, 0x2e, 0x1d, 0x5c, 0x1c, 0x53,
1205913498266Sopenharmony_ci  0x04, 0x6a, 0xb9, 0xbf, 0x22, 0xb0, 0x41, 0x77, 0x5e, 0x1b, 0x28, 0xd4,
1206013498266Sopenharmony_ci  0xc9, 0xad, 0x68, 0xb7, 0x3d, 0xd0, 0x5b, 0x13, 0x70, 0x7b, 0x30, 0x8d,
1206113498266Sopenharmony_ci  0xb4, 0xf0, 0xc7, 0x2d, 0x03, 0x25, 0xbc, 0x40, 0x19, 0xcd, 0x08, 0x2a,
1206213498266Sopenharmony_ci  0x1a, 0x24, 0x5e, 0x97, 0x7a, 0x97, 0xf0, 0x6f, 0xad, 0xe2, 0xe3, 0x6c,
1206313498266Sopenharmony_ci  0xaf, 0x97, 0x46, 0x78, 0xa1, 0xf5, 0x24, 0x47, 0xe7, 0x29, 0xc8, 0xda,
1206413498266Sopenharmony_ci  0x83, 0x1b, 0xb0, 0x36, 0xe2, 0x6d, 0xc4, 0xdc, 0x3c, 0x54, 0xf6, 0x30,
1206513498266Sopenharmony_ci  0xb3, 0xfb, 0x54, 0xf6, 0x66, 0x16, 0xe3, 0xce, 0xad, 0xd7, 0x6e, 0xe3,
1206613498266Sopenharmony_ci  0xb7, 0x21, 0x10, 0x3b, 0xb2, 0x15, 0x11, 0x89, 0xca, 0x29, 0x61, 0x9c,
1206713498266Sopenharmony_ci  0xb4, 0x76, 0x1d, 0xce, 0x77, 0xfb, 0xc4, 0xad, 0x63, 0x2a, 0x1d, 0xa1,
1206813498266Sopenharmony_ci  0x47, 0x12, 0x5a, 0x25, 0x21, 0x3f, 0xa2, 0x2e, 0xb8, 0x11, 0xbd, 0x05,
1206913498266Sopenharmony_ci  0x66, 0x00, 0xa2, 0x17, 0xee, 0xc6, 0x26, 0x50, 0x85, 0x30, 0x1d, 0x01,
1207013498266Sopenharmony_ci  0xd5, 0x63, 0x4f, 0x88, 0x0f, 0x5e, 0x76, 0xca, 0xd1, 0xb2, 0xb5, 0xe6,
1207113498266Sopenharmony_ci  0x70, 0xdb, 0x27, 0x3d, 0x0c, 0x0f, 0x60, 0x38, 0x78, 0xff, 0xa2, 0xb2,
1207213498266Sopenharmony_ci  0x3f, 0x3f, 0x2b, 0xa9, 0x70, 0x98, 0x97, 0x37, 0x8a, 0x1c, 0x51, 0xfa,
1207313498266Sopenharmony_ci  0xbf, 0xce, 0x8c, 0x41, 0x60, 0x3d, 0x4c, 0xf2, 0x38, 0xfe, 0x86, 0x5a,
1207413498266Sopenharmony_ci  0xff, 0x64, 0x5b, 0x42, 0xd7, 0x6a, 0x07, 0xcd, 0xc3, 0x8b, 0x62, 0xd3,
1207513498266Sopenharmony_ci  0x32, 0xe1, 0x02, 0x01, 0x07, 0xf3, 0x3c, 0x9a, 0xa7, 0x39, 0x35, 0x86,
1207613498266Sopenharmony_ci  0x69, 0x69, 0xa9, 0xa4, 0xe9, 0x95, 0xe9, 0x6f, 0xec, 0x72, 0x65, 0xfe,
1207713498266Sopenharmony_ci  0x0a, 0x4a, 0x59, 0x0e, 0x32, 0x77, 0xdb, 0xdd, 0x32, 0x1d, 0x27, 0x73,
1207813498266Sopenharmony_ci  0xf3, 0x5a, 0x36, 0x31, 0x85, 0xe0, 0x50, 0x68, 0xe1, 0x44, 0x4e, 0x5a,
1207913498266Sopenharmony_ci  0xdd, 0xf1, 0x75, 0xd3, 0x5a, 0xe0, 0xfa, 0x61, 0x60, 0x2f, 0xa6, 0xa4,
1208013498266Sopenharmony_ci  0x33, 0x04, 0x07, 0x03, 0x33, 0x22, 0xb4, 0x7b, 0x05, 0x87, 0x6a, 0x96,
1208113498266Sopenharmony_ci  0x1a, 0x38, 0x10, 0x8c, 0xc1, 0xf2, 0xc2, 0xa9, 0xd2, 0xe9, 0x84, 0xfd,
1208213498266Sopenharmony_ci  0xcf, 0x94, 0x0c, 0x9d, 0xcd, 0x66, 0xe9, 0xd8, 0xc4, 0xef, 0xd3, 0xc7,
1208313498266Sopenharmony_ci  0x38, 0x28, 0xb1, 0x31, 0xc1, 0xd8, 0xfa, 0x8c, 0x9f, 0x8c, 0x7b, 0x8d,
1208413498266Sopenharmony_ci  0x86, 0x82, 0x7e, 0x00, 0x81, 0xf4, 0xa4, 0x4f, 0xb4, 0x02, 0xff, 0x20,
1208513498266Sopenharmony_ci  0xb5, 0x9c, 0x50, 0x4b, 0xb8, 0x4a, 0x27, 0x58, 0x6b, 0x7d, 0x74, 0xee,
1208613498266Sopenharmony_ci  0x2a, 0x38, 0xc9, 0xf4, 0x12, 0x1d, 0xea, 0x1c, 0x96, 0x1f, 0xf9, 0x65,
1208713498266Sopenharmony_ci  0xc1, 0x70, 0xfd, 0x70, 0x41, 0x70, 0xf3, 0xaa, 0x73, 0x4c, 0x5f, 0x6e,
1208813498266Sopenharmony_ci  0x98, 0x2d, 0x96, 0x2e, 0x0e, 0x02, 0xfc, 0x60, 0xbe, 0x6b, 0x8a, 0xd0,
1208913498266Sopenharmony_ci  0xfb, 0x46, 0xf2, 0x8b, 0xe3, 0x49, 0x3d, 0x37, 0xc4, 0x7e, 0xfd, 0xd9,
1209013498266Sopenharmony_ci  0xc7, 0xa7, 0xa2, 0xbb, 0x0f, 0xce, 0xef, 0xea, 0xff, 0x06, 0x67, 0x9e,
1209113498266Sopenharmony_ci  0x46, 0xe4, 0x41, 0x8e, 0x2e, 0x33, 0x6d, 0x54, 0xd3, 0x1b, 0x48, 0x2d,
1209213498266Sopenharmony_ci  0xcc, 0x47, 0x40, 0xc8, 0xa9, 0x6a, 0x04, 0xf7, 0x2d, 0x6e, 0x20, 0xb7,
1209313498266Sopenharmony_ci  0x84, 0x19, 0x3f, 0x57, 0x30, 0x38, 0xcb, 0x09, 0xb8, 0xe9, 0x46, 0xac,
1209413498266Sopenharmony_ci  0x5f, 0x78, 0xbf, 0x08, 0x28, 0x84, 0x36, 0x25, 0x50, 0x10, 0xe3, 0x05,
1209513498266Sopenharmony_ci  0x65, 0x6c, 0xce, 0x32, 0x0a, 0x60, 0xde, 0x2c, 0x26, 0x13, 0x02, 0xac,
1209613498266Sopenharmony_ci  0x0e, 0xe4, 0x8d, 0xd6, 0x65, 0x36, 0xa4, 0x32, 0xef, 0x20, 0x72, 0x64,
1209713498266Sopenharmony_ci  0x58, 0xe7, 0x43, 0x31, 0xe6, 0xda, 0x57, 0x0c, 0xc3, 0xf5, 0x5e, 0x2b,
1209813498266Sopenharmony_ci  0x23, 0xf8, 0xcb, 0xb1, 0x3c, 0xb0, 0xa1, 0x1d, 0x01, 0x34, 0xb9, 0x99,
1209913498266Sopenharmony_ci  0x94, 0xe0, 0x77, 0x73, 0x3b, 0x92, 0xf0, 0x06, 0x7b, 0xab, 0xfb, 0x20,
1210013498266Sopenharmony_ci  0x44, 0x26, 0x0d, 0x49, 0x61, 0xcb, 0x93, 0x14, 0xe4, 0x86, 0x10, 0xe8,
1210113498266Sopenharmony_ci  0xe1, 0xf6, 0x1d, 0xf1, 0x63, 0x52, 0x22, 0xea, 0xe3, 0x9e, 0xd1, 0xaf,
1210213498266Sopenharmony_ci  0x15, 0x2d, 0x86, 0x4a, 0xd3, 0x23, 0x66, 0xb0, 0x67, 0x4c, 0x1a, 0x51,
1210313498266Sopenharmony_ci  0xd9, 0x20, 0x81, 0x49, 0x37, 0x58, 0xaf, 0x9a, 0x43, 0x6c, 0x0e, 0x80,
1210413498266Sopenharmony_ci  0xc2, 0x0d, 0x73, 0x4a, 0x0e, 0x17, 0x46, 0xa3, 0x25, 0x69, 0xdf, 0x10,
1210513498266Sopenharmony_ci  0x7c, 0x77, 0x54, 0x0c, 0xc9, 0xc5, 0x73, 0x6a, 0xdc, 0x4f, 0x6d, 0x0e,
1210613498266Sopenharmony_ci  0x52, 0x5e, 0x31, 0x05, 0x3b, 0x57, 0x8b, 0xa1, 0x25, 0xe7, 0x3d, 0xb8,
1210713498266Sopenharmony_ci  0xfe, 0x40, 0x2a, 0xae, 0xa5, 0xdd, 0xbc, 0xc8, 0x63, 0x6e, 0x3b, 0x6c,
1210813498266Sopenharmony_ci  0xcc, 0x75, 0xee, 0x37, 0xb7, 0x24, 0x2b, 0xe3, 0x7e, 0x69, 0xcd, 0x50,
1210913498266Sopenharmony_ci  0x73, 0x93, 0x49, 0x3e, 0x73, 0x30, 0x9d, 0x59, 0xb9, 0x97, 0x56, 0x28,
1211013498266Sopenharmony_ci  0x10, 0x3b, 0xa5, 0xe1, 0x0b, 0x08, 0xbc, 0x6f, 0x60, 0x5e, 0xa7, 0x30,
1211113498266Sopenharmony_ci  0xc6, 0x29, 0x41, 0xcc, 0xa7, 0xf9, 0xa8, 0xbc, 0x0a, 0x57, 0x78, 0x5b,
1211213498266Sopenharmony_ci  0x7e, 0xd3, 0xb8, 0x28, 0x81, 0x37, 0xb9, 0x43, 0x5f, 0x92, 0x9d, 0x6f,
1211313498266Sopenharmony_ci  0xf9, 0x05, 0x2a, 0x17, 0x63, 0xf0, 0xf6, 0x14, 0xce, 0xe1, 0xde, 0xb2,
1211413498266Sopenharmony_ci  0xd7, 0x5f, 0xa0, 0xfe, 0x69, 0x26, 0xa8, 0x3d, 0x5a, 0x5f, 0xb9, 0xfe,
1211513498266Sopenharmony_ci  0x0c, 0xc6, 0x17, 0xea, 0xee, 0x8c, 0x74, 0x17, 0x96, 0x3f, 0x30, 0xf0,
1211613498266Sopenharmony_ci  0xc9, 0x5f, 0x27, 0xa9, 0xf3, 0x6b, 0x31, 0xe1, 0x47, 0xa3, 0xf4, 0x9a,
1211713498266Sopenharmony_ci  0xcb, 0xf9, 0x9a, 0xfb, 0xc7, 0x54, 0x31, 0xd1, 0x05, 0x0e, 0x54, 0x48,
1211813498266Sopenharmony_ci  0x24, 0x27, 0x0b, 0xa5, 0xf1, 0xa8, 0xcb, 0x03, 0x0d, 0x5c, 0xb3, 0xec,
1211913498266Sopenharmony_ci  0xec, 0x9c, 0xe4, 0x22, 0x06, 0xc2, 0xe3, 0xc2, 0x72, 0xb0, 0xe4, 0x54,
1212013498266Sopenharmony_ci  0xc9, 0xd6, 0x80, 0xc6, 0x5e, 0x73, 0xb1, 0xad, 0x94, 0xb8, 0xe9, 0xc3,
1212113498266Sopenharmony_ci  0x89, 0x04, 0x78, 0xd9, 0x2d, 0x18, 0x17, 0xf0, 0xea, 0xf9, 0xee, 0x0a,
1212213498266Sopenharmony_ci  0x09, 0x9b, 0x42, 0xe5, 0xfd, 0x16, 0x8f, 0x92, 0x43, 0x30, 0xca, 0xe6,
1212313498266Sopenharmony_ci  0xe7, 0x8d, 0x4a, 0x1d, 0xf1, 0x4e, 0x9f, 0xdf, 0xba, 0xd8, 0x69, 0xdf,
1212413498266Sopenharmony_ci  0x65, 0x70, 0xd4, 0x9a, 0x17, 0x98, 0xba, 0xd3, 0x60, 0xaf, 0x40, 0x49,
1212513498266Sopenharmony_ci  0x30, 0x60, 0xb2, 0x85, 0xf2, 0x81, 0x8b, 0x1d, 0xc9, 0x9c, 0xc6, 0x65,
1212613498266Sopenharmony_ci  0xf2, 0x2c, 0x4f, 0x42, 0xb3, 0xee, 0x79, 0x40, 0xad, 0x0a, 0xce, 0x03,
1212713498266Sopenharmony_ci  0xbd, 0x8a, 0x6f, 0x5d, 0x02, 0x1f, 0x43, 0x88, 0x38, 0x87, 0x03, 0x46,
1212813498266Sopenharmony_ci  0x3a, 0x81, 0xf6, 0xe8, 0x10, 0x7e, 0x06, 0x63, 0x0e, 0x1f, 0x6d, 0x3f,
1212913498266Sopenharmony_ci  0x7e, 0xb4, 0x71, 0xdd, 0x55, 0x05, 0xcd, 0xdf, 0x43, 0x70, 0x27, 0xb5,
1213013498266Sopenharmony_ci  0x7b, 0xc3, 0x4b, 0x44, 0x8a, 0xd0, 0xc5, 0x31, 0x3e, 0x8f, 0xc5, 0x40,
1213113498266Sopenharmony_ci  0x64, 0x43, 0xf0, 0xcf, 0x9d, 0x81, 0xbb, 0x0d, 0xca, 0x6c, 0x2a, 0x93,
1213213498266Sopenharmony_ci  0xf9, 0xdd, 0x66, 0xd7, 0xf9, 0x18, 0xcf, 0x0b, 0x4e, 0x4e, 0x2d, 0x22,
1213313498266Sopenharmony_ci  0x78, 0x8e, 0x86, 0x8b, 0x6c, 0x4a, 0x40, 0x09, 0xca, 0x2b, 0x89, 0x4d,
1213413498266Sopenharmony_ci  0xb6, 0x44, 0x61, 0x58, 0x06, 0xef, 0xe0, 0xb2, 0xaf, 0xd3, 0x3a, 0x3b,
1213513498266Sopenharmony_ci  0x99, 0xb7, 0xc7, 0xbb, 0x3a, 0x22, 0x36, 0x14, 0xc6, 0xdb, 0x54, 0xf3,
1213613498266Sopenharmony_ci  0x6c, 0x5a, 0x5d, 0x6c, 0xcb, 0xd0, 0xe9, 0xf7, 0xc1, 0x76, 0x00, 0xd1,
1213713498266Sopenharmony_ci  0x5a, 0xbf, 0xdb, 0x71, 0xe8, 0xcc, 0x36, 0xf7, 0xe9, 0x74, 0xb6, 0x7b,
1213813498266Sopenharmony_ci  0x7b, 0x3a, 0xdb, 0xbd, 0x2d, 0x9d, 0x3d, 0x7e, 0xf8, 0xe8, 0xc9, 0xf5,
1213913498266Sopenharmony_ci  0x74, 0xb6, 0x7b, 0x4f, 0x74, 0xb6, 0x7b, 0x57, 0x74, 0xe6, 0xec, 0xea,
1214013498266Sopenharmony_ci  0x7f, 0x13, 0x3a, 0x73, 0x28, 0xff, 0x2e, 0xe8, 0x4c, 0x73, 0x1a, 0xf7,
1214113498266Sopenharmony_ci  0x51, 0x58, 0xfb, 0xda, 0x83, 0x08, 0x96, 0x6c, 0x53, 0x84, 0x87, 0x41,
1214213498266Sopenharmony_ci  0x64, 0x53, 0x16, 0x7a, 0xe4, 0x15, 0x0f, 0x75, 0x5d, 0x4a, 0xdd, 0x91,
1214313498266Sopenharmony_ci  0x14, 0x45, 0xe1, 0x15, 0x01, 0xd5, 0xcb, 0x56, 0x73, 0x25, 0xd7, 0xc8,
1214413498266Sopenharmony_ci  0x7c, 0x8a, 0x4c, 0x7f, 0x2d, 0x5e, 0xd3, 0x28, 0x0b, 0x15, 0xc2, 0x1c,
1214513498266Sopenharmony_ci  0x1c, 0x55, 0xce, 0x82, 0xfd, 0xbc, 0x19, 0xd6, 0x12, 0xa1, 0xc3, 0x13,
1214613498266Sopenharmony_ci  0xbf, 0x79, 0x60, 0xce, 0x9d, 0xba, 0x5c, 0xb8, 0x73, 0x01, 0xb9, 0xad,
1214713498266Sopenharmony_ci  0x3f, 0xd6, 0xb7, 0xcf, 0x65, 0x65, 0x6a, 0x70, 0xd2, 0xa6, 0x9b, 0x04,
1214813498266Sopenharmony_ci  0x71, 0x05, 0x02, 0x99, 0xd4, 0xf9, 0x0c, 0xa2, 0x3d, 0x18, 0x70, 0x10,
1214913498266Sopenharmony_ci  0xb6, 0x29, 0xeb, 0xd2, 0x0d, 0xb1, 0x16, 0xe3, 0x04, 0x84, 0xc8, 0x88,
1215013498266Sopenharmony_ci  0x9a, 0xa8, 0x58, 0xf7, 0xc2, 0x8d, 0x24, 0x19, 0x21, 0x00, 0xc8, 0xca,
1215113498266Sopenharmony_ci  0x80, 0x36, 0x95, 0x49, 0x1a, 0x35, 0x99, 0xcf, 0x9a, 0xdb, 0x80, 0x62,
1215213498266Sopenharmony_ci  0x80, 0x3b, 0x1c, 0x22, 0x07, 0x10, 0x11, 0x18, 0x49, 0x68, 0x16, 0xa8,
1215313498266Sopenharmony_ci  0xaf, 0xec, 0x2d, 0x00, 0xbd, 0xae, 0x18, 0xb6, 0xe6, 0x0c, 0x27, 0xa6,
1215413498266Sopenharmony_ci  0x2b, 0xa9, 0xfd, 0xc8, 0x87, 0xb3, 0xb2, 0x93, 0xa8, 0x06, 0xa1, 0x9a,
1215513498266Sopenharmony_ci  0x8f, 0x93, 0x34, 0x21, 0x99, 0x48, 0x51, 0x89, 0x05, 0x6f, 0xa7, 0x10,
1215613498266Sopenharmony_ci  0x60, 0x2c, 0xa4, 0x2d, 0xad, 0x3c, 0x2f, 0x8a, 0xe6, 0x14, 0xe4, 0x49,
1215713498266Sopenharmony_ci  0x2d, 0x50, 0xea, 0x35, 0x37, 0x4a, 0xe6, 0xe2, 0xbb, 0xf9, 0xef, 0x02,
1215813498266Sopenharmony_ci  0x20, 0xd0, 0x26, 0x80, 0x3b, 0xb7, 0x4f, 0xba, 0x8d, 0xaf, 0x7e, 0x04,
1215913498266Sopenharmony_ci  0xdc, 0x91, 0xc5, 0x2f, 0x57, 0x3b, 0x01, 0xa6, 0xae, 0x12, 0x93, 0xbf,
1216013498266Sopenharmony_ci  0x7b, 0x20, 0x9a, 0xc0, 0x27, 0x2d, 0x4c, 0x53, 0xa4, 0x0d, 0xca, 0xf2,
1216113498266Sopenharmony_ci  0x56, 0xf7, 0xac, 0x90, 0x6d, 0x08, 0x5c, 0x22, 0x9e, 0x9b, 0xa0, 0xa4,
1216213498266Sopenharmony_ci  0x1a, 0xed, 0x68, 0x53, 0x13, 0x0c, 0x94, 0x90, 0xb7, 0x11, 0x01, 0x4d,
1216313498266Sopenharmony_ci  0x0f, 0x9f, 0x9e, 0x7a, 0x90, 0x7b, 0xb0, 0xa9, 0x01, 0xec, 0x3f, 0x25,
1216413498266Sopenharmony_ci  0x5b, 0x8e, 0xee, 0xb1, 0xef, 0x36, 0xf0, 0xa0, 0x2a, 0xef, 0x36, 0x41,
1216513498266Sopenharmony_ci  0x18, 0xb3, 0xda, 0x8f, 0xc5, 0x56, 0x81, 0x9f, 0x37, 0xe3, 0x19, 0x0e,
1216613498266Sopenharmony_ci  0x74, 0xbc, 0x98, 0xcd, 0x65, 0x3a, 0x5c, 0xac, 0x3e, 0xa3, 0x30, 0x26,
1216713498266Sopenharmony_ci  0xad, 0x8b, 0x26, 0xa0, 0x5d, 0x18, 0xe5, 0x15, 0x2a, 0x75, 0x81, 0x87,
1216813498266Sopenharmony_ci  0x51, 0x10, 0x14, 0x38, 0xd6, 0x4a, 0xcf, 0xb3, 0xb8, 0x61, 0x14, 0x8f,
1216913498266Sopenharmony_ci  0xfb, 0x65, 0xdd, 0xac, 0x43, 0xea, 0xd7, 0x4d, 0x19, 0xa7, 0xc3, 0xc5,
1217013498266Sopenharmony_ci  0x99, 0xea, 0x2d, 0x55, 0x64, 0x60, 0x80, 0x9b, 0x5c, 0x8b, 0xd0, 0x23,
1217113498266Sopenharmony_ci  0xb0, 0xd6, 0x77, 0xda, 0x67, 0xa0, 0xb5, 0x2b, 0x44, 0x0f, 0xaf, 0x03,
1217213498266Sopenharmony_ci  0x96, 0x9b, 0x6c, 0x74, 0x8d, 0x39, 0xa6, 0x63, 0x4b, 0x97, 0x89, 0x23,
1217313498266Sopenharmony_ci  0xb7, 0x31, 0xc7, 0x74, 0x74, 0xb3, 0x32, 0xdd, 0x77, 0x0d, 0xd7, 0x6e,
1217413498266Sopenharmony_ci  0x55, 0xfc, 0x51, 0xa8, 0x64, 0xa5, 0x23, 0xd1, 0x26, 0x82, 0x3e, 0x51,
1217513498266Sopenharmony_ci  0x80, 0x6d, 0x95, 0x0e, 0x4a, 0x9b, 0xa4, 0xdb, 0xa7, 0xdd, 0x0d, 0x4c,
1217613498266Sopenharmony_ci  0x7f, 0xd0, 0x3c, 0x3a, 0xf5, 0x68, 0x1e, 0x4f, 0xe0, 0x2e, 0x2c, 0xe6,
1217713498266Sopenharmony_ci  0x5e, 0x4c, 0x9a, 0x00, 0x07, 0xa9, 0x19, 0xf8, 0xe9, 0x71, 0xf4, 0x1c,
1217813498266Sopenharmony_ci  0x2f, 0x4d, 0xd4, 0xe0, 0xa3, 0x75, 0x92, 0x20, 0x1f, 0x6c, 0xef, 0x22,
1217913498266Sopenharmony_ci  0x9a, 0x6a, 0xe3, 0x9b, 0x8c, 0x0b, 0x6e, 0xc1, 0x87, 0x1e, 0xc0, 0x3b,
1218013498266Sopenharmony_ci  0x48, 0x0b, 0x15, 0x23, 0x5c, 0x90, 0x72, 0xce, 0xf9, 0x2a, 0x5c, 0xb4,
1218113498266Sopenharmony_ci  0xb4, 0xa0, 0x22, 0xcd, 0xc4, 0xa9, 0xd3, 0xa4, 0x9c, 0x66, 0x48, 0xed,
1218213498266Sopenharmony_ci  0x17, 0xa9, 0x6b, 0x80, 0x09, 0x9a, 0x31, 0xd6, 0x1b, 0x20, 0xa0, 0x78,
1218313498266Sopenharmony_ci  0x57, 0x58, 0xa3, 0xf1, 0xc1, 0xd3, 0xef, 0x37, 0x54, 0xbf, 0x57, 0x7f,
1218413498266Sopenharmony_ci  0x29, 0x19, 0x1b, 0x82, 0x18, 0x57, 0x58, 0x74, 0x8e, 0x71, 0xa8, 0x64,
1218513498266Sopenharmony_ci  0x07, 0xd3, 0xb1, 0x23, 0xb6, 0x2f, 0x67, 0xc7, 0xee, 0x1a, 0x46, 0xe1,
1218613498266Sopenharmony_ci  0x6a, 0xd1, 0xb7, 0x67, 0xc7, 0x6e, 0xe3, 0xab, 0x52, 0x65, 0x63, 0x60,
1218713498266Sopenharmony_ci  0xab, 0x19, 0x07, 0x27, 0xf0, 0x6f, 0x1a, 0x13, 0xf4, 0x7f, 0x9b, 0x5c,
1218813498266Sopenharmony_ci  0xf2, 0x82, 0xe0, 0xfc, 0xda, 0xb7, 0x21, 0xc2, 0xbd, 0x0b, 0x8c, 0x18,
1218913498266Sopenharmony_ci  0x6c, 0xfe, 0xfb, 0x37, 0x47, 0xcf, 0x0e, 0x5f, 0x1d, 0xfc, 0xc3, 0x58,
1219013498266Sopenharmony_ci  0xf5, 0xb0, 0x6d, 0x2d, 0x29, 0xf5, 0x3e, 0x4d, 0xaa, 0xab, 0xf7, 0x20,
1219113498266Sopenharmony_ci  0x7d, 0xc1, 0x97, 0xeb, 0xbb, 0x1b, 0x88, 0xec, 0x95, 0x7b, 0xf8, 0xfd,
1219213498266Sopenharmony_ci  0x67, 0x69, 0xa3, 0xa2, 0xa4, 0x20, 0x2a, 0x3a, 0xf5, 0x14, 0xc3, 0x95,
1219313498266Sopenharmony_ci  0x69, 0xab, 0x94, 0xeb, 0x87, 0xba, 0x66, 0x2c, 0xb4, 0x2a, 0x69, 0xe4,
1219413498266Sopenharmony_ci  0x12, 0x92, 0xc0, 0x95, 0x53, 0xd4, 0x4f, 0x7d, 0x30, 0xbe, 0xe9, 0x8a,
1219513498266Sopenharmony_ci  0xa5, 0x98, 0xac, 0xa6, 0xb2, 0x0f, 0xe2, 0x66, 0x11, 0x38, 0x7e, 0x02,
1219613498266Sopenharmony_ci  0x3c, 0xcf, 0x48, 0xaa, 0x68, 0x44, 0x8a, 0x6e, 0x0d, 0x76, 0x96, 0xab,
1219713498266Sopenharmony_ci  0x54, 0xce, 0xfa, 0xdd, 0x43, 0x59, 0x71, 0xa7, 0xf5, 0xdb, 0x90, 0x8a,
1219813498266Sopenharmony_ci  0x0e, 0x6c, 0x25, 0x4a, 0x79, 0xd3, 0xe7, 0xbe, 0x87, 0x8b, 0x49, 0xa3,
1219913498266Sopenharmony_ci  0xf8, 0x6b, 0x5c, 0x93, 0xda, 0x93, 0x4e, 0xf3, 0xb4, 0x16, 0xf4, 0xb2,
1220013498266Sopenharmony_ci  0x68, 0x1f, 0xfe, 0xfd, 0x0a, 0x04, 0x6e, 0xaf, 0xa0, 0x59, 0x52, 0x55,
1220113498266Sopenharmony_ci  0xe6, 0x6a, 0x31, 0x10, 0x3b, 0xf8, 0xa6, 0xb9, 0xb9, 0x06, 0x5a, 0x47,
1220213498266Sopenharmony_ci  0x06, 0x45, 0x45, 0x79, 0x12, 0x2e, 0xbd, 0xbd, 0xf6, 0xc0, 0xfe, 0xcf,
1220313498266Sopenharmony_ci  0xe9, 0xe9, 0x3f, 0x8e, 0x0f, 0xbf, 0xda, 0x47, 0xe1, 0xf1, 0xeb, 0xff,
1220413498266Sopenharmony_ci  0x13, 0xae, 0x46, 0x77, 0x92, 0x0a, 0x00, 0x90, 0x95, 0x30, 0xaf, 0xe6,
1220513498266Sopenharmony_ci  0xbe, 0x2b, 0xf6, 0xff, 0xfc, 0xf4, 0xec, 0xe5, 0xc9, 0xf1, 0xab, 0xa3,
1220613498266Sopenharmony_ci  0xa7, 0x5f, 0xed, 0xff, 0x84, 0xde, 0x07, 0xd0, 0x84, 0xae, 0xae, 0x6d,
1220713498266Sopenharmony_ci  0xd2, 0x3c, 0x19, 0x69, 0x9d, 0x45, 0xbf, 0xdd, 0x37, 0x87, 0x3f, 0xbe,
1220813498266Sopenharmony_ci  0x3f, 0x7c, 0xf3, 0xc3, 0x57, 0xfb, 0x17, 0x49, 0xd9, 0xc7, 0xe5, 0x58,
1220913498266Sopenharmony_ci  0xd6, 0x28, 0x22, 0x5c, 0xe5, 0x17, 0x59, 0x59, 0xe4, 0x18, 0x19, 0x04,
1221013498266Sopenharmony_ci  0xea, 0x4a, 0x99, 0xe1, 0xf6, 0x07, 0xc2, 0xa5, 0x9b, 0x6b, 0x7d, 0x6f,
1221113498266Sopenharmony_ci  0x95, 0x72, 0x40, 0x3f, 0xa6, 0x25, 0xbe, 0xa8, 0xb7, 0xb7, 0xb6, 0x64,
1221213498266Sopenharmony_ci  0x9b, 0x6e, 0x6c, 0xce, 0xfb, 0xbe, 0xcf, 0x41, 0x74, 0x93, 0xec, 0x6c,
1221313498266Sopenharmony_ci  0xe0, 0x70, 0x15, 0x34, 0x8f, 0x0e, 0xa7, 0x1f, 0xaa, 0xec, 0xf7, 0x34,
1221413498266Sopenharmony_ci  0xda, 0x27, 0x8d, 0xcc, 0x2b, 0xe7, 0x7d, 0xfa, 0x9c, 0xca, 0x79, 0x23,
1221513498266Sopenharmony_ci  0xaa, 0x30, 0xf3, 0x18, 0xf4, 0x40, 0x7c, 0xfb, 0xea, 0xfb, 0x93, 0x97,
1221613498266Sopenharmony_ci  0xff, 0x75, 0x68, 0x82, 0x9e, 0x67, 0x8b, 0x8a, 0x8c, 0xa4, 0x5f, 0x3f,
1221713498266Sopenharmony_ci  0xdc, 0xde, 0x51, 0x9c, 0x6f, 0x46, 0x99, 0x6d, 0xc7, 0x94, 0xc0, 0xee,
1221813498266Sopenharmony_ci  0x7c, 0x88, 0xa8, 0x3f, 0xba, 0x8c, 0x9a, 0xa0, 0xb9, 0xa6, 0x74, 0xaf,
1221913498266Sopenharmony_ci  0xfa, 0x2c, 0x09, 0x40, 0x92, 0x6e, 0x2a, 0x52, 0x84, 0xbc, 0xb8, 0x7f,
1222013498266Sopenharmony_ci  0xa9, 0x44, 0x42, 0x63, 0xd2, 0x60, 0x1a, 0xa7, 0x34, 0x06, 0x8c, 0x46,
1222113498266Sopenharmony_ci  0x22, 0x37, 0x31, 0x1a, 0x3f, 0xa8, 0x5a, 0xb2, 0xfa, 0xda, 0x58, 0x88,
1222213498266Sopenharmony_ci  0x3f, 0x1e, 0xa9, 0xb0, 0xd1, 0xfd, 0xf6, 0xd6, 0xce, 0x83, 0xa8, 0xf6,
1222313498266Sopenharmony_ci  0xcb, 0x1c, 0xa2, 0x7d, 0x60, 0xc9, 0xc5, 0x41, 0x6d, 0x00, 0x3f, 0xf0,
1222413498266Sopenharmony_ci  0xea, 0xcb, 0x7a, 0x5f, 0x85, 0x77, 0xd8, 0xc9, 0xbf, 0x24, 0x60, 0xe8,
1222513498266Sopenharmony_ci  0x82, 0x6a, 0xff, 0xf0, 0xd2, 0xea, 0xc1, 0xd7, 0x8a, 0x84, 0xcb, 0x55,
1222613498266Sopenharmony_ci  0xb2, 0x19, 0xae, 0x1e, 0xd1, 0x3b, 0x05, 0xe1, 0x39, 0x21, 0x77, 0xd3,
1222713498266Sopenharmony_ci  0xf4, 0x0c, 0x63, 0x89, 0x64, 0xab, 0x2a, 0x0d, 0x65, 0x0a, 0x4b, 0xf8,
1222813498266Sopenharmony_ci  0xa0, 0x1d, 0xe6, 0xc5, 0x25, 0x95, 0x49, 0x62, 0x98, 0x32, 0x2e, 0x2f,
1222913498266Sopenharmony_ci  0x8b, 0x20, 0xf1, 0x1a, 0xaf, 0xd7, 0x18, 0x1d, 0xd7, 0xfa, 0x58, 0x52,
1223013498266Sopenharmony_ci  0x32, 0x49, 0xf5, 0x0d, 0x7f, 0xbb, 0xc5, 0xd4, 0xb7, 0xfc, 0x06, 0x69,
1223113498266Sopenharmony_ci  0x2e, 0xe2, 0x52, 0xf3, 0xdc, 0x2d, 0x6e, 0x90, 0xae, 0xdd, 0x5b, 0x81,
1223213498266Sopenharmony_ci  0x80, 0x9c, 0xc1, 0x09, 0xf9, 0x6c, 0x7f, 0xb9, 0x33, 0xd8, 0x7e, 0xf4,
1223313498266Sopenharmony_ci  0x04, 0xab, 0x68, 0x6d, 0x5e, 0x47, 0x3a, 0xb2, 0x1c, 0x0e, 0xdd, 0xfc,
1223413498266Sopenharmony_ci  0x4e, 0x17, 0x09, 0xcc, 0x2e, 0xa6, 0x88, 0xe7, 0x7d, 0xfc, 0xd5, 0x63,
1223513498266Sopenharmony_ci  0x0f, 0x5c, 0x21, 0x85, 0x28, 0xe8, 0xad, 0x06, 0xac, 0xb1, 0x29, 0x8b,
1223613498266Sopenharmony_ci  0xf6, 0xd6, 0xa0, 0x8c, 0xce, 0x8a, 0x31, 0x6b, 0xe1, 0x58, 0x24, 0xda,
1223713498266Sopenharmony_ci  0x04, 0xe6, 0xb7, 0x8f, 0x8f, 0x03, 0x8f, 0x4e, 0xfa, 0x3c, 0x3c, 0x4b,
1223813498266Sopenharmony_ci  0x0a, 0x0d, 0x82, 0xfa, 0x76, 0xb4, 0x67, 0xca, 0x16, 0xe1, 0xf7, 0x01,
1223913498266Sopenharmony_ci  0xf4, 0x65, 0x89, 0xcc, 0xdf, 0xc7, 0xb6, 0x50, 0xe8, 0x40, 0x6d, 0x01,
1224013498266Sopenharmony_ci  0xd6, 0xe8, 0x6b, 0x65, 0xd4, 0x89, 0x5b, 0x1c, 0x7a, 0xcc, 0x41, 0x71,
1224113498266Sopenharmony_ci  0xc8, 0x76, 0x2a, 0x9f, 0xdb, 0x30, 0xaa, 0xa1, 0x31, 0x32, 0xcc, 0x12,
1224213498266Sopenharmony_ci  0x94, 0x53, 0x50, 0xd7, 0x22, 0x4a, 0xc7, 0xfb, 0x0c, 0xc6, 0x59, 0xa9,
1224313498266Sopenharmony_ci  0xbd, 0x0e, 0x01, 0xe0, 0x73, 0xae, 0xcd, 0xc1, 0x45, 0x8e, 0x82, 0xb9,
1224413498266Sopenharmony_ci  0x85, 0x8c, 0x65, 0xa2, 0x0c, 0xf0, 0x4c, 0xd2, 0x4b, 0x79, 0x76, 0xe2,
1224513498266Sopenharmony_ci  0x49, 0xa7, 0x41, 0xad, 0xcf, 0x70, 0x32, 0x1b, 0xcc, 0xf1, 0x82, 0x26,
1224613498266Sopenharmony_ci  0x49, 0x63, 0x5e, 0x6c, 0x48, 0x7c, 0xd0, 0x22, 0xbe, 0x8f, 0xd2, 0x1e,
1224713498266Sopenharmony_ci  0xdc, 0x3b, 0x24, 0xde, 0xb1, 0xbb, 0x9e, 0x9b, 0x75, 0x56, 0xc4, 0x53,
1224813498266Sopenharmony_ci  0x3c, 0xeb, 0x20, 0x7c, 0xe3, 0x09, 0x8a, 0xa6, 0x0a, 0xe3, 0xe7, 0xae,
1224913498266Sopenharmony_ci  0xa8, 0x96, 0x92, 0x18, 0x27, 0xd5, 0x79, 0xb4, 0x1e, 0x6f, 0x98, 0x72,
1225013498266Sopenharmony_ci  0x8b, 0x59, 0x6d, 0x94, 0x7a, 0x3f, 0x73, 0x2b, 0xc1, 0xe3, 0x3f, 0x5a,
1225113498266Sopenharmony_ci  0xcc, 0xb8, 0x5c, 0x29, 0x57, 0xf0, 0xe1, 0xc8, 0x5c, 0x25, 0x11, 0x21,
1225213498266Sopenharmony_ci  0x0a, 0xec, 0x6d, 0x93, 0x33, 0x01, 0x94, 0xbd, 0xa3, 0x9d, 0xb4, 0x3d,
1225313498266Sopenharmony_ci  0xea, 0x76, 0x5b, 0x79, 0x7a, 0xe9, 0xb6, 0x65, 0xad, 0x41, 0xa6, 0xbd,
1225413498266Sopenharmony_ci  0xd0, 0x95, 0x60, 0xf8, 0x3f, 0x7b, 0x9b, 0xd3, 0x8f, 0x19, 0x97, 0xa4,
1225513498266Sopenharmony_ci  0xe0, 0xca, 0x52, 0x74, 0xe8, 0x14, 0xd0, 0x10, 0x67, 0x70, 0xc9, 0x9e,
1225613498266Sopenharmony_ci  0xf7, 0x88, 0x85, 0xe5, 0x60, 0x7d, 0xa0, 0x49, 0x32, 0x92, 0x92, 0xb0,
1225713498266Sopenharmony_ci  0x65, 0x81, 0xde, 0x4c, 0xda, 0xee, 0x71, 0xd1, 0xaa, 0xa4, 0x04, 0x2b,
1225813498266Sopenharmony_ci  0x88, 0xd2, 0x36, 0xe3, 0xab, 0x73, 0xe5, 0x97, 0x90, 0xfe, 0x15, 0x8e,
1225913498266Sopenharmony_ci  0x7b, 0xb7, 0x47, 0x75, 0xb5, 0xb0, 0xf7, 0xbb, 0x29, 0xe9, 0xfb, 0x7b,
1226013498266Sopenharmony_ci  0xd4, 0xfb, 0x11, 0xba, 0xdb, 0xda, 0x06, 0xfa, 0x9b, 0x47, 0x3b, 0x5b,
1226113498266Sopenharmony_ci  0x3b, 0xdb, 0xd1, 0xf6, 0xce, 0xde, 0xf6, 0x93, 0xbd, 0xad, 0xad, 0x15,
1226213498266Sopenharmony_ci  0x8a, 0xfc, 0x42, 0x2b, 0xf1, 0x9d, 0x34, 0x43, 0x2c, 0x68, 0x35, 0xd5,
1226313498266Sopenharmony_ci  0x0b, 0x08, 0xfe, 0x2c, 0xa6, 0x3a, 0x6f, 0xea, 0xe5, 0x7c, 0xcb, 0x25,
1226413498266Sopenharmony_ci  0xc1, 0x67, 0x45, 0x9d, 0x7a, 0x70, 0xd9, 0xf5, 0xb4, 0xc2, 0xdc, 0x93,
1226513498266Sopenharmony_ci  0x68, 0xff, 0x87, 0xc3, 0xb7, 0x27, 0x2f, 0x8f, 0xde, 0x7c, 0x1d, 0x8c,
1226613498266Sopenharmony_ci  0xe0, 0x91, 0x2f, 0x91, 0x64, 0x41, 0xe0, 0xab, 0x4c, 0xfd, 0x06, 0xeb,
1226713498266Sopenharmony_ci  0x9f, 0xc7, 0x90, 0x07, 0xf5, 0x23, 0x73, 0x8d, 0xf2, 0x2c, 0xc7, 0x47,
1226813498266Sopenharmony_ci  0xda, 0xe7, 0x64, 0x34, 0x4a, 0xe7, 0x35, 0x03, 0xb6, 0xcb, 0xe3, 0x4e,
1226913498266Sopenharmony_ci  0x4a, 0x11, 0xb9, 0xef, 0xc9, 0x83, 0xb1, 0xd5, 0xd7, 0xdf, 0xb6, 0xcd,
1227013498266Sopenharmony_ci  0x6f, 0x3b, 0x3e, 0x2b, 0xe3, 0x2f, 0x76, 0x43, 0x84, 0xd4, 0xf6, 0xd4,
1227113498266Sopenharmony_ci  0x57, 0x5c, 0xaf, 0x43, 0x69, 0x93, 0xc2, 0xd2, 0xdc, 0x68, 0x51, 0x47,
1227213498266Sopenharmony_ci  0x7d, 0xea, 0x88, 0xde, 0x65, 0x71, 0x90, 0x0d, 0x27, 0x55, 0xf4, 0xf7,
1227313498266Sopenharmony_ci  0x77, 0x2f, 0x9f, 0xc6, 0x1c, 0x62, 0x42, 0xb7, 0xc7, 0x26, 0xb0, 0x26,
1227413498266Sopenharmony_ci  0x93, 0x69, 0xe2, 0x0d, 0x28, 0x0c, 0xc7, 0xe0, 0x64, 0xbf, 0x2e, 0xe6,
1227513498266Sopenharmony_ci  0x0c, 0x5d, 0x86, 0x82, 0x35, 0x57, 0x32, 0x74, 0x57, 0xb4, 0xdd, 0x1c,
1227613498266Sopenharmony_ci  0xa6, 0x28, 0x34, 0x5e, 0x84, 0x87, 0x2f, 0xc8, 0xaa, 0xd9, 0x7e, 0x6e,
1227713498266Sopenharmony_ci  0x3b, 0xf4, 0xdc, 0xb6, 0xff, 0xdc, 0x4e, 0xe8, 0xb9, 0x1d, 0xff, 0xb9,
1227813498266Sopenharmony_ci  0xdd, 0xd0, 0x73, 0xbb, 0x5d, 0xf2, 0xa8, 0x10, 0x57, 0xd3, 0x9f, 0x72,
1227913498266Sopenharmony_ci  0xc7, 0xee, 0x94, 0xaa, 0x53, 0x9a, 0x90, 0xde, 0x71, 0x72, 0x37, 0x3e,
1228013498266Sopenharmony_ci  0x72, 0xce, 0x5b, 0xbb, 0xd6, 0x9f, 0xb6, 0xb2, 0xb7, 0xd1, 0x52, 0xb1,
1228113498266Sopenharmony_ci  0xf1, 0xd7, 0xf5, 0xa3, 0xc8, 0x69, 0x50, 0x8c, 0x49, 0xe6, 0x93, 0xdd,
1228213498266Sopenharmony_ci  0x81, 0xaf, 0x90, 0xc9, 0x48, 0x3c, 0xbf, 0xe4, 0x4d, 0x3c, 0x91, 0xa1,
1228313498266Sopenharmony_ci  0xa0, 0x7a, 0xf6, 0x4c, 0x2e, 0xb3, 0xe6, 0x4d, 0xab, 0xed, 0x5d, 0x8d,
1228413498266Sopenharmony_ci  0x89, 0x88, 0xf6, 0xe5, 0x97, 0x45, 0x56, 0x73, 0xc1, 0xfa, 0x30, 0x6f,
1228513498266Sopenharmony_ci  0x70, 0x8a, 0xbd, 0xb3, 0x35, 0x99, 0x5f, 0x8b, 0xe8, 0xbd, 0xca, 0x96,
1228613498266Sopenharmony_ci  0x7a, 0xf7, 0x63, 0x67, 0x7c, 0x0c, 0x58, 0x03, 0x05, 0x5d, 0x11, 0xf9,
1228713498266Sopenharmony_ci  0xe3, 0xb2, 0x10, 0x33, 0xc1, 0xde, 0x51, 0xb0, 0xd1, 0xa1, 0x49, 0xdb,
1228813498266Sopenharmony_ci  0x11, 0x29, 0x6c, 0x9a, 0xd0, 0xeb, 0x27, 0xc9, 0x67, 0xe3, 0x48, 0x5f,
1228913498266Sopenharmony_ci  0xa1, 0x6a, 0x3e, 0xc9, 0x18, 0xc9, 0x16, 0xfa, 0x96, 0xc6, 0x1b, 0x43,
1229013498266Sopenharmony_ci  0x35, 0xa6, 0xa2, 0x22, 0x28, 0x7d, 0xbf, 0x7b, 0xfb, 0xca, 0xb3, 0x16,
1229113498266Sopenharmony_ci  0x28, 0x55, 0xe0, 0x0e, 0x0c, 0xaa, 0x74, 0x13, 0xae, 0xed, 0x6a, 0x93,
1229213498266Sopenharmony_ci  0x22, 0xad, 0xa4, 0xd3, 0xf3, 0x7a, 0x36, 0xbd, 0xc6, 0xef, 0x03, 0xef,
1229313498266Sopenharmony_ci  0x62, 0xdc, 0xd5, 0xf4, 0x8a, 0xa5, 0x7a, 0x2a, 0x1f, 0x65, 0x0b, 0xb1,
1229413498266Sopenharmony_ci  0xd0, 0xc9, 0xe1, 0x7d, 0xd5, 0x08, 0xb3, 0x56, 0x73, 0x68, 0x35, 0xa5,
1229513498266Sopenharmony_ci  0xe0, 0x76, 0x3c, 0xd6, 0xdb, 0x28, 0x65, 0x92, 0x68, 0x4a, 0xf2, 0xa6,
1229613498266Sopenharmony_ci  0xc6, 0x5d, 0x9a, 0x4a, 0x7b, 0xac, 0x3f, 0x72, 0x2a, 0x35, 0x87, 0x7c,
1229713498266Sopenharmony_ci  0xc5, 0x1e, 0x0c, 0x59, 0x4d, 0xb1, 0xf2, 0x1a, 0x5f, 0x65, 0x8a, 0x78,
1229813498266Sopenharmony_ci  0x97, 0x57, 0x78, 0x40, 0x49, 0x7c, 0x08, 0xad, 0x5e, 0xc5, 0xe1, 0xf3,
1229913498266Sopenharmony_ci  0xe1, 0xe2, 0xf0, 0xa9, 0x8d, 0xb4, 0x59, 0x9a, 0xf2, 0xd6, 0xa4, 0xbf,
1230013498266Sopenharmony_ci  0xcf, 0xa0, 0xc0, 0x36, 0xfa, 0x87, 0x69, 0xbe, 0x3f, 0x38, 0x3c, 0x79,
1230113498266Sopenharmony_ci  0xbf, 0xbd, 0xf3, 0xe4, 0xfd, 0x77, 0x4f, 0x5f, 0xbf, 0x3f, 0x79, 0x71,
1230213498266Sopenharmony_ci  0xb0, 0xf3, 0x70, 0x55, 0x70, 0x17, 0x69, 0x8c, 0xec, 0x16, 0x8b, 0xf2,
1230313498266Sopenharmony_ci  0x82, 0x12, 0xf1, 0x2d, 0xc8, 0x79, 0xa3, 0x43, 0x7b, 0x34, 0x5b, 0xcd,
1230413498266Sopenharmony_ci  0xf9, 0x1e, 0x2b, 0x78, 0x0f, 0x13, 0x63, 0x08, 0xdb, 0x77, 0x1f, 0x7f,
1230513498266Sopenharmony_ci  0x86, 0x8f, 0x26, 0x5a, 0x3b, 0x70, 0xb3, 0xda, 0x60, 0x3c, 0x68, 0xae,
1230613498266Sopenharmony_ci  0x42, 0x78, 0x6b, 0x26, 0x3c, 0x5e, 0x4e, 0x22, 0x3c, 0x73, 0x9f, 0x77,
1230713498266Sopenharmony_ci  0xaa, 0x9e, 0xbd, 0x93, 0xb7, 0xc7, 0xbd, 0xbe, 0x04, 0xee, 0x43, 0xdb,
1230813498266Sopenharmony_ci  0x31, 0xfc, 0x1d, 0xb1, 0x3d, 0x3f, 0x7a, 0xb8, 0xf5, 0xf0, 0x81, 0x80,
1230913498266Sopenharmony_ci  0xc4, 0xf0, 0x18, 0xa9, 0x42, 0x43, 0xa0, 0x12, 0x26, 0x7d, 0x69, 0xa0,
1231013498266Sopenharmony_ci  0x82, 0x88, 0x2a, 0x9d, 0x52, 0x17, 0xe8, 0xf9, 0x6b, 0xcc, 0x90, 0x7d,
1231113498266Sopenharmony_ci  0xb1, 0x7d, 0xad, 0x8f, 0xd9, 0xa5, 0x18, 0xcb, 0x1d, 0x4b, 0x2c, 0x87,
1231213498266Sopenharmony_ci  0x86, 0xd9, 0xf4, 0x9b, 0x61, 0xf0, 0x77, 0x25, 0xe5, 0xd9, 0x26, 0x2e,
1231313498266Sopenharmony_ci  0x1b, 0x0d, 0xd1, 0xac, 0xb2, 0x55, 0xf7, 0xfc, 0x71, 0x4a, 0xaa, 0x99,
1231413498266Sopenharmony_ci  0xb3, 0xac, 0x55, 0xdf, 0x38, 0xd1, 0x94, 0x4f, 0x77, 0x1c, 0x50, 0x58,
1231513498266Sopenharmony_ci  0xb0, 0xef, 0xf2, 0x05, 0x6e, 0x07, 0x35, 0xa4, 0xed, 0x48, 0x33, 0xdd,
1231613498266Sopenharmony_ci  0x37, 0xa8, 0x59, 0x86, 0xcf, 0x73, 0x20, 0x4c, 0xf7, 0x38, 0xd8, 0xd5,
1231713498266Sopenharmony_ci  0x68, 0x5f, 0x28, 0xa0, 0x45, 0xb8, 0x66, 0xdf, 0xf7, 0x59, 0x43, 0xed,
1231813498266Sopenharmony_ci  0x26, 0x5d, 0xf3, 0x24, 0x12, 0x9b, 0x29, 0xc2, 0x4c, 0xf1, 0x9d, 0x94,
1231913498266Sopenharmony_ci  0x3c, 0xd2, 0x22, 0x6b, 0xc4, 0x31, 0x3f, 0x2f, 0xc6, 0x5e, 0xf1, 0x26,
1232013498266Sopenharmony_ci  0x25, 0x2c, 0xcd, 0x29, 0x76, 0x67, 0x45, 0xd7, 0x82, 0x7b, 0xbd, 0x5a,
1232113498266Sopenharmony_ci  0xba, 0xa5, 0x49, 0x0c, 0xfd, 0x5c, 0xb7, 0xe5, 0x81, 0x2a, 0x01, 0x88,
1232213498266Sopenharmony_ci  0x04, 0xbd, 0xc9, 0xba, 0x58, 0x9e, 0x99, 0xe6, 0xe7, 0x48, 0x76, 0x77,
1232313498266Sopenharmony_ci  0xfb, 0x9f, 0x5f, 0x8e, 0x9d, 0xf9, 0x73, 0x79, 0x95, 0x3b, 0xd8, 0x70,
1232413498266Sopenharmony_ci  0x6a, 0x28, 0x08, 0x67, 0xa7, 0x02, 0x04, 0x4e, 0x49, 0x21, 0xc4, 0x22,
1232513498266Sopenharmony_ci  0x7f, 0xb7, 0x03, 0x2c, 0xec, 0x9a, 0xad, 0x16, 0x8b, 0x54, 0x63, 0xa3,
1232613498266Sopenharmony_ci  0x9b, 0xfb, 0xec, 0xf1, 0x20, 0x3f, 0x70, 0x9a, 0xe1, 0x16, 0xee, 0x70,
1232713498266Sopenharmony_ci  0xb7, 0x5d, 0xa6, 0x78, 0x9f, 0x12, 0xf1, 0x1f, 0xb5, 0xd7, 0xda, 0x58,
1232813498266Sopenharmony_ci  0x6b, 0xbf, 0x51, 0xf0, 0x0d, 0x6e, 0xf4, 0x73, 0xc4, 0x8a, 0x6b, 0x82,
1232913498266Sopenharmony_ci  0xe3, 0x39, 0x4a, 0x0e, 0x29, 0x35, 0x2a, 0xbe, 0x34, 0xe1, 0xf1, 0x82,
1233013498266Sopenharmony_ci  0x52, 0x05, 0xc6, 0xd0, 0xb3, 0x52, 0x4b, 0xad, 0x88, 0xdd, 0xfc, 0x8b,
1233113498266Sopenharmony_ci  0x00, 0x36, 0x2f, 0x46, 0xfc, 0x68, 0x2f, 0x15, 0x87, 0xea, 0x48, 0xd6,
1233213498266Sopenharmony_ci  0x49, 0x2b, 0xf4, 0x5a, 0xcd, 0x2e, 0x52, 0x93, 0x08, 0x3d, 0xcc, 0xad,
1233313498266Sopenharmony_ci  0xe6, 0xde, 0xe3, 0xfd, 0xf1, 0x5e, 0x36, 0x79, 0x4b, 0xe3, 0xb1, 0x87,
1233413498266Sopenharmony_ci  0xe9, 0x79, 0x72, 0x91, 0x15, 0x54, 0x43, 0x1a, 0x35, 0x44, 0x0c, 0xa3,
1233513498266Sopenharmony_ci  0xac, 0xb0, 0xf4, 0x83, 0x57, 0x22, 0xa9, 0x4d, 0x4b, 0xd0, 0x0e, 0x5c,
1233613498266Sopenharmony_ci  0x35, 0x65, 0x82, 0x75, 0x6c, 0x39, 0x22, 0x4a, 0xa5, 0xfe, 0xac, 0x59,
1233713498266Sopenharmony_ci  0x1b, 0x19, 0x49, 0x21, 0x31, 0x7a, 0xb7, 0x2c, 0x9b, 0x97, 0x98, 0x75,
1233813498266Sopenharmony_ci  0x1d, 0xf2, 0xa6, 0xec, 0xce, 0x3d, 0x04, 0x65, 0x6a, 0xcb, 0x2b, 0x13,
1233913498266Sopenharmony_ci  0x51, 0x53, 0x7d, 0xec, 0x8a, 0x6e, 0xbc, 0x21, 0x01, 0x6d, 0xff, 0xcf,
1234013498266Sopenharmony_ci  0x22, 0xa0, 0xed, 0xff, 0xa1, 0x04, 0xb4, 0x7d, 0x6f, 0x04, 0xb4, 0x7d,
1234113498266Sopenharmony_ci  0x3b, 0x02, 0xb2, 0xd1, 0xaf, 0x38, 0x75, 0x9f, 0x9c, 0x76, 0x6e, 0x47,
1234213498266Sopenharmony_ci  0x4e, 0x3b, 0xff, 0xb3, 0xc8, 0x69, 0xe7, 0x7f, 0x28, 0x39, 0xed, 0xdc,
1234313498266Sopenharmony_ci  0x1b, 0x39, 0xed, 0xdc, 0x0f, 0x39, 0xed, 0xde, 0x8e, 0x9c, 0x76, 0xef,
1234413498266Sopenharmony_ci  0x81, 0x9c, 0x26, 0x5e, 0xfa, 0x74, 0x74, 0xbd, 0xad, 0xd3, 0x04, 0xeb,
1234513498266Sopenharmony_ci  0xdd, 0xbd, 0xa1, 0xf3, 0x8d, 0xc9, 0x9e, 0x52, 0x2b, 0x81, 0xc2, 0xed,
1234613498266Sopenharmony_ci  0xb9, 0xa9, 0x5c, 0xe8, 0xad, 0xc2, 0xef, 0xc5, 0xca, 0x50, 0x0d, 0xae,
1234713498266Sopenharmony_ci  0xa5, 0x91, 0xdd, 0x7b, 0xa3, 0x91, 0xdd, 0x5b, 0xd1, 0xc8, 0x4e, 0x8b,
1234813498266Sopenharmony_ci  0x46, 0x96, 0xd4, 0x48, 0xb7, 0x01, 0xfc, 0x61, 0x2c, 0x1b, 0x0f, 0x31,
1234913498266Sopenharmony_ci  0x38, 0xc1, 0x2c, 0x3c, 0x94, 0xff, 0x9a, 0xe4, 0xf3, 0x51, 0xa8, 0x46,
1235013498266Sopenharmony_ci  0x8d, 0x64, 0x41, 0xe0, 0x26, 0xd6, 0x71, 0x92, 0x48, 0x69, 0x87, 0x35,
1235113498266Sopenharmony_ci  0x25, 0x0d, 0x2a, 0x20, 0xee, 0xc0, 0x45, 0x70, 0x7d, 0xc9, 0xab, 0x6d,
1235213498266Sopenharmony_ci  0xdc, 0xca, 0xce, 0xce, 0xd3, 0xf2, 0xda, 0xd3, 0x7b, 0x5f, 0xfb, 0xb2,
1235313498266Sopenharmony_ci  0xe2, 0xae, 0x68, 0x7a, 0x47, 0x33, 0xbb, 0xc3, 0xc9, 0x9d, 0xb0, 0x66,
1235413498266Sopenharmony_ci  0x54, 0x51, 0x00, 0x96, 0x26, 0x78, 0xac, 0x9e, 0xe1, 0xd1, 0x99, 0xe0,
1235513498266Sopenharmony_ci  0x61, 0xf3, 0x3b, 0xea, 0xc2, 0xb9, 0xe7, 0x1a, 0xf9, 0x1a, 0x8d, 0xbf,
1235613498266Sopenharmony_ci  0x9a, 0xe2, 0x50, 0x19, 0xa7, 0xc0, 0xc0, 0xc7, 0x7e, 0x4d, 0x5e, 0x3a,
1235713498266Sopenharmony_ci  0x8c, 0xae, 0xbb, 0x1a, 0x7d, 0x3e, 0xe8, 0xc4, 0x44, 0xdf, 0x81, 0x9c,
1235813498266Sopenharmony_ci  0xcf, 0xf8, 0x50, 0xde, 0xb5, 0x31, 0xc5, 0x7c, 0x92, 0x81, 0x3d, 0x78,
1235913498266Sopenharmony_ci  0xb1, 0xf5, 0x1c, 0xf4, 0xaf, 0x25, 0x72, 0xb5, 0x4c, 0x9e, 0xc4, 0xcd,
1236013498266Sopenharmony_ci  0xf7, 0x05, 0x30, 0x45, 0x3b, 0x91, 0xd2, 0xcb, 0x14, 0xd3, 0x42, 0xa5,
1236113498266Sopenharmony_ci  0xc4, 0xbd, 0x54, 0xed, 0x51, 0xca, 0x25, 0x9f, 0xb3, 0x6b, 0xa2, 0xd1,
1236213498266Sopenharmony_ci  0x9d, 0x19, 0x46, 0xdd, 0x41, 0x6d, 0xb7, 0x0d, 0x7f, 0xb4, 0x8d, 0xaf,
1236313498266Sopenharmony_ci  0x4c, 0x85, 0xce, 0xb8, 0x56, 0xb4, 0xf9, 0x99, 0x8d, 0x68, 0xee, 0x64,
1236413498266Sopenharmony_ci  0x32, 0x4a, 0xe3, 0xa4, 0x1a, 0x65, 0x59, 0xd8, 0xf3, 0xad, 0xb9, 0x17,
1236513498266Sopenharmony_ci  0x09, 0xa5, 0xc2, 0x46, 0xf4, 0x7c, 0x84, 0xb1, 0xbb, 0xb8, 0x37, 0xc8,
1236613498266Sopenharmony_ci  0x31, 0xf1, 0x26, 0xa7, 0xe2, 0xcd, 0xb8, 0x15, 0xc0, 0xd8, 0xcf, 0x0a,
1236713498266Sopenharmony_ci  0x8d, 0x2b, 0xc2, 0x9a, 0xb3, 0x5e, 0x52, 0x34, 0xb0, 0x6f, 0xfa, 0x3e,
1236813498266Sopenharmony_ci  0xad, 0x46, 0x65, 0x06, 0x74, 0x7a, 0x81, 0x56, 0x78, 0xcc, 0x2e, 0x15,
1236913498266Sopenharmony_ci  0x6c, 0x1f, 0x89, 0x94, 0x63, 0xbf, 0xb4, 0x26, 0x03, 0x10, 0xc4, 0x07,
1237013498266Sopenharmony_ci  0x79, 0x78, 0x5a, 0xcd, 0xf5, 0xe2, 0x1e, 0x46, 0x01, 0xe0, 0xf7, 0xa4,
1237113498266Sopenharmony_ci  0xa6, 0xc3, 0xdb, 0x14, 0xf4, 0x6a, 0xe3, 0xc0, 0x23, 0xad, 0x4c, 0xbc,
1237213498266Sopenharmony_ci  0x2c, 0x9f, 0x07, 0x95, 0xea, 0x6c, 0x96, 0x4d, 0x93, 0x52, 0x8e, 0x03,
1237313498266Sopenharmony_ci  0x47, 0x7b, 0xa3, 0xd1, 0x0f, 0x78, 0x1e, 0xda, 0x47, 0x0b, 0x29, 0x78,
1237413498266Sopenharmony_ci  0x70, 0x9e, 0x7e, 0xe4, 0xba, 0x0c, 0x34, 0xdb, 0xdc, 0x0f, 0xb0, 0x3c,
1237513498266Sopenharmony_ci  0xc7, 0xf8, 0x5f, 0xa6, 0xc3, 0x83, 0x93, 0xa7, 0x2f, 0x5f, 0x36, 0xaa,
1237613498266Sopenharmony_ci  0x38, 0xe0, 0xba, 0x51, 0x60, 0x3a, 0x97, 0x7c, 0xac, 0x66, 0xb0, 0x80,
1237713498266Sopenharmony_ci  0xa9, 0x26, 0xd7, 0x84, 0x82, 0x2c, 0x4c, 0x86, 0x2c, 0x70, 0xde, 0x8c,
1237813498266Sopenharmony_ci  0x4b, 0x90, 0x97, 0xe8, 0x30, 0x20, 0x6b, 0x44, 0x0e, 0xc3, 0xcc, 0xb0,
1237913498266Sopenharmony_ci  0x44, 0xfa, 0xf9, 0x62, 0x96, 0xe4, 0xcb, 0x6e, 0x3d, 0x13, 0xca, 0xce,
1238013498266Sopenharmony_ci  0x1d, 0x15, 0x82, 0xb7, 0x9e, 0xc0, 0xd5, 0x7c, 0x91, 0xd5, 0x99, 0xd8,
1238113498266Sopenharmony_ci  0x7f, 0xf3, 0xb4, 0x26, 0x8b, 0x01, 0x6e, 0xf2, 0x64, 0xe2, 0xe5, 0x29,
1238213498266Sopenharmony_ci  0xf3, 0x58, 0x08, 0xc1, 0x8e, 0xca, 0xa3, 0x61, 0xe0, 0x33, 0xed, 0x9f,
1238313498266Sopenharmony_ci  0xee, 0xb5, 0xee, 0x2d, 0xe9, 0xed, 0xb8, 0x1d, 0x70, 0x3e, 0x47, 0x65,
1238413498266Sopenharmony_ci  0x3a, 0xe6, 0x6a, 0x83, 0x95, 0x0f, 0xc5, 0x59, 0xa5, 0xf0, 0x75, 0xcd,
1238513498266Sopenharmony_ci  0xe7, 0x15, 0x9b, 0xc5, 0x94, 0xa0, 0xe8, 0x5b, 0xa0, 0xd8, 0x4b, 0xf5,
1238613498266Sopenharmony_ci  0x12, 0x53, 0x4a, 0xfc, 0x08, 0xfe, 0x02, 0xe2, 0x13, 0x54, 0x05, 0xaa,
1238713498266Sopenharmony_ci  0x9c, 0x1b, 0x28, 0x06, 0x4e, 0x84, 0x39, 0x2d, 0xce, 0x04, 0x86, 0x8c,
1238813498266Sopenharmony_ci  0x4a, 0xf6, 0x56, 0xff, 0x1d, 0xd2, 0xb7, 0xdc, 0x23, 0xf6, 0x39, 0xac,
1238913498266Sopenharmony_ci  0xa5, 0x4e, 0xf7, 0xb0, 0x3c, 0x77, 0x91, 0xc2, 0xc5, 0x6d, 0x06, 0x2e,
1239013498266Sopenharmony_ci  0x1b, 0x9b, 0x3d, 0x18, 0x38, 0xf7, 0xce, 0x6d, 0x43, 0x7b, 0xe5, 0xa7,
1239113498266Sopenharmony_ci  0xc3, 0x78, 0x7c, 0x89, 0x83, 0x2a, 0xbb, 0x6c, 0xb2, 0x64, 0xa1, 0xe3,
1239213498266Sopenharmony_ci  0x47, 0x16, 0xa5, 0x58, 0x5b, 0x19, 0xba, 0x87, 0xda, 0xd7, 0x3c, 0x90,
1239313498266Sopenharmony_ci  0x03, 0x8e, 0x0b, 0x8d, 0xab, 0x14, 0x8e, 0x22, 0xd6, 0x41, 0x51, 0xc7,
1239413498266Sopenharmony_ci  0x9d, 0x87, 0x70, 0x30, 0xe3, 0x0a, 0xed, 0x94, 0x42, 0x56, 0xaa, 0xeb,
1239513498266Sopenharmony_ci  0xcd, 0xa6, 0x71, 0xa1, 0xc7, 0x89, 0x08, 0x92, 0x73, 0x67, 0x92, 0x0b,
1239613498266Sopenharmony_ci  0xf8, 0x96, 0x83, 0x06, 0x30, 0x70, 0xa8, 0xbd, 0x2d, 0x6f, 0x12, 0xba,
1239713498266Sopenharmony_ci  0x2a, 0x12, 0x82, 0x73, 0x48, 0xaa, 0x94, 0x92, 0xbc, 0xe5, 0xc8, 0x0c,
1239813498266Sopenharmony_ci  0xd4, 0x3f, 0x79, 0x15, 0xad, 0xc1, 0x8a, 0xad, 0x51, 0xcc, 0x36, 0x67,
1239913498266Sopenharmony_ci  0x26, 0x24, 0xca, 0x64, 0x3b, 0x47, 0x17, 0xd2, 0xde, 0x1a, 0x95, 0xbd,
1240013498266Sopenharmony_ci  0x69, 0xf6, 0xe6, 0x79, 0x3d, 0x89, 0x0a, 0x30, 0xdc, 0xcb, 0xc6, 0x55,
1240113498266Sopenharmony_ci  0x4f, 0x1c, 0xbd, 0x3d, 0x24, 0xbd, 0x9e, 0x9f, 0xb3, 0x93, 0x5c, 0x14,
1240213498266Sopenharmony_ci  0xd9, 0x58, 0x6e, 0x37, 0xdd, 0x0b, 0x78, 0xcd, 0x49, 0x85, 0x11, 0x0c,
1240313498266Sopenharmony_ci  0x4e, 0x58, 0x50, 0x2a, 0x42, 0x19, 0x08, 0x65, 0x6a, 0x04, 0x4a, 0xd1,
1240413498266Sopenharmony_ci  0x31, 0x7b, 0x4f, 0x6f, 0xba, 0xd1, 0x52, 0xb4, 0x5d, 0xb3, 0xc2, 0xac,
1240513498266Sopenharmony_ci  0xf5, 0x67, 0x3e, 0xaf, 0x2d, 0xb2, 0xbb, 0xb7, 0x68, 0xe3, 0x66, 0x37,
1240613498266Sopenharmony_ci  0xb0, 0xb0, 0x7d, 0x3c, 0x90, 0x9b, 0x2b, 0x3a, 0xf4, 0x6f, 0x71, 0x30,
1240713498266Sopenharmony_ci  0x6f, 0x79, 0x2e, 0xad, 0x1a, 0xf1, 0x04, 0xe4, 0xc0, 0x2d, 0xff, 0x9c,
1240813498266Sopenharmony_ci  0xc2, 0x14, 0x3c, 0x61, 0x8a, 0x74, 0xfa, 0xaa, 0x19, 0x83, 0x85, 0x4d,
1240913498266Sopenharmony_ci  0xbb, 0xce, 0x76, 0xba, 0x1a, 0x60, 0xbf, 0x4a, 0x72, 0x8f, 0xd1, 0x86,
1241013498266Sopenharmony_ci  0x45, 0x41, 0xea, 0x87, 0xdd, 0xd4, 0x89, 0x12, 0x6e, 0x8e, 0x8d, 0x6f,
1241113498266Sopenharmony_ci  0x96, 0xc8, 0xf4, 0xea, 0xbf, 0x51, 0x26, 0xa3, 0x3d, 0x2f, 0x77, 0x8d,
1241213498266Sopenharmony_ci  0xb6, 0x64, 0x5a, 0x1e, 0xdc, 0x8a, 0xe0, 0x70, 0x48, 0xcd, 0x0b, 0x41,
1241313498266Sopenharmony_ci  0x38, 0xdb, 0x8a, 0xba, 0xe6, 0x0d, 0xc8, 0x64, 0x27, 0x44, 0x26, 0x01,
1241413498266Sopenharmony_ci  0x20, 0x5e, 0x43, 0x27, 0x12, 0x96, 0x57, 0xd5, 0x30, 0x02, 0x62, 0x87,
1241513498266Sopenharmony_ci  0x48, 0x0b, 0xc2, 0xc8, 0xed, 0xe6, 0xf3, 0xee, 0x8b, 0xae, 0x14, 0x00,
1241613498266Sopenharmony_ci  0xc9, 0xf9, 0xef, 0x46, 0x0d, 0x0d, 0x6e, 0x79, 0x3f, 0xd4, 0x10, 0x0c,
1241713498266Sopenharmony_ci  0xb3, 0xbc, 0x11, 0x39, 0xd0, 0xa0, 0xee, 0x91, 0x1e, 0xda, 0xfb, 0xff,
1241813498266Sopenharmony_ci  0x87, 0x2a, 0x18, 0x0d, 0x0d, 0xe3, 0x7a, 0x15, 0x83, 0x35, 0x8c, 0xbb,
1241913498266Sopenharmony_ci  0x50, 0x30, 0xa4, 0x44, 0x51, 0xef, 0xcf, 0x78, 0xc9, 0x7a, 0x89, 0xdc,
1242013498266Sopenharmony_ci  0x37, 0x6b, 0x27, 0x2d, 0xcb, 0xb0, 0x34, 0x7f, 0x1b, 0x71, 0x7e, 0x99,
1242113498266Sopenharmony_ci  0x34, 0xbf, 0x9a, 0x30, 0xbf, 0x5c, 0x9a, 0x57, 0x71, 0x5e, 0xf4, 0x6f,
1242213498266Sopenharmony_ci  0x23, 0xd0, 0x37, 0x25, 0x7a, 0x38, 0x5d, 0x2a, 0xcf, 0x93, 0x38, 0xff,
1242313498266Sopenharmony_ci  0x3f, 0x4a, 0x9a, 0x57, 0x42, 0x5e, 0x22, 0xc5, 0xdf, 0x6b, 0x8d, 0x00,
1242413498266Sopenharmony_ci  0xb3, 0x2c, 0xab, 0x48, 0xf1, 0x1a, 0xff, 0xd7, 0x3c, 0xea, 0x7d, 0x4f,
1242513498266Sopenharmony_ci  0xde, 0xe9, 0x37, 0x2f, 0xf4, 0x8e, 0x10, 0x19, 0xcb, 0x73, 0x96, 0x48,
1242613498266Sopenharmony_ci  0x19, 0xae, 0x54, 0xe1, 0xb2, 0x84, 0x30, 0x3a, 0x88, 0x1d, 0x94, 0xcb,
1242713498266Sopenharmony_ci  0x32, 0xb0, 0x5e, 0x49, 0x2c, 0xe5, 0xc2, 0xf7, 0xb1, 0xc6, 0xc8, 0xd7,
1242813498266Sopenharmony_ci  0x61, 0x53, 0xd3, 0x53, 0x96, 0x27, 0x22, 0xad, 0x31, 0x41, 0x26, 0xe5,
1242913498266Sopenharmony_ci  0x77, 0x81, 0x3a, 0xde, 0x8a, 0xf1, 0x01, 0x3b, 0x4c, 0xe6, 0xa6, 0x00,
1243013498266Sopenharmony_ci  0x4c, 0x88, 0x1c, 0x99, 0xf0, 0xd6, 0xbb, 0x03, 0xfa, 0x1c, 0x41, 0x11,
1243113498266Sopenharmony_ci  0x6e, 0xff, 0xfc, 0x4f, 0x8c, 0xcb, 0xb2, 0x22, 0xb3, 0x4e, 0x86, 0x15,
1243213498266Sopenharmony_ci  0x2e, 0x78, 0xed, 0x36, 0xe7, 0x2c, 0xfb, 0x29, 0xee, 0xd6, 0x62, 0x3e,
1243313498266Sopenharmony_ci  0x2d, 0x92, 0x71, 0x4c, 0x61, 0xde, 0x41, 0x9e, 0x4d, 0x3b, 0x6f, 0x11,
1243413498266Sopenharmony_ci  0xec, 0x9b, 0xc1, 0xff, 0x54, 0x19, 0x46, 0xd2, 0x54, 0x0a, 0x41, 0x2e,
1243513498266Sopenharmony_ci  0x24, 0xab, 0xef, 0xbb, 0xb7, 0xaf, 0xba, 0x5c, 0x05, 0x8a, 0x6d, 0xc1,
1243613498266Sopenharmony_ci  0xaf, 0x91, 0xc9, 0x24, 0x6b, 0x27, 0x15, 0xc0, 0xeb, 0x92, 0x1e, 0x90,
1243713498266Sopenharmony_ci  0xcc, 0x8d, 0x6c, 0xd9, 0xc6, 0x52, 0xb3, 0x7d, 0x2b, 0x9b, 0xc5, 0x46,
1243813498266Sopenharmony_ci  0x30, 0x66, 0x50, 0xc0, 0x30, 0x52, 0x0a, 0x9a, 0x74, 0x33, 0x5b, 0xa8,
1243913498266Sopenharmony_ci  0x28, 0x65, 0xca, 0x0a, 0x64, 0xdb, 0x9a, 0x83, 0xf9, 0x18, 0x18, 0xa5,
1244013498266Sopenharmony_ci  0xf9, 0x8f, 0x62, 0xc1, 0x61, 0x9d, 0x0c, 0x49, 0x8a, 0x86, 0x97, 0x29,
1244113498266Sopenharmony_ci  0x72, 0xc7, 0x6a, 0x4a, 0x09, 0x19, 0x9b, 0x1b, 0x9a, 0x25, 0x4c, 0x3b,
1244213498266Sopenharmony_ci  0xcf, 0xf0, 0x35, 0x45, 0x79, 0xe5, 0x6b, 0x56, 0x94, 0xbe, 0x45, 0xb5,
1244313498266Sopenharmony_ci  0x0c, 0xc9, 0xb4, 0x2e, 0xb1, 0xb3, 0xcd, 0xe9, 0xd3, 0xc8, 0x81, 0x43,
1244413498266Sopenharmony_ci  0xc9, 0x23, 0x59, 0xfe, 0xa1, 0x0a, 0x66, 0xe0, 0x5c, 0x15, 0x8b, 0xb2,
1244513498266Sopenharmony_ci  0xd5, 0xa1, 0xc1, 0xb8, 0x71, 0x96, 0xbd, 0xb1, 0x1a, 0x8b, 0xca, 0x17,
1244613498266Sopenharmony_ci  0x16, 0x28, 0xb5, 0x0b, 0x2e, 0x92, 0x5a, 0xe3, 0x22, 0xdb, 0xab, 0x28,
1244713498266Sopenharmony_ci  0x01, 0xbe, 0xb8, 0x8a, 0x62, 0xc8, 0xb2, 0x7b, 0x91, 0x9d, 0x79, 0xa9,
1244813498266Sopenharmony_ci  0x37, 0x45, 0x49, 0x51, 0xb7, 0x92, 0x6f, 0x22, 0xeb, 0x92, 0x4e, 0x80,
1244913498266Sopenharmony_ci  0x6a, 0xe1, 0xbc, 0xd0, 0xad, 0x8e, 0x10, 0x0a, 0x76, 0xe5, 0x4a, 0xf2,
1245013498266Sopenharmony_ci  0xb8, 0xc8, 0x07, 0xbf, 0x6c, 0x84, 0x30, 0x1f, 0x84, 0x18, 0x9c, 0x21,
1245113498266Sopenharmony_ci  0x89, 0xf9, 0xcd, 0xd0, 0x42, 0xab, 0xbf, 0x92, 0xae, 0x37, 0xec, 0x30,
1245213498266Sopenharmony_ci  0x6c, 0x51, 0xa6, 0xef, 0x67, 0x58, 0xf1, 0x88, 0x40, 0x1f, 0x46, 0x70,
1245313498266Sopenharmony_ci  0x0b, 0xc1, 0xa1, 0x08, 0xf8, 0xb2, 0xe8, 0x32, 0x6f, 0xf6, 0x8d, 0x32,
1245413498266Sopenharmony_ci  0xc1, 0x7a, 0x82, 0x25, 0x84, 0xce, 0xa6, 0x29, 0xa5, 0xe4, 0x6c, 0xa8,
1245513498266Sopenharmony_ci  0x93, 0x04, 0xee, 0xee, 0x2c, 0x77, 0x39, 0x4d, 0x12, 0x4c, 0xc2, 0x12,
1245613498266Sopenharmony_ci  0x7b, 0xe6, 0xc1, 0x94, 0x52, 0x9b, 0xea, 0x54, 0xc3, 0x1d, 0x9d, 0x3e,
1245713498266Sopenharmony_ci  0x06, 0x3d, 0x2c, 0x4b, 0x1f, 0x69, 0x2f, 0x52, 0xee, 0xa2, 0xbd, 0x38,
1245813498266Sopenharmony_ci  0x88, 0x01, 0xc8, 0xb0, 0x91, 0x36, 0xa0, 0x4c, 0x7b, 0xc7, 0xee, 0x71,
1245913498266Sopenharmony_ci  0xa8, 0xad, 0xa1, 0x51, 0xd2, 0x0d, 0xa5, 0x8a, 0xfa, 0x3c, 0x90, 0x0a,
1246013498266Sopenharmony_ci  0xa6, 0xaa, 0x53, 0x97, 0x2c, 0x8d, 0x44, 0xe4, 0x8c, 0x37, 0x28, 0xd2,
1246113498266Sopenharmony_ci  0x06, 0xd9, 0xd5, 0x23, 0x69, 0x8e, 0x23, 0x11, 0x53, 0x12, 0xb8, 0xfc,
1246213498266Sopenharmony_ci  0xf0, 0x6e, 0xe4, 0x22, 0x1d, 0x69, 0xa1, 0xb5, 0x07, 0xc9, 0xe8, 0xd4,
1246313498266Sopenharmony_ci  0x2e, 0x22, 0xd0, 0x9e, 0xf5, 0x93, 0x0d, 0x26, 0x33, 0x5c, 0x98, 0xe3,
1246413498266Sopenharmony_ci  0x77, 0xa7, 0x12, 0x5d, 0x75, 0xc3, 0x8b, 0xf4, 0x1f, 0xad, 0xca, 0x4e,
1246513498266Sopenharmony_ci  0xe8, 0x79, 0xf4, 0x99, 0x9b, 0xca, 0x01, 0xc4, 0x12, 0x8a, 0xdc, 0x78,
1246613498266Sopenharmony_ci  0x2d, 0x67, 0xb1, 0xb7, 0xce, 0xc8, 0x41, 0x50, 0xf9, 0x80, 0x6d, 0x3b,
1246713498266Sopenharmony_ci  0xc4, 0x37, 0xfc, 0xc6, 0xfe, 0x42, 0xad, 0xcc, 0x93, 0xac, 0x34, 0xbb,
1246813498266Sopenharmony_ci  0x21, 0x64, 0xe9, 0xa3, 0x3d, 0xd3, 0x6b, 0x9c, 0x9e, 0x56, 0xb0, 0xb5,
1246913498266Sopenharmony_ci  0x69, 0x20, 0xac, 0x0d, 0xb9, 0xb4, 0x81, 0x05, 0xea, 0xa1, 0x44, 0x33,
1247013498266Sopenharmony_ci  0x84, 0xd5, 0xed, 0x39, 0xec, 0x0b, 0x7a, 0xf6, 0xae, 0x65, 0x77, 0x1c,
1247113498266Sopenharmony_ci  0x51, 0x52, 0x9e, 0x91, 0x83, 0xbe, 0x1f, 0x91, 0x57, 0x8d, 0xcb, 0x78,
1247213498266Sopenharmony_ci  0x92, 0xc6, 0xa4, 0x71, 0xd3, 0xd2, 0xbf, 0x2a, 0x24, 0x01, 0x21, 0x55,
1247313498266Sopenharmony_ci  0x61, 0x46, 0x99, 0xfa, 0x70, 0x62, 0x0e, 0x10, 0xb9, 0x14, 0xa4, 0xc2,
1247413498266Sopenharmony_ci  0x4f, 0x75, 0x80, 0x0c, 0xbe, 0xd4, 0x89, 0x9c, 0x6f, 0x8f, 0x70, 0xe8,
1247513498266Sopenharmony_ci  0x12, 0x20, 0x06, 0x24, 0x83, 0xd2, 0xa2, 0xa3, 0x30, 0x4a, 0x82, 0x5f,
1247613498266Sopenharmony_ci  0x65, 0xe2, 0xdb, 0xe3, 0xd0, 0xd8, 0x39, 0x53, 0x14, 0x4b, 0x98, 0x9d,
1247713498266Sopenharmony_ci  0xd5, 0x1c, 0x59, 0xda, 0xc3, 0xe0, 0xdf, 0x87, 0xbb, 0x3b, 0x3b, 0x11,
1247813498266Sopenharmony_ci  0x4b, 0xfe, 0x5c, 0x12, 0x86, 0x93, 0x1c, 0xb1, 0x42, 0xa8, 0x20, 0x2a,
1247913498266Sopenharmony_ci  0xf1, 0xad, 0xaf, 0xb8, 0xd3, 0x78, 0x63, 0x7b, 0x76, 0x41, 0x45, 0x3d,
1248013498266Sopenharmony_ci  0xc1, 0xdd, 0x02, 0x81, 0x62, 0x1a, 0x0d, 0x8b, 0xf1, 0x95, 0x6d, 0x15,
1248113498266Sopenharmony_ci  0xc8, 0xa5, 0x44, 0xee, 0x0b, 0xbc, 0x48, 0xe0, 0x40, 0x23, 0x89, 0x30,
1248213498266Sopenharmony_ci  0xae, 0xc2, 0x2a, 0xaa, 0x4a, 0xa6, 0x74, 0x7f, 0x8e, 0xa8, 0x44, 0x31,
1248313498266Sopenharmony_ci  0x92, 0x61, 0x4e, 0xbf, 0x82, 0x9a, 0x37, 0x59, 0x94, 0x78, 0x25, 0x90,
1248413498266Sopenharmony_ci  0x91, 0x09, 0x18, 0xe5, 0x65, 0x00, 0xf7, 0xa0, 0xb9, 0xe1, 0x9f, 0x6e,
1248513498266Sopenharmony_ci  0xa7, 0xea, 0xca, 0x56, 0x39, 0xed, 0x4e, 0xf5, 0xea, 0x78, 0xbe, 0x97,
1248613498266Sopenharmony_ci  0xcd, 0xce, 0x7e, 0xde, 0x8e, 0xb7, 0xb7, 0xb6, 0xb6, 0x7e, 0x1d, 0xcc,
1248713498266Sopenharmony_ci  0x91, 0x70, 0x39, 0x5b, 0x16, 0x7e, 0x0e, 0x1a, 0xd9, 0xf4, 0x1d, 0x32,
1248813498266Sopenharmony_ci  0x8e, 0x33, 0xad, 0xde, 0xbf, 0xf0, 0x9f, 0xed, 0x3e, 0xfe, 0xdc, 0xf9,
1248913498266Sopenharmony_ci  0x77, 0x6f, 0x35, 0x39, 0xe7, 0x3b, 0x3c, 0x9d, 0x67, 0x28, 0xf6, 0x59,
1249013498266Sopenharmony_ci  0x00, 0x26, 0xf8, 0xf7, 0x27, 0x4e, 0x3a, 0xd3, 0xe2, 0x0f, 0x20, 0x7e,
1249113498266Sopenharmony_ci  0x8e, 0x09, 0x8b, 0x06, 0xe8, 0xa9, 0x21, 0x7b, 0x96, 0xd3, 0x18, 0x9e,
1249213498266Sopenharmony_ci  0x01, 0x8a, 0xc0, 0xd4, 0xd6, 0xc4, 0x93, 0x3c, 0x81, 0x3f, 0x6e, 0xb4,
1249313498266Sopenharmony_ci  0x60, 0x65, 0x93, 0x31, 0x19, 0x31, 0xe6, 0x59, 0x3a, 0x4a, 0x25, 0xdb,
1249413498266Sopenharmony_ci  0x15, 0xf4, 0xa8, 0x45, 0xc5, 0x22, 0x71, 0xc2, 0x5c, 0xfd, 0x2f, 0x41,
1249513498266Sopenharmony_ci  0x71, 0x10, 0x59, 0x46, 0xdf, 0x15, 0x55, 0xec, 0x25, 0x1b, 0xf1, 0x28,
1249613498266Sopenharmony_ci  0x50, 0x20, 0xe2, 0x9c, 0x93, 0xea, 0x0a, 0x14, 0xb6, 0x8f, 0xc4, 0x30,
1249713498266Sopenharmony_ci  0xd9, 0x7a, 0x06, 0x37, 0xb5, 0x4f, 0xfe, 0x74, 0xda, 0x89, 0x1e, 0x26,
1249813498266Sopenharmony_ci  0x64, 0xb2, 0xc5, 0xc1, 0xe0, 0xa4, 0x84, 0xc8, 0x58, 0xa5, 0xca, 0x53,
1249913498266Sopenharmony_ci  0x0b, 0x5f, 0xb3, 0xd7, 0x91, 0xab, 0xa6, 0xac, 0x44, 0x24, 0x21, 0xe5,
1250013498266Sopenharmony_ci  0xcf, 0x6b, 0x7f, 0x59, 0x8b, 0xd6, 0xe7, 0x20, 0xe4, 0x6f, 0xf4, 0x45,
1250113498266Sopenharmony_ci  0xd2, 0xa8, 0x8c, 0x8f, 0x8b, 0x6d, 0xf5, 0xbe, 0xc4, 0x6b, 0xd3, 0x3e,
1250213498266Sopenharmony_ci  0xab, 0x98, 0xe0, 0xde, 0x79, 0x30, 0x21, 0xe8, 0x59, 0x38, 0x42, 0x3c,
1250313498266Sopenharmony_ci  0x6f, 0xe3, 0x3c, 0x63, 0x14, 0x78, 0x91, 0x6b, 0x70, 0xe4, 0x93, 0x02,
1250413498266Sopenharmony_ci  0xaf, 0x28, 0x65, 0x47, 0xb4, 0x9f, 0x14, 0x81, 0x9b, 0x94, 0x1f, 0xbc,
1250513498266Sopenharmony_ci  0x8a, 0x63, 0x8e, 0x40, 0x10, 0x82, 0xd8, 0x75, 0xb7, 0xfb, 0xfe, 0x8e,
1250613498266Sopenharmony_ci  0x92, 0xd3, 0x09, 0x92, 0x02, 0x22, 0x86, 0xac, 0x90, 0xff, 0x65, 0x5f,
1250713498266Sopenharmony_ci  0xfe, 0x8a, 0x97, 0x8d, 0xee, 0x4f, 0x7c, 0xdf, 0x79, 0x1d, 0xb4, 0x97,
1250813498266Sopenharmony_ci  0xcd, 0x49, 0x51, 0xdc, 0xa8, 0xff, 0x6f, 0x56, 0x3b, 0xd8, 0xce, 0xdb,
1250913498266Sopenharmony_ci  0xf4, 0x26, 0x89, 0x5e, 0xb7, 0x79, 0xbb, 0xf7, 0x17, 0x9a, 0xfd, 0x9f,
1251013498266Sopenharmony_ci  0x77, 0xb6, 0x60, 0xa4, 0x2b, 0x9e, 0xe9, 0x36, 0x19, 0xd3, 0xf9, 0xd5,
1251113498266Sopenharmony_ci  0x83, 0xde, 0x88, 0x75, 0x79, 0xd2, 0x2a, 0x04, 0x82, 0xa3, 0xd8, 0x87,
1251213498266Sopenharmony_ci  0x1f, 0x9e, 0x07, 0xc9, 0x14, 0x5d, 0x44, 0xf2, 0xa2, 0x6b, 0xa1, 0x1e,
1251313498266Sopenharmony_ci  0x9d, 0x07, 0x70, 0x32, 0x41, 0x50, 0x44, 0xbf, 0x16, 0x02, 0x31, 0x5d,
1251413498266Sopenharmony_ci  0xa9, 0x1f, 0x12, 0x2e, 0xd3, 0x76, 0x81, 0x48, 0x0d, 0x43, 0x93, 0x66,
1251513498266Sopenharmony_ci  0xa1, 0xd1, 0xf5, 0x6a, 0x43, 0x49, 0x87, 0x8c, 0xfd, 0xcd, 0x62, 0x15,
1251613498266Sopenharmony_ci  0xad, 0x78, 0x29, 0x16, 0x0e, 0x85, 0xd2, 0x05, 0x2a, 0x1e, 0x2f, 0x61,
1251713498266Sopenharmony_ci  0x2e, 0x7e, 0x40, 0x1c, 0x64, 0x5d, 0x31, 0xca, 0x7a, 0xb2, 0xf9, 0x3d,
1251813498266Sopenharmony_ci  0x3f, 0x46, 0xa6, 0x37, 0x91, 0x6f, 0x60, 0x32, 0x1b, 0x9c, 0x9f, 0x42,
1251913498266Sopenharmony_ci  0xfb, 0xc0, 0x4e, 0xe7, 0x24, 0x3a, 0x5b, 0x60, 0xa8, 0xc4, 0x30, 0xe1,
1252013498266Sopenharmony_ci  0xcc, 0x2e, 0x53, 0xb9, 0x74, 0xa0, 0xe3, 0x68, 0x1f, 0xa0, 0x05, 0x42,
1252113498266Sopenharmony_ci  0xca, 0x50, 0x71, 0xd0, 0x6a, 0x31, 0x14, 0xa5, 0x9a, 0x06, 0x43, 0x49,
1252213498266Sopenharmony_ci  0xfa, 0xd0, 0xe4, 0xb3, 0x97, 0x4f, 0x4f, 0xa9, 0xdc, 0x62, 0x9f, 0xd0,
1252313498266Sopenharmony_ci  0xd3, 0xfb, 0x84, 0xa9, 0xcd, 0xb5, 0x13, 0xfc, 0xd1, 0xd1, 0xad, 0x2e,
1252413498266Sopenharmony_ci  0x49, 0x33, 0x89, 0xc5, 0xc2, 0xb1, 0x25, 0xd9, 0xc8, 0xd6, 0x73, 0x99,
1252513498266Sopenharmony_ci  0x55, 0x52, 0x20, 0x52, 0x95, 0xe5, 0x28, 0xfa, 0x0e, 0xc7, 0x1d, 0x8a,
1252613498266Sopenharmony_ci  0x2f, 0x52, 0xb4, 0x01, 0xf4, 0x5a, 0x71, 0x28, 0xd7, 0xdc, 0x58, 0x60,
1252713498266Sopenharmony_ci  0xc5, 0xac, 0x48, 0x8b, 0x6a, 0x8c, 0x5a, 0xc4, 0xa7, 0x68, 0x55, 0xfb,
1252813498266Sopenharmony_ci  0xbe, 0x1d, 0x4b, 0x8a, 0xbd, 0x50, 0x3b, 0x9a, 0x5c, 0x96, 0x98, 0xbc,
1252913498266Sopenharmony_ci  0x78, 0x33, 0x5e, 0x17, 0x23, 0xe9, 0xc1, 0xc3, 0xc1, 0x16, 0xb0, 0xc2,
1253013498266Sopenharmony_ci  0x2a, 0x4d, 0x03, 0xf5, 0x3e, 0xe1, 0xf9, 0x58, 0xdf, 0x76, 0xc0, 0x9f,
1253113498266Sopenharmony_ci  0x42, 0x65, 0x5b, 0xb5, 0x3c, 0x5c, 0x24, 0x1e, 0x48, 0x31, 0x66, 0x30,
1253213498266Sopenharmony_ci  0x41, 0x08, 0x36, 0x69, 0x9f, 0xa4, 0x79, 0x4a, 0x5f, 0x2b, 0x90, 0xf6,
1253313498266Sopenharmony_ci  0xd5, 0x08, 0x58, 0x06, 0xec, 0x19, 0xf1, 0x91, 0x93, 0x64, 0xcd, 0x6a,
1253413498266Sopenharmony_ci  0xe5, 0xfc, 0x9a, 0x32, 0x5c, 0x47, 0xb9, 0x42, 0x49, 0xf6, 0x89, 0xfb,
1253513498266Sopenharmony_ci  0x66, 0xa3, 0x05, 0x86, 0x45, 0x20, 0xdd, 0x62, 0x81, 0x53, 0xca, 0x95,
1253613498266Sopenharmony_ci  0xae, 0x2a, 0xf4, 0x6c, 0x1a, 0x77, 0x28, 0x0c, 0xba, 0xbd, 0x2b, 0x88,
1253713498266Sopenharmony_ci  0x28, 0xcf, 0x76, 0x37, 0xb5, 0x42, 0x9a, 0xf7, 0x44, 0x48, 0x12, 0x95,
1253813498266Sopenharmony_ci  0x1b, 0x25, 0xc7, 0x2b, 0xd0, 0x57, 0x66, 0xe8, 0xf8, 0x47, 0x23, 0xe1,
1253913498266Sopenharmony_ci  0x7f, 0x04, 0xd9, 0xf3, 0x3d, 0xfa, 0xe2, 0xf0, 0xe7, 0x4a, 0x6c, 0x68,
1254013498266Sopenharmony_ci  0xaf, 0x2f, 0x16, 0x42, 0x66, 0x40, 0x0d, 0xf4, 0x1f, 0xc3, 0x72, 0xbe,
1254113498266Sopenharmony_ci  0x25, 0xed, 0xa0, 0x12, 0xbb, 0x56, 0xa8, 0x14, 0x8d, 0x14, 0x16, 0x10,
1254213498266Sopenharmony_ci  0x40, 0x3a, 0x8e, 0x15, 0x51, 0x93, 0xca, 0x00, 0xc3, 0x36, 0xf9, 0x40,
1254313498266Sopenharmony_ci  0x11, 0x05, 0xe0, 0xec, 0x25, 0xf3, 0x07, 0xae, 0x30, 0x2f, 0x3e, 0x12,
1254413498266Sopenharmony_ci  0x43, 0x3c, 0x9d, 0x4a, 0x41, 0xc2, 0xcd, 0x48, 0xe2, 0x27, 0xdd, 0x58,
1254513498266Sopenharmony_ci  0xe2, 0xef, 0x7a, 0x7f, 0xc5, 0x9c, 0x93, 0xaf, 0x0e, 0x7a, 0x83, 0xa6,
1254613498266Sopenharmony_ci  0xec, 0xe2, 0xa1, 0x83, 0x2e, 0x70, 0x9f, 0x48, 0xc6, 0x6e, 0xda, 0xb6,
1254713498266Sopenharmony_ci  0x45, 0xb2, 0x46, 0x49, 0x1e, 0xa7, 0x4f, 0xda, 0x22, 0x52, 0x34, 0xdc,
1254813498266Sopenharmony_ci  0xc3, 0xbb, 0x3b, 0xb2, 0x8f, 0x4b, 0xa2, 0x26, 0xdd, 0x15, 0xb9, 0x73,
1254913498266Sopenharmony_ci  0x67, 0x88, 0x69, 0x79, 0x45, 0x9b, 0xea, 0xb7, 0x7e, 0x05, 0x92, 0xcd,
1255013498266Sopenharmony_ci  0xb7, 0x87, 0x07, 0xcf, 0x5e, 0x1f, 0x5e, 0x53, 0x65, 0x42, 0xac, 0x97,
1255113498266Sopenharmony_ci  0x74, 0x27, 0xb5, 0x8d, 0x97, 0x07, 0xb2, 0xfb, 0x65, 0x9c, 0x9c, 0xe1,
1255213498266Sopenharmony_ci  0x0a, 0x86, 0xf3, 0x8c, 0xd8, 0x7e, 0xa9, 0x77, 0x10, 0x49, 0x7c, 0xf8,
1255313498266Sopenharmony_ci  0xca, 0xc1, 0x19, 0x0b, 0x5c, 0xa5, 0x44, 0xdc, 0x12, 0x54, 0x90, 0x5b,
1255413498266Sopenharmony_ci  0x32, 0x57, 0xa3, 0x6e, 0x3d, 0xf6, 0x21, 0xf7, 0xe2, 0x70, 0x9a, 0xa0,
1255513498266Sopenharmony_ci  0xc9, 0x48, 0x0d, 0x68, 0xd4, 0x50, 0x1f, 0x0b, 0x4b, 0x70, 0xf1, 0x41,
1255613498266Sopenharmony_ci  0xfb, 0xa1, 0xd0, 0x05, 0x2b, 0x79, 0xad, 0xe6, 0xfe, 0xb9, 0x20, 0x7f,
1255713498266Sopenharmony_ci  0x03, 0x0a, 0x54, 0x95, 0xd2, 0x8b, 0x40, 0x76, 0xba, 0xd4, 0x88, 0x1a,
1255813498266Sopenharmony_ci  0x93, 0x49, 0x89, 0x8a, 0x5f, 0xa8, 0xa8, 0xed, 0x41, 0x11, 0x4a, 0xdd,
1255913498266Sopenharmony_ci  0x09, 0x4d, 0x31, 0x55, 0xf0, 0xcf, 0x0e, 0x6e, 0x24, 0x89, 0xc1, 0x78,
1256013498266Sopenharmony_ci  0x1f, 0x12, 0x56, 0xd8, 0x6c, 0x5e, 0x5f, 0x59, 0x59, 0x14, 0xad, 0xca,
1256113498266Sopenharmony_ci  0xed, 0x15, 0x5e, 0xef, 0xf5, 0x80, 0x01, 0x23, 0x61, 0x80, 0x30, 0xea,
1256213498266Sopenharmony_ci  0x69, 0xef, 0x04, 0x99, 0xc4, 0xba, 0x99, 0xf4, 0x4c, 0xf1, 0x11, 0xd3,
1256313498266Sopenharmony_ci  0x14, 0x4d, 0x2f, 0x0c, 0xfb, 0xc2, 0x62, 0x2c, 0x09, 0x92, 0x26, 0x31,
1256413498266Sopenharmony_ci  0x19, 0x8b, 0x38, 0xa3, 0xd7, 0xda, 0xc3, 0xd9, 0x82, 0xf5, 0x8d, 0x14,
1256513498266Sopenharmony_ci  0xba, 0xd2, 0xd4, 0x90, 0x4e, 0x09, 0x3d, 0xcf, 0x55, 0x9b, 0xab, 0x39,
1256613498266Sopenharmony_ci  0x9a, 0xeb, 0xd7, 0x7b, 0x51, 0x6f, 0xa3, 0xc3, 0xa4, 0x6c, 0x27, 0xf0,
1256713498266Sopenharmony_ci  0xc7, 0x57, 0xd3, 0x3c, 0x88, 0x7a, 0x4c, 0x6a, 0x5b, 0x5b, 0x8f, 0x57,
1256813498266Sopenharmony_ci  0x94, 0xc4, 0x9c, 0x7d, 0x6e, 0x64, 0x0e, 0xf3, 0x47, 0xce, 0x41, 0x58,
1256913498266Sopenharmony_ci  0xe8, 0x36, 0x81, 0xf8, 0x05, 0x3f, 0xf7, 0x34, 0x39, 0xab, 0x4b, 0x10,
1257013498266Sopenharmony_ci  0x23, 0x2d, 0x5f, 0x3d, 0x4e, 0x0c, 0xe9, 0xa2, 0xb9, 0x61, 0x62, 0xc6,
1257113498266Sopenharmony_ci  0x9a, 0x50, 0xdc, 0x18, 0x19, 0xa4, 0x6c, 0xf6, 0x5d, 0x10, 0xc7, 0x25,
1257213498266Sopenharmony_ci  0x3a, 0x32, 0x65, 0xc6, 0xe3, 0x9c, 0x79, 0x76, 0x5d, 0x8e, 0x64, 0xbc,
1257313498266Sopenharmony_ci  0xf4, 0xbb, 0x40, 0x3a, 0x25, 0xd3, 0x2e, 0x02, 0xac, 0x10, 0x0d, 0xeb,
1257413498266Sopenharmony_ci  0xca, 0xc8, 0x73, 0x8d, 0xd1, 0x89, 0xfd, 0x13, 0x26, 0x0e, 0xd4, 0x59,
1257513498266Sopenharmony_ci  0x69, 0xa5, 0xc2, 0x88, 0x06, 0xdc, 0x1e, 0x4f, 0x33, 0x1f, 0xcd, 0xd5,
1257613498266Sopenharmony_ci  0x73, 0xd8, 0x54, 0x60, 0xd1, 0x8a, 0xcc, 0x7c, 0x2b, 0x49, 0x40, 0x9e,
1257713498266Sopenharmony_ci  0x62, 0xd1, 0xaa, 0xb9, 0xca, 0x69, 0x5a, 0x8c, 0x7b, 0x5a, 0xe4, 0x6d,
1257813498266Sopenharmony_ci  0xc9, 0x85, 0xf3, 0x7d, 0x59, 0xc6, 0x43, 0x90, 0xa4, 0xd9, 0xbc, 0x00,
1257913498266Sopenharmony_ci  0x01, 0x72, 0x38, 0x4d, 0x4d, 0x00, 0x37, 0xbf, 0xa7, 0x7c, 0xc1, 0xed,
1258013498266Sopenharmony_ci  0x19, 0x4f, 0xb0, 0x27, 0x3e, 0x58, 0x50, 0x4a, 0x1a, 0xaa, 0xd9, 0x08,
1258113498266Sopenharmony_ci  0x20, 0xf6, 0x3e, 0x17, 0xf3, 0xf0, 0xa6, 0x74, 0x84, 0xe1, 0x79, 0x7c,
1258213498266Sopenharmony_ci  0x0d, 0x88, 0x04, 0x93, 0x71, 0x16, 0x62, 0x25, 0xab, 0x75, 0x4e, 0xdb,
1258313498266Sopenharmony_ci  0xe1, 0x78, 0x5f, 0x45, 0x79, 0x96, 0xa3, 0x1d, 0x42, 0xa0, 0x23, 0x4c,
1258413498266Sopenharmony_ci  0x1f, 0x90, 0x57, 0xa7, 0x0c, 0x13, 0x54, 0x59, 0x04, 0x3c, 0x34, 0xa2,
1258513498266Sopenharmony_ci  0xa4, 0x39, 0x3b, 0x7d, 0xc8, 0xb2, 0x5e, 0xa3, 0x1f, 0xa8, 0xdb, 0x47,
1258613498266Sopenharmony_ci  0xc9, 0xcd, 0xf1, 0xaa, 0x5c, 0x21, 0x1c, 0x14, 0x8b, 0x1f, 0x88, 0x78,
1258713498266Sopenharmony_ci  0x05, 0x77, 0x27, 0x89, 0x9d, 0xb4, 0x2a, 0xc6, 0x88, 0x4c, 0x56, 0x2e,
1258813498266Sopenharmony_ci  0x9e, 0x4f, 0xc0, 0x97, 0x4b, 0xe5, 0x9d, 0xa4, 0xaa, 0x09, 0xee, 0xd5,
1258913498266Sopenharmony_ci  0x45, 0xc6, 0xcb, 0xcd, 0xd5, 0xad, 0x67, 0x05, 0xf1, 0x2a, 0x71, 0x33,
1259013498266Sopenharmony_ci  0x8c, 0xa6, 0x69, 0x82, 0x20, 0x68, 0x5c, 0x37, 0x8c, 0xbc, 0xad, 0x3e,
1259113498266Sopenharmony_ci  0xcd, 0x8a, 0xf7, 0x15, 0x63, 0x48, 0x17, 0xd3, 0x31, 0xd7, 0x45, 0x41,
1259213498266Sopenharmony_ci  0xf4, 0x2a, 0xac, 0x8c, 0x22, 0x60, 0x7c, 0x2e, 0xd6, 0x3d, 0x45, 0x50,
1259313498266Sopenharmony_ci  0x4a, 0xd4, 0xaa, 0xef, 0xaa, 0xcb, 0x91, 0x87, 0x18, 0xe3, 0x39, 0xf5,
1259413498266Sopenharmony_ci  0xcf, 0xb7, 0xb6, 0x27, 0x2f, 0x85, 0xcd, 0x71, 0x2c, 0x4a, 0x7c, 0x9f,
1259513498266Sopenharmony_ci  0x96, 0xc3, 0xb4, 0x2c, 0xaa, 0xe8, 0x87, 0x87, 0xaa, 0xfb, 0x2b, 0xd0,
1259613498266Sopenharmony_ci  0x38, 0xeb, 0x0f, 0x7a, 0x16, 0xe9, 0xb8, 0xc8, 0xc8, 0x3d, 0x09, 0x5d,
1259713498266Sopenharmony_ci  0x60, 0x9d, 0x89, 0xff, 0x1a, 0x9c, 0x72, 0x47, 0x8f, 0x70, 0x29, 0x92,
1259813498266Sopenharmony_ci  0x8f, 0x16, 0x7c, 0x02, 0xa4, 0x06, 0x7f, 0x4e, 0x82, 0x72, 0xad, 0x74,
1259913498266Sopenharmony_ci  0x4a, 0xc1, 0xef, 0x24, 0x57, 0x52, 0x99, 0x9e, 0xa8, 0x18, 0x92, 0x33,
1260013498266Sopenharmony_ci  0x3b, 0xb1, 0xc3, 0x3e, 0xcd, 0xc8, 0xbf, 0x45, 0x9a, 0x0d, 0x8d, 0x30,
1260113498266Sopenharmony_ci  0x04, 0x87, 0x67, 0x72, 0xf8, 0x71, 0x24, 0x19, 0x52, 0x4e, 0x3b, 0xb1,
1260213498266Sopenharmony_ci  0xd7, 0x02, 0xf0, 0xa2, 0xc1, 0x1d, 0x4b, 0x7a, 0x75, 0xd9, 0x30, 0x69,
1260313498266Sopenharmony_ci  0xd5, 0xa2, 0x37, 0xa7, 0xaf, 0x5e, 0x8b, 0x2b, 0xd8, 0x72, 0x33, 0x11,
1260413498266Sopenharmony_ci  0x61, 0xad, 0xa5, 0x5e, 0xb8, 0x4b, 0x12, 0x72, 0x64, 0x39, 0x6b, 0xa1,
1260513498266Sopenharmony_ci  0x09, 0x33, 0x14, 0x40, 0x4c, 0xab, 0xd6, 0x17, 0xac, 0x80, 0x52, 0xca,
1260613498266Sopenharmony_ci  0x19, 0xa8, 0x8f, 0x40, 0xd6, 0x34, 0x40, 0x0d, 0x48, 0x84, 0x15, 0xed,
1260713498266Sopenharmony_ci  0x3d, 0x39, 0x8d, 0xe0, 0x22, 0x01, 0x9e, 0x22, 0xf5, 0x23, 0x89, 0xdd,
1260813498266Sopenharmony_ci  0x87, 0x94, 0x11, 0x65, 0x7b, 0x4e, 0xcf, 0x3c, 0x13, 0xe4, 0x26, 0x69,
1260913498266Sopenharmony_ci  0x46, 0xe7, 0xe5, 0x59, 0x71, 0x99, 0xc7, 0xaf, 0xb0, 0x3a, 0x53, 0xf4,
1261013498266Sopenharmony_ci  0xaa, 0x38, 0x83, 0xa5, 0x7a, 0xc3, 0xce, 0xab, 0xb6, 0x17, 0xe5, 0xf8,
1261113498266Sopenharmony_ci  0x4d, 0xb4, 0x8e, 0xd2, 0x0d, 0x88, 0x83, 0x40, 0x0f, 0xd9, 0x1c, 0xd6,
1261213498266Sopenharmony_ci  0x18, 0x9f, 0xdc, 0x10, 0x3b, 0x6a, 0xc5, 0x12, 0xaf, 0x8c, 0xa6, 0x1f,
1261313498266Sopenharmony_ci  0x1d, 0xfe, 0x74, 0xf0, 0xfa, 0xf8, 0xd5, 0xe1, 0x2f, 0x9c, 0xf3, 0xee,
1261413498266Sopenharmony_ci  0x4d, 0x07, 0x3f, 0xfe, 0xc6, 0xb9, 0xa9, 0x28, 0x91, 0x00, 0x83, 0xca,
1261513498266Sopenharmony_ci  0x60, 0x1c, 0x57, 0x5d, 0xcc, 0x9c, 0x79, 0xa0, 0xd2, 0xdf, 0xc9, 0xc9,
1261613498266Sopenharmony_ci  0xf1, 0xcb, 0x98, 0x63, 0x2e, 0xa5, 0x74, 0xc9, 0x30, 0xcb, 0xd1, 0x06,
1261713498266Sopenharmony_ci  0xcc, 0x5c, 0x38, 0x2d, 0x71, 0x60, 0x11, 0x52, 0x52, 0xec, 0x95, 0x6e,
1261813498266Sopenharmony_ci  0x45, 0xca, 0x82, 0x13, 0xd1, 0x8f, 0xde, 0x28, 0x32, 0x4c, 0x9f, 0xb6,
1261913498266Sopenharmony_ci  0x1c, 0x4f, 0xe4, 0xb3, 0xec, 0x8c, 0x6c, 0x8b, 0x2d, 0x70, 0x0b, 0xa4,
1262013498266Sopenharmony_ci  0x0e, 0x91, 0x14, 0xda, 0xf4, 0x8c, 0x45, 0x73, 0x35, 0xd1, 0xa6, 0x4a,
1262113498266Sopenharmony_ci  0xa7, 0xec, 0xcb, 0xee, 0xbc, 0x06, 0x89, 0x11, 0xf0, 0x2e, 0x12, 0x86,
1262213498266Sopenharmony_ci  0xaa, 0x57, 0x39, 0x54, 0x30, 0x55, 0x87, 0xe6, 0xda, 0x12, 0x23, 0x02,
1262313498266Sopenharmony_ci  0xd3, 0x08, 0x5f, 0x01, 0x22, 0xb1, 0x19, 0x0e, 0xbf, 0x17, 0xf5, 0xe2,
1262413498266Sopenharmony_ci  0x45, 0xb4, 0xd7, 0xeb, 0x96, 0x52, 0x56, 0x96, 0x4f, 0x6e, 0x23, 0x91,
1262513498266Sopenharmony_ci  0xd0, 0x1e, 0x95, 0x7b, 0x12, 0x47, 0xb2, 0x92, 0x44, 0xd2, 0xbe, 0xe0,
1262613498266Sopenharmony_ci  0xc3, 0x5a, 0x59, 0xac, 0x48, 0xb3, 0xd1, 0xfe, 0xcf, 0x7f, 0xfe, 0x95,
1262713498266Sopenharmony_ci  0x2c, 0x51, 0xc8, 0x13, 0x37, 0xbf, 0x09, 0x39, 0xb9, 0x29, 0xbc, 0x38,
1262813498266Sopenharmony_ci  0x31, 0xe0, 0xb4, 0xbc, 0x68, 0x3d, 0x7a, 0x49, 0x62, 0x5b, 0xd0, 0xf6,
1262913498266Sopenharmony_ci  0xc2, 0x9f, 0x50, 0x03, 0xbd, 0x68, 0x9d, 0x2f, 0xbd, 0x1e, 0xfd, 0x15,
1263013498266Sopenharmony_ci  0x28, 0x81, 0x35, 0x34, 0x6e, 0xb8, 0x09, 0x2d, 0x96, 0x2b, 0x2c, 0x2a,
1263113498266Sopenharmony_ci  0xb4, 0xdf, 0x06, 0x5f, 0xb7, 0x7c, 0x31, 0x0b, 0xf0, 0x38, 0xc6, 0x0f,
1263213498266Sopenharmony_ci  0x7b, 0x90, 0x0f, 0x1a, 0xb1, 0xe3, 0x84, 0x51, 0xb2, 0xd2, 0x47, 0x8e,
1263313498266Sopenharmony_ci  0x6a, 0x49, 0xaf, 0x44, 0xe3, 0x29, 0xe8, 0x55, 0x7c, 0xb9, 0x81, 0xbc,
1263413498266Sopenharmony_ci  0x5b, 0xb3, 0xbf, 0xde, 0xa3, 0xc2, 0x04, 0x11, 0x29, 0x0f, 0xe2, 0xff,
1263513498266Sopenharmony_ci  0xea, 0x47, 0x5b, 0xf1, 0x97, 0x11, 0x65, 0x17, 0xa0, 0xd3, 0x63, 0x54,
1263613498266Sopenharmony_ci  0x94, 0xa9, 0x18, 0x9e, 0x0d, 0xdb, 0x92, 0xc9, 0x8b, 0x35, 0x16, 0x51,
1263713498266Sopenharmony_ci  0x18, 0x2b, 0xaf, 0xce, 0xd8, 0x28, 0xa3, 0x40, 0x6b, 0x4b, 0x67, 0x76,
1263813498266Sopenharmony_ci  0x8c, 0x81, 0x48, 0x61, 0xeb, 0x79, 0xa6, 0x1b, 0xd7, 0xac, 0x38, 0x53,
1263913498266Sopenharmony_ci  0x3f, 0x29, 0x7a, 0x08, 0x9c, 0xae, 0xa5, 0x60, 0xce, 0xa9, 0xbe, 0xb8,
1264013498266Sopenharmony_ci  0x8e, 0xa3, 0x7d, 0x2d, 0x1b, 0x6d, 0x24, 0x4f, 0x2f, 0x83, 0x32, 0x97,
1264113498266Sopenharmony_ci  0xbe, 0xc7, 0x76, 0x65, 0xd3, 0x99, 0xec, 0x0f, 0x89, 0xfc, 0xa0, 0x48,
1264213498266Sopenharmony_ci  0x69, 0x35, 0xb2, 0xff, 0x6f, 0x7b, 0xd7, 0xd6, 0xdc, 0x36, 0x72, 0xa5,
1264313498266Sopenharmony_ci  0xdf, 0xfd, 0x2b, 0x50, 0xac, 0x75, 0x59, 0xda, 0x22, 0x69, 0x59, 0x37,
1264413498266Sopenharmony_ci  0xcb, 0xae, 0x89, 0xb3, 0x32, 0x25, 0xdb, 0x4a, 0x74, 0x8b, 0x28, 0xdb,
1264513498266Sopenharmony_ci  0x93, 0xca, 0xa4, 0x24, 0x50, 0x04, 0x49, 0x8c, 0x49, 0x80, 0x01, 0x40,
1264613498266Sopenharmony_ci  0x4b, 0xf2, 0xd4, 0xec, 0x6f, 0xdf, 0x3e, 0xb7, 0xee, 0x06, 0xba, 0x01,
1264713498266Sopenharmony_ci  0x52, 0x8e, 0xc6, 0x95, 0x87, 0x7d, 0x99, 0xc4, 0x14, 0xd0, 0x38, 0xdd,
1264813498266Sopenharmony_ci  0x7d, 0xfa, 0xf4, 0xb9, 0x7e, 0x87, 0x2a, 0x23, 0xe5, 0xc2, 0xac, 0x06,
1264913498266Sopenharmony_ci  0x38, 0x31, 0x1b, 0x51, 0x6a, 0x63, 0xb5, 0x4f, 0x8b, 0x7f, 0x90, 0x58,
1265013498266Sopenharmony_ci  0x3c, 0x98, 0x11, 0xf1, 0x9d, 0x2c, 0x47, 0xab, 0xd3, 0x89, 0xee, 0xe6,
1265113498266Sopenharmony_ci  0x6a, 0xac, 0x4e, 0xab, 0xed, 0xc9, 0x87, 0x29, 0x26, 0xa6, 0x51, 0x0d,
1265213498266Sopenharmony_ci  0x75, 0x70, 0xc8, 0x83, 0xd6, 0x6f, 0xbf, 0xc1, 0x4f, 0xbf, 0xff, 0x0e,
1265313498266Sopenharmony_ci  0x1c, 0x66, 0xdd, 0x06, 0x68, 0xa3, 0xe5, 0xeb, 0x1e, 0x8f, 0x76, 0x69,
1265413498266Sopenharmony_ci  0x56, 0xa0, 0x0a, 0x66, 0x85, 0x17, 0x71, 0x19, 0x81, 0x64, 0x53, 0xf3,
1265513498266Sopenharmony_ci  0x51, 0xb4, 0x58, 0xba, 0x0e, 0x56, 0x0c, 0x72, 0x2a, 0x4b, 0x7c, 0xae,
1265613498266Sopenharmony_ci  0x58, 0xe3, 0x60, 0x85, 0x3b, 0xa4, 0x24, 0x5b, 0x41, 0x28, 0x2d, 0x03,
1265713498266Sopenharmony_ci  0x99, 0xe1, 0xf8, 0x86, 0x20, 0x0b, 0xc0, 0x38, 0xd4, 0x48, 0x60, 0x48,
1265813498266Sopenharmony_ci  0x63, 0x42, 0x3d, 0x0a, 0x28, 0x2d, 0xd0, 0xf9, 0x2e, 0x2e, 0x44, 0xd5,
1265913498266Sopenharmony_ci  0x53, 0x27, 0x1d, 0x22, 0xd2, 0xf7, 0x2b, 0x60, 0x9f, 0x58, 0x0b, 0x10,
1266013498266Sopenharmony_ci  0x3c, 0xe5, 0x93, 0x34, 0xa3, 0x90, 0x6a, 0xf9, 0x2b, 0xd0, 0x99, 0x5c,
1266113498266Sopenharmony_ci  0xad, 0xf1, 0x33, 0x78, 0xe6, 0x19, 0xd6, 0xfb, 0x44, 0x77, 0xb1, 0x9f,
1266213498266Sopenharmony_ci  0xa5, 0xc0, 0x0e, 0x55, 0x16, 0x74, 0x46, 0x77, 0x6f, 0xe8, 0x5f, 0xcf,
1266313498266Sopenharmony_ci  0x2a, 0xad, 0x4c, 0x9e, 0x7b, 0xb7, 0xb2, 0x2c, 0x25, 0x8c, 0xce, 0xd2,
1266413498266Sopenharmony_ci  0x4a, 0x30, 0x0c, 0x50, 0xc3, 0xe8, 0xee, 0x02, 0x90, 0x4f, 0xd0, 0x9a,
1266513498266Sopenharmony_ci  0xf5, 0x53, 0x5b, 0x4c, 0x51, 0x8f, 0x8d, 0xea, 0x92, 0xfc, 0x8f, 0x24,
1266613498266Sopenharmony_ci  0xe8, 0xd5, 0xe7, 0x19, 0xa6, 0x09, 0x41, 0x0b, 0x8b, 0x4a, 0xdf, 0xc1,
1266713498266Sopenharmony_ci  0x15, 0x82, 0xf9, 0x41, 0x5e, 0x66, 0xc7, 0xcf, 0x51, 0x55, 0x9e, 0x06,
1266813498266Sopenharmony_ci  0xed, 0x17, 0x37, 0xd2, 0x2a, 0x7f, 0xf0, 0x2a, 0x4f, 0x74, 0x2a, 0x40,
1266913498266Sopenharmony_ci  0x12, 0xe8, 0xb1, 0xda, 0xe5, 0x72, 0x3f, 0xec, 0x7d, 0x88, 0x22, 0x6d,
1267013498266Sopenharmony_ci  0xb4, 0x48, 0x6e, 0xb8, 0x69, 0x87, 0x27, 0x31, 0x06, 0x98, 0x1e, 0xd1,
1267113498266Sopenharmony_ci  0x51, 0xcb, 0x7b, 0x2d, 0xe7, 0x1e, 0x0b, 0x0e, 0xd4, 0xbf, 0x94, 0x01,
1267213498266Sopenharmony_ci  0x12, 0xb3, 0x3f, 0x01, 0xd2, 0x62, 0x30, 0x67, 0x20, 0x9c, 0xcf, 0x9d,
1267313498266Sopenharmony_ci  0x9a, 0x2e, 0x80, 0x98, 0xe5, 0xef, 0x11, 0xde, 0x99, 0x25, 0x35, 0x90,
1267413498266Sopenharmony_ci  0x68, 0x2c, 0x57, 0x85, 0x02, 0xe2, 0x21, 0xbb, 0x9c, 0xe9, 0x96, 0xe5,
1267513498266Sopenharmony_ci  0xe3, 0x9c, 0x38, 0x42, 0x23, 0x67, 0x65, 0x2e, 0xca, 0xa1, 0x5d, 0xa5,
1267613498266Sopenharmony_ci  0x35, 0x19, 0x94, 0x38, 0x4e, 0xb9, 0x0a, 0xbd, 0x21, 0xcd, 0x8f, 0xab,
1267713498266Sopenharmony_ci  0x0b, 0x1c, 0x01, 0xdb, 0xd0, 0x73, 0xa8, 0xfb, 0x05, 0x98, 0x6b, 0xd3,
1267813498266Sopenharmony_ci  0x29, 0xd2, 0x0e, 0x85, 0xbc, 0x48, 0x91, 0xee, 0x06, 0x9f, 0x2a, 0xeb,
1267913498266Sopenharmony_ci  0x10, 0x4c, 0x94, 0x10, 0x75, 0x23, 0x75, 0x09, 0x78, 0xcb, 0x09, 0xd7,
1268013498266Sopenharmony_ci  0x9b, 0x3a, 0x5a, 0x64, 0x11, 0x1b, 0x5a, 0x18, 0xad, 0x23, 0x29, 0x47,
1268113498266Sopenharmony_ci  0x5b, 0x05, 0xce, 0x7a, 0x76, 0x16, 0xca, 0xe1, 0x70, 0x76, 0x76, 0x5f,
1268213498266Sopenharmony_ci  0x17, 0xc9, 0xe8, 0x59, 0x3a, 0xb1, 0x46, 0x65, 0xe3, 0xcc, 0x82, 0x80,
1268313498266Sopenharmony_ci  0x9b, 0x40, 0xe6, 0xc8, 0x5b, 0x53, 0x4e, 0x3d, 0x21, 0x00, 0x5f, 0x4e,
1268413498266Sopenharmony_ci  0xb6, 0x52, 0x16, 0x6e, 0xa1, 0x45, 0x54, 0x65, 0x8c, 0x5f, 0x73, 0xd8,
1268513498266Sopenharmony_ci  0x1c, 0x0d, 0x1c, 0x5b, 0x18, 0x39, 0xcf, 0x3a, 0xf9, 0x5f, 0xfa, 0x67,
1268613498266Sopenharmony_ci  0xa7, 0xe2, 0xf6, 0x02, 0xb9, 0x89, 0xe5, 0xa7, 0x0b, 0xc5, 0x63, 0xce,
1268713498266Sopenharmony_ci  0x50, 0x08, 0x7a, 0x20, 0x95, 0x7c, 0xf6, 0x40, 0xe0, 0x55, 0x5d, 0x53,
1268813498266Sopenharmony_ci  0x9a, 0xe1, 0x8d, 0xfa, 0xc7, 0x7a, 0x50, 0x17, 0xbe, 0x1c, 0xec, 0x6e,
1268913498266Sopenharmony_ci  0xe3, 0xb6, 0xe0, 0x12, 0xe5, 0x65, 0x16, 0x04, 0x9b, 0x49, 0xfd, 0x99,
1269013498266Sopenharmony_ci  0x5f, 0x5d, 0x22, 0xb6, 0xff, 0x18, 0x77, 0x77, 0xe9, 0x72, 0xfd, 0x53,
1269113498266Sopenharmony_ci  0x3e, 0x8b, 0x1f, 0x9a, 0x41, 0x68, 0x6b, 0x56, 0xf5, 0x85, 0x21, 0x0d,
1269213498266Sopenharmony_ci  0x59, 0x9f, 0x27, 0xe8, 0xa2, 0x40, 0x72, 0x24, 0x91, 0x79, 0xb8, 0xc8,
1269313498266Sopenharmony_ci  0x44, 0x03, 0xd0, 0xa9, 0x78, 0x94, 0x48, 0x8d, 0x75, 0x7f, 0x04, 0xa9,
1269413498266Sopenharmony_ci  0x0c, 0xcd, 0x7a, 0xc6, 0x2e, 0xc3, 0x72, 0xfb, 0x13, 0xca, 0x41, 0x82,
1269513498266Sopenharmony_ci  0x74, 0x9b, 0x67, 0x4a, 0x28, 0x50, 0x8e, 0x38, 0x08, 0xb0, 0x16, 0x2a,
1269613498266Sopenharmony_ci  0x32, 0x1c, 0xe4, 0x4a, 0x87, 0x2d, 0xa8, 0x07, 0xc3, 0x6b, 0x1b, 0x23,
1269713498266Sopenharmony_ci  0xda, 0xee, 0x70, 0x28, 0xeb, 0x9f, 0xbd, 0x79, 0xc6, 0x05, 0xe9, 0x2d,
1269813498266Sopenharmony_ci  0xf6, 0x72, 0x81, 0x61, 0xde, 0x22, 0x77, 0x38, 0xe0, 0xc1, 0x02, 0xf5,
1269913498266Sopenharmony_ci  0xca, 0xc0, 0x7b, 0xf6, 0xd3, 0xb3, 0x80, 0x1f, 0x94, 0x27, 0xab, 0xd9,
1270013498266Sopenharmony_ci  0x1e, 0xf8, 0x1e, 0x17, 0x1e, 0x4b, 0x33, 0x58, 0xc1, 0xd5, 0xa0, 0x8c,
1270113498266Sopenharmony_ci  0xb5, 0x49, 0xac, 0x16, 0x91, 0x33, 0xb3, 0x94, 0x2d, 0x34, 0x45, 0x71,
1270213498266Sopenharmony_ci  0xc9, 0xa5, 0xcd, 0xa1, 0x4f, 0xe1, 0x10, 0xca, 0x99, 0xd6, 0xff, 0x16,
1270313498266Sopenharmony_ci  0x5a, 0xa5, 0x08, 0x2c, 0x9c, 0x62, 0xbe, 0xbb, 0xd1, 0xd7, 0xd5, 0x37,
1270413498266Sopenharmony_ci  0x11, 0x0c, 0xb2, 0xc6, 0x30, 0x22, 0x74, 0x47, 0x88, 0x5d, 0xa2, 0x7b,
1270513498266Sopenharmony_ci  0xd9, 0xdb, 0x4e, 0xa9, 0xed, 0x76, 0x69, 0x72, 0x8c, 0x3c, 0xb7, 0xb9,
1270613498266Sopenharmony_ci  0x93, 0x2e, 0x5f, 0x45, 0x91, 0x0b, 0x90, 0x8c, 0xc8, 0x7a, 0x4b, 0xdc,
1270713498266Sopenharmony_ci  0xbe, 0x98, 0xf2, 0x58, 0x82, 0x86, 0x20, 0x27, 0x8b, 0xce, 0x9c, 0x41,
1270813498266Sopenharmony_ci  0xbf, 0x30, 0x3c, 0xc9, 0xde, 0x1f, 0x8e, 0xa8, 0xb5, 0xdd, 0x96, 0xc5,
1270913498266Sopenharmony_ci  0xe5, 0x9e, 0xcb, 0xba, 0x9c, 0xa4, 0x5c, 0xf4, 0x20, 0xe0, 0xde, 0xff,
1271013498266Sopenharmony_ci  0x9f, 0x71, 0xff, 0x1f, 0x96, 0x71, 0x6f, 0xd7, 0xd1, 0xc8, 0x0e, 0x3c,
1271113498266Sopenharmony_ci  0xa4, 0xdb, 0xaf, 0x0b, 0xe5, 0x5a, 0x8d, 0x1a, 0x39, 0xa5, 0x2a, 0x2b,
1271213498266Sopenharmony_ci  0x0a, 0x51, 0x26, 0xe6, 0x41, 0x82, 0xd3, 0x6e, 0x71, 0xd5, 0x2e, 0xf5,
1271313498266Sopenharmony_ci  0x41, 0x6c, 0x97, 0x8b, 0x68, 0xca, 0x19, 0xf1, 0x8d, 0xeb, 0x5f, 0x93,
1271413498266Sopenharmony_ci  0x73, 0x5f, 0x3f, 0x9a, 0x16, 0xd0, 0x9f, 0x58, 0x40, 0x7b, 0xd0, 0xe9,
1271513498266Sopenharmony_ci  0x0f, 0xb8, 0x88, 0xca, 0xae, 0x9a, 0xe1, 0x56, 0x45, 0xc4, 0xf5, 0x6c,
1271613498266Sopenharmony_ci  0xa6, 0x08, 0x1a, 0x85, 0x00, 0x76, 0xc4, 0x98, 0x73, 0x94, 0x77, 0x3d,
1271713498266Sopenharmony_ci  0x36, 0x17, 0xf9, 0xad, 0x51, 0x7a, 0x69, 0x08, 0x17, 0xf4, 0x67, 0x83,
1271813498266Sopenharmony_ci  0xb6, 0x21, 0xef, 0x0b, 0xe4, 0x50, 0xdb, 0x00, 0x5d, 0x78, 0x7c, 0x3f,
1271913498266Sopenharmony_ci  0x64, 0xca, 0x6e, 0x01, 0x5a, 0x9c, 0x12, 0x83, 0xf7, 0x8c, 0x0c, 0x04,
1272013498266Sopenharmony_ci  0x47, 0x50, 0x0d, 0xff, 0xc5, 0x18, 0x9d, 0xa0, 0x9b, 0x45, 0x37, 0x8b,
1272113498266Sopenharmony_ci  0xc2, 0xdb, 0x58, 0x06, 0x7d, 0xef, 0xea, 0xf4, 0xa4, 0x7c, 0x89, 0x06,
1272213498266Sopenharmony_ci  0x6b, 0x76, 0x82, 0x53, 0xeb, 0x22, 0xc2, 0xb6, 0xdb, 0x9d, 0x03, 0xa5,
1272313498266Sopenharmony_ci  0x57, 0xbd, 0x6e, 0xad, 0x5b, 0xba, 0x40, 0x46, 0x7f, 0x71, 0xa5, 0xbc,
1272413498266Sopenharmony_ci  0xff, 0x1b, 0x4a, 0x88, 0x65, 0xde, 0x2f, 0x9c, 0x73, 0x1a, 0x41, 0x0e,
1272513498266Sopenharmony_ci  0xc3, 0x0b, 0x6a, 0x00, 0x68, 0x3e, 0x3a, 0xc1, 0x20, 0xf7, 0x41, 0xdd,
1272613498266Sopenharmony_ci  0xcb, 0xba, 0x64, 0x11, 0x29, 0xc4, 0x06, 0xfe, 0xc3, 0x3f, 0xc5, 0x51,
1272713498266Sopenharmony_ci  0x0a, 0xc9, 0x84, 0x62, 0xa8, 0x96, 0x49, 0x78, 0x47, 0x29, 0x90, 0xb9,
1272813498266Sopenharmony_ci  0x99, 0x20, 0x1f, 0xd7, 0x1b, 0xc8, 0x8e, 0x74, 0x71, 0x43, 0x32, 0x5c,
1272913498266Sopenharmony_ci  0x62, 0xe7, 0xfb, 0x29, 0xb6, 0x48, 0xb2, 0x15, 0x3d, 0x1e, 0x57, 0x76,
1273013498266Sopenharmony_ci  0xda, 0x6d, 0x67, 0x14, 0x4e, 0x8b, 0x4e, 0xfe, 0xf5, 0xa6, 0xae, 0x43,
1273113498266Sopenharmony_ci  0x10, 0xe3, 0x99, 0x88, 0x49, 0xb8, 0xaf, 0x9e, 0xee, 0x7f, 0xbd, 0x79,
1273213498266Sopenharmony_ci  0x2d, 0xa1, 0x3b, 0xcb, 0x13, 0xe5, 0xb6, 0x21, 0xda, 0xcf, 0xef, 0x93,
1273313498266Sopenharmony_ci  0x9b, 0xc9, 0xc1, 0x69, 0xbf, 0x66, 0x70, 0x3c, 0x3f, 0x38, 0x05, 0xd2,
1273413498266Sopenharmony_ci  0x5b, 0xf1, 0x71, 0x65, 0xc3, 0xa4, 0x8b, 0x9c, 0x5d, 0x2e, 0x8a, 0xf2,
1273513498266Sopenharmony_ci  0x74, 0xaa, 0xf4, 0x50, 0xc8, 0xcf, 0xb6, 0xfe, 0xea, 0x1f, 0xae, 0xfc,
1273613498266Sopenharmony_ci  0x8a, 0xa8, 0x6d, 0x88, 0x73, 0x44, 0x97, 0x0e, 0x1b, 0xcd, 0xa8, 0x46,
1273713498266Sopenharmony_ci  0x76, 0x42, 0x58, 0x15, 0x9a, 0x95, 0x7f, 0xb8, 0x62, 0x02, 0x56, 0xa3,
1273813498266Sopenharmony_ci  0xe2, 0x61, 0x1e, 0x31, 0xb3, 0xb0, 0x88, 0xaa, 0x33, 0x1d, 0x28, 0x3e,
1273913498266Sopenharmony_ci  0x99, 0xc6, 0x2b, 0xac, 0xa1, 0xe9, 0x98, 0x4a, 0xaf, 0x68, 0x48, 0x16,
1274013498266Sopenharmony_ci  0x3c, 0x73, 0xf0, 0x11, 0x4e, 0xb7, 0x76, 0xbf, 0xd1, 0x53, 0x57, 0x45,
1274113498266Sopenharmony_ci  0x4f, 0x19, 0x4a, 0x35, 0x5f, 0xa9, 0x60, 0xd1, 0x50, 0x2f, 0x1a, 0xeb,
1274213498266Sopenharmony_ci  0xcb, 0x3a, 0xab, 0x1e, 0xcd, 0x36, 0xb4, 0xb8, 0x08, 0x5e, 0xcc, 0x3f,
1274313498266Sopenharmony_ci  0xdc, 0xda, 0x34, 0x56, 0x36, 0xdb, 0xe1, 0xdb, 0xde, 0xc1, 0x51, 0x6f,
1274413498266Sopenharmony_ci  0xdd, 0xa1, 0xe5, 0x00, 0xf4, 0xbf, 0x15, 0x77, 0x55, 0xf3, 0xa9, 0x45,
1274513498266Sopenharmony_ci  0x18, 0xbe, 0xaf, 0x33, 0x1f, 0xc8, 0xf3, 0x5b, 0x43, 0x08, 0x6a, 0x2b,
1274613498266Sopenharmony_ci  0x01, 0x59, 0x34, 0x28, 0x3e, 0xbf, 0xa0, 0x36, 0x49, 0xaa, 0xe6, 0x4c,
1274713498266Sopenharmony_ci  0x99, 0x29, 0xd9, 0xbd, 0xa5, 0x8f, 0x06, 0x90, 0x67, 0xa5, 0x06, 0x7e,
1274813498266Sopenharmony_ci  0xe7, 0x28, 0x44, 0xd6, 0x32, 0x75, 0x86, 0xe0, 0x23, 0x07, 0xe5, 0x96,
1274913498266Sopenharmony_ci  0xd0, 0x7e, 0x9d, 0x34, 0x97, 0xeb, 0x71, 0x1e, 0xe6, 0xd3, 0xda, 0xf9,
1275013498266Sopenharmony_ci  0x45, 0x34, 0x15, 0x75, 0x7f, 0x04, 0xfd, 0xfd, 0xfe, 0x71, 0xd5, 0xbf,
1275113498266Sopenharmony_ci  0xac, 0x85, 0xaa, 0x49, 0xe9, 0xc4, 0xfe, 0xb6, 0xfe, 0xe1, 0x64, 0x8f,
1275213498266Sopenharmony_ci  0xfa, 0xbd, 0x8b, 0xfd, 0x13, 0xc5, 0xb0, 0x68, 0xc4, 0x79, 0xc0, 0x85,
1275313498266Sopenharmony_ci  0x70, 0xdd, 0xd4, 0xcf, 0x48, 0x9a, 0xcb, 0x1d, 0xef, 0xfb, 0xfd, 0xce,
1275413498266Sopenharmony_ci  0xfe, 0xf9, 0x51, 0x0d, 0xcd, 0xfc, 0x57, 0xc4, 0x56, 0x11, 0x94, 0x2d,
1275513498266Sopenharmony_ci  0x77, 0x8c, 0x0f, 0xfd, 0xcb, 0xfe, 0x75, 0x00, 0xff, 0xd5, 0x54, 0x91,
1275613498266Sopenharmony_ci  0xc7, 0x2c, 0x2f, 0xf5, 0x07, 0xd6, 0x8f, 0x2b, 0x4e, 0xdd, 0xac, 0xf9,
1275713498266Sopenharmony_ci  0x20, 0xc2, 0x80, 0x6d, 0xea, 0x61, 0x74, 0x37, 0x1b, 0x59, 0x38, 0xff,
1275813498266Sopenharmony_ci  0x68, 0x5b, 0x4d, 0xa3, 0x6d, 0x3d, 0x74, 0xb4, 0x3e, 0x05, 0xc2, 0x97,
1275913498266Sopenharmony_ci  0xb2, 0x69, 0xec, 0xc1, 0x6f, 0xc2, 0xf7, 0xa9, 0x9d, 0xa6, 0x3b, 0xf8,
1276013498266Sopenharmony_ci  0xd1, 0xc1, 0xe9, 0xb5, 0x3d, 0x80, 0x76, 0x89, 0xa8, 0x3f, 0x04, 0x1d,
1276113498266Sopenharmony_ci  0x69, 0x92, 0xc3, 0xda, 0xbf, 0x15, 0xab, 0xf1, 0x08, 0x8e, 0xa3, 0xf3,
1276213498266Sopenharmony_ci  0xaf, 0xbb, 0xd7, 0xba, 0x40, 0x02, 0x76, 0x1e, 0x7e, 0x31, 0xbe, 0x5a,
1276313498266Sopenharmony_ci  0xf7, 0x0d, 0x09, 0xa7, 0xd5, 0x4c, 0xcb, 0x0e, 0x12, 0x56, 0xf9, 0xb2,
1276413498266Sopenharmony_ci  0x71, 0xf3, 0x8f, 0xc3, 0x6c, 0x1c, 0x81, 0xaf, 0x7c, 0xe9, 0x7a, 0xe9,
1276513498266Sopenharmony_ci  0xe9, 0x9a, 0xa2, 0x33, 0xa5, 0x2d, 0x4c, 0xe1, 0x7d, 0x2a, 0x57, 0x68,
1276613498266Sopenharmony_ci  0x73, 0xd5, 0x02, 0xfe, 0x94, 0xd5, 0x49, 0x57, 0x35, 0xdf, 0xcd, 0xf7,
1276713498266Sopenharmony_ci  0x6f, 0x5d, 0x42, 0x14, 0x8f, 0x7f, 0xbb, 0x0e, 0xf6, 0xb5, 0xa0, 0x1c,
1276813498266Sopenharmony_ci  0x46, 0xb6, 0x8c, 0x5c, 0xfb, 0x1a, 0x87, 0xc1, 0xf8, 0x5b, 0x3c, 0xc7,
1276913498266Sopenharmony_ci  0xee, 0x38, 0xe0, 0x10, 0x5e, 0x47, 0x0b, 0x40, 0x03, 0x2a, 0xf9, 0x3f,
1277013498266Sopenharmony_ci  0x47, 0x04, 0x69, 0x01, 0xbb, 0x64, 0x2d, 0x4e, 0x40, 0xaf, 0xed, 0xf7,
1277113498266Sopenharmony_ci  0x8f, 0x57, 0x5f, 0x0a, 0xad, 0x09, 0x97, 0x31, 0xeb, 0x9c, 0xc6, 0x7c,
1277213498266Sopenharmony_ci  0x97, 0xc7, 0x27, 0xd7, 0x14, 0x9e, 0x7a, 0xd0, 0xe6, 0xc0, 0x1b, 0x57,
1277313498266Sopenharmony_ci  0x9f, 0xdf, 0xd6, 0xd0, 0x83, 0xe3, 0x0d, 0x23, 0x68, 0x3a, 0x26, 0xb8,
1277413498266Sopenharmony_ci  0x23, 0xb7, 0x71, 0x32, 0x88, 0x95, 0x84, 0x9c, 0x44, 0xd3, 0x39, 0x5d,
1277513498266Sopenharmony_ci  0xd3, 0x0d, 0xa3, 0x9f, 0xab, 0x99, 0x2a, 0x05, 0x1f, 0x5a, 0x04, 0x60,
1277613498266Sopenharmony_ci  0xa3, 0x95, 0x89, 0xdc, 0x19, 0xe7, 0x8b, 0xc1, 0x54, 0xed, 0x40, 0x7f,
1277713498266Sopenharmony_ci  0xa1, 0x2c, 0xa8, 0xbb, 0xe0, 0x38, 0xe6, 0x3c, 0x7d, 0xb2, 0x70, 0xb9,
1277813498266Sopenharmony_ci  0x5e, 0x2e, 0xce, 0x1b, 0xee, 0xa3, 0xf2, 0x49, 0xe5, 0x14, 0x27, 0xab,
1277913498266Sopenharmony_ci  0xdb, 0x19, 0x29, 0xb2, 0x41, 0x6b, 0x4e, 0x1f, 0x52, 0x44, 0x3a, 0x80,
1278013498266Sopenharmony_ci  0x83, 0x7a, 0x03, 0xef, 0xa2, 0xdc, 0x8d, 0x89, 0x5d, 0xf7, 0xcf, 0x4f,
1278113498266Sopenharmony_ci  0x0f, 0xdf, 0x9f, 0xd5, 0xdd, 0xbc, 0xf8, 0xc7, 0x87, 0x2d, 0x75, 0x1f,
1278213498266Sopenharmony_ci  0x17, 0x03, 0xfb, 0x25, 0x68, 0x00, 0x4e, 0xc5, 0x60, 0xe0, 0xaa, 0x01,
1278313498266Sopenharmony_ci  0xbd, 0x44, 0x6b, 0x84, 0x94, 0x12, 0x22, 0xe3, 0xb4, 0xa5, 0x5f, 0x71,
1278413498266Sopenharmony_ci  0xbd, 0x00, 0xeb, 0x63, 0x56, 0x6e, 0x9f, 0x52, 0x71, 0xfb, 0xb8, 0x90,
1278513498266Sopenharmony_ci  0xca, 0x12, 0xf1, 0xb5, 0x6f, 0x84, 0x70, 0xe8, 0x35, 0x06, 0x45, 0x97,
1278613498266Sopenharmony_ci  0xd0, 0xca, 0x08, 0xf1, 0x75, 0xb3, 0xbf, 0x38, 0x0f, 0xd6, 0xfa, 0x4a,
1278713498266Sopenharmony_ci  0xed, 0x56, 0x84, 0x5e, 0x50, 0xf9, 0xe1, 0x39, 0x47, 0x2e, 0xd7, 0x3d,
1278813498266Sopenharmony_ci  0x6b, 0x52, 0x0b, 0xed, 0x6f, 0xc2, 0xd6, 0x08, 0x6b, 0xe7, 0x52, 0x01,
1278913498266Sopenharmony_ci  0x97, 0xf2, 0x09, 0xde, 0xc4, 0x35, 0x94, 0xe0, 0x75, 0x2f, 0x97, 0xb5,
1279013498266Sopenharmony_ci  0xbe, 0xc3, 0x9b, 0xe7, 0xf6, 0x31, 0x89, 0xc1, 0x31, 0x57, 0x33, 0x22,
1279113498266Sopenharmony_ci  0xff, 0x55, 0xcb, 0xeb, 0x54, 0x67, 0xca, 0x7a, 0x47, 0xba, 0xeb, 0x63,
1279213498266Sopenharmony_ci  0x6d, 0x6d, 0x5e, 0x3f, 0xda, 0x1d, 0x97, 0xf1, 0xe6, 0xe5, 0xab, 0xaf,
1279313498266Sopenharmony_ci  0x4e, 0xb5, 0xfd, 0x96, 0x17, 0x43, 0x5b, 0x48, 0x55, 0xa4, 0x14, 0x89,
1279413498266Sopenharmony_ci  0xa9, 0x00, 0x9e, 0xaa, 0x88, 0x27, 0x92, 0x44, 0x7e, 0x32, 0x56, 0x14,
1279513498266Sopenharmony_ci  0x4f, 0xcb, 0xed, 0x61, 0xb4, 0x23, 0x6b, 0x6d, 0xdf, 0x09, 0x25, 0x8c,
1279613498266Sopenharmony_ci  0x4d, 0xe7, 0x64, 0x93, 0x9e, 0xc0, 0x3f, 0x67, 0x61, 0xb2, 0xb0, 0x53,
1279713498266Sopenharmony_ci  0xaf, 0x3a, 0xb7, 0xf0, 0x2b, 0x06, 0xf9, 0x20, 0xa9, 0x39, 0xf8, 0x89,
1279813498266Sopenharmony_ci  0x8c, 0xcf, 0x37, 0x1e, 0xf7, 0x61, 0x09, 0xfa, 0xa5, 0x64, 0xa6, 0xa2,
1279913498266Sopenharmony_ci  0xb3, 0x08, 0x73, 0x55, 0xc3, 0x11, 0x28, 0x9e, 0xa1, 0x4e, 0xf4, 0x1b,
1280013498266Sopenharmony_ci  0xd2, 0xdd, 0xe1, 0x82, 0x8b, 0x66, 0x14, 0xe0, 0xa4, 0x31, 0x38, 0xa1,
1280113498266Sopenharmony_ci  0x82, 0x93, 0x2f, 0x31, 0x9a, 0xaa, 0xbe, 0x20, 0x4e, 0x9b, 0x40, 0x7d,
1280213498266Sopenharmony_ci  0x0f, 0xfe, 0x07, 0x13, 0x69, 0x82, 0x19, 0x04, 0xf5, 0x7c, 0xee, 0x43,
1280313498266Sopenharmony_ci  0xac, 0xdb, 0x0a, 0x92, 0xc5, 0x6c, 0x00, 0x39, 0x8e, 0x23, 0x13, 0xcf,
1280413498266Sopenharmony_ci  0x28, 0x7d, 0xc9, 0xc9, 0x07, 0x09, 0x73, 0x8f, 0xbf, 0xaf, 0x40, 0xdf,
1280513498266Sopenharmony_ci  0x6f, 0x8b, 0x28, 0x6a, 0x61, 0x03, 0x15, 0xc9, 0x38, 0x44, 0x00, 0x09,
1280613498266Sopenharmony_ci  0x36, 0xc7, 0x42, 0x32, 0xc9, 0x65, 0x6c, 0x4e, 0x13, 0x08, 0x3d, 0x95,
1280713498266Sopenharmony_ci  0x7d, 0x3a, 0x1b, 0xf8, 0x7f, 0x04, 0x8c, 0xa2, 0x25, 0x85, 0x88, 0xa5,
1280813498266Sopenharmony_ci  0x54, 0x04, 0x3d, 0x26, 0x0f, 0x09, 0x23, 0x3a, 0xe5, 0xd1, 0x43, 0xca,
1280913498266Sopenharmony_ci  0x28, 0xc1, 0xdc, 0xf4, 0x48, 0x0d, 0xd9, 0x69, 0x79, 0xed, 0x50, 0x13,
1281013498266Sopenharmony_ci  0x6e, 0x64, 0xcd, 0xae, 0xec, 0x5c, 0xd4, 0x54, 0x23, 0x58, 0x56, 0xbe,
1281113498266Sopenharmony_ci  0x18, 0xe4, 0x45, 0x5c, 0x2c, 0x0a, 0x72, 0x97, 0x7a, 0xd2, 0x7f, 0x38,
1281213498266Sopenharmony_ci  0x52, 0x96, 0x72, 0x46, 0x93, 0xd5, 0xec, 0x94, 0x8a, 0xa5, 0x47, 0x71,
1281313498266Sopenharmony_ci  0xd1, 0x86, 0xd5, 0x24, 0x08, 0x90, 0x01, 0x78, 0x40, 0x95, 0xee, 0x7d,
1281413498266Sopenharmony_ci  0xab, 0x8c, 0xd4, 0xe9, 0xd4, 0xe9, 0xc7, 0x23, 0x94, 0x95, 0xfb, 0x7d,
1281513498266Sopenharmony_ci  0xa8, 0xb7, 0x9f, 0xfe, 0x26, 0x7f, 0xbc, 0xc2, 0xe8, 0xab, 0xac, 0x12,
1281613498266Sopenharmony_ci  0xd3, 0x0c, 0xdd, 0xeb, 0x32, 0xb7, 0x4e, 0x74, 0x1a, 0x3c, 0xc5, 0x15,
1281713498266Sopenharmony_ci  0xf9, 0x15, 0x82, 0xf0, 0xb4, 0x2c, 0x8a, 0xe4, 0x19, 0x0e, 0xf8, 0xb4,
1281813498266Sopenharmony_ci  0xab, 0xd5, 0x2e, 0x33, 0x48, 0x74, 0x8b, 0xc6, 0x79, 0x6d, 0xa3, 0x9a,
1281913498266Sopenharmony_ci  0x5f, 0x92, 0x36, 0x70, 0x71, 0x98, 0x29, 0x5a, 0xc6, 0x98, 0x12, 0x06,
1282013498266Sopenharmony_ci  0x4d, 0xa9, 0x71, 0x0f, 0x7f, 0xa1, 0xec, 0xcb, 0x30, 0x28, 0xc2, 0x01,
1282113498266Sopenharmony_ci  0x27, 0x9b, 0xd2, 0xef, 0x7e, 0x6f, 0x00, 0x7f, 0x33, 0xc6, 0x1c, 0x7c,
1282213498266Sopenharmony_ci  0x09, 0x3a, 0x72, 0x55, 0x01, 0x25, 0x79, 0xab, 0xd1, 0xc2, 0x6c, 0xa8,
1282313498266Sopenharmony_ci  0x5d, 0xbe, 0x03, 0x03, 0x7a, 0x56, 0x75, 0xad, 0x2a, 0x55, 0x6a, 0x2c,
1282413498266Sopenharmony_ci  0xbe, 0x96, 0xa7, 0xbf, 0x11, 0x64, 0x09, 0xad, 0xd0, 0x53, 0x7a, 0xfb,
1282513498266Sopenharmony_ci  0xb7, 0xdf, 0xdd, 0xec, 0x40, 0x46, 0x73, 0xa4, 0xb6, 0x96, 0xe2, 0x66,
1282613498266Sopenharmony_ci  0x66, 0x56, 0xc5, 0x7d, 0xa5, 0x2a, 0x13, 0x70, 0x96, 0x27, 0x45, 0xa0,
1282713498266Sopenharmony_ci  0x1b, 0x1b, 0x4a, 0x62, 0x7b, 0x65, 0xb8, 0xa7, 0x34, 0x02, 0x85, 0xc6,
1282813498266Sopenharmony_ci  0x39, 0xdd, 0xd0, 0x2e, 0x7f, 0xc7, 0xa8, 0xa3, 0x1d, 0x76, 0x14, 0x73,
1282913498266Sopenharmony_ci  0x3d, 0xf5, 0x96, 0xb9, 0xb0, 0x77, 0xa1, 0x14, 0x60, 0xd7, 0xa1, 0x27,
1283013498266Sopenharmony_ci  0x0c, 0xe8, 0x71, 0x66, 0x86, 0x64, 0x41, 0x4b, 0x38, 0x11, 0x18, 0xc7,
1283113498266Sopenharmony_ci  0x05, 0xd6, 0x0a, 0xb1, 0x22, 0x34, 0xcc, 0x29, 0x66, 0xa0, 0xfb, 0xbe,
1283213498266Sopenharmony_ci  0xb3, 0x8b, 0xb8, 0xcd, 0xb6, 0x55, 0x6d, 0x98, 0xcb, 0x01, 0xad, 0xc6,
1283313498266Sopenharmony_ci  0xdd, 0x85, 0x48, 0xd9, 0x4c, 0x2d, 0xbb, 0x5d, 0x7b, 0xb2, 0xb7, 0xdd,
1283413498266Sopenharmony_ci  0xdd, 0x58, 0xf7, 0x24, 0x55, 0x60, 0x22, 0x11, 0x84, 0x03, 0xb5, 0x57,
1283513498266Sopenharmony_ci  0x47, 0xb1, 0x49, 0x06, 0x4d, 0x30, 0x87, 0x50, 0x2c, 0x47, 0xc6, 0x82,
1283613498266Sopenharmony_ci  0x86, 0x69, 0xd0, 0x9c, 0xca, 0x9b, 0xef, 0xd4, 0x14, 0xb6, 0x4d, 0x7d,
1283713498266Sopenharmony_ci  0x81, 0xec, 0x30, 0x2d, 0xbc, 0xa1, 0x05, 0x8f, 0x20, 0x06, 0x82, 0xd6,
1283813498266Sopenharmony_ci  0xa5, 0x7e, 0x45, 0xb2, 0x58, 0x7c, 0x87, 0x18, 0x7d, 0x7f, 0x2c, 0x92,
1283913498266Sopenharmony_ci  0xe0, 0xb9, 0x6e, 0x89, 0x4b, 0xed, 0x02, 0x3f, 0x10, 0xcb, 0x89, 0x92,
1284013498266Sopenharmony_ci  0x80, 0x0b, 0xe9, 0x9a, 0xe7, 0x0e, 0x97, 0xd8, 0x8c, 0x8c, 0x6f, 0x50,
1284113498266Sopenharmony_ci  0x8d, 0xfd, 0x49, 0x8a, 0xa9, 0x0a, 0x70, 0xe2, 0xc0, 0x03, 0xa6, 0x99,
1284213498266Sopenharmony_ci  0x33, 0xb0, 0x47, 0xf4, 0x84, 0x8f, 0xdd, 0xa2, 0xfa, 0xc0, 0x24, 0xa8,
1284313498266Sopenharmony_ci  0x98, 0x3b, 0x4a, 0x12, 0x57, 0xbb, 0x52, 0x30, 0x39, 0x72, 0x41, 0x67,
1284413498266Sopenharmony_ci  0x25, 0xf9, 0x0f, 0x7c, 0xe3, 0xe0, 0x8b, 0x57, 0x82, 0x15, 0xb5, 0x37,
1284513498266Sopenharmony_ci  0x5c, 0x2e, 0x86, 0x17, 0x25, 0x14, 0x0a, 0x3e, 0x1f, 0xf6, 0xfe, 0xb8,
1284613498266Sopenharmony_ci  0x36, 0x3c, 0x3d, 0x9a, 0x44, 0x5c, 0x31, 0xaf, 0x24, 0x6a, 0x8c, 0x98,
1284713498266Sopenharmony_ci  0x87, 0x29, 0xff, 0xc9, 0x4c, 0xd1, 0x9a, 0x21, 0xe1, 0xa6, 0xc3, 0x9f,
1284813498266Sopenharmony_ci  0x9c, 0xea, 0x6c, 0xf5, 0xe8, 0x9b, 0x37, 0xb4, 0x95, 0x90, 0x8e, 0x84,
1284913498266Sopenharmony_ci  0x70, 0x0a, 0x14, 0x50, 0xa0, 0x2a, 0xec, 0x52, 0x7f, 0x4e, 0x37, 0x46,
1285013498266Sopenharmony_ci  0x72, 0x76, 0x79, 0xf8, 0x1a, 0x10, 0x08, 0x25, 0xaf, 0x0e, 0x68, 0x78,
1285113498266Sopenharmony_ci  0xda, 0xc9, 0xef, 0x67, 0x03, 0xaa, 0xe9, 0x0a, 0x69, 0x15, 0x95, 0x5c,
1285213498266Sopenharmony_ci  0xe4, 0xdf, 0x90, 0x6a, 0xea, 0x51, 0xef, 0x3a, 0x77, 0xbd, 0x19, 0x05,
1285313498266Sopenharmony_ci  0x5d, 0x18, 0x7f, 0x80, 0x0d, 0x61, 0xc9, 0xa6, 0x02, 0x3f, 0x69, 0x7a,
1285413498266Sopenharmony_ci  0x43, 0x3d, 0xca, 0x00, 0xdc, 0x5c, 0x1d, 0xe8, 0xa7, 0xd4, 0x76, 0xcd,
1285513498266Sopenharmony_ci  0x49, 0xd5, 0x83, 0xa4, 0xc8, 0x05, 0xe6, 0xf8, 0x71, 0xd5, 0x9e, 0xd4,
1285613498266Sopenharmony_ci  0xb0, 0x1b, 0x37, 0x3a, 0xe5, 0x0e, 0x53, 0xf7, 0x63, 0x75, 0x61, 0x84,
1285713498266Sopenharmony_ci  0xd0, 0x96, 0x05, 0x77, 0x73, 0x59, 0xaf, 0x63, 0x86, 0xc5, 0x90, 0x60,
1285813498266Sopenharmony_ci  0x2c, 0x65, 0x82, 0x9b, 0x5c, 0xd2, 0xa7, 0x81, 0xec, 0x3a, 0xd2, 0x11,
1285913498266Sopenharmony_ci  0x39, 0xd2, 0x1d, 0x3e, 0x35, 0x64, 0x04, 0x63, 0x30, 0xe0, 0xb1, 0xc1,
1286013498266Sopenharmony_ci  0xa2, 0x49, 0x28, 0x00, 0x65, 0x90, 0x53, 0xb8, 0x97, 0x5c, 0xaa, 0x06,
1286113498266Sopenharmony_ci  0x89, 0xd2, 0xdb, 0x3d, 0xfe, 0x26, 0xca, 0x6a, 0xd5, 0xd0, 0x33, 0x81,
1286213498266Sopenharmony_ci  0x9e, 0x55, 0xf3, 0x50, 0x8f, 0x51, 0x63, 0xdc, 0x08, 0xe4, 0xbb, 0xc4,
1286313498266Sopenharmony_ci  0x49, 0xa4, 0x5c, 0xcd, 0xee, 0x55, 0xef, 0xe2, 0xde, 0xca, 0x82, 0x73,
1286413498266Sopenharmony_ci  0xb6, 0xa8, 0xf4, 0x97, 0x6a, 0x07, 0xdc, 0x5e, 0x4a, 0xfd, 0x1f, 0xe9,
1286513498266Sopenharmony_ci  0xfb, 0x86, 0x33, 0x66, 0x1b, 0x01, 0x21, 0xa1, 0x61, 0xd4, 0x9a, 0xe1,
1286613498266Sopenharmony_ci  0xc4, 0xaa, 0x0d, 0xd6, 0xec, 0xea, 0xce, 0x3d, 0x25, 0x61, 0xdc, 0x59,
1286713498266Sopenharmony_ci  0x92, 0x3c, 0xbe, 0x82, 0x1a, 0xa7, 0x06, 0x37, 0x5a, 0x8f, 0x1e, 0xeb,
1286813498266Sopenharmony_ci  0x5c, 0x42, 0xf7, 0x28, 0x01, 0x03, 0xa1, 0x8b, 0x06, 0x80, 0x05, 0xb8,
1286913498266Sopenharmony_ci  0xb7, 0x81, 0x95, 0x61, 0x0b, 0xfe, 0x30, 0xff, 0x70, 0x4a, 0xcb, 0x73,
1287013498266Sopenharmony_ci  0xb5, 0x74, 0x74, 0x1a, 0xce, 0xf2, 0x71, 0x03, 0x09, 0x94, 0x46, 0x34,
1287113498266Sopenharmony_ci  0x03, 0xcc, 0x81, 0x71, 0x54, 0x9e, 0xda, 0xcb, 0x1d, 0xdf, 0xd4, 0x20,
1287213498266Sopenharmony_ci  0x27, 0xa9, 0xc1, 0x30, 0x41, 0x4f, 0xbf, 0xd2, 0x36, 0xa3, 0x0c, 0xaa,
1287313498266Sopenharmony_ci  0xc1, 0x03, 0x4c, 0x61, 0x82, 0x68, 0xe0, 0x30, 0xb2, 0x50, 0x23, 0x4c,
1287413498266Sopenharmony_ci  0x69, 0x99, 0xf9, 0xa0, 0x7f, 0xb8, 0x3a, 0x2a, 0x44, 0x5d, 0xbc, 0xa2,
1287513498266Sopenharmony_ci  0x30, 0x9b, 0xba, 0x50, 0x1b, 0xe8, 0x01, 0xdf, 0xc4, 0x2c, 0x64, 0xf4,
1287613498266Sopenharmony_ci  0x19, 0x02, 0x9f, 0xd1, 0x5a, 0x1a, 0xe7, 0xf1, 0xa1, 0x19, 0x5e, 0xa4,
1287713498266Sopenharmony_ci  0xda, 0x25, 0x5b, 0x67, 0xd5, 0x63, 0x78, 0x5a, 0x90, 0x2c, 0x30, 0x1f,
1287813498266Sopenharmony_ci  0x20, 0x1e, 0x69, 0x2f, 0x5a, 0x01, 0x99, 0x80, 0xe6, 0xfe, 0x4a, 0x25,
1287913498266Sopenharmony_ci  0x47, 0xde, 0x53, 0xd1, 0xd0, 0x5c, 0x17, 0x99, 0x55, 0xca, 0x29, 0xb9,
1288013498266Sopenharmony_ci  0xf2, 0x21, 0x38, 0xc2, 0x7c, 0x02, 0x50, 0x4c, 0xfc, 0xc3, 0x2d, 0x38,
1288113498266Sopenharmony_ci  0x47, 0x21, 0xc6, 0xce, 0x09, 0xb3, 0x81, 0x08, 0x6e, 0x53, 0x14, 0xf5,
1288213498266Sopenharmony_ci  0x17, 0xeb, 0x5b, 0xa4, 0x3b, 0xe0, 0x27, 0x6b, 0x26, 0xeb, 0x6f, 0x44,
1288313498266Sopenharmony_ci  0x78, 0x3d, 0x2a, 0xe6, 0x57, 0x8a, 0x2f, 0xb3, 0xfb, 0x2b, 0xc0, 0x7c,
1288413498266Sopenharmony_ci  0x6a, 0x58, 0x78, 0xc9, 0x60, 0x47, 0x68, 0x28, 0x5c, 0x25, 0x92, 0x2b,
1288513498266Sopenharmony_ci  0x8b, 0x39, 0x90, 0x88, 0x32, 0x70, 0x9a, 0x92, 0xdf, 0x9a, 0x64, 0x5f,
1288613498266Sopenharmony_ci  0x7d, 0x34, 0x82, 0xf1, 0x83, 0xde, 0x59, 0x25, 0x67, 0x55, 0xb2, 0x68,
1288713498266Sopenharmony_ci  0x3e, 0x57, 0x90, 0x7d, 0x53, 0x43, 0xd3, 0x3e, 0x65, 0xde, 0xa4, 0x83,
1288813498266Sopenharmony_ci  0x5f, 0x41, 0x1f, 0xa1, 0x4c, 0x3a, 0x25, 0xbe, 0x51, 0x07, 0xd4, 0xf0,
1288913498266Sopenharmony_ci  0xef, 0xa2, 0x0b, 0x5a, 0x95, 0x58, 0x35, 0x3e, 0x19, 0xd2, 0x0c, 0x2d,
1289013498266Sopenharmony_ci  0x66, 0xfe, 0x04, 0xa6, 0x00, 0xe3, 0xec, 0x5a, 0x10, 0x03, 0xea, 0xdf,
1289113498266Sopenharmony_ci  0x59, 0x78, 0x0f, 0xb0, 0xb7, 0x71, 0x02, 0x80, 0x6d, 0x49, 0x3d, 0x33,
1289213498266Sopenharmony_ci  0xa0, 0x9e, 0xa8, 0xce, 0x89, 0xf6, 0xa7, 0x09, 0x35, 0x74, 0xfe, 0xd9,
1289313498266Sopenharmony_ci  0x4c, 0xb3, 0x40, 0xe0, 0x95, 0xf5, 0x51, 0x43, 0xdd, 0x22, 0xaa, 0x8a,
1289413498266Sopenharmony_ci  0xaa, 0x2d, 0xcf, 0x49, 0xb2, 0x8f, 0xad, 0x94, 0xa3, 0xa1, 0xaf, 0xd6,
1289513498266Sopenharmony_ci  0x4c, 0x20, 0x86, 0x5d, 0xba, 0x8d, 0x32, 0xa0, 0xad, 0x8d, 0xf9, 0x5f,
1289613498266Sopenharmony_ci  0xf4, 0x23, 0xe6, 0x72, 0xd5, 0x70, 0xce, 0x08, 0x2f, 0xef, 0x50, 0x2d,
1289713498266Sopenharmony_ci  0x0d, 0x24, 0x39, 0x88, 0xc2, 0x79, 0x1b, 0x43, 0x06, 0xef, 0xe1, 0x1d,
1289813498266Sopenharmony_ci  0x74, 0x38, 0xa6, 0xf2, 0xe3, 0xc5, 0x7c, 0x8a, 0x42, 0x7e, 0x48, 0x5f,
1289913498266Sopenharmony_ci  0xaf, 0x99, 0x0a, 0x75, 0x27, 0xbd, 0xc4, 0x1a, 0x17, 0x34, 0xcb, 0xc6,
1290013498266Sopenharmony_ci  0x59, 0xba, 0x80, 0xfb, 0xaa, 0x5c, 0x8a, 0x64, 0xae, 0x61, 0x12, 0xa6,
1290113498266Sopenharmony_ci  0x61, 0xcd, 0x31, 0x91, 0x6a, 0x39, 0x44, 0xdb, 0xd1, 0x39, 0xe2, 0x6c,
1290213498266Sopenharmony_ci  0x0d, 0x1a, 0x74, 0x18, 0xe4, 0x15, 0xdc, 0x3a, 0x0f, 0xaf, 0x15, 0xea,
1290313498266Sopenharmony_ci  0x0c, 0x2c, 0x11, 0x83, 0x46, 0x0a, 0x6a, 0xde, 0x42, 0x39, 0x88, 0xc2,
1290413498266Sopenharmony_ci  0x07, 0x02, 0x1b, 0x23, 0x2c, 0x81, 0xd4, 0xea, 0x1c, 0xe6, 0xad, 0xd7,
1290513498266Sopenharmony_ci  0x71, 0xbf, 0xd4, 0xde, 0x08, 0x1a, 0x11, 0x95, 0xe4, 0x42, 0x45, 0xbf,
1290613498266Sopenharmony_ci  0xe6, 0xbf, 0x3a, 0x22, 0x11, 0x92, 0x6e, 0x45, 0x71, 0x4d, 0x82, 0xba,
1290713498266Sopenharmony_ci  0x42, 0x61, 0x6c, 0xc1, 0x89, 0xc9, 0x54, 0x6a, 0xa2, 0x66, 0x5c, 0x1a,
1290813498266Sopenharmony_ci  0x84, 0x81, 0x83, 0x75, 0x12, 0x81, 0x78, 0xee, 0x7b, 0x67, 0xa7, 0xa7,
1290913498266Sopenharmony_ci  0x87, 0xbd, 0x4b, 0x5d, 0xd5, 0xe8, 0xa7, 0x95, 0x5d, 0x37, 0x0d, 0xb4,
1291013498266Sopenharmony_ci  0xc2, 0x63, 0x3a, 0x46, 0xaf, 0xc9, 0x0c, 0xf4, 0x2d, 0x00, 0xd2, 0x99,
1291113498266Sopenharmony_ci  0x2b, 0xf4, 0x99, 0xf5, 0x1b, 0xae, 0x96, 0x9d, 0x0d, 0xdf, 0xd5, 0x82,
1291213498266Sopenharmony_ci  0xf2, 0xa3, 0x4e, 0x54, 0x18, 0xed, 0xe6, 0x4b, 0x74, 0x5f, 0x39, 0x5f,
1291313498266Sopenharmony_ci  0x2f, 0xbd, 0xc3, 0x21, 0x7e, 0xd9, 0x55, 0x3c, 0x6f, 0x98, 0xd4, 0xd1,
1291413498266Sopenharmony_ci  0x39, 0xa4, 0x4b, 0x61, 0xcf, 0x08, 0x56, 0x02, 0x08, 0xf4, 0xcc, 0x82,
1291513498266Sopenharmony_ci  0x5f, 0x41, 0x63, 0x94, 0x6c, 0x51, 0x35, 0xc5, 0xa1, 0xdb, 0x9c, 0xc2,
1291613498266Sopenharmony_ci  0xa4, 0x19, 0x09, 0xa0, 0x71, 0x47, 0xa4, 0x05, 0x87, 0x7d, 0x8f, 0xce,
1291713498266Sopenharmony_ci  0xbf, 0x6e, 0x03, 0xdb, 0x40, 0x80, 0xa5, 0x5b, 0x43, 0x26, 0x68, 0x3f,
1291813498266Sopenharmony_ci  0x4d, 0x9c, 0x42, 0x74, 0x51, 0xab, 0x64, 0xe3, 0x52, 0xf2, 0x13, 0xc8,
1291913498266Sopenharmony_ci  0xb4, 0xd4, 0x1c, 0x69, 0xff, 0xcd, 0x42, 0xb0, 0x5a, 0xcb, 0xf6, 0x9f,
1292013498266Sopenharmony_ci  0xc1, 0xb7, 0x6c, 0x30, 0xb6, 0x8a, 0xb5, 0x4e, 0x56, 0xbd, 0x66, 0x36,
1292113498266Sopenharmony_ci  0x3f, 0xaf, 0xda, 0x5b, 0xb7, 0xe9, 0xdb, 0x3a, 0x35, 0xc3, 0xab, 0x26,
1292213498266Sopenharmony_ci  0x7d, 0xf5, 0x94, 0x56, 0x00, 0xf5, 0x1a, 0xae, 0x02, 0xb3, 0xf4, 0xd6,
1292313498266Sopenharmony_ci  0xdc, 0x24, 0xda, 0x31, 0x91, 0x10, 0x1b, 0x81, 0xea, 0xad, 0x9a, 0x25,
1292413498266Sopenharmony_ci  0xc1, 0xa2, 0xae, 0xaa, 0x6a, 0xab, 0x71, 0x9c, 0x1a, 0x94, 0xd8, 0x3a,
1292513498266Sopenharmony_ci  0x8d, 0xd0, 0xd5, 0x6c, 0x2d, 0x25, 0x76, 0x05, 0x2d, 0x16, 0xe7, 0x4f,
1292613498266Sopenharmony_ci  0x0c, 0xb5, 0x64, 0x09, 0xa0, 0xb0, 0x23, 0xba, 0x15, 0xee, 0xcb, 0x09,
1292713498266Sopenharmony_ci  0x94, 0x9e, 0x67, 0xcd, 0x7b, 0x52, 0x2f, 0xa6, 0xe0, 0x33, 0x7c, 0xcd,
1292813498266Sopenharmony_ci  0x35, 0x4b, 0x53, 0xfe, 0x92, 0x73, 0x53, 0xf3, 0x87, 0x2c, 0x16, 0x94,
1292913498266Sopenharmony_ci  0xad, 0xaf, 0xd9, 0x79, 0xa8, 0x3f, 0x0b, 0x71, 0x89, 0x03, 0xc4, 0x25,
1293013498266Sopenharmony_ci  0x80, 0x7b, 0x20, 0x8b, 0x08, 0xb8, 0x70, 0xbd, 0x6b, 0xf5, 0xaa, 0xa0,
1293113498266Sopenharmony_ci  0xf2, 0xf4, 0xb0, 0x58, 0xe4, 0x94, 0xde, 0xea, 0x1d, 0xee, 0xa8, 0x0f,
1293213498266Sopenharmony_ci  0x96, 0xa7, 0x92, 0x74, 0x5c, 0x71, 0x5c, 0xe6, 0xac, 0xad, 0xba, 0x95,
1293313498266Sopenharmony_ci  0x95, 0x0f, 0x2e, 0x5f, 0x5a, 0xfd, 0x24, 0x4b, 0x3c, 0xd0, 0x04, 0xc8,
1293413498266Sopenharmony_ci  0x25, 0x61, 0x78, 0xab, 0x56, 0xb0, 0xaa, 0x93, 0x08, 0x2a, 0x7e, 0xc3,
1293513498266Sopenharmony_ci  0xca, 0xda, 0x80, 0x49, 0xc6, 0x2d, 0x47, 0xdd, 0x8e, 0x27, 0xe9, 0x6d,
1293613498266Sopenharmony_ci  0x22, 0x55, 0x00, 0x1a, 0x39, 0xbd, 0x5e, 0x23, 0x02, 0x77, 0x20, 0xa8,
1293713498266Sopenharmony_ci  0x3c, 0x88, 0xeb, 0xf7, 0x2d, 0xca, 0x52, 0xce, 0xc4, 0x0e, 0x56, 0x30,
1293813498266Sopenharmony_ci  0x2c, 0xf0, 0xce, 0xb8, 0xca, 0xf3, 0x29, 0x5c, 0x03, 0xf1, 0xe8, 0x5e,
1293913498266Sopenharmony_ci  0x2d, 0x50, 0xae, 0xd4, 0x9c, 0x66, 0xc2, 0xc1, 0x6b, 0xc8, 0xa4, 0x5b,
1294013498266Sopenharmony_ci  0x21, 0xeb, 0x67, 0x39, 0x06, 0xb0, 0xe6, 0x51, 0xf9, 0x44, 0xfa, 0x1a,
1294113498266Sopenharmony_ci  0xb0, 0x89, 0x73, 0x73, 0xa4, 0x7b, 0xe4, 0x52, 0x6a, 0x3b, 0x5e, 0x2b,
1294213498266Sopenharmony_ci  0xda, 0x16, 0xeb, 0x06, 0x1b, 0x3a, 0xea, 0x87, 0xc3, 0xe8, 0xe7, 0xfd,
1294313498266Sopenharmony_ci  0xc3, 0xc1, 0xdb, 0xa6, 0x1a, 0xb4, 0xcc, 0x11, 0x3b, 0x5e, 0x59, 0x23,
1294413498266Sopenharmony_ci  0x7b, 0x7c, 0xa5, 0x6e, 0xcb, 0x9a, 0x29, 0x63, 0x61, 0x82, 0x12, 0xe9,
1294513498266Sopenharmony_ci  0xac, 0xae, 0x92, 0x3f, 0x12, 0xbe, 0x84, 0xa7, 0x4d, 0x5c, 0x85, 0x9d,
1294613498266Sopenharmony_ci  0x63, 0xcc, 0x8c, 0x05, 0x49, 0x5d, 0xe3, 0xb4, 0xd1, 0xf1, 0x2c, 0x04,
1294713498266Sopenharmony_ci  0x56, 0xb4, 0xb8, 0x2b, 0x58, 0x03, 0xe7, 0x0d, 0xb9, 0x26, 0x20, 0x24,
1294813498266Sopenharmony_ci  0x72, 0xd7, 0xc1, 0xbf, 0xa1, 0x39, 0x04, 0x42, 0x77, 0xbd, 0xdd, 0x10,
1294913498266Sopenharmony_ci  0xef, 0xd4, 0xb9, 0xdc, 0x26, 0x3f, 0x2d, 0xbc, 0x81, 0x84, 0x40, 0x4c,
1295013498266Sopenharmony_ci  0x55, 0x0f, 0xf5, 0x67, 0x82, 0x5b, 0x2c, 0x28, 0xc6, 0x78, 0x41, 0x30,
1295113498266Sopenharmony_ci  0xae, 0xbd, 0xc8, 0x94, 0x2d, 0xe6, 0x59, 0x23, 0x28, 0x87, 0x6a, 0x62,
1295213498266Sopenharmony_ci  0xe5, 0x0b, 0x7a, 0xe2, 0xb5, 0x56, 0xf1, 0xb4, 0xe5, 0x0c, 0xeb, 0x04,
1295313498266Sopenharmony_ci  0x36, 0x72, 0x99, 0x11, 0x77, 0xfd, 0x5b, 0x01, 0xa6, 0x46, 0xf3, 0x95,
1295413498266Sopenharmony_ci  0xad, 0x9b, 0x87, 0xb9, 0x77, 0xf7, 0xf7, 0xdc, 0x84, 0x0f, 0xbc, 0xac,
1295513498266Sopenharmony_ci  0x99, 0xc2, 0x25, 0xb7, 0x35, 0x93, 0xb8, 0xda, 0x65, 0xfd, 0x3d, 0xb7,
1295613498266Sopenharmony_ci  0xb5, 0x08, 0xe2, 0xab, 0x07, 0xf8, 0x03, 0xb4, 0xf0, 0xf6, 0xea, 0xc2,
1295713498266Sopenharmony_ci  0x96, 0xa6, 0x59, 0x43, 0x88, 0xc8, 0xa0, 0x35, 0x08, 0xd3, 0xa0, 0x9b,
1295813498266Sopenharmony_ci  0x0c, 0xc2, 0xe9, 0x89, 0x46, 0xa1, 0x42, 0x5a, 0x3c, 0x10, 0x17, 0xd7,
1295913498266Sopenharmony_ci  0x04, 0xb1, 0xd4, 0x40, 0x25, 0xb0, 0x29, 0xa3, 0x5b, 0xad, 0x41, 0xa5,
1296013498266Sopenharmony_ci  0x11, 0xe5, 0xf4, 0x72, 0x51, 0x96, 0x84, 0xbd, 0xd7, 0x6d, 0xf1, 0x10,
1296113498266Sopenharmony_ci  0xd5, 0x06, 0xeb, 0xb5, 0x32, 0x4a, 0xba, 0xe8, 0xf2, 0xe3, 0x9f, 0xc7,
1296213498266Sopenharmony_ci  0xdf, 0xa2, 0xab, 0xa1, 0x9a, 0x08, 0x40, 0x0e, 0x36, 0x2d, 0x65, 0x91,
1296313498266Sopenharmony_ci  0x16, 0xb0, 0x8c, 0xe1, 0x4c, 0xad, 0x17, 0x8a, 0x3e, 0xab, 0x3c, 0x06,
1296413498266Sopenharmony_ci  0x2f, 0x06, 0x19, 0x04, 0xbe, 0xcb, 0xe0, 0x04, 0xf5, 0xe6, 0x26, 0x7c,
1296513498266Sopenharmony_ci  0x56, 0x98, 0x02, 0x90, 0x24, 0x9f, 0x93, 0xaf, 0x55, 0x36, 0x45, 0x56,
1296613498266Sopenharmony_ci  0x3b, 0x03, 0x17, 0x31, 0x66, 0xf5, 0x7a, 0x8a, 0x74, 0x4a, 0x46, 0x95,
1296713498266Sopenharmony_ci  0x27, 0xfc, 0x8c, 0x53, 0xa3, 0xbf, 0x36, 0x4c, 0x8c, 0xe6, 0x55, 0x9d,
1296813498266Sopenharmony_ci  0x96, 0xb4, 0xaa, 0xd2, 0x73, 0x5a, 0xf2, 0x19, 0x96, 0x8a, 0x0f, 0xfe,
1296913498266Sopenharmony_ci  0x8e, 0x59, 0x3e, 0x3b, 0x20, 0x28, 0x5a, 0x64, 0xcd, 0x2e, 0xd7, 0x5c,
1297013498266Sopenharmony_ci  0xb8, 0x48, 0x08, 0x61, 0x47, 0xfe, 0x1b, 0x74, 0x08, 0xbc, 0xa8, 0x41,
1297113498266Sopenharmony_ci  0x98, 0xa8, 0x75, 0x8d, 0xe0, 0x26, 0x1a, 0xe7, 0x9a, 0xd9, 0xc7, 0xc7,
1297213498266Sopenharmony_ci  0xde, 0x48, 0x75, 0x9f, 0x0e, 0x57, 0x61, 0xd2, 0x10, 0x6a, 0x84, 0xc6,
1297313498266Sopenharmony_ci  0x66, 0xdb, 0x02, 0x7c, 0xd3, 0x6a, 0x94, 0x81, 0x1e, 0xb4, 0x7c, 0x01,
1297413498266Sopenharmony_ci  0xf5, 0x66, 0xdc, 0x24, 0x69, 0x52, 0x6b, 0xcf, 0x50, 0xc0, 0x5c, 0x8f,
1297513498266Sopenharmony_ci  0xd5, 0x0d, 0xde, 0xe2, 0x4a, 0xcd, 0x31, 0x91, 0x13, 0x72, 0xa6, 0xeb,
1297613498266Sopenharmony_ci  0x08, 0x5d, 0xba, 0x05, 0x9a, 0x4e, 0x46, 0xa0, 0xb5, 0xa8, 0x24, 0x88,
1297713498266Sopenharmony_ci  0x3a, 0xa1, 0x51, 0x92, 0x7f, 0x3d, 0x58, 0xbc, 0x12, 0xb8, 0x40, 0x1a,
1297813498266Sopenharmony_ci  0x69, 0x9c, 0x95, 0x28, 0xfc, 0x6e, 0x2d, 0xa7, 0x4e, 0xaf, 0xa9, 0x28,
1297913498266Sopenharmony_ci  0x30, 0xf5, 0x6a, 0xc9, 0x0a, 0x3a, 0x4d, 0x55, 0x7d, 0x71, 0xc9, 0xc7,
1298013498266Sopenharmony_ci  0x10, 0x6b, 0x0d, 0xcd, 0xef, 0xc8, 0x6f, 0x86, 0x11, 0x83, 0x18, 0x98,
1298113498266Sopenharmony_ci  0x3b, 0xa1, 0xaa, 0xfc, 0x6a, 0x4a, 0x85, 0x51, 0x35, 0x39, 0x5a, 0x56,
1298213498266Sopenharmony_ci  0xa7, 0x08, 0x98, 0x58, 0x30, 0x2b, 0x93, 0xb6, 0x38, 0xdd, 0xf5, 0xea,
1298313498266Sopenharmony_ci  0xd7, 0x94, 0x76, 0xf1, 0xe3, 0x09, 0x94, 0x36, 0x5f, 0xf6, 0xa1, 0x95,
1298413498266Sopenharmony_ci  0xe8, 0xb6, 0x09, 0x61, 0x73, 0x31, 0x5d, 0xed, 0x70, 0x41, 0xae, 0x94,
1298513498266Sopenharmony_ci  0x39, 0xe8, 0x3e, 0x04, 0xd6, 0x5a, 0xc0, 0xc9, 0x23, 0xfc, 0xa3, 0x40,
1298613498266Sopenharmony_ci  0x12, 0x73, 0x63, 0x8e, 0x15, 0x1c, 0xe8, 0xfe, 0x15, 0x82, 0xdb, 0xed,
1298713498266Sopenharmony_ci  0x2a, 0x9c, 0xcf, 0x97, 0xbb, 0x87, 0xe0, 0x49, 0x04, 0x41, 0x21, 0x66,
1298813498266Sopenharmony_ci  0xce, 0xdb, 0x84, 0x2c, 0x95, 0x7e, 0x31, 0x1e, 0x52, 0xaa, 0x02, 0x83,
1298913498266Sopenharmony_ci  0xf6, 0xa0, 0x45, 0x3c, 0x6d, 0x38, 0xcd, 0x8a, 0x79, 0x9f, 0xf7, 0xfb,
1299013498266Sopenharmony_ci  0x1f, 0x9e, 0x47, 0xc5, 0x8d, 0xd8, 0x8a, 0xcf, 0x0d, 0x9c, 0x49, 0x19,
1299113498266Sopenharmony_ci  0xa0, 0x1f, 0x50, 0x20, 0x91, 0x11, 0x97, 0x9c, 0x3a, 0xcf, 0xe9, 0xc2,
1299213498266Sopenharmony_ci  0xb9, 0xad, 0xe0, 0xf7, 0xa2, 0x99, 0xa1, 0xff, 0xad, 0x7e, 0x6e, 0x34,
1299313498266Sopenharmony_ci  0x35, 0x9a, 0x59, 0xed, 0xc4, 0x2e, 0x7b, 0xe7, 0x32, 0x21, 0xdf, 0x34,
1299413498266Sopenharmony_ci  0xd6, 0xa8, 0xf8, 0x1c, 0x5c, 0x62, 0x3c, 0xa3, 0x46, 0xd2, 0xc1, 0xff,
1299513498266Sopenharmony_ci  0x3a, 0x55, 0x44, 0x2c, 0xe6, 0x3f, 0x66, 0x5b, 0x30, 0xe8, 0x40, 0x59,
1299613498266Sopenharmony_ci  0xfe, 0x18, 0xf3, 0x5f, 0x81, 0xc4, 0x39, 0x78, 0x24, 0xe9, 0x4e, 0xf9,
1299713498266Sopenharmony_ci  0x31, 0x2b, 0x4c, 0xb9, 0x01, 0xa2, 0xfd, 0x01, 0x89, 0x98, 0xd4, 0x42,
1299813498266Sopenharmony_ci  0x09, 0x94, 0x58, 0xe0, 0x35, 0x8e, 0x93, 0x6a, 0x63, 0x66, 0x70, 0xd9,
1299913498266Sopenharmony_ci  0xd5, 0xb0, 0x8e, 0xba, 0xd5, 0x8d, 0x3d, 0xcb, 0x51, 0x53, 0x29, 0x9c,
1300013498266Sopenharmony_ci  0x23, 0x1c, 0x15, 0xcc, 0x7c, 0xd4, 0x65, 0xc7, 0x92, 0xb8, 0x50, 0x7b,
1300113498266Sopenharmony_ci  0x68, 0x8b, 0x49, 0x64, 0x63, 0x54, 0x8a, 0xc2, 0x48, 0x98, 0xab, 0x5f,
1300213498266Sopenharmony_ci  0xa1, 0x80, 0xa2, 0x6e, 0x2d, 0xc5, 0x32, 0xfa, 0xbe, 0xcd, 0x86, 0xa2,
1300313498266Sopenharmony_ci  0x8a, 0xe9, 0xd4, 0x98, 0x71, 0x78, 0x05, 0x28, 0xf9, 0x3e, 0xaf, 0x51,
1300413498266Sopenharmony_ci  0xfb, 0x4c, 0x6d, 0x1f, 0xed, 0x3b, 0x31, 0x5a, 0x5b, 0xd8, 0xb7, 0x1d,
1300513498266Sopenharmony_ci  0x58, 0x5b, 0x2b, 0xb9, 0x20, 0xf8, 0x8f, 0x9a, 0xa8, 0x28, 0x61, 0x4a,
1300613498266Sopenharmony_ci  0x91, 0x13, 0x1e, 0xf2, 0xbd, 0xf1, 0xf1, 0xf0, 0xc6, 0xdc, 0x23, 0xe4,
1300713498266Sopenharmony_ci  0x69, 0xe9, 0x52, 0x7f, 0x3f, 0x3d, 0xd9, 0x56, 0x9d, 0x0f, 0xcc, 0x14,
1300813498266Sopenharmony_ci  0x3a, 0xf3, 0xcd, 0x4f, 0x95, 0x53, 0xe8, 0xef, 0x85, 0x1e, 0x51, 0xa8,
1300913498266Sopenharmony_ci  0x2f, 0x98, 0xf8, 0x07, 0x8f, 0xd7, 0x60, 0xb7, 0xe4, 0x35, 0xcb, 0x8e,
1301013498266Sopenharmony_ci  0x84, 0xfd, 0x68, 0x26, 0xce, 0x30, 0x85, 0xa8, 0xc0, 0x80, 0x83, 0xb8,
1301113498266Sopenharmony_ci  0x07, 0x4d, 0xd0, 0x51, 0xf3, 0x6d, 0xf5, 0x8c, 0xd5, 0x7b, 0xf8, 0x28,
1301213498266Sopenharmony_ci  0xa7, 0xb1, 0x60, 0x1e, 0xb1, 0x01, 0xa9, 0xa0, 0xf4, 0x91, 0xb2, 0x1b,
1301313498266Sopenharmony_ci  0x94, 0x0d, 0x03, 0x4c, 0xc9, 0x39, 0x35, 0xb5, 0xfa, 0x2c, 0xa8, 0x19,
1301413498266Sopenharmony_ci  0x35, 0x6b, 0x85, 0xda, 0xea, 0x52, 0x6d, 0xd6, 0xb7, 0x50, 0xa6, 0x95,
1301513498266Sopenharmony_ci  0xb4, 0x24, 0xd9, 0xd4, 0xf5, 0x37, 0x91, 0x2c, 0xc3, 0x30, 0xf7, 0x8a,
1301613498266Sopenharmony_ci  0x1d, 0xf0, 0x8b, 0x18, 0x43, 0xcd, 0xd8, 0x8d, 0x00, 0x92, 0x5c, 0xb5,
1301713498266Sopenharmony_ci  0xb1, 0xfc, 0x0e, 0x26, 0xa8, 0x3a, 0x5e, 0x6a, 0x05, 0x8a, 0x09, 0x48,
1301813498266Sopenharmony_ci  0x68, 0xdf, 0x36, 0xfa, 0x79, 0xc3, 0x27, 0xfd, 0xc3, 0xed, 0x75, 0x5f,
1301913498266Sopenharmony_ci  0xd4, 0x91, 0x01, 0x65, 0xb5, 0x4d, 0x01, 0x6b, 0xa8, 0xba, 0xb5, 0x7b,
1302013498266Sopenharmony_ci  0xf5, 0x62, 0x97, 0x18, 0xcb, 0xf2, 0xd4, 0x24, 0x2c, 0x8d, 0x72, 0x34,
1302113498266Sopenharmony_ci  0x10, 0x21, 0x30, 0x4e, 0x4d, 0xab, 0xa1, 0xa1, 0x9e, 0xaa, 0xd4, 0x3c,
1302213498266Sopenharmony_ci  0xe6, 0x6a, 0x70, 0x09, 0x76, 0x03, 0x1d, 0xfc, 0xc4, 0x0a, 0x54, 0xfc,
1302313498266Sopenharmony_ci  0x3b, 0x0b, 0x02, 0x77, 0x75, 0xd3, 0x62, 0xe0, 0x5d, 0x6e, 0x18, 0xc3,
1302413498266Sopenharmony_ci  0x34, 0xf0, 0x79, 0xcc, 0xc5, 0x58, 0xe2, 0xd4, 0xf1, 0x78, 0x73, 0xfc,
1302513498266Sopenharmony_ci  0x14, 0x00, 0xca, 0x5c, 0x92, 0x52, 0xac, 0xa6, 0xe6, 0xda, 0xe7, 0xf0,
1302613498266Sopenharmony_ci  0x05, 0x72, 0x94, 0x95, 0x5e, 0x26, 0x25, 0xb5, 0x96, 0x43, 0x44, 0x49,
1302713498266Sopenharmony_ci  0x27, 0x74, 0xb3, 0xb4, 0x1b, 0x8c, 0x0b, 0x7a, 0xf4, 0x59, 0x6e, 0xd0,
1302813498266Sopenharmony_ci  0xa9, 0x2d, 0x52, 0x21, 0xa1, 0x1b, 0x7c, 0xc9, 0xf6, 0x39, 0x6d, 0x64,
1302913498266Sopenharmony_ci  0xcd, 0xc6, 0xbc, 0x02, 0xcc, 0x27, 0xf8, 0xc3, 0xcf, 0x07, 0x82, 0xc4,
1303013498266Sopenharmony_ci  0x37, 0xf1, 0x83, 0xdd, 0x17, 0x40, 0x33, 0xc4, 0x63, 0xf3, 0xc3, 0x48,
1303113498266Sopenharmony_ci  0x99, 0xa8, 0x90, 0x05, 0xd4, 0x40, 0x88, 0x3c, 0xb2, 0xfa, 0x21, 0xfd,
1303213498266Sopenharmony_ci  0x1e, 0x42, 0xbe, 0xa5, 0x49, 0x14, 0x37, 0x0a, 0x8b, 0x6f, 0xe8, 0x48,
1303313498266Sopenharmony_ci  0x8c, 0xff, 0x50, 0x61, 0x11, 0x2d, 0x17, 0xe1, 0xcc, 0xb3, 0x36, 0x11,
1303413498266Sopenharmony_ci  0x26, 0x40, 0x0c, 0x95, 0x9d, 0xea, 0x86, 0x59, 0x0f, 0x2a, 0x3c, 0x53,
1303513498266Sopenharmony_ci  0xe7, 0xc8, 0x73, 0x6e, 0x97, 0x26, 0xd2, 0x96, 0x88, 0x75, 0x86, 0x39,
1303613498266Sopenharmony_ci  0xad, 0x08, 0x90, 0x1a, 0xd2, 0x64, 0xcd, 0x1e, 0x85, 0xb0, 0x15, 0x44,
1303713498266Sopenharmony_ci  0xbd, 0x57, 0xd2, 0x1b, 0xda, 0xfe, 0xc0, 0x55, 0x5b, 0x2e, 0xfe, 0xb5,
1303813498266Sopenharmony_ci  0xfc, 0xaf, 0xac, 0x9d, 0x43, 0xde, 0xa3, 0x2f, 0xdc, 0x92, 0x2b, 0x01,
1303913498266Sopenharmony_ci  0x6f, 0x84, 0xd5, 0xf6, 0xf3, 0x91, 0x17, 0x6d, 0x59, 0xa4, 0x1e, 0x85,
1304013498266Sopenharmony_ci  0xaf, 0x16, 0xf1, 0x1e, 0xe2, 0x1e, 0xbe, 0x62, 0x47, 0x88, 0xde, 0x67,
1304113498266Sopenharmony_ci  0x4b, 0xf5, 0xf2, 0xcd, 0xa1, 0x94, 0xbd, 0xc1, 0xa2, 0x30, 0xd7, 0x62,
1304213498266Sopenharmony_ci  0xd3, 0x35, 0x41, 0x95, 0x76, 0x7c, 0xa7, 0xf0, 0xd2, 0x2c, 0xb9, 0x40,
1304313498266Sopenharmony_ci  0xea, 0x0d, 0x86, 0x64, 0xf5, 0x63, 0xb0, 0xe2, 0xb5, 0xf2, 0xa3, 0x77,
1304413498266Sopenharmony_ci  0xf3, 0xfb, 0xae, 0x1a, 0x0f, 0x71, 0x8f, 0x7e, 0x00, 0xbe, 0xf7, 0xfa,
1304513498266Sopenharmony_ci  0xf9, 0x21, 0x92, 0xe3, 0x01, 0x57, 0x52, 0x59, 0x9f, 0xff, 0xa3, 0x05,
1304613498266Sopenharmony_ci  0x87, 0x62, 0xda, 0x25, 0x91, 0xa6, 0x38, 0x19, 0x46, 0x77, 0x96, 0x22,
1304713498266Sopenharmony_ci  0xc7, 0x4d, 0xe8, 0xc4, 0xe0, 0x53, 0x87, 0x62, 0xa3, 0x83, 0xcf, 0xa0,
1304813498266Sopenharmony_ci  0x16, 0xf3, 0x31, 0xa9, 0xb1, 0xd9, 0xb0, 0xe5, 0x19, 0x5c, 0xe8, 0x6a,
1304913498266Sopenharmony_ci  0x4c, 0x2c, 0x5d, 0x0d, 0xa5, 0x8f, 0x64, 0x4e, 0x60, 0xc6, 0xd6, 0x57,
1305013498266Sopenharmony_ci  0x42, 0x86, 0xab, 0xcc, 0xe2, 0x71, 0xdd, 0xbd, 0x2b, 0xc3, 0x41, 0x63,
1305113498266Sopenharmony_ci  0xb4, 0xd5, 0x2c, 0xaa, 0x95, 0x12, 0x70, 0x7d, 0x3a, 0x00, 0x1a, 0x7a,
1305213498266Sopenharmony_ci  0x26, 0xba, 0x81, 0x21, 0x49, 0x2b, 0xaf, 0x36, 0x1e, 0xf9, 0x87, 0x83,
1305313498266Sopenharmony_ci  0x72, 0x26, 0x6a, 0x56, 0x8c, 0xb0, 0x9b, 0x5c, 0x1f, 0xc6, 0xb1, 0x6c,
1305413498266Sopenharmony_ci  0x09, 0x7a, 0xbf, 0xae, 0x0d, 0x62, 0x20, 0x86, 0xac, 0x71, 0xf1, 0x3e,
1305513498266Sopenharmony_ci  0x0c, 0x48, 0xf6, 0x51, 0x90, 0xee, 0x6f, 0x83, 0x67, 0x4f, 0x7f, 0x2b,
1305613498266Sopenharmony_ci  0x45, 0x4e, 0x7f, 0xff, 0x25, 0x79, 0xf6, 0x30, 0xf4, 0x1e, 0x1b, 0xd0,
1305713498266Sopenharmony_ci  0x8c, 0x8a, 0x18, 0x75, 0x5f, 0x31, 0x1b, 0x60, 0xf6, 0x2e, 0x2c, 0x8a,
1305813498266Sopenharmony_ci  0xcc, 0x0b, 0x0d, 0x9d, 0x87, 0x5f, 0x09, 0x93, 0x8c, 0xab, 0x3c, 0x74,
1305913498266Sopenharmony_ci  0xae, 0x72, 0xbb, 0x5c, 0x8d, 0x10, 0x4d, 0xa7, 0xb9, 0xc1, 0x03, 0x2e,
1306013498266Sopenharmony_ci  0xd2, 0xcc, 0xa9, 0xbd, 0x8a, 0x32, 0x2c, 0x46, 0x44, 0xf7, 0xdc, 0x2c,
1306113498266Sopenharmony_ci  0x2a, 0x42, 0xea, 0x86, 0x97, 0x10, 0xf4, 0x03, 0xaa, 0x9a, 0xdc, 0x07,
1306213498266Sopenharmony_ci  0x50, 0x91, 0x12, 0xab, 0xeb, 0x01, 0xb1, 0x4c, 0x7a, 0x98, 0xa6, 0x59,
1306313498266Sopenharmony_ci  0x4c, 0xef, 0xdb, 0xbe, 0x7a, 0x12, 0x14, 0x14, 0x58, 0x90, 0x0b, 0x1f,
1306413498266Sopenharmony_ci  0xa4, 0x04, 0x49, 0xf8, 0x43, 0xeb, 0x6e, 0x38, 0xee, 0x12, 0xf7, 0x76,
1306513498266Sopenharmony_ci  0x15, 0x49, 0x2d, 0x33, 0x26, 0xac, 0x41, 0xdb, 0x03, 0xcf, 0x0d, 0x01,
1306613498266Sopenharmony_ci  0xbc, 0x76, 0x09, 0x36, 0x0f, 0x12, 0xf2, 0xd1, 0x18, 0xa1, 0xa1, 0x25,
1306713498266Sopenharmony_ci  0x7b, 0xac, 0x35, 0x43, 0x2f, 0x87, 0xfa, 0x63, 0xcb, 0x22, 0xb5, 0xeb,
1306813498266Sopenharmony_ci  0xef, 0x43, 0x86, 0x13, 0x62, 0x24, 0x76, 0x0d, 0x34, 0x25, 0x55, 0xb3,
1306913498266Sopenharmony_ci  0x7a, 0xde, 0x66, 0xc2, 0x50, 0x32, 0x77, 0x1b, 0x66, 0x89, 0xaf, 0xa0,
1307013498266Sopenharmony_ci  0x0e, 0x99, 0x3f, 0x5f, 0x78, 0xb8, 0xa8, 0xd4, 0xaa, 0x04, 0x77, 0x32,
1307113498266Sopenharmony_ci  0x78, 0x64, 0xbc, 0x29, 0x1c, 0xf4, 0xa1, 0xd5, 0xb5, 0x44, 0x49, 0x87,
1307213498266Sopenharmony_ci  0xb8, 0x01, 0x82, 0x67, 0x0f, 0x62, 0xdc, 0x0b, 0x2b, 0xfd, 0x9c, 0xbc,
1307313498266Sopenharmony_ci  0x45, 0xd5, 0xa0, 0x8b, 0xaf, 0x73, 0xfb, 0xbb, 0xa3, 0xe3, 0xc3, 0xbe,
1307413498266Sopenharmony_ci  0x8c, 0xf9, 0xbf, 0xcf, 0xbb, 0x40, 0x4a, 0x76, 0xa3, 0xbf, 0x72, 0xc0,
1307513498266Sopenharmony_ci  0xea, 0x82, 0xd5, 0xd5, 0x0a, 0xdb, 0x1f, 0x95, 0xe0, 0x01, 0x2b, 0xdd,
1307613498266Sopenharmony_ci  0x8e, 0x0e, 0x4f, 0x3f, 0x1d, 0x5d, 0x9c, 0x9d, 0x9e, 0x1c, 0x9e, 0x5e,
1307713498266Sopenharmony_ci  0x3e, 0xb1, 0xab, 0x21, 0xbc, 0xb0, 0xb4, 0x4e, 0x71, 0xac, 0x64, 0x44,
1307813498266Sopenharmony_ci  0x73, 0xba, 0x76, 0x16, 0xa8, 0xcd, 0xe7, 0x7f, 0x75, 0xed, 0xe1, 0xac,
1307913498266Sopenharmony_ci  0x87, 0x24, 0x67, 0x15, 0xf6, 0x6c, 0x0e, 0x9e, 0xbf, 0x21, 0xe4, 0x29,
1308013498266Sopenharmony_ci  0x77, 0x39, 0x69, 0x01, 0x83, 0x03, 0x2d, 0x2c, 0x51, 0x82, 0xa3, 0x03,
1308113498266Sopenharmony_ci  0xf9, 0xd1, 0xe8, 0xc7, 0x35, 0x97, 0x51, 0x6c, 0x92, 0xb2, 0x4c, 0x0e,
1308213498266Sopenharmony_ci  0x6a, 0x89, 0x0e, 0xb3, 0x93, 0x1f, 0x09, 0xf8, 0x1d, 0x2a, 0xc7, 0xea,
1308313498266Sopenharmony_ci  0x40, 0x71, 0x11, 0xf0, 0x79, 0x12, 0x51, 0x54, 0x82, 0xfa, 0x50, 0xca,
1308413498266Sopenharmony_ci  0x9d, 0x41, 0x8c, 0x64, 0x7d, 0xda, 0x74, 0xda, 0xec, 0xdc, 0xb5, 0xa5,
1308513498266Sopenharmony_ci  0xbd, 0x86, 0x53, 0x1c, 0x70, 0x6d, 0x26, 0x72, 0x1d, 0xfc, 0x43, 0xdc,
1308613498266Sopenharmony_ci  0xdf, 0x8a, 0x31, 0xfe, 0xf9, 0x13, 0x68, 0xc9, 0x6f, 0xfe, 0xf1, 0x1a,
1308713498266Sopenharmony_ci  0xce, 0xc7, 0x3f, 0x5d, 0xbc, 0xe5, 0xdc, 0x22, 0xc4, 0x60, 0xe9, 0x4b,
1308813498266Sopenharmony_ci  0x7b, 0x0d, 0x38, 0xc2, 0xd6, 0x47, 0x30, 0xc9, 0xeb, 0xea, 0xfc, 0xe2,
1308913498266Sopenharmony_ci  0xec, 0xe7, 0xbf, 0x3f, 0xf6, 0x57, 0xac, 0xca, 0xfe, 0xeb, 0x7f, 0x00,
1309013498266Sopenharmony_ci  0x4a, 0x8e, 0x8c, 0xfe, 0xcf, 0xc7, 0xff, 0x5e, 0x79, 0xfc, 0x36, 0x57,
1309113498266Sopenharmony_ci  0x28, 0xa2, 0x28, 0xf2, 0x80, 0x14, 0x53, 0x8f, 0x2f, 0xc1, 0xdf, 0xd6,
1309213498266Sopenharmony_ci  0x4d, 0xbf, 0xac, 0x50, 0xb5, 0x01, 0xa5, 0x4d, 0xb0, 0xe0, 0xa0, 0xc4,
1309313498266Sopenharmony_ci  0xaa, 0xd5, 0xc2, 0x6b, 0xbc, 0xdc, 0xb1, 0x9f, 0x93, 0xc1, 0x63, 0x90,
1309413498266Sopenharmony_ci  0x66, 0x69, 0xd0, 0x10, 0x4d, 0x5a, 0xa6, 0x01, 0x92, 0x90, 0x59, 0x92,
1309513498266Sopenharmony_ci  0xfd, 0xe3, 0xe3, 0xc7, 0x5d, 0x87, 0x78, 0x44, 0xfe, 0x29, 0x1e, 0xab,
1309613498266Sopenharmony_ci  0x63, 0x4a, 0x43, 0xe9, 0x69, 0xf7, 0xb6, 0x2d, 0xa1, 0x2b, 0x5f, 0x9f,
1309713498266Sopenharmony_ci  0x9e, 0x09, 0x3d, 0x3f, 0x55, 0x41, 0x6a, 0xa7, 0x0c, 0x36, 0x0e, 0xa4,
1309813498266Sopenharmony_ci  0xe5, 0xcf, 0x09, 0x81, 0x26, 0x7f, 0xe3, 0x83, 0xbe, 0x95, 0xa7, 0xb8,
1309913498266Sopenharmony_ci  0xe6, 0x01, 0x57, 0x94, 0x5b, 0x5e, 0x20, 0xb8, 0x63, 0xaa, 0x5b, 0xb9,
1310013498266Sopenharmony_ci  0x43, 0x19, 0x3d, 0xe1, 0xe1, 0xc0, 0x3d, 0xa0, 0x48, 0x71, 0x3b, 0x5d,
1310113498266Sopenharmony_ci  0x42, 0x2b, 0x22, 0x75, 0x2b, 0x64, 0x71, 0xfe, 0x05, 0x91, 0x30, 0xe1,
1310213498266Sopenharmony_ci  0xb4, 0x62, 0xa8, 0x40, 0x7a, 0xd3, 0x41, 0xa0, 0x06, 0x69, 0xea, 0x52,
1310313498266Sopenharmony_ci  0xdf, 0x5e, 0xd3, 0x70, 0xc2, 0x99, 0x2b, 0x52, 0x07, 0x7a, 0x51, 0x48,
1310413498266Sopenharmony_ci  0xda, 0x92, 0xda, 0x54, 0x4e, 0x0d, 0x0b, 0x4b, 0xed, 0x0f, 0xa8, 0xd3,
1310513498266Sopenharmony_ci  0x0a, 0x63, 0x02, 0xe4, 0xba, 0x7f, 0x5e, 0xc7, 0x53, 0xf7, 0xd9, 0x96,
1310613498266Sopenharmony_ci  0xc6, 0x47, 0xf0, 0x00, 0x7d, 0xba, 0xc8, 0xa3, 0xe9, 0xc8, 0x8f, 0xab,
1310713498266Sopenharmony_ci  0xe8, 0x95, 0x1c, 0xdc, 0x8e, 0x2e, 0x17, 0xac, 0x44, 0xe1, 0x58, 0xd8,
1310813498266Sopenharmony_ci  0xae, 0x08, 0x7a, 0xa8, 0x60, 0xf6, 0xa0, 0x53, 0x2e, 0x2c, 0xcc, 0x68,
1310913498266Sopenharmony_ci  0xea, 0x90, 0x5c, 0x41, 0xa2, 0xbe, 0x8a, 0x88, 0x07, 0x6e, 0x51, 0x27,
1311013498266Sopenharmony_ci  0x6d, 0xf3, 0x9f, 0x28, 0x6e, 0x64, 0x37, 0x6e, 0xe5, 0x3b, 0xe9, 0x4e,
1311113498266Sopenharmony_ci  0x7a, 0x4f, 0xd2, 0xf6, 0xd4, 0x77, 0x80, 0xe4, 0xc7, 0xdc, 0x81, 0x9e,
1311213498266Sopenharmony_ci  0x38, 0xf5, 0xd2, 0xdc, 0x1f, 0x0e, 0xe3, 0x2a, 0x54, 0xa8, 0x0c, 0x5a,
1311313498266Sopenharmony_ci  0x09, 0xbd, 0x09, 0x9b, 0x0a, 0xd5, 0xa2, 0x7f, 0x38, 0xa1, 0x90, 0x85,
1311413498266Sopenharmony_ci  0x46, 0xfd, 0x98, 0xbf, 0x83, 0x56, 0xe1, 0x5b, 0x7d, 0xfc, 0xfc, 0xa0,
1311513498266Sopenharmony_ci  0x7c, 0xfa, 0x14, 0xb0, 0x77, 0x9b, 0xce, 0x41, 0xa9, 0xad, 0x96, 0x80,
1311613498266Sopenharmony_ci  0xac, 0x9a, 0x2c, 0x3e, 0x4c, 0x7a, 0xac, 0xb2, 0x18, 0x26, 0x41, 0x0a,
1311713498266Sopenharmony_ci  0x56, 0x2c, 0xa2, 0x38, 0x69, 0xfc, 0x18, 0x3e, 0x51, 0x58, 0x8d, 0x3a,
1311813498266Sopenharmony_ci  0x90, 0x76, 0x3b, 0x92, 0xb0, 0x0a, 0x08, 0xc4, 0xd3, 0xd4, 0x0b, 0x37,
1311913498266Sopenharmony_ci  0x30, 0x00, 0xa8, 0x14, 0x25, 0x43, 0x5c, 0x35, 0xfe, 0x3c, 0x90, 0xb4,
1312013498266Sopenharmony_ci  0x4b, 0xa1, 0xb6, 0x74, 0x41, 0xd3, 0x95, 0xd5, 0x3b, 0x3a, 0xb8, 0x80,
1312113498266Sopenharmony_ci  0x63, 0xcc, 0x36, 0x01, 0x4c, 0x09, 0x2b, 0x8a, 0x9d, 0xd4, 0x0b, 0x6a,
1312213498266Sopenharmony_ci  0xf7, 0x8e, 0xc1, 0x5f, 0x32, 0x95, 0x4c, 0xcf, 0xec, 0xa2, 0x94, 0x7a,
1312313498266Sopenharmony_ci  0xde, 0x12, 0x54, 0xd5, 0x81, 0x3a, 0x3a, 0xad, 0x80, 0xca, 0x06, 0x9d,
1312413498266Sopenharmony_ci  0x26, 0xcd, 0x78, 0x2a, 0x24, 0x2b, 0x54, 0xa4, 0x5d, 0xa2, 0xa3, 0x9a,
1312513498266Sopenharmony_ci  0xea, 0x30, 0x01, 0x40, 0x74, 0xa9, 0x6e, 0x1e, 0x12, 0x51, 0xa5, 0xed,
1312613498266Sopenharmony_ci  0x88, 0x53, 0xbd, 0x0f, 0x5b, 0x1f, 0xb4, 0x5e, 0xbc, 0xda, 0xec, 0xbe,
1312713498266Sopenharmony_ci  0xd8, 0xdd, 0xeb, 0x6e, 0x74, 0x37, 0x9e, 0xbf, 0xd8, 0x6d, 0x71, 0x1e,
1312813498266Sopenharmony_ci  0x2d, 0xca, 0x07, 0x2a, 0x4d, 0x31, 0xeb, 0xa1, 0x41, 0x79, 0x7d, 0xa5,
1312913498266Sopenharmony_ci  0x87, 0x32, 0x50, 0xcb, 0x16, 0xee, 0xe7, 0xe7, 0x07, 0xfb, 0x97, 0xfb,
1313013498266Sopenharmony_ci  0x4a, 0x94, 0x2a, 0xe6, 0x7d, 0xe3, 0x69, 0xa4, 0xa4, 0xdb, 0x30, 0x92,
1313113498266Sopenharmony_ci  0x7d, 0x60, 0x83, 0xc0, 0x53, 0xaf, 0x74, 0x2c, 0x34, 0xce, 0xee, 0xb9,
1313213498266Sopenharmony_ci  0x4d, 0xdc, 0x28, 0xe6, 0x18, 0xc2, 0x24, 0x75, 0x8a, 0x0b, 0xe9, 0x78,
1313313498266Sopenharmony_ci  0xa4, 0xd9, 0xbd, 0xae, 0x53, 0x9f, 0x67, 0xf1, 0x0c, 0xba, 0x9d, 0xc0,
1313413498266Sopenharmony_ci  0xc3, 0x66, 0x68, 0x84, 0x8c, 0x55, 0xf3, 0x5a, 0x24, 0x65, 0xb9, 0xdf,
1313513498266Sopenharmony_ci  0x3b, 0x3b, 0xfe, 0x78, 0x72, 0xda, 0x57, 0xb4, 0x42, 0x2b, 0x50, 0x8c,
1313613498266Sopenharmony_ci  0x39, 0xdf, 0xc6, 0xc3, 0x62, 0xf2, 0xc6, 0xd5, 0xd6, 0x11, 0x8d, 0xbe,
1313713498266Sopenharmony_ci  0x28, 0x35, 0x8c, 0x30, 0x7b, 0xa9, 0x01, 0x01, 0x73, 0xbb, 0xbd, 0x01,
1313813498266Sopenharmony_ci  0x9e, 0x22, 0x18, 0xd7, 0x95, 0xa0, 0xfc, 0x1d, 0xe9, 0xad, 0x00, 0xd4,
1313913498266Sopenharmony_ci  0x31, 0xd0, 0xd9, 0x57, 0x3c, 0x62, 0x63, 0x58, 0xfe, 0xce, 0x20, 0xcc,
1314013498266Sopenharmony_ci  0x34, 0x8c, 0xd4, 0x2d, 0x16, 0x6d, 0x62, 0x20, 0xc6, 0x0b, 0x94, 0x4f,
1314113498266Sopenharmony_ci  0x96, 0x15, 0xe2, 0x85, 0xe2, 0xa2, 0x8d, 0x17, 0xd4, 0xa5, 0x0a, 0xd8,
1314213498266Sopenharmony_ci  0x8a, 0x58, 0x98, 0x00, 0x46, 0x6f, 0xc3, 0xfb, 0xdc, 0x5e, 0x01, 0x75,
1314313498266Sopenharmony_ci  0xbe, 0xaf, 0x7a, 0xfb, 0x57, 0x6f, 0x3f, 0x9e, 0x1e, 0x1c, 0x1f, 0xaa,
1314413498266Sopenharmony_ci  0x85, 0xf0, 0x75, 0x0c, 0x91, 0xe9, 0x93, 0xe2, 0x68, 0x4f, 0x4f, 0xa9,
1314513498266Sopenharmony_ci  0xc4, 0x21, 0xd8, 0x6d, 0x64, 0xd5, 0x76, 0xfd, 0xe2, 0xde, 0xdf, 0xea,
1314613498266Sopenharmony_ci  0x50, 0x2d, 0xd5, 0x38, 0x21, 0xcb, 0x69, 0x64, 0x6a, 0xa8, 0x2b, 0xe3,
1314713498266Sopenharmony_ci  0x5b, 0x10, 0x60, 0x55, 0xa2, 0x3f, 0x9c, 0x9d, 0x1c, 0xfa, 0x99, 0xec,
1314813498266Sopenharmony_ci  0x68, 0xc4, 0x6b, 0x82, 0x6b, 0x67, 0x6a, 0xfa, 0x0c, 0x0a, 0x39, 0x76,
1314913498266Sopenharmony_ci  0xde, 0x9c, 0x44, 0x37, 0x5f, 0x72, 0x1f, 0xb7, 0x39, 0xe6, 0x4e, 0x4e,
1315013498266Sopenharmony_ci  0xec, 0x54, 0xe6, 0x36, 0xb4, 0xd4, 0x78, 0x55, 0xe0, 0xce, 0x8c, 0x93,
1315113498266Sopenharmony_ci  0x05, 0xad, 0x3d, 0x8d, 0x1c, 0x04, 0x3f, 0x1f, 0xbc, 0xbf, 0xea, 0x9d,
1315213498266Sopenharmony_ci  0x9d, 0x56, 0x67, 0xff, 0xee, 0xe8, 0x3d, 0xd2, 0x5e, 0x99, 0x4e, 0xbf,
1315313498266Sopenharmony_ci  0x7f, 0x7c, 0xf5, 0x76, 0xbf, 0xf7, 0xd7, 0xc3, 0xd3, 0x03, 0x35, 0x2b,
1315413498266Sopenharmony_ci  0x6b, 0xde, 0xbe, 0xd9, 0x51, 0xe2, 0x63, 0x03, 0x42, 0x65, 0x4b, 0x60,
1315513498266Sopenharmony_ci  0xd7, 0x5a, 0x6d, 0xf1, 0x84, 0x30, 0xde, 0x44, 0x95, 0x79, 0x26, 0x32,
1315613498266Sopenharmony_ci  0x08, 0x40, 0x30, 0xda, 0x43, 0xcc, 0x4a, 0x08, 0x13, 0x16, 0x41, 0x72,
1315713498266Sopenharmony_ci  0x70, 0x1b, 0xdb, 0xf4, 0x38, 0xfd, 0x47, 0xb8, 0x2d, 0x8c, 0x2e, 0x4c,
1315813498266Sopenharmony_ci  0xb5, 0xf1, 0x4b, 0xa8, 0x52, 0x79, 0xe4, 0x49, 0x76, 0xb0, 0xb2, 0x60,
1315913498266Sopenharmony_ci  0xf8, 0xeb, 0x22, 0x04, 0x6f, 0x75, 0xfb, 0x5f, 0xcc, 0xd2, 0xf9, 0x9a,
1316013498266Sopenharmony_ci  0x7e, 0xc1, 0x36, 0x64, 0xdc, 0x73, 0x05, 0x94, 0x5b, 0x4f, 0x31, 0xb2,
1316113498266Sopenharmony_ci  0xb4, 0x1a, 0xa0, 0x5e, 0x0f, 0x66, 0xde, 0xf6, 0xe9, 0x9b, 0x19, 0x18,
1316213498266Sopenharmony_ci  0x77, 0x25, 0xfb, 0xee, 0x8d, 0xa2, 0x31, 0x74, 0x92, 0x1d, 0xd0, 0x56,
1316313498266Sopenharmony_ci  0x74, 0x21, 0x4a, 0xfa, 0xc7, 0x9a, 0x58, 0xba, 0x02, 0xd7, 0x60, 0xc6,
1316413498266Sopenharmony_ci  0x1d, 0x6b, 0xc6, 0xeb, 0xaf, 0xd5, 0x92, 0x84, 0x59, 0x9e, 0x4f, 0xdb,
1316513498266Sopenharmony_ci  0xc1, 0x38, 0x59, 0x14, 0x53, 0x90, 0x86, 0x4a, 0x98, 0x0c, 0x0b, 0x17,
1316613498266Sopenharmony_ci  0xed, 0x3b, 0x55, 0xd7, 0x0c, 0x3e, 0x98, 0x2d, 0x72, 0x7c, 0x30, 0xe7,
1316713498266Sopenharmony_ci  0xb3, 0x02, 0x86, 0x29, 0x94, 0x64, 0x51, 0xf2, 0x11, 0xec, 0x9b, 0x52,
1316813498266Sopenharmony_ci  0xfe, 0xd3, 0xe9, 0x48, 0x3d, 0x6c, 0x19, 0x39, 0x2b, 0x9c, 0x92, 0x82,
1316913498266Sopenharmony_ci  0xcb, 0xd4, 0x03, 0x8d, 0x61, 0x51, 0x92, 0xb9, 0x86, 0xef, 0xad, 0x56,
1317013498266Sopenharmony_ci  0x30, 0x8e, 0x92, 0x49, 0x29, 0x22, 0xdd, 0xe0, 0x18, 0xb0, 0x4e, 0xb9,
1317113498266Sopenharmony_ci  0x1c, 0x3b, 0x45, 0x6c, 0x32, 0x49, 0x79, 0x15, 0x57, 0x3c, 0xdb, 0xdc,
1317213498266Sopenharmony_ci  0xdd, 0x40, 0x1f, 0x63, 0x0f, 0x1a, 0x32, 0x1f, 0x1e, 0x39, 0x2c, 0xe4,
1317313498266Sopenharmony_ci  0xa7, 0x9b, 0xeb, 0x26, 0x36, 0x96, 0x30, 0xf8, 0xdb, 0xf1, 0xd9, 0xfb,
1317413498266Sopenharmony_ci  0x83, 0xa3, 0x0b, 0x9a, 0x24, 0xd3, 0xe9, 0x6b, 0x4b, 0x7a, 0x34, 0xf2,
1317513498266Sopenharmony_ci  0xe2, 0xba, 0x96, 0xf1, 0x30, 0xdb, 0xba, 0x33, 0xb2, 0x61, 0x71, 0x66,
1317613498266Sopenharmony_ci  0xe9, 0x1a, 0x80, 0x25, 0xe9, 0x9c, 0x41, 0xe5, 0x8c, 0x86, 0x04, 0x8b,
1317713498266Sopenharmony_ci  0x8d, 0x94, 0x3c, 0x1f, 0x2e, 0x6e, 0xa2, 0xe0, 0x5f, 0x88, 0x42, 0x1e,
1317813498266Sopenharmony_ci  0x27, 0xbe, 0xc0, 0xb7, 0x7e, 0xb1, 0xcd, 0xd2, 0x1a, 0x3d, 0x43, 0xc4,
1317913498266Sopenharmony_ci  0x3e, 0xf0, 0xdf, 0x21, 0xa7, 0x6e, 0x72, 0x7f, 0x0d, 0x83, 0xa3, 0xe2,
1318013498266Sopenharmony_ci  0xaf, 0xb5, 0xa0, 0xbf, 0x81, 0xaf, 0x7a, 0x0d, 0x52, 0x68, 0x26, 0xd1,
1318113498266Sopenharmony_ci  0xdd, 0x3a, 0xb8, 0x73, 0x52, 0x60, 0x7c, 0x53, 0x8f, 0x96, 0x33, 0xc8,
1318213498266Sopenharmony_ci  0x24, 0x9f, 0xd1, 0x1b, 0xd8, 0x6c, 0x65, 0xf5, 0x4c, 0x9c, 0x24, 0x21,
1318313498266Sopenharmony_ci  0x44, 0x9f, 0xec, 0x06, 0x9f, 0xa1, 0xe3, 0xa1, 0xd5, 0x88, 0x68, 0x5c,
1318413498266Sopenharmony_ci  0xdc, 0xcc, 0x37, 0x51, 0xd7, 0xf9, 0xd7, 0x42, 0x99, 0x0e, 0x51, 0xf0,
1318513498266Sopenharmony_ci  0xb7, 0x8f, 0x47, 0x3d, 0x0f, 0x64, 0xe3, 0x75, 0xff, 0xc3, 0xe1, 0xb1,
1318613498266Sopenharmony_ci  0x83, 0x00, 0xf9, 0x91, 0xfb, 0x74, 0x7f, 0x3a, 0xe9, 0x57, 0xa5, 0xf0,
1318713498266Sopenharmony_ci  0x30, 0xc2, 0x96, 0x87, 0xea, 0x62, 0x90, 0xce, 0x73, 0xea, 0x3c, 0x1f,
1318813498266Sopenharmony_ci  0xf4, 0x8e, 0x09, 0x1d, 0x3e, 0x84, 0x34, 0xc4, 0xf8, 0xae, 0x7a, 0x0b,
1318913498266Sopenharmony_ci  0x4e, 0x22, 0xbb, 0x73, 0x23, 0x80, 0x0f, 0x5e, 0xf5, 0x0e, 0x2f, 0x2e,
1319013498266Sopenharmony_ci  0xaf, 0x34, 0x73, 0x3c, 0xec, 0x5a, 0xc3, 0x08, 0xce, 0x0f, 0xbd, 0xd6,
1319113498266Sopenharmony_ci  0x34, 0xc5, 0xe0, 0xa4, 0x52, 0x24, 0x03, 0x05, 0xff, 0xe9, 0x57, 0xb1,
1319213498266Sopenharmony_ci  0xa2, 0xf9, 0xaf, 0x87, 0x7f, 0x57, 0x47, 0x90, 0x69, 0xd6, 0x6c, 0xfb,
1319313498266Sopenharmony_ci  0xa6, 0xa6, 0xf3, 0x68, 0x44, 0x40, 0x97, 0xb5, 0xde, 0xa4, 0xd0, 0x70,
1319413498266Sopenharmony_ci  0xbe, 0x74, 0xc9, 0x01, 0xff, 0x6a, 0x55, 0xdc, 0x00, 0x35, 0xdc, 0x26,
1319513498266Sopenharmony_ci  0x40, 0x43, 0x6d, 0xc1, 0x45, 0x6d, 0x8a, 0x96, 0xf5, 0x49, 0x63, 0xe0,
1319613498266Sopenharmony_ci  0x8c, 0x09, 0xf6, 0xa2, 0xc0, 0x7b, 0xc2, 0xad, 0x63, 0x23, 0xd8, 0x64,
1319713498266Sopenharmony_ci  0xea, 0xd2, 0x00, 0xc6, 0x77, 0x38, 0xbd, 0xff, 0x16, 0xe9, 0x69, 0x73,
1319813498266Sopenharmony_ci  0xdf, 0x03, 0x18, 0x30, 0x8b, 0xd8, 0xad, 0xcf, 0x8c, 0xc9, 0x4a, 0xbc,
1319913498266Sopenharmony_ci  0xd3, 0xbb, 0x03, 0x06, 0x20, 0x66, 0x06, 0x7c, 0x4b, 0x69, 0x6e, 0xff,
1320013498266Sopenharmony_ci  0x59, 0x9d, 0x72, 0x88, 0xab, 0x7c, 0xe1, 0xed, 0xb9, 0x2d, 0x1f, 0x28,
1320113498266Sopenharmony_ci  0x8d, 0x0d, 0xe5, 0x99, 0xac, 0x9c, 0xaa, 0xd7, 0xa6, 0x7a, 0x17, 0x10,
1320213498266Sopenharmony_ci  0xe2, 0x23, 0xbc, 0x1a, 0xde, 0xa6, 0x80, 0xa2, 0x87, 0x3f, 0x52, 0x45,
1320313498266Sopenharmony_ci  0x2f, 0x1e, 0x4a, 0xb8, 0x0c, 0xd4, 0x6f, 0xd6, 0x6e, 0x7d, 0xec, 0x1f,
1320413498266Sopenharmony_ci  0x5e, 0x28, 0xc3, 0x92, 0xf7, 0xca, 0xaf, 0x9f, 0x6b, 0xf5, 0x7c, 0x75,
1320513498266Sopenharmony_ci  0xed, 0x9c, 0x3b, 0x10, 0x37, 0xea, 0xe7, 0x78, 0xdf, 0x10, 0xc6, 0x13,
1320613498266Sopenharmony_ci  0x08, 0x98, 0x76, 0x20, 0xaa, 0x7a, 0xbb, 0x4e, 0x4d, 0x57, 0x6f, 0xd4,
1320713498266Sopenharmony_ci  0x2a, 0xba, 0x0b, 0xb1, 0x52, 0xf1, 0x94, 0xb6, 0xfe, 0xcb, 0x9a, 0xd8,
1320813498266Sopenharmony_ci  0x2f, 0xfb, 0x73, 0x02, 0x82, 0x00, 0x11, 0x78, 0x00, 0x6d, 0x4a, 0xac,
1320913498266Sopenharmony_ci  0x05, 0xa8, 0x5c, 0x2b, 0xb5, 0x72, 0xc1, 0x5c, 0x4d, 0xac, 0x2c, 0xb0,
1321013498266Sopenharmony_ci  0xfa, 0x5f, 0x59, 0x11, 0xd4, 0xf4, 0x0c, 0x06, 0x13, 0xdf, 0x78, 0x6e,
1321113498266Sopenharmony_ci  0x8f, 0x4a, 0xab, 0x2d, 0x18, 0xdf, 0x7e, 0x82, 0x3a, 0x85, 0x66, 0x7e,
1321213498266Sopenharmony_ci  0xa0, 0xfe, 0x7b, 0x79, 0xa6, 0x8c, 0x11, 0xf5, 0x7f, 0x0e, 0xdf, 0x1d,
1321313498266Sopenharmony_ci  0xfd, 0x6c, 0x3c, 0xd4, 0x97, 0xc6, 0x29, 0xc2, 0xd8, 0x8d, 0x00, 0xdb,
1321413498266Sopenharmony_ci  0x58, 0xb2, 0x4f, 0xb9, 0x7d, 0xa9, 0xe5, 0x47, 0xe3, 0xc6, 0x6c, 0xe8,
1321513498266Sopenharmony_ci  0x9b, 0xa5, 0x56, 0x89, 0x32, 0x5c, 0xc5, 0xca, 0xb8, 0xbb, 0x37, 0x18,
1321613498266Sopenharmony_ci  0xac, 0x66, 0x91, 0x38, 0x36, 0x2f, 0xae, 0xc1, 0xb8, 0xe2, 0x02, 0xb4,
1321713498266Sopenharmony_ci  0x7c, 0x70, 0x44, 0x91, 0xb4, 0x0e, 0xc3, 0x24, 0x71, 0xfc, 0x05, 0x43,
1321813498266Sopenharmony_ci  0x19, 0x32, 0x1c, 0xac, 0x1e, 0x5b, 0x96, 0x06, 0x88, 0x13, 0x74, 0xca,
1321913498266Sopenharmony_ci  0xb6, 0x35, 0x14, 0x94, 0x37, 0x10, 0x7e, 0x18, 0x62, 0x9c, 0x70, 0x61,
1322013498266Sopenharmony_ci  0x6a, 0xc5, 0xd7, 0x80, 0x09, 0x39, 0x7a, 0x84, 0x32, 0xfd, 0xd2, 0x8c,
1322113498266Sopenharmony_ci  0x8e, 0x60, 0xeb, 0xb0, 0x08, 0x10, 0xce, 0x92, 0xd5, 0x94, 0x89, 0x1d,
1322213498266Sopenharmony_ci  0x21, 0xde, 0xa6, 0x3d, 0xdc, 0xe2, 0x01, 0x23, 0x1b, 0xd5, 0xcf, 0xe3,
1322313498266Sopenharmony_ci  0x67, 0x65, 0xf7, 0xc8, 0xd1, 0x28, 0x59, 0x41, 0x6e, 0xfa, 0x2b, 0x2c,
1322413498266Sopenharmony_ci  0xbb, 0xd3, 0x23, 0x52, 0xc2, 0x1a, 0xde, 0x4f, 0x43, 0xf6, 0xaf, 0x33,
1322513498266Sopenharmony_ci  0x73, 0x07, 0x2e, 0x1b, 0x00, 0x55, 0xf3, 0xed, 0xa6, 0x31, 0x20, 0xe2,
1322613498266Sopenharmony_ci  0xa0, 0x6e, 0x61, 0x25, 0xfc, 0x23, 0xaa, 0x02, 0xeb, 0x74, 0xe8, 0xa5,
1322713498266Sopenharmony_ci  0xca, 0x18, 0xe1, 0x77, 0x0d, 0x12, 0x96, 0x47, 0xd9, 0xf9, 0x9e, 0x41,
1322813498266Sopenharmony_ci  0x76, 0x2a, 0x63, 0x4c, 0xbe, 0x6b, 0x90, 0x8e, 0x78, 0x1c, 0x9f, 0x3c,
1322913498266Sopenharmony_ci  0x39, 0xfc, 0xf9, 0xe8, 0x32, 0xe8, 0x9d, 0x1d, 0x94, 0x8e, 0x4b, 0xc6,
1323013498266Sopenharmony_ci  0x62, 0x44, 0xe9, 0x78, 0x89, 0xe2, 0x39, 0xf5, 0xe6, 0x30, 0x1e, 0xa1,
1323113498266Sopenharmony_ci  0xd6, 0x58, 0x30, 0x40, 0x15, 0xc4, 0x49, 0x73, 0xc9, 0x4c, 0x8c, 0xe1,
1323213498266Sopenharmony_ci  0xdf, 0x19, 0xc5, 0x50, 0x29, 0x42, 0x66, 0xd5, 0x75, 0x67, 0x98, 0x1f,
1323313498266Sopenharmony_ci  0x4e, 0x78, 0x56, 0xb9, 0x58, 0x0f, 0x70, 0x00, 0x19, 0x91, 0x86, 0x9a,
1323413498266Sopenharmony_ci  0x49, 0xea, 0x61, 0x13, 0x6a, 0x53, 0x94, 0x77, 0x83, 0xfd, 0xc2, 0xa4,
1323513498266Sopenharmony_ci  0x51, 0x1b, 0x97, 0x0e, 0x8a, 0x0f, 0x08, 0x4f, 0x61, 0xdf, 0x7a, 0xea,
1323613498266Sopenharmony_ci  0xe4, 0x81, 0xc6, 0xe3, 0x90, 0xd8, 0xd6, 0xf0, 0xea, 0x06, 0x5b, 0x12,
1323713498266Sopenharmony_ci  0x54, 0x37, 0xd5, 0xe5, 0xbc, 0x55, 0xce, 0x75, 0xb6, 0x90, 0x5f, 0x4b,
1323813498266Sopenharmony_ci  0x5d, 0x82, 0xc3, 0x1b, 0x35, 0x93, 0xa1, 0x14, 0xf5, 0x78, 0x8c, 0x29,
1323913498266Sopenharmony_ci  0x0b, 0x37, 0xcf, 0x3a, 0xee, 0x2f, 0x58, 0x1b, 0x4b, 0x4a, 0x47, 0x0b,
1324013498266Sopenharmony_ci  0x0f, 0x15, 0xdf, 0x52, 0xa0, 0x2d, 0x0f, 0x75, 0x6f, 0x20, 0x8e, 0x14,
1324113498266Sopenharmony_ci  0xe6, 0xa5, 0x6e, 0x16, 0x8e, 0x39, 0xa0, 0x87, 0xd0, 0xdf, 0xd9, 0x64,
1324213498266Sopenharmony_ci  0xf3, 0x37, 0x8c, 0xa7, 0x64, 0x64, 0x30, 0xa2, 0x53, 0xfc, 0xcd, 0xd2,
1324313498266Sopenharmony_ci  0xe6, 0xb7, 0x74, 0x58, 0x01, 0x20, 0x47, 0xb1, 0x2e, 0x77, 0xc8, 0x7d,
1324413498266Sopenharmony_ci  0x3a, 0xef, 0x93, 0x22, 0xbc, 0x43, 0xed, 0x1d, 0x24, 0x0a, 0x6e, 0xda,
1324513498266Sopenharmony_ci  0x8d, 0x65, 0x7c, 0x6d, 0xd3, 0xff, 0xec, 0x07, 0xd2, 0xa7, 0x03, 0x75,
1324613498266Sopenharmony_ci  0x45, 0x09, 0x3e, 0x4b, 0xc2, 0x80, 0x49, 0x64, 0x97, 0x4e, 0xb8, 0x76,
1324713498266Sopenharmony_ci  0xc3, 0x3a, 0xf7, 0x3c, 0x9b, 0xc2, 0x78, 0xea, 0x15, 0x47, 0x6d, 0x75,
1324813498266Sopenharmony_ci  0x53, 0x4a, 0x57, 0x8a, 0xee, 0xe0, 0xa2, 0x89, 0xb1, 0xee, 0x99, 0x9c,
1324913498266Sopenharmony_ci  0xd9, 0x88, 0x9d, 0x47, 0xeb, 0x85, 0x31, 0x49, 0x4f, 0x87, 0xc4, 0x99,
1325013498266Sopenharmony_ci  0x86, 0xf9, 0x15, 0x8d, 0x67, 0x98, 0xe2, 0x02, 0xb6, 0x51, 0xfb, 0x50,
1325113498266Sopenharmony_ci  0xeb, 0x36, 0x08, 0xa1, 0x8d, 0x37, 0x76, 0x1b, 0x0a, 0x13, 0x72, 0xda,
1325213498266Sopenharmony_ci  0xc8, 0x0e, 0x38, 0x8e, 0xfd, 0x41, 0xb9, 0xff, 0xd5, 0x0e, 0xfd, 0x4f,
1325313498266Sopenharmony_ci  0x0f, 0xdd, 0x79, 0xd4, 0xb0, 0x91, 0x3b, 0x6e, 0xd8, 0xc2, 0x8c, 0x7c,
1325413498266Sopenharmony_ci  0xa6, 0x1c, 0xae, 0x4b, 0xb1, 0xa7, 0xaa, 0x04, 0x29, 0x06, 0xbe, 0x9c,
1325513498266Sopenharmony_ci  0xfe, 0xbc, 0x52, 0x71, 0xb2, 0x6b, 0x7f, 0x05, 0xde, 0x92, 0x6f, 0xc0,
1325613498266Sopenharmony_ci  0x60, 0xf6, 0x27, 0xec, 0xba, 0x25, 0xf3, 0x0d, 0x44, 0x9d, 0x5a, 0xfe,
1325713498266Sopenharmony_ci  0x95, 0x97, 0x55, 0x7e, 0xb1, 0x8a, 0xa2, 0xf0, 0x43, 0xfa, 0xc9, 0x3d,
1325813498266Sopenharmony_ci  0x4e, 0x47, 0x88, 0xa0, 0x27, 0x0d, 0x07, 0x86, 0xb2, 0x68, 0x3e, 0xe5,
1325913498266Sopenharmony_ci  0xe9, 0xf2, 0x2f, 0x58, 0x8d, 0x8b, 0x29, 0x05, 0xe4, 0xfe, 0xd1, 0xf4,
1326013498266Sopenharmony_ci  0xcc, 0x95, 0x21, 0x6e, 0xb1, 0xe0, 0x2b, 0xfe, 0x2e, 0xd4, 0xeb, 0x92,
1326113498266Sopenharmony_ci  0x43, 0x1c, 0x90, 0x2b, 0x93, 0x58, 0x33, 0x22, 0x0d, 0x47, 0x3f, 0x01,
1326213498266Sopenharmony_ci  0xe6, 0x18, 0xc2, 0x57, 0xc9, 0xbf, 0xf9, 0x0d, 0x2f, 0xba, 0xa5, 0xe5,
1326313498266Sopenharmony_ci  0xcc, 0x80, 0x15, 0x5b, 0x64, 0xd4, 0xb4, 0xcb, 0xd8, 0x8c, 0x88, 0x38,
1326413498266Sopenharmony_ci  0x1c, 0x22, 0x6e, 0x14, 0x9c, 0xe0, 0x0c, 0xc0, 0x44, 0x94, 0xe6, 0x74,
1326513498266Sopenharmony_ci  0xe2, 0x82, 0xb4, 0xa5, 0x23, 0x80, 0x04, 0x25, 0x7d, 0x35, 0x8b, 0x79,
1326613498266Sopenharmony_ci  0x7d, 0x10, 0xbb, 0x96, 0x74, 0x68, 0x33, 0x26, 0xb2, 0xbe, 0x4e, 0x2d,
1326713498266Sopenharmony_ci  0x40, 0xd0, 0xcb, 0xc0, 0xa9, 0x97, 0x30, 0xa5, 0x1e, 0x96, 0x5c, 0xd8,
1326813498266Sopenharmony_ci  0xd0, 0xeb, 0x00, 0x93, 0x02, 0x94, 0x2d, 0xdc, 0x0a, 0x65, 0x06, 0x4e,
1326913498266Sopenharmony_ci  0x50, 0xa1, 0x0e, 0xe3, 0xc2, 0x36, 0xef, 0x4d, 0x44, 0x4e, 0x36, 0x0a,
1327013498266Sopenharmony_ci  0x75, 0xd6, 0x2a, 0x8e, 0x34, 0x2a, 0x4a, 0xe0, 0x3e, 0xa7, 0x9c, 0x29,
1327113498266Sopenharmony_ci  0x02, 0x61, 0xcb, 0x73, 0x0b, 0x7f, 0xb2, 0x6d, 0x5a, 0x92, 0x62, 0x5d,
1327213498266Sopenharmony_ci  0xff, 0xad, 0x0d, 0x36, 0xeb, 0x21, 0x1c, 0x9c, 0x6f, 0x59, 0x3a, 0xb5,
1327313498266Sopenharmony_ci  0xf1, 0x8a, 0x4c, 0x07, 0x79, 0x6b, 0x3e, 0x2f, 0xf4, 0x7c, 0x6e, 0x91,
1327413498266Sopenharmony_ci  0x53, 0xce, 0xf7, 0xfb, 0x7d, 0xe1, 0x93, 0x9e, 0x87, 0x25, 0xb8, 0xc2,
1327513498266Sopenharmony_ci  0x05, 0x5a, 0x99, 0xe7, 0xdc, 0x4e, 0xd3, 0x95, 0xa9, 0x3c, 0x48, 0xa5,
1327613498266Sopenharmony_ci  0x7e, 0xfb, 0x05, 0x09, 0xbb, 0x03, 0x6a, 0xff, 0xe7, 0x9f, 0xed, 0x6d,
1327713498266Sopenharmony_ci  0x69, 0x15, 0x75, 0xed, 0xb2, 0xe9, 0x3c, 0xef, 0xf0, 0x90, 0xac, 0x2b,
1327813498266Sopenharmony_ci  0x96, 0x72, 0xc2, 0x3a, 0x63, 0x4f, 0x29, 0xb9, 0x68, 0x52, 0x6c, 0xf2,
1327913498266Sopenharmony_ci  0x3a, 0x07, 0x41, 0x66, 0x11, 0xb2, 0xe5, 0x4e, 0xfa, 0x13, 0x4d, 0xaa,
1328013498266Sopenharmony_ci  0xfd, 0x6f, 0x4d, 0xfa, 0x93, 0x67, 0xd2, 0xdb, 0xe6, 0xe0, 0xd0, 0xc7,
1328113498266Sopenharmony_ci  0x82, 0xcd, 0xcd, 0x97, 0x02, 0xdd, 0x4d, 0xa9, 0x3a, 0x08, 0x0b, 0xe6,
1328213498266Sopenharmony_ci  0x7e, 0x50, 0x3d, 0xd7, 0x41, 0xb4, 0x68, 0xf7, 0x5b, 0xd6, 0xe9, 0xb5,
1328313498266Sopenharmony_ci  0x3e, 0xb5, 0xa3, 0x3f, 0xc5, 0x50, 0xa4, 0xa0, 0xbd, 0x91, 0xf8, 0x71,
1328413498266Sopenharmony_ci  0xc5, 0x92, 0xc4, 0x29, 0x21, 0xd4, 0x73, 0xab, 0x64, 0x53, 0x2a, 0x55,
1328513498266Sopenharmony_ci  0xf9, 0x95, 0x4f, 0x09, 0x15, 0xd6, 0x77, 0x76, 0x75, 0xee, 0xcf, 0xf3,
1328613498266Sopenharmony_ci  0x4d, 0x29, 0x19, 0xde, 0x47, 0x21, 0x3d, 0x8d, 0x66, 0xc8, 0x99, 0xe4,
1328713498266Sopenharmony_ci  0xaa, 0x30, 0xaa, 0x31, 0x76, 0x72, 0x81, 0x3c, 0xc6, 0x19, 0x6c, 0xeb,
1328813498266Sopenharmony_ci  0x34, 0xbc, 0x87, 0x33, 0xe5, 0x89, 0x89, 0x82, 0x5a, 0x8d, 0x31, 0x39,
1328913498266Sopenharmony_ci  0x75, 0x3c, 0xc7, 0x51, 0x02, 0xd1, 0x30, 0xd4, 0x49, 0xd8, 0x5d, 0x0a,
1329013498266Sopenharmony_ci  0x3e, 0xd7, 0x94, 0x3a, 0xf2, 0x49, 0x32, 0x19, 0x7f, 0xd5, 0x71, 0x10,
1329113498266Sopenharmony_ci  0x42, 0x7a, 0x4a, 0x51, 0x85, 0xdf, 0xac, 0xe4, 0xa8, 0xc8, 0x7c, 0x5e,
1329213498266Sopenharmony_ci  0x9a, 0x75, 0xd3, 0xcb, 0x04, 0x26, 0x39, 0xf5, 0x88, 0xb7, 0x17, 0x8f,
1329313498266Sopenharmony_ci  0xa5, 0x89, 0x85, 0xd4, 0xc3, 0x50, 0x59, 0x2e, 0x5f, 0xf2, 0xcb, 0xe6,
1329413498266Sopenharmony_ci  0x2b, 0x24, 0x90, 0xcf, 0x41, 0xdc, 0x29, 0xba, 0x09, 0xb0, 0xf8, 0x0c,
1329513498266Sopenharmony_ci  0xd3, 0x4d, 0x4a, 0x79, 0x9d, 0x64, 0x97, 0x97, 0x21, 0x05, 0xac, 0x51,
1329613498266Sopenharmony_ci  0x5e, 0x79, 0x68, 0x95, 0xd2, 0xfd, 0xe7, 0x22, 0x67, 0xf5, 0x5d, 0x23,
1329713498266Sopenharmony_ci  0x19, 0x67, 0x51, 0x70, 0x71, 0x78, 0x79, 0x81, 0x65, 0xb2, 0x20, 0x02,
1329813498266Sopenharmony_ci  0x3a, 0xae, 0x27, 0x6b, 0x5d, 0x23, 0xdb, 0xb2, 0x40, 0x33, 0x2a, 0x8a,
1329913498266Sopenharmony_ci  0x11, 0x11, 0xd8, 0x82, 0xda, 0xec, 0x38, 0xfd, 0x53, 0xde, 0x23, 0xac,
1330013498266Sopenharmony_ci  0xf2, 0x88, 0x8b, 0xc8, 0xad, 0xc2, 0x3d, 0x16, 0xa1, 0x9a, 0x9f, 0x34,
1330113498266Sopenharmony_ci  0xf7, 0x80, 0x27, 0x7b, 0x1c, 0x31, 0x57, 0x32, 0xfe, 0x5e, 0x97, 0x4b,
1330213498266Sopenharmony_ci  0xf2, 0x05, 0xa3, 0x15, 0x94, 0x1e, 0xd1, 0x34, 0x08, 0xc2, 0x24, 0xcd,
1330313498266Sopenharmony_ci  0x3c, 0xf7, 0xa4, 0xe0, 0x22, 0xb1, 0x6a, 0x40, 0x24, 0x68, 0x17, 0x02,
1330413498266Sopenharmony_ci  0x7f, 0x8d, 0x7e, 0x65, 0x08, 0xbe, 0x01, 0xf5, 0x10, 0xdd, 0xde, 0xd8,
1330513498266Sopenharmony_ci  0xf0, 0x34, 0xb7, 0x0c, 0x07, 0x4a, 0xac, 0xb2, 0xa2, 0xc7, 0x18, 0xec,
1330613498266Sopenharmony_ci  0xf8, 0x16, 0xa5, 0x07, 0xa1, 0x9a, 0x9b, 0x83, 0xd9, 0xd3, 0x19, 0x41,
1330713498266Sopenharmony_ci  0x98, 0x1d, 0x56, 0xcc, 0x35, 0x70, 0x36, 0x49, 0xca, 0x7c, 0x46, 0xac,
1330813498266Sopenharmony_ci  0x52, 0x59, 0xb4, 0x8a, 0x74, 0x21, 0x20, 0x53, 0x8d, 0xbf, 0xcc, 0xfe,
1330913498266Sopenharmony_ci  0x52, 0x74, 0x3f, 0x52, 0xfa, 0x9b, 0x43, 0x99, 0x23, 0xc1, 0x37, 0x77,
1331013498266Sopenharmony_ci  0x6c, 0x8d, 0x40, 0x07, 0x26, 0x61, 0xda, 0x02, 0x97, 0xf0, 0x8e, 0xb0,
1331113498266Sopenharmony_ci  0x0c, 0xdb, 0xa5, 0x1b, 0xe9, 0x7e, 0x0e, 0x91, 0x66, 0xd0, 0xd2, 0xf0,
1331213498266Sopenharmony_ci  0x8e, 0xf6, 0x5c, 0x21, 0xfd, 0xcb, 0xb3, 0x0b, 0xd9, 0x5d, 0xeb, 0x7b,
1331313498266Sopenharmony_ci  0x74, 0xfa, 0x2f, 0xa0, 0x61, 0x00, 0x4f, 0xea, 0x13, 0xb7, 0x2e, 0xc9,
1331413498266Sopenharmony_ci  0x18, 0xe0, 0x5c, 0xce, 0xa4, 0xf5, 0x12, 0x1d, 0xb1, 0x33, 0x3a, 0xbb,
1331513498266Sopenharmony_ci  0xd4, 0xa7, 0x03, 0x38, 0x88, 0x3b, 0x76, 0x28, 0x3a, 0x04, 0x4d, 0x49,
1331613498266Sopenharmony_ci  0x60, 0x97, 0x1c, 0x2e, 0xa4, 0xe3, 0x73, 0xa6, 0xf5, 0x7d, 0x96, 0xee,
1331713498266Sopenharmony_ci  0xd5, 0x7e, 0xf5, 0xf0, 0x33, 0xe6, 0xb9, 0xa9, 0x07, 0x63, 0x75, 0x30,
1331813498266Sopenharmony_ci  0x09, 0x91, 0x21, 0xa4, 0x14, 0x0f, 0xc7, 0x23, 0x2c, 0xb6, 0x81, 0xc4,
1331913498266Sopenharmony_ci  0x60, 0x8c, 0xb5, 0x62, 0x94, 0x6f, 0x73, 0xe3, 0x9f, 0x9f, 0x5d, 0x5c,
1332013498266Sopenharmony_ci  0xea, 0xfb, 0x1e, 0x3e, 0x8b, 0x3f, 0x54, 0xce, 0x0d, 0x80, 0x9b, 0x71,
1332113498266Sopenharmony_ci  0x73, 0x3f, 0x14, 0xfa, 0xb4, 0xde, 0x4e, 0xa6, 0x0d, 0x1b, 0x0a, 0xc4,
1332213498266Sopenharmony_ci  0x9e, 0x38, 0x8e, 0x0c, 0xd4, 0x06, 0x47, 0x92, 0x3a, 0xd3, 0xd4, 0x5c,
1332313498266Sopenharmony_ci  0x5a, 0x4b, 0x1a, 0xf2, 0xac, 0xe1, 0x25, 0x13, 0x3b, 0x99, 0x8e, 0x95,
1332413498266Sopenharmony_ci  0x96, 0xa6, 0x5b, 0x2f, 0x3c, 0x52, 0x02, 0x2e, 0x83, 0x8b, 0xc3, 0xfe,
1332513498266Sopenharmony_ci  0x25, 0x91, 0x0e, 0xff, 0xcf, 0x21, 0x9d, 0xfa, 0x0e, 0xf1, 0x8f, 0xde,
1332613498266Sopenharmony_ci  0x5c, 0x5c, 0x94, 0xa0, 0x00, 0x98, 0x01, 0xce, 0x77, 0x18, 0x5f, 0xb7,
1332713498266Sopenharmony_ci  0x68, 0xb2, 0xbe, 0xbe, 0x65, 0x4e, 0x78, 0x86, 0xf2, 0x92, 0xf9, 0x04,
1332813498266Sopenharmony_ci  0x4f, 0x36, 0xfe, 0xd0, 0xe2, 0x8f, 0xb4, 0x94, 0x4e, 0xc6, 0x27, 0x21,
1332913498266Sopenharmony_ci  0xcd, 0xbe, 0x58, 0x43, 0x6c, 0x9b, 0x21, 0xe6, 0x70, 0x49, 0xf1, 0x08,
1333013498266Sopenharmony_ci  0x47, 0xd4, 0xf9, 0x6a, 0x8a, 0x3f, 0x76, 0x84, 0x57, 0xf0, 0xa6, 0x20,
1333113498266Sopenharmony_ci  0xae, 0xa8, 0xf4, 0xa5, 0xde, 0xda, 0xd1, 0xc1, 0x27, 0xd1, 0x13, 0x2c,
1333213498266Sopenharmony_ci  0x5a, 0xe0, 0x67, 0x41, 0x47, 0x40, 0xa5, 0xad, 0xc2, 0x73, 0x5b, 0xc4,
1333313498266Sopenharmony_ci  0xea, 0x6f, 0xc3, 0xa1, 0x41, 0x5a, 0xa1, 0xb9, 0x97, 0xee, 0x04, 0x0e,
1333413498266Sopenharmony_ci  0x73, 0xa2, 0x82, 0x16, 0x66, 0xd3, 0x18, 0x52, 0x88, 0x06, 0x64, 0x33,
1333513498266Sopenharmony_ci  0xc2, 0x6b, 0x8e, 0xb0, 0x4d, 0x4b, 0x5b, 0xc5, 0x97, 0xcf, 0xd1, 0xf1,
1333613498266Sopenharmony_ci  0xa1, 0xb5, 0x57, 0xd8, 0x8e, 0x83, 0xae, 0x08, 0xa3, 0xea, 0x43, 0xcc,
1333713498266Sopenharmony_ci  0x4b, 0x5f, 0x11, 0xdd, 0xe0, 0x1c, 0x82, 0xe8, 0xa8, 0x35, 0xe5, 0x7f,
1333813498266Sopenharmony_ci  0x36, 0xc3, 0xd1, 0x31, 0x81, 0xfc, 0x32, 0x8d, 0x42, 0x1f, 0x27, 0x10,
1333913498266Sopenharmony_ci  0x81, 0x82, 0x5f, 0xb0, 0x63, 0x93, 0x31, 0x99, 0x9d, 0xf9, 0xbe, 0x32,
1334013498266Sopenharmony_ci  0x2f, 0xe7, 0x6a, 0x2a, 0x00, 0xc1, 0x5e, 0x79, 0x64, 0x9b, 0x39, 0x4b,
1334113498266Sopenharmony_ci  0x3a, 0xa4, 0x6b, 0xb1, 0x0c, 0xa7, 0x19, 0xf6, 0x03, 0x4d, 0x46, 0x1c,
1334213498266Sopenharmony_ci  0x41, 0x77, 0x51, 0x2f, 0x89, 0x6f, 0x6b, 0x28, 0xba, 0x08, 0xf6, 0x79,
1334313498266Sopenharmony_ci  0xa9, 0xa0, 0x6d, 0xb1, 0x3a, 0x35, 0xa0, 0xc6, 0xa9, 0xb1, 0x30, 0x93,
1334413498266Sopenharmony_ci  0x44, 0x3b, 0x2c, 0x4b, 0xa9, 0xe8, 0xb8, 0xb6, 0xba, 0x7b, 0xb4, 0xe3,
1334513498266Sopenharmony_ci  0xbb, 0x2f, 0x27, 0x4d, 0x6e, 0x13, 0x2f, 0x6a, 0xbe, 0xd1, 0x77, 0x57,
1334613498266Sopenharmony_ci  0x89, 0x3a, 0xc6, 0xa0, 0x62, 0xa7, 0xe1, 0x20, 0xc4, 0x1a, 0xad, 0x50,
1334713498266Sopenharmony_ci  0x5d, 0xed, 0xb6, 0xea, 0xbf, 0xbd, 0x63, 0x86, 0x1a, 0x41, 0x7f, 0x06,
1334813498266Sopenharmony_ci  0x3d, 0x96, 0x91, 0x3e, 0x4a, 0xf0, 0x70, 0x33, 0xea, 0x58, 0x3f, 0xc6,
1334913498266Sopenharmony_ci  0xdb, 0x2a, 0x56, 0x5e, 0x63, 0x82, 0xfb, 0xf6, 0x4b, 0xb6, 0x88, 0xc1,
1335013498266Sopenharmony_ci  0x24, 0x4e, 0xee, 0x0d, 0x74, 0x5c, 0x97, 0xf2, 0xca, 0x4d, 0x9f, 0x04,
1335113498266Sopenharmony_ci  0xfd, 0x17, 0xf6, 0xfd, 0x4e, 0xd8, 0x3f, 0x34, 0x0b, 0xef, 0x9c, 0xeb,
1335213498266Sopenharmony_ci  0x7d, 0xb6, 0x98, 0x31, 0x10, 0x92, 0xf5, 0xa5, 0x3d, 0x76, 0x70, 0x10,
1335313498266Sopenharmony_ci  0xba, 0x97, 0xf8, 0x04, 0xec, 0x32, 0x55, 0xb0, 0xb6, 0xc4, 0x98, 0x16,
1335413498266Sopenharmony_ci  0xdc, 0x87, 0x21, 0x23, 0x6f, 0xa2, 0x01, 0xa5, 0x0c, 0x2d, 0x27, 0x32,
1335513498266Sopenharmony_ci  0x8d, 0x2d, 0x88, 0x42, 0x56, 0x75, 0x0d, 0xe6, 0x3e, 0x37, 0x6c, 0x61,
1335613498266Sopenharmony_ci  0x87, 0x03, 0x3f, 0x46, 0x7f, 0x6a, 0xe8, 0xfe, 0x9a, 0x45, 0xbf, 0xa2,
1335713498266Sopenharmony_ci  0x1a, 0xd9, 0xa5, 0xeb, 0x86, 0x50, 0xad, 0x69, 0x96, 0xd0, 0x4d, 0xc8,
1335813498266Sopenharmony_ci  0xb4, 0x55, 0xdc, 0x7e, 0xc5, 0x9e, 0x32, 0xf6, 0x8e, 0x40, 0x62, 0x7d,
1335913498266Sopenharmony_ci  0x12, 0x15, 0x4e, 0x0e, 0xed, 0xce, 0xa6, 0x55, 0x87, 0xce, 0x16, 0x85,
1336013498266Sopenharmony_ci  0x48, 0x20, 0xd2, 0xef, 0xd5, 0xaa, 0x43, 0x5f, 0x99, 0x71, 0x9b, 0x13,
1336113498266Sopenharmony_ci  0xff, 0xd0, 0x77, 0x86, 0x52, 0x91, 0xda, 0x4b, 0xa3, 0x92, 0x51, 0x8d,
1336213498266Sopenharmony_ci  0x93, 0x94, 0x85, 0xce, 0xce, 0x96, 0x11, 0x3a, 0xd9, 0xfd, 0x1c, 0xba,
1336313498266Sopenharmony_ci  0x1f, 0x24, 0x63, 0xd0, 0xe3, 0x3d, 0x87, 0x60, 0x87, 0x04, 0x5d, 0x8f,
1336413498266Sopenharmony_ci  0x8e, 0x2a, 0x28, 0x9d, 0xee, 0x6b, 0xa1, 0x2e, 0xd8, 0xb2, 0xde, 0x2b,
1336513498266Sopenharmony_ci  0xdf, 0xfa, 0x11, 0xb9, 0xe9, 0x24, 0x79, 0x0a, 0x14, 0x0a, 0xeb, 0xd9,
1336613498266Sopenharmony_ci  0x5d, 0xfd, 0x2c, 0xa6, 0xbf, 0x24, 0x0c, 0x8c, 0xd0, 0xf0, 0xc6, 0x9e,
1336713498266Sopenharmony_ci  0x64, 0xc8, 0x93, 0x46, 0x2f, 0x7a, 0x14, 0xa9, 0x27, 0x16, 0x30, 0x92,
1336813498266Sopenharmony_ci  0xd6, 0xea, 0x76, 0x5e, 0x55, 0xbc, 0x1f, 0x70, 0xdb, 0x18, 0x5e, 0xc2,
1336913498266Sopenharmony_ci  0x49, 0xc5, 0xf3, 0x89, 0x7d, 0x9e, 0x76, 0xe9, 0x62, 0x3d, 0xaf, 0x62,
1337013498266Sopenharmony_ci  0x2d, 0x99, 0xe6, 0x19, 0x56, 0x0b, 0x31, 0x39, 0x9d, 0xc4, 0xad, 0xbd,
1337113498266Sopenharmony_ci  0xfd, 0x40, 0x5e, 0x71, 0xdb, 0x2c, 0x14, 0x76, 0x1b, 0xc4, 0xdd, 0x17,
1337213498266Sopenharmony_ci  0xcc, 0xe6, 0x6a, 0xca, 0xe9, 0x38, 0x89, 0xbf, 0x45, 0x06, 0x6f, 0x03,
1337313498266Sopenharmony_ci  0xf2, 0xe2, 0x52, 0x58, 0x37, 0xeb, 0xf1, 0x2d, 0xe6, 0xa3, 0xbb, 0x18,
1337413498266Sopenharmony_ci  0x0e, 0x0d, 0x15, 0x22, 0x00, 0xfa, 0x17, 0xa4, 0x8c, 0x47, 0xa5, 0x46,
1337513498266Sopenharmony_ci  0x5d, 0xbb, 0xdb, 0xac, 0x07, 0x89, 0xa6, 0x0a, 0xb7, 0x21, 0xcc, 0x73,
1337613498266Sopenharmony_ci  0x0a, 0xbd, 0x3f, 0x1d, 0xc1, 0xb9, 0xcb, 0x37, 0x11, 0xef, 0x14, 0x3a,
1337713498266Sopenharmony_ci  0xd8, 0x40, 0xed, 0x63, 0x99, 0x99, 0x23, 0x80, 0xe3, 0x2d, 0x65, 0x18,
1337813498266Sopenharmony_ci  0x84, 0xae, 0xfa, 0xb3, 0xbb, 0x5b, 0xeb, 0x27, 0xc4, 0x8f, 0x1e, 0x22,
1337913498266Sopenharmony_ci  0xab, 0x58, 0xcf, 0xbf, 0xac, 0x16, 0xc5, 0x52, 0xec, 0x50, 0x57, 0xa1,
1338013498266Sopenharmony_ci  0xb6, 0x2d, 0x77, 0x80, 0x96, 0xd0, 0xe4, 0xd2, 0xe0, 0x36, 0x15, 0x70,
1338113498266Sopenharmony_ci  0x28, 0x9d, 0xd4, 0x0e, 0xf9, 0xfc, 0x34, 0x1d, 0x07, 0x76, 0x5b, 0xcc,
1338213498266Sopenharmony_ci  0x5d, 0xe2, 0x98, 0x77, 0x18, 0xa5, 0x34, 0xaa, 0x7a, 0x12, 0x5c, 0xfa,
1338313498266Sopenharmony_ci  0x00, 0xe5, 0x77, 0x5f, 0xf1, 0xd6, 0xcb, 0x0d, 0xa6, 0x8d, 0xc7, 0xba,
1338413498266Sopenharmony_ci  0x37, 0x5e, 0x6e, 0xd8, 0x0a, 0xe4, 0x10, 0x12, 0x80, 0xa9, 0x49, 0x4e,
1338513498266Sopenharmony_ci  0xed, 0x0b, 0xb4, 0xf1, 0x47, 0x53, 0x68, 0x5a, 0x38, 0xa5, 0x67, 0xf4,
1338613498266Sopenharmony_ci  0xcd, 0x67, 0x3d, 0xb6, 0x59, 0x12, 0x83, 0x97, 0xb6, 0x4a, 0x13, 0x1c,
1338713498266Sopenharmony_ci  0x1d, 0x58, 0x0f, 0x6e, 0x99, 0x09, 0x86, 0x53, 0xb8, 0x9f, 0xef, 0xc9,
1338813498266Sopenharmony_ci  0x6f, 0x94, 0x07, 0x6b, 0xf0, 0x96, 0x05, 0x88, 0xf8, 0x92, 0x38, 0xe3,
1338913498266Sopenharmony_ci  0x34, 0xa5, 0x08, 0x27, 0x2e, 0xbf, 0xf3, 0xcc, 0xcb, 0xd2, 0x09, 0x13,
1339013498266Sopenharmony_ci  0xcd, 0x59, 0x00, 0xc8, 0x14, 0x83, 0x63, 0xd4, 0x7a, 0x0d, 0x22, 0x79,
1339113498266Sopenharmony_ci  0x7f, 0x16, 0xff, 0x59, 0x06, 0x3d, 0xe5, 0xf3, 0x3f, 0xdb, 0xc3, 0xec,
1339213498266Sopenharmony_ci  0xe9, 0x6d, 0xd6, 0xce, 0x33, 0x9d, 0x0e, 0xa2, 0xad, 0x6f, 0xcc, 0xac,
1339313498266Sopenharmony_ci  0x2d, 0x39, 0xbb, 0xac, 0x11, 0x68, 0x2b, 0xd4, 0x85, 0xbb, 0x48, 0xcc,
1339413498266Sopenharmony_ci  0x79, 0x25, 0x4b, 0x89, 0xe1, 0xde, 0x95, 0x1a, 0xb3, 0xc8, 0x0c, 0x75,
1339513498266Sopenharmony_ci  0x1f, 0xc4, 0x59, 0x63, 0xf9, 0x1a, 0x37, 0x2a, 0xdc, 0x99, 0x4f, 0x16,
1339613498266Sopenharmony_ci  0x64, 0x96, 0xea, 0x19, 0x19, 0x3f, 0x94, 0xf5, 0xda, 0x66, 0x45, 0x68,
1339713498266Sopenharmony_ci  0xa0, 0x86, 0xd5, 0x53, 0xd4, 0x92, 0xdd, 0x8a, 0xcc, 0x41, 0xb1, 0xb4,
1339813498266Sopenharmony_ci  0xdb, 0x2c, 0x25, 0xaf, 0x1a, 0x38, 0x4d, 0xcc, 0x00, 0x7c, 0xbb, 0x43,
1339913498266Sopenharmony_ci  0x81, 0x4f, 0xc6, 0x19, 0x66, 0xd5, 0x93, 0xb3, 0xb7, 0xad, 0x97, 0x08,
1340013498266Sopenharmony_ci  0x75, 0x78, 0x65, 0x08, 0xd7, 0x9a, 0xba, 0x7b, 0x74, 0x48, 0x4f, 0xe2,
1340113498266Sopenharmony_ci  0x9c, 0x62, 0x73, 0x8a, 0xd5, 0x2e, 0x2e, 0xfb, 0xe7, 0x41, 0xaf, 0x1f,
1340213498266Sopenharmony_ci  0xfd, 0x8b, 0x13, 0x1b, 0x2d, 0xd9, 0xb2, 0xb7, 0xeb, 0x7f, 0xba, 0xcf,
1340313498266Sopenharmony_ci  0xbe, 0xac, 0xa3, 0x21, 0x08, 0x2f, 0xb5, 0x9e, 0xa5, 0x97, 0x5e, 0x32,
1340413498266Sopenharmony_ci  0xc3, 0x89, 0xa3, 0x9b, 0xfc, 0x3d, 0x40, 0x1a, 0x4a, 0x9b, 0x69, 0x69,
1340513498266Sopenharmony_ci  0x77, 0xf6, 0xf6, 0x8c, 0x22, 0x3f, 0x59, 0x24, 0x5f, 0xb4, 0x8a, 0xc4,
1340613498266Sopenharmony_ci  0x3d, 0xb9, 0x65, 0xab, 0xac, 0x37, 0x5e, 0x09, 0xf3, 0x59, 0x9e, 0x3f,
1340713498266Sopenharmony_ci  0x5d, 0xd0, 0x22, 0x26, 0xa0, 0x76, 0x2d, 0x2a, 0xe1, 0x55, 0xaa, 0x8d,
1340813498266Sopenharmony_ci  0x7a, 0xb5, 0xa1, 0xef, 0x2e, 0x6e, 0x99, 0xf9, 0x25, 0xba, 0x37, 0xcc,
1340913498266Sopenharmony_ci  0x23, 0xc9, 0xf2, 0xf3, 0x38, 0x01, 0x73, 0xdb, 0x3c, 0x62, 0x8d, 0xc0,
1341013498266Sopenharmony_ci  0x07, 0x2f, 0xf9, 0xaa, 0xa4, 0x13, 0x4b, 0x7e, 0x4b, 0xba, 0x13, 0xd8,
1341113498266Sopenharmony_ci  0xb3, 0xf5, 0x38, 0xf1, 0x40, 0x1f, 0xc2, 0x7d, 0x33, 0xe6, 0xbb, 0x38,
1341213498266Sopenharmony_ci  0x11, 0xe7, 0x52, 0xc5, 0x63, 0xa4, 0x5f, 0xda, 0x12, 0xa6, 0x85, 0x9e,
1341313498266Sopenharmony_ci  0xc3, 0x3e, 0x55, 0x0e, 0xbd, 0x0f, 0x31, 0x5e, 0xd9, 0xd8, 0x4f, 0x8d,
1341413498266Sopenharmony_ci  0x15, 0x4b, 0x33, 0xc2, 0xb6, 0x8c, 0x50, 0xe9, 0x53, 0xa9, 0x07, 0xd3,
1341513498266Sopenharmony_ci  0xee, 0x8c, 0xd0, 0xb1, 0x2a, 0x5e, 0xed, 0x70, 0x54, 0x65, 0x99, 0xcb,
1341613498266Sopenharmony_ci  0xeb, 0xf9, 0x56, 0xc0, 0xa4, 0x9b, 0xb6, 0x27, 0x81, 0xf6, 0x70, 0x55,
1341713498266Sopenharmony_ci  0x84, 0xab, 0xf8, 0xbb, 0x08, 0x75, 0x48, 0xda, 0x52, 0x35, 0xb9, 0xbc,
1341813498266Sopenharmony_ci  0xca, 0x4e, 0xae, 0xaa, 0xd2, 0xd7, 0xe4, 0xf2, 0x7a, 0x45, 0xac, 0x8b,
1341913498266Sopenharmony_ci  0x99, 0x49, 0x16, 0x9f, 0x68, 0xdb, 0x08, 0x52, 0x51, 0xc8, 0x71, 0x46,
1342013498266Sopenharmony_ci  0x81, 0x75, 0xec, 0x19, 0x8d, 0x3a, 0x3a, 0x16, 0x3d, 0x61, 0xf3, 0xd2,
1342113498266Sopenharmony_ci  0xa9, 0x73, 0xf7, 0x0e, 0x32, 0x48, 0x32, 0xe6, 0x41, 0x70, 0xec, 0x58,
1342213498266Sopenharmony_ci  0x57, 0xa7, 0x50, 0x3c, 0x5a, 0x9b, 0x90, 0xbc, 0x3a, 0x1e, 0xeb, 0xf1,
1342313498266Sopenharmony_ci  0x95, 0x96, 0x8c, 0x58, 0x37, 0x25, 0xd8, 0x75, 0xd5, 0x2d, 0xd8, 0x93,
1342413498266Sopenharmony_ci  0xc0, 0xd6, 0x8d, 0x32, 0xb8, 0x92, 0xa2, 0x83, 0x3b, 0x6d, 0x33, 0x5a,
1342513498266Sopenharmony_ci  0x9c, 0x1b, 0x7b, 0x04, 0xdd, 0xef, 0x8c, 0x76, 0xd5, 0x84, 0x13, 0x4f,
1342613498266Sopenharmony_ci  0x00, 0xf1, 0xe6, 0x23, 0x7c, 0x4d, 0xa5, 0xd0, 0x81, 0x0a, 0xbc, 0xad,
1342713498266Sopenharmony_ci  0xd8, 0x65, 0x4d, 0x33, 0xc6, 0x28, 0x2c, 0xb4, 0x45, 0xa1, 0xdf, 0xf9,
1342813498266Sopenharmony_ci  0xf9, 0x67, 0x12, 0x0a, 0x90, 0x27, 0x6a, 0x47, 0x56, 0x67, 0x20, 0xbb,
1342913498266Sopenharmony_ci  0x25, 0x42, 0x4a, 0x4a, 0x25, 0x30, 0x1b, 0xc6, 0xe4, 0x32, 0x35, 0x70,
1343013498266Sopenharmony_ci  0x98, 0x47, 0xdc, 0x82, 0x23, 0xf0, 0x64, 0xa8, 0x73, 0x53, 0x2e, 0xc5,
1343113498266Sopenharmony_ci  0x0c, 0x14, 0xca, 0x87, 0xec, 0x55, 0x74, 0x43, 0x27, 0x11, 0x82, 0xe2,
1343213498266Sopenharmony_ci  0xa3, 0x5b, 0x52, 0x11, 0xf1, 0xf6, 0xe3, 0xfb, 0xbe, 0x95, 0xb1, 0x80,
1343313498266Sopenharmony_ci  0xa1, 0x10, 0xf0, 0x7f, 0x2b, 0xc6, 0xc2, 0xae, 0x1d, 0xd4, 0xab, 0x52,
1343413498266Sopenharmony_ci  0x18, 0x48, 0x9a, 0x43, 0x92, 0xcb, 0x1c, 0x5a, 0x31, 0xce, 0x20, 0xd6,
1343513498266Sopenharmony_ci  0x9f, 0x50, 0xc5, 0x64, 0xc5, 0x1d, 0xac, 0x5e, 0x02, 0x65, 0xfc, 0x19,
1343613498266Sopenharmony_ci  0x44, 0x3e, 0xc7, 0xd4, 0x63, 0x15, 0xd2, 0xbc, 0x93, 0xe0, 0x7d, 0x5c,
1343713498266Sopenharmony_ci  0x7c, 0x58, 0x0c, 0x5e, 0xeb, 0x80, 0xfe, 0x58, 0x8d, 0xb9, 0x18, 0x40,
1343813498266Sopenharmony_ci  0x25, 0xc5, 0x73, 0x18, 0x98, 0xfe, 0x83, 0x23, 0xe6, 0x4f, 0x9e, 0xec,
1343913498266Sopenharmony_ci  0x7f, 0xbc, 0xfc, 0x70, 0x76, 0xa1, 0x69, 0x3c, 0x08, 0x93, 0x58, 0x29,
1344013498266Sopenharmony_ci  0x4b, 0xfd, 0x22, 0x4a, 0x94, 0x6c, 0x1d, 0x0b, 0xbf, 0x60, 0xf5, 0x0d,
1344113498266Sopenharmony_ci  0x1c, 0xcc, 0x34, 0x23, 0x50, 0x47, 0xec, 0x6d, 0x32, 0x49, 0x59, 0x3e,
1344213498266Sopenharmony_ci  0x62, 0x35, 0x05, 0x06, 0x38, 0xa0, 0xfe, 0x33, 0x35, 0xce, 0x95, 0xb8,
1344313498266Sopenharmony_ci  0x02, 0x73, 0x2c, 0x05, 0x4b, 0xc1, 0xe5, 0x87, 0xfd, 0xd3, 0xbf, 0xf6,
1344413498266Sopenharmony_ci  0x25, 0xbd, 0xe4, 0xf3, 0xe7, 0xcf, 0xd5, 0x2c, 0x04, 0x34, 0x72, 0xf2,
1344513498266Sopenharmony_ci  0xe8, 0xc9, 0x93, 0xfe, 0xe1, 0x61, 0xb0, 0x7f, 0xdc, 0x3f, 0x93, 0x07,
1344613498266Sopenharmony_ci  0x46, 0xc5, 0x3c, 0x58, 0x7b, 0xb1, 0xae, 0xcc, 0x01, 0xa8, 0xfb, 0x50,
1344713498266Sopenharmony_ci  0xff, 0xef, 0xc9, 0x93, 0xff, 0x03, 0xc7, 0xda, 0xf8, 0x2e, 0x28, 0x44,
1344813498266Sopenharmony_ci  0x04, 0x00,
1344913498266Sopenharmony_ci};
1345013498266Sopenharmony_ci#define BUF_SIZE 0x10000
1345113498266Sopenharmony_cistatic voidpf zalloc_func(voidpf opaque, unsigned int items, unsigned int size)
1345213498266Sopenharmony_ci{
1345313498266Sopenharmony_ci  (void) opaque;
1345413498266Sopenharmony_ci  /* not a typo, keep it calloc() */
1345513498266Sopenharmony_ci  return (voidpf) calloc(items, size);
1345613498266Sopenharmony_ci}
1345713498266Sopenharmony_cistatic void zfree_func(voidpf opaque, voidpf ptr)
1345813498266Sopenharmony_ci{
1345913498266Sopenharmony_ci  (void) opaque;
1346013498266Sopenharmony_ci  free(ptr);
1346113498266Sopenharmony_ci}
1346213498266Sopenharmony_ci/* Decompress and send to stdout a gzip-compressed buffer */
1346313498266Sopenharmony_civoid hugehelp(void)
1346413498266Sopenharmony_ci{
1346513498266Sopenharmony_ci  unsigned char *buf;
1346613498266Sopenharmony_ci  int status, headerlen;
1346713498266Sopenharmony_ci  z_stream z;
1346813498266Sopenharmony_ci
1346913498266Sopenharmony_ci  /* Make sure no gzip options are set */
1347013498266Sopenharmony_ci  if(hugehelpgz[3] & 0xfe)
1347113498266Sopenharmony_ci    return;
1347213498266Sopenharmony_ci
1347313498266Sopenharmony_ci  headerlen = 10;
1347413498266Sopenharmony_ci  memset(&z, 0, sizeof(z_stream));
1347513498266Sopenharmony_ci  z.zalloc = (alloc_func)zalloc_func;
1347613498266Sopenharmony_ci  z.zfree = (free_func)zfree_func;
1347713498266Sopenharmony_ci  z.avail_in = (unsigned int)(sizeof(hugehelpgz) - headerlen);
1347813498266Sopenharmony_ci  z.next_in = (unsigned char *)hugehelpgz + headerlen;
1347913498266Sopenharmony_ci
1348013498266Sopenharmony_ci  if(inflateInit2(&z, -MAX_WBITS) != Z_OK)
1348113498266Sopenharmony_ci    return;
1348213498266Sopenharmony_ci
1348313498266Sopenharmony_ci  buf = malloc(BUF_SIZE);
1348413498266Sopenharmony_ci  if(buf) {
1348513498266Sopenharmony_ci    while(1) {
1348613498266Sopenharmony_ci      z.avail_out = BUF_SIZE;
1348713498266Sopenharmony_ci      z.next_out = buf;
1348813498266Sopenharmony_ci      status = inflate(&z, Z_SYNC_FLUSH);
1348913498266Sopenharmony_ci      if(status == Z_OK || status == Z_STREAM_END) {
1349013498266Sopenharmony_ci        fwrite(buf, BUF_SIZE - z.avail_out, 1, stdout);
1349113498266Sopenharmony_ci        if(status == Z_STREAM_END)
1349213498266Sopenharmony_ci          break;
1349313498266Sopenharmony_ci      }
1349413498266Sopenharmony_ci      else
1349513498266Sopenharmony_ci        break;    /* Error */
1349613498266Sopenharmony_ci    }
1349713498266Sopenharmony_ci    free(buf);
1349813498266Sopenharmony_ci  }
1349913498266Sopenharmony_ci  inflateEnd(&z);
1350013498266Sopenharmony_ci}
1350113498266Sopenharmony_ci#endif /* USE_MANUAL */
1350213498266Sopenharmony_ci#endif /* HAVE_LIBZ */
13503